Skip to content

Commit

Permalink
Remove unused box helpKey property (#71)
Browse files Browse the repository at this point in the history
* Remove unused box helpKey property

* Update version
  • Loading branch information
michael-tims authored Oct 24, 2024
1 parent 7b0b58a commit b4055ca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.5.1 (2024-10-24)
- Removed unused `helpKey` property from the `AddinBoxConfig`

# 1.5.0 (2024-10-08)
- Added `showInlineHelp`, `helpPopoverContent`, and `helpPopoverTitle` properties in `AddinTileConfig` to support inline help in tile header.
- Added `inlineHelpClick` callback in `AddinClientCallbacks` to handle inline help button click.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blackbaud/sky-addin-client",
"version": "1.5.0",
"version": "1.5.1",
"description": "SKY add-in client",
"main": "dist/bundles/sky-addin-client.umd.js",
"module": "index.ts",
Expand Down
5 changes: 0 additions & 5 deletions src/addin/client-interfaces/addin-box-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,4 @@ export interface AddinBoxConfig {
* The controls to use for the box context menu
*/
controls: AddinBoxControl[] | undefined;

/**
* The help key to open when the Help icon is clicked
*/
helpKey?: string | undefined;
}

0 comments on commit b4055ca

Please sign in to comment.