aq-fe-framework 0.1.84 → 0.1.86

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.
@@ -0,0 +1,20 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ReactNode } from 'react';
3
+
4
+ interface I_BasicAppShell_LinkItem {
5
+ pageId?: number;
6
+ name?: string;
7
+ label: string;
8
+ status?: "Default" | "Prototype" | "New" | "Menu" | "Change";
9
+ link?: string;
10
+ links?: I_BasicAppShell_LinkItem[];
11
+ }
12
+ declare function BasicAppShell_transformMenuToEnum(prefixProjectName: string, menu: I_BasicAppShell_LinkItem[]): Record<string, number>;
13
+ declare function BasicAppShell({ children, menu }: {
14
+ children: ReactNode;
15
+ menu: I_BasicAppShell_LinkItem[];
16
+ }): react_jsx_runtime.JSX.Element;
17
+ declare const groupToTwoLevels: (menu: I_BasicAppShell_LinkItem[]) => I_BasicAppShell_LinkItem[];
18
+ declare function utils_layout_getItemsWithoutLinks(menu: I_BasicAppShell_LinkItem[]): I_BasicAppShell_LinkItem[];
19
+
20
+ export { BasicAppShell_transformMenuToEnum as B, type I_BasicAppShell_LinkItem as I, BasicAppShell as a, groupToTwoLevels as g, utils_layout_getItemsWithoutLinks as u };