@hexure/ui 1.13.97 → 1.13.99

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.
@@ -12,6 +12,7 @@ export interface MenuItemType extends AccessibleProps {
12
12
  }[];
13
13
  title?: string;
14
14
  dataItemid?: string;
15
+ dataSectionName?: string;
15
16
  }
16
17
  export interface AppMenuProps extends AccessibleProps {
17
18
  menu: MenuItemType[];
@@ -19,6 +20,7 @@ export interface AppMenuProps extends AccessibleProps {
19
20
  footerTag?: string;
20
21
  defaultWidth?: string;
21
22
  dataItemid?: string;
23
+ dataSectionName?: string;
22
24
  onChange?: (isCollapsed: boolean) => void;
23
25
  }
24
26
  declare const AppMenu: FC<AppMenuProps>;
@@ -14,6 +14,7 @@ export interface ButtonMenuProps {
14
14
  show?: boolean;
15
15
  /** Optional ID for automation purposes */
16
16
  dataItemid?: string;
17
+ dataSectionName?: string;
17
18
  }
18
19
  declare const ButtonMenu: FC<ButtonMenuProps>;
19
20
  export default ButtonMenu;
@@ -19,6 +19,7 @@ export interface CheckboxProps extends AccessibleProps {
19
19
  dataItemid?: string;
20
20
  isInvalidRedBackground?: boolean;
21
21
  isWarningError?: boolean;
22
+ dataSectionName?: string;
22
23
  }
23
24
  declare const Checkbox: FC<CheckboxProps>;
24
25
  export default Checkbox;
@@ -12,6 +12,7 @@ export interface TagProps extends AccessibleProps {
12
12
  /** Optional ID for automation purposes */
13
13
  dataItemid?: string;
14
14
  rotate?: boolean;
15
+ dataSectionName?: string;
15
16
  }
16
17
  declare const Tag: FC<TagProps>;
17
18
  export default Tag;
package/dist/index.d.ts CHANGED
@@ -153,6 +153,7 @@ interface MenuItemType extends AccessibleProps {
153
153
  }[];
154
154
  title?: string;
155
155
  dataItemid?: string;
156
+ dataSectionName?: string;
156
157
  }
157
158
  interface AppMenuProps extends AccessibleProps {
158
159
  menu: MenuItemType[];
@@ -160,6 +161,7 @@ interface AppMenuProps extends AccessibleProps {
160
161
  footerTag?: string;
161
162
  defaultWidth?: string;
162
163
  dataItemid?: string;
164
+ dataSectionName?: string;
163
165
  onChange?: (isCollapsed: boolean) => void;
164
166
  }
165
167
  declare const AppMenu: FC<AppMenuProps>;
@@ -210,6 +212,7 @@ interface ButtonMenuProps {
210
212
  show?: boolean;
211
213
  /** Optional ID for automation purposes */
212
214
  dataItemid?: string;
215
+ dataSectionName?: string;
213
216
  }
214
217
  declare const ButtonMenu: FC<ButtonMenuProps>;
215
218
 
@@ -231,6 +234,7 @@ interface CheckboxProps extends AccessibleProps {
231
234
  dataItemid?: string;
232
235
  isInvalidRedBackground?: boolean;
233
236
  isWarningError?: boolean;
237
+ dataSectionName?: string;
234
238
  }
235
239
  declare const Checkbox: FC<CheckboxProps>;
236
240
 
@@ -565,6 +569,7 @@ interface TagProps extends AccessibleProps {
565
569
  /** Optional ID for automation purposes */
566
570
  dataItemid?: string;
567
571
  rotate?: boolean;
572
+ dataSectionName?: string;
568
573
  }
569
574
  declare const Tag: FC<TagProps>;
570
575
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.13.97",
3
+ "version": "1.13.99",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",