@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.
- package/dist/cjs/index.js +9 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/AppMenu/AppMenu.d.ts +2 -0
- package/dist/cjs/types/components/ButtonMenu/ButtonMenu.d.ts +1 -0
- package/dist/cjs/types/components/Checkbox/Checkbox.d.ts +1 -0
- package/dist/cjs/types/components/Tag/Tag.d.ts +1 -0
- package/dist/esm/index.js +9 -9
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/AppMenu/AppMenu.d.ts +2 -0
- package/dist/esm/types/components/ButtonMenu/ButtonMenu.d.ts +1 -0
- package/dist/esm/types/components/Checkbox/Checkbox.d.ts +1 -0
- package/dist/esm/types/components/Tag/Tag.d.ts +1 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -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>;
|
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
|
|