@softheon/armature 21.9.0 → 21.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "21.9.0",
3
+ "version": "21.10.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.8.1"
6
6
  },
@@ -3886,6 +3886,7 @@ interface BadgeTooltipData {
3886
3886
  * Properties `name` & `icon` will be ignored in this case an do not need to be included.
3887
3887
  * @property `badgeLabel`, the menu button badge label ( all menu badges will be 'neutral', no icon )
3888
3888
  * @property `menuLabel`, the menu's label
3889
+ * @property `description`, the description text to display below the menu item
3889
3890
  */
3890
3891
  interface ButtonData {
3891
3892
  name?: string;
@@ -3899,6 +3900,7 @@ interface ButtonData {
3899
3900
  displayBadgeLabel?: boolean;
3900
3901
  badgeLabel?: string;
3901
3902
  menuLabel?: string;
3903
+ description?: string;
3902
3904
  badgeConfig?: ButtonBadgeConfig;
3903
3905
  }
3904
3906
  /**