command-center-v3-common 0.0.31 → 0.0.33
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/index.d.ts +8 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -787,7 +787,7 @@ menuTitle: string;
|
|
787
787
|
}>>> & {
|
788
788
|
onOnChange?: (...args: any[]) => any;
|
789
789
|
}, {
|
790
|
-
menuList:
|
790
|
+
menuList: MenuListItem[];
|
791
791
|
menuTitle: string;
|
792
792
|
}, {}>;
|
793
793
|
|
@@ -1094,11 +1094,16 @@ declare interface IconProps {
|
|
1094
1094
|
|
1095
1095
|
declare function imageViewerClose(): void;
|
1096
1096
|
|
1097
|
-
declare interface
|
1097
|
+
declare interface MenuListItem {
|
1098
1098
|
label: string;
|
1099
1099
|
permission: string;
|
1100
1100
|
iconName: string;
|
1101
1101
|
path: string;
|
1102
|
+
childNavigation?: {
|
1103
|
+
permission?: string;
|
1104
|
+
path?: string;
|
1105
|
+
iconName?: string;
|
1106
|
+
}[];
|
1102
1107
|
}
|
1103
1108
|
|
1104
1109
|
declare function onClose(): void;
|
@@ -1197,7 +1202,7 @@ declare interface Props_3 {
|
|
1197
1202
|
}
|
1198
1203
|
|
1199
1204
|
declare interface Props_4 {
|
1200
|
-
menuList:
|
1205
|
+
menuList: MenuListItem[];
|
1201
1206
|
menuTitle: string;
|
1202
1207
|
}
|
1203
1208
|
|