@gx-design-vue/pro-layout-components 0.1.0-beta.4 → 0.1.0-beta.6
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/RightContent/index.d.ts +1 -16
- package/dist/RightContent/props.d.ts +0 -6
- package/dist/ThemeEditor/components/Setting/index.d.ts +5 -5
- package/dist/{index-Bc7hR1Ge.js → index-CKKhVDR6.js} +765 -781
- package/dist/{index-D7DswqyL.js → index-DTZ6nANN.js} +1 -1
- package/dist/pro-layout-components.js +3 -3
- package/dist/pro-layout-components.umd.cjs +3 -3
- package/package.json +2 -2
|
@@ -45,13 +45,7 @@ declare const GlobalRightContent: import("vue").DefineComponent<import("vue").Ex
|
|
|
45
45
|
default: () => never[];
|
|
46
46
|
};
|
|
47
47
|
historyKey: import("vue").PropType<string>;
|
|
48
|
-
|
|
49
|
-
type: import("vue").PropType<boolean | "system">;
|
|
50
|
-
default: undefined;
|
|
51
|
-
};
|
|
52
|
-
onDarkChange: import("vue").PropType<(value?: boolean | "system") => void>;
|
|
53
|
-
'onUpdate:dark': import("vue").PropType<(value?: boolean | "system") => void>;
|
|
54
|
-
}>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("logout" | "darkChange" | "clickSettings" | "update:dark" | "lockOpenChange")[], "logout" | "darkChange" | "clickSettings" | "update:dark" | "lockOpenChange", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
+
}>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("logout" | "clickSettings" | "lockOpenChange")[], "logout" | "clickSettings" | "lockOpenChange", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
49
|
actions: {
|
|
56
50
|
type: import("vue").PropType<RightContentActions | false>;
|
|
57
51
|
default: () => {};
|
|
@@ -96,17 +90,9 @@ declare const GlobalRightContent: import("vue").DefineComponent<import("vue").Ex
|
|
|
96
90
|
default: () => never[];
|
|
97
91
|
};
|
|
98
92
|
historyKey: import("vue").PropType<string>;
|
|
99
|
-
dark: {
|
|
100
|
-
type: import("vue").PropType<boolean | "system">;
|
|
101
|
-
default: undefined;
|
|
102
|
-
};
|
|
103
|
-
onDarkChange: import("vue").PropType<(value?: boolean | "system") => void>;
|
|
104
|
-
'onUpdate:dark': import("vue").PropType<(value?: boolean | "system") => void>;
|
|
105
93
|
}>> & Readonly<{
|
|
106
94
|
onLogout?: ((...args: any[]) => any) | undefined;
|
|
107
95
|
onClickSettings?: ((...args: any[]) => any) | undefined;
|
|
108
|
-
onDarkChange?: ((...args: any[]) => any) | undefined;
|
|
109
|
-
"onUpdate:dark"?: ((...args: any[]) => any) | undefined;
|
|
110
96
|
onLockOpenChange?: ((...args: any[]) => any) | undefined;
|
|
111
97
|
}>, {
|
|
112
98
|
name: string;
|
|
@@ -327,7 +313,6 @@ declare const GlobalRightContent: import("vue").DefineComponent<import("vue").Ex
|
|
|
327
313
|
dropdownMenuRender: import("@gx-design-vue/pro-utils/dist").CustomRender;
|
|
328
314
|
dropdownMenuExtraItemRender: import("@gx-design-vue/pro-utils/dist").CustomRender;
|
|
329
315
|
dataSource: import("@gx-design-vue/pro-layout/dist").AppRouteModule[];
|
|
330
|
-
dark: boolean | "system";
|
|
331
316
|
}, SlotsType<{
|
|
332
317
|
default(): void;
|
|
333
318
|
actionsRender(classNames: string[]): void;
|
|
@@ -54,11 +54,5 @@ export declare const getRightContentProps: () => {
|
|
|
54
54
|
default: () => never[];
|
|
55
55
|
};
|
|
56
56
|
historyKey: PropType<string>;
|
|
57
|
-
dark: {
|
|
58
|
-
type: PropType<boolean | "system">;
|
|
59
|
-
default: undefined;
|
|
60
|
-
};
|
|
61
|
-
onDarkChange: PropType<(value?: boolean | "system") => void>;
|
|
62
|
-
'onUpdate:dark': PropType<(value?: boolean | "system") => void>;
|
|
63
57
|
};
|
|
64
58
|
export type RightContentProps = Partial<ExtractPropTypes<ReturnType<typeof getRightContentProps>>>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ProLayoutConfig, ThemeValue } from '@gx-design-vue/pro-layout';
|
|
2
2
|
import type { PropType } from 'vue';
|
|
3
3
|
import type { ExtraConfigState } from '../../props';
|
|
4
4
|
export declare const pickDefaultPropsKeys: string[];
|
|
5
5
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
6
|
disabled: PropType<Partial<ProLayoutConfig>>;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
theme: PropType<ThemeValue>;
|
|
8
|
+
onChangeTheme: PropType<(value: ThemeValue) => void>;
|
|
9
9
|
onChangeConfig: PropType<(value: Partial<ProLayoutConfig>) => void>;
|
|
10
10
|
onChangeExtraConfig: PropType<(value: ExtraConfigState) => void>;
|
|
11
11
|
progress: {
|
|
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
34
34
|
};
|
|
35
35
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
36
|
disabled: PropType<Partial<ProLayoutConfig>>;
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
theme: PropType<ThemeValue>;
|
|
38
|
+
onChangeTheme: PropType<(value: ThemeValue) => void>;
|
|
39
39
|
onChangeConfig: PropType<(value: Partial<ProLayoutConfig>) => void>;
|
|
40
40
|
onChangeExtraConfig: PropType<(value: ExtraConfigState) => void>;
|
|
41
41
|
progress: {
|