@gonsin/gview 2.0.135 → 2.0.137
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.mjs +1379 -1369
- package/dist/types/constant/local.d.ts +1 -0
- package/dist/types/stores/setting.d.ts +1 -0
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export declare const LANG_CONFIG: string;
|
|
|
11
11
|
export declare const LOCAL_MENU: string;
|
|
12
12
|
export declare const LOCAL_SIDE_MENU_CONFIG: string;
|
|
13
13
|
export declare const LOCAL_SIDE_MENU_WIDTH: string;
|
|
14
|
+
export declare const LOCAL_IS_SIDE_SELF_DRAGGING: string;
|
|
14
15
|
export declare const LOCAL_INIT_TAB_MENU_LIST: string;
|
|
15
16
|
export declare const LOCAL_TAB_MENU: string;
|
|
16
17
|
export declare const TOKEN_NAME: string;
|
|
@@ -72,6 +72,7 @@ export declare const useSettingStore: import("pinia").StoreDefinition<"setting",
|
|
|
72
72
|
* @description 设置用户登录状态
|
|
73
73
|
*/
|
|
74
74
|
setUserLoginStatus(status: boolean): void;
|
|
75
|
+
setIsSideSelfDragging(flag: boolean): void;
|
|
75
76
|
setSideMenuWidth(width: number): void;
|
|
76
77
|
/**
|
|
77
78
|
* @description: 初始化侧边栏菜单树状数据
|