mamba-layout 0.9.0 → 0.11.0
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.css +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js.js +918 -935
- package/dist/layout/components/index.d.ts +2 -0
- package/dist/layout/hooks/index.d.ts +1 -1
- package/dist/layout/hooks/{useState.d.ts → useLayoutState.d.ts} +1 -2
- package/dist/layout.css +1 -1
- package/dist/layout.es.js +9802 -9819
- package/dist/layout.global.js +31 -31
- package/package.json +1 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export { default as LanguageSelect } from './LanguageSelect.vue';
|
|
1
2
|
export { default as LayoutBreadcrumb } from './LayoutBreadcrumb.vue';
|
|
3
|
+
export { default as ThemeToggle } from './ThemeToggle.vue';
|
|
2
4
|
export { default as TimezoneSelect } from './TimezoneSelect.vue';
|
|
3
5
|
export { default as UserInfo } from './UserInfo.vue';
|
|
@@ -14,8 +14,7 @@ export interface LayoutContext {
|
|
|
14
14
|
isMobile: Ref<boolean>;
|
|
15
15
|
getMenus: () => RouteItem[];
|
|
16
16
|
}
|
|
17
|
-
export declare
|
|
18
|
-
export declare function useStateHook(): {
|
|
17
|
+
export declare function useLayoutState(): {
|
|
19
18
|
menus: Ref<{
|
|
20
19
|
[x: string]: unknown;
|
|
21
20
|
id?: string | undefined;
|