@yusr_systems/ui 6.0.8 → 6.0.10
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 +3 -1
- package/dist/yusr-ui.js +810 -801
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -806,12 +806,14 @@ export declare function Loading({ entityName }: {
|
|
|
806
806
|
export declare type MainMenuItem = {
|
|
807
807
|
title: string;
|
|
808
808
|
url: string;
|
|
809
|
-
icon?:
|
|
809
|
+
icon?: default_2.ReactNode;
|
|
810
810
|
hasAuth: boolean;
|
|
811
|
+
hasSeparator?: boolean;
|
|
811
812
|
subItems?: {
|
|
812
813
|
title: string;
|
|
813
814
|
url: string;
|
|
814
815
|
hasAuth: boolean;
|
|
816
|
+
hasSeparator?: boolean;
|
|
815
817
|
}[];
|
|
816
818
|
};
|
|
817
819
|
|