@creatorsn/vfluent3 0.3.20 → 0.3.22
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/style.css +1 -1
- package/dist/types/packages/drawer/index.d.ts +44 -30
- package/dist/types/packages/drawer/source/index.vue.d.ts +44 -30
- package/dist/types/packages/info-box/index.d.ts +3 -3
- package/dist/types/packages/info-box/source/index.vue.d.ts +3 -3
- package/dist/types/packages/panel/index.d.ts +12 -12
- package/dist/types/packages/panel/source/index.vue.d.ts +12 -12
- package/dist/vfluent3.js +5929 -5836
- package/dist/vfluent3.umd.cjs +11 -11
- package/package.json +1 -1
|
@@ -5,12 +5,22 @@ export declare const FvDrawer: import("../../types/plugins/component-plugin").Co
|
|
|
5
5
|
readonly length?: number | undefined;
|
|
6
6
|
readonly position?: string | undefined;
|
|
7
7
|
readonly zIndex?: number | undefined;
|
|
8
|
+
readonly background?: string | undefined;
|
|
9
|
+
readonly borderRadius?: string | undefined;
|
|
8
10
|
readonly theme?: string | undefined;
|
|
11
|
+
readonly title?: string | undefined;
|
|
9
12
|
readonly disabled?: boolean | undefined;
|
|
10
13
|
readonly lang?: string | undefined;
|
|
11
|
-
readonly
|
|
14
|
+
readonly titleSize?: number | undefined;
|
|
15
|
+
readonly titleWeight?: string | undefined;
|
|
16
|
+
readonly titleColor?: string | undefined;
|
|
17
|
+
readonly controlPadding?: string | undefined;
|
|
18
|
+
readonly contentPadding?: string | undefined;
|
|
19
|
+
readonly showTitleBar?: boolean | undefined;
|
|
20
|
+
readonly isFooter?: boolean | undefined;
|
|
21
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
22
|
+
readonly isAcrylic?: boolean | undefined;
|
|
12
23
|
readonly appendBody?: boolean | undefined;
|
|
13
|
-
readonly background?: undefined;
|
|
14
24
|
readonly modelValue?: undefined;
|
|
15
25
|
};
|
|
16
26
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -21,19 +31,13 @@ export declare const FvDrawer: import("../../types/plugins/component-plugin").Co
|
|
|
21
31
|
zIndex: Function;
|
|
22
32
|
};
|
|
23
33
|
};
|
|
24
|
-
|
|
25
|
-
drawer: boolean | Function;
|
|
26
|
-
};
|
|
27
|
-
initShow: Function;
|
|
34
|
+
thisValue: Function;
|
|
28
35
|
window: {
|
|
29
36
|
click: (evt: any) => void;
|
|
30
37
|
};
|
|
31
38
|
}, {
|
|
32
39
|
$theme(): string;
|
|
33
|
-
|
|
34
|
-
get(): any;
|
|
35
|
-
set(val: any): void;
|
|
36
|
-
};
|
|
40
|
+
thisBorderRadius(): any;
|
|
37
41
|
}, {
|
|
38
42
|
init(): void;
|
|
39
43
|
globalAppendInit(): void;
|
|
@@ -51,12 +55,22 @@ export declare const FvDrawer: import("../../types/plugins/component-plugin").Co
|
|
|
51
55
|
readonly length?: number | undefined;
|
|
52
56
|
readonly position?: string | undefined;
|
|
53
57
|
readonly zIndex?: number | undefined;
|
|
58
|
+
readonly background?: string | undefined;
|
|
59
|
+
readonly borderRadius?: string | undefined;
|
|
54
60
|
readonly theme?: string | undefined;
|
|
61
|
+
readonly title?: string | undefined;
|
|
55
62
|
readonly disabled?: boolean | undefined;
|
|
56
63
|
readonly lang?: string | undefined;
|
|
57
|
-
readonly
|
|
64
|
+
readonly titleSize?: number | undefined;
|
|
65
|
+
readonly titleWeight?: string | undefined;
|
|
66
|
+
readonly titleColor?: string | undefined;
|
|
67
|
+
readonly controlPadding?: string | undefined;
|
|
68
|
+
readonly contentPadding?: string | undefined;
|
|
69
|
+
readonly showTitleBar?: boolean | undefined;
|
|
70
|
+
readonly isFooter?: boolean | undefined;
|
|
71
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
72
|
+
readonly isAcrylic?: boolean | undefined;
|
|
58
73
|
readonly appendBody?: boolean | undefined;
|
|
59
|
-
readonly background?: undefined;
|
|
60
74
|
readonly modelValue?: undefined;
|
|
61
75
|
};
|
|
62
76
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -67,19 +81,13 @@ export declare const FvDrawer: import("../../types/plugins/component-plugin").Co
|
|
|
67
81
|
zIndex: Function;
|
|
68
82
|
};
|
|
69
83
|
};
|
|
70
|
-
|
|
71
|
-
drawer: boolean | Function;
|
|
72
|
-
};
|
|
73
|
-
initShow: Function;
|
|
84
|
+
thisValue: Function;
|
|
74
85
|
window: {
|
|
75
86
|
click: (evt: any) => void;
|
|
76
87
|
};
|
|
77
88
|
}, {
|
|
78
89
|
$theme(): string;
|
|
79
|
-
|
|
80
|
-
get(): any;
|
|
81
|
-
set(val: any): void;
|
|
82
|
-
};
|
|
90
|
+
thisBorderRadius(): any;
|
|
83
91
|
}, {
|
|
84
92
|
init(): void;
|
|
85
93
|
globalAppendInit(): void;
|
|
@@ -94,12 +102,22 @@ export declare const FvDrawer: import("../../types/plugins/component-plugin").Co
|
|
|
94
102
|
readonly length?: number | undefined;
|
|
95
103
|
readonly position?: string | undefined;
|
|
96
104
|
readonly zIndex?: number | undefined;
|
|
105
|
+
readonly background?: string | undefined;
|
|
106
|
+
readonly borderRadius?: string | undefined;
|
|
97
107
|
readonly theme?: string | undefined;
|
|
108
|
+
readonly title?: string | undefined;
|
|
98
109
|
readonly disabled?: boolean | undefined;
|
|
99
110
|
readonly lang?: string | undefined;
|
|
100
|
-
readonly
|
|
111
|
+
readonly titleSize?: number | undefined;
|
|
112
|
+
readonly titleWeight?: string | undefined;
|
|
113
|
+
readonly titleColor?: string | undefined;
|
|
114
|
+
readonly controlPadding?: string | undefined;
|
|
115
|
+
readonly contentPadding?: string | undefined;
|
|
116
|
+
readonly showTitleBar?: boolean | undefined;
|
|
117
|
+
readonly isFooter?: boolean | undefined;
|
|
118
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
119
|
+
readonly isAcrylic?: boolean | undefined;
|
|
101
120
|
readonly appendBody?: boolean | undefined;
|
|
102
|
-
readonly background?: undefined;
|
|
103
121
|
readonly modelValue?: undefined;
|
|
104
122
|
};
|
|
105
123
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -110,19 +128,13 @@ export declare const FvDrawer: import("../../types/plugins/component-plugin").Co
|
|
|
110
128
|
zIndex: Function;
|
|
111
129
|
};
|
|
112
130
|
};
|
|
113
|
-
|
|
114
|
-
drawer: boolean | Function;
|
|
115
|
-
};
|
|
116
|
-
initShow: Function;
|
|
131
|
+
thisValue: Function;
|
|
117
132
|
window: {
|
|
118
133
|
click: (evt: any) => void;
|
|
119
134
|
};
|
|
120
135
|
}, {
|
|
121
136
|
$theme(): string;
|
|
122
|
-
|
|
123
|
-
get(): any;
|
|
124
|
-
set(val: any): void;
|
|
125
|
-
};
|
|
137
|
+
thisBorderRadius(): any;
|
|
126
138
|
}, {
|
|
127
139
|
init(): void;
|
|
128
140
|
globalAppendInit(): void;
|
|
@@ -130,7 +142,9 @@ export declare const FvDrawer: import("../../types/plugins/component-plugin").Co
|
|
|
130
142
|
close(): void;
|
|
131
143
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
132
144
|
$slots: {
|
|
145
|
+
header: (_: {}) => any;
|
|
133
146
|
default: (_: {}) => any;
|
|
147
|
+
footer: (_: {}) => any;
|
|
134
148
|
};
|
|
135
149
|
})>;
|
|
136
150
|
export default FvDrawer;
|
|
@@ -4,12 +4,22 @@ declare const _default: {
|
|
|
4
4
|
readonly length?: number | undefined;
|
|
5
5
|
readonly position?: string | undefined;
|
|
6
6
|
readonly zIndex?: number | undefined;
|
|
7
|
+
readonly background?: string | undefined;
|
|
8
|
+
readonly borderRadius?: string | undefined;
|
|
7
9
|
readonly theme?: string | undefined;
|
|
10
|
+
readonly title?: string | undefined;
|
|
8
11
|
readonly disabled?: boolean | undefined;
|
|
9
12
|
readonly lang?: string | undefined;
|
|
10
|
-
readonly
|
|
13
|
+
readonly titleSize?: number | undefined;
|
|
14
|
+
readonly titleWeight?: string | undefined;
|
|
15
|
+
readonly titleColor?: string | undefined;
|
|
16
|
+
readonly controlPadding?: string | undefined;
|
|
17
|
+
readonly contentPadding?: string | undefined;
|
|
18
|
+
readonly showTitleBar?: boolean | undefined;
|
|
19
|
+
readonly isFooter?: boolean | undefined;
|
|
20
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
21
|
+
readonly isAcrylic?: boolean | undefined;
|
|
11
22
|
readonly appendBody?: boolean | undefined;
|
|
12
|
-
readonly background?: undefined;
|
|
13
23
|
readonly modelValue?: undefined;
|
|
14
24
|
};
|
|
15
25
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -20,19 +30,13 @@ declare const _default: {
|
|
|
20
30
|
zIndex: Function;
|
|
21
31
|
};
|
|
22
32
|
};
|
|
23
|
-
|
|
24
|
-
drawer: boolean | Function;
|
|
25
|
-
};
|
|
26
|
-
initShow: Function;
|
|
33
|
+
thisValue: Function;
|
|
27
34
|
window: {
|
|
28
35
|
click: (evt: any) => void;
|
|
29
36
|
};
|
|
30
37
|
}, {
|
|
31
38
|
$theme(): string;
|
|
32
|
-
|
|
33
|
-
get(): any;
|
|
34
|
-
set(val: any): void;
|
|
35
|
-
};
|
|
39
|
+
thisBorderRadius(): any;
|
|
36
40
|
}, {
|
|
37
41
|
init(): void;
|
|
38
42
|
globalAppendInit(): void;
|
|
@@ -50,12 +54,22 @@ declare const _default: {
|
|
|
50
54
|
readonly length?: number | undefined;
|
|
51
55
|
readonly position?: string | undefined;
|
|
52
56
|
readonly zIndex?: number | undefined;
|
|
57
|
+
readonly background?: string | undefined;
|
|
58
|
+
readonly borderRadius?: string | undefined;
|
|
53
59
|
readonly theme?: string | undefined;
|
|
60
|
+
readonly title?: string | undefined;
|
|
54
61
|
readonly disabled?: boolean | undefined;
|
|
55
62
|
readonly lang?: string | undefined;
|
|
56
|
-
readonly
|
|
63
|
+
readonly titleSize?: number | undefined;
|
|
64
|
+
readonly titleWeight?: string | undefined;
|
|
65
|
+
readonly titleColor?: string | undefined;
|
|
66
|
+
readonly controlPadding?: string | undefined;
|
|
67
|
+
readonly contentPadding?: string | undefined;
|
|
68
|
+
readonly showTitleBar?: boolean | undefined;
|
|
69
|
+
readonly isFooter?: boolean | undefined;
|
|
70
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
71
|
+
readonly isAcrylic?: boolean | undefined;
|
|
57
72
|
readonly appendBody?: boolean | undefined;
|
|
58
|
-
readonly background?: undefined;
|
|
59
73
|
readonly modelValue?: undefined;
|
|
60
74
|
};
|
|
61
75
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -66,19 +80,13 @@ declare const _default: {
|
|
|
66
80
|
zIndex: Function;
|
|
67
81
|
};
|
|
68
82
|
};
|
|
69
|
-
|
|
70
|
-
drawer: boolean | Function;
|
|
71
|
-
};
|
|
72
|
-
initShow: Function;
|
|
83
|
+
thisValue: Function;
|
|
73
84
|
window: {
|
|
74
85
|
click: (evt: any) => void;
|
|
75
86
|
};
|
|
76
87
|
}, {
|
|
77
88
|
$theme(): string;
|
|
78
|
-
|
|
79
|
-
get(): any;
|
|
80
|
-
set(val: any): void;
|
|
81
|
-
};
|
|
89
|
+
thisBorderRadius(): any;
|
|
82
90
|
}, {
|
|
83
91
|
init(): void;
|
|
84
92
|
globalAppendInit(): void;
|
|
@@ -93,12 +101,22 @@ declare const _default: {
|
|
|
93
101
|
readonly length?: number | undefined;
|
|
94
102
|
readonly position?: string | undefined;
|
|
95
103
|
readonly zIndex?: number | undefined;
|
|
104
|
+
readonly background?: string | undefined;
|
|
105
|
+
readonly borderRadius?: string | undefined;
|
|
96
106
|
readonly theme?: string | undefined;
|
|
107
|
+
readonly title?: string | undefined;
|
|
97
108
|
readonly disabled?: boolean | undefined;
|
|
98
109
|
readonly lang?: string | undefined;
|
|
99
|
-
readonly
|
|
110
|
+
readonly titleSize?: number | undefined;
|
|
111
|
+
readonly titleWeight?: string | undefined;
|
|
112
|
+
readonly titleColor?: string | undefined;
|
|
113
|
+
readonly controlPadding?: string | undefined;
|
|
114
|
+
readonly contentPadding?: string | undefined;
|
|
115
|
+
readonly showTitleBar?: boolean | undefined;
|
|
116
|
+
readonly isFooter?: boolean | undefined;
|
|
117
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
118
|
+
readonly isAcrylic?: boolean | undefined;
|
|
100
119
|
readonly appendBody?: boolean | undefined;
|
|
101
|
-
readonly background?: undefined;
|
|
102
120
|
readonly modelValue?: undefined;
|
|
103
121
|
};
|
|
104
122
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -109,19 +127,13 @@ declare const _default: {
|
|
|
109
127
|
zIndex: Function;
|
|
110
128
|
};
|
|
111
129
|
};
|
|
112
|
-
|
|
113
|
-
drawer: boolean | Function;
|
|
114
|
-
};
|
|
115
|
-
initShow: Function;
|
|
130
|
+
thisValue: Function;
|
|
116
131
|
window: {
|
|
117
132
|
click: (evt: any) => void;
|
|
118
133
|
};
|
|
119
134
|
}, {
|
|
120
135
|
$theme(): string;
|
|
121
|
-
|
|
122
|
-
get(): any;
|
|
123
|
-
set(val: any): void;
|
|
124
|
-
};
|
|
136
|
+
thisBorderRadius(): any;
|
|
125
137
|
}, {
|
|
126
138
|
init(): void;
|
|
127
139
|
globalAppendInit(): void;
|
|
@@ -129,7 +141,9 @@ declare const _default: {
|
|
|
129
141
|
close(): void;
|
|
130
142
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
131
143
|
$slots: {
|
|
144
|
+
header: (_: {}) => any;
|
|
132
145
|
default: (_: {}) => any;
|
|
146
|
+
footer: (_: {}) => any;
|
|
133
147
|
};
|
|
134
148
|
});
|
|
135
149
|
export default _default;
|
|
@@ -9,9 +9,9 @@ export declare const FvInfoBox: import("../../types/plugins/component-plugin").C
|
|
|
9
9
|
readonly lang?: string | undefined;
|
|
10
10
|
readonly status?: string | undefined;
|
|
11
11
|
readonly destroy?: boolean | Function | undefined;
|
|
12
|
+
readonly showTitleBar?: boolean | undefined;
|
|
12
13
|
readonly confirmTitle?: string | undefined;
|
|
13
14
|
readonly cancelTitle?: string | undefined;
|
|
14
|
-
readonly showTitleBar?: boolean | undefined;
|
|
15
15
|
readonly acrylic?: boolean | undefined;
|
|
16
16
|
};
|
|
17
17
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
@@ -64,9 +64,9 @@ export declare const FvInfoBox: import("../../types/plugins/component-plugin").C
|
|
|
64
64
|
readonly lang?: string | undefined;
|
|
65
65
|
readonly status?: string | undefined;
|
|
66
66
|
readonly destroy?: boolean | Function | undefined;
|
|
67
|
+
readonly showTitleBar?: boolean | undefined;
|
|
67
68
|
readonly confirmTitle?: string | undefined;
|
|
68
69
|
readonly cancelTitle?: string | undefined;
|
|
69
|
-
readonly showTitleBar?: boolean | undefined;
|
|
70
70
|
readonly acrylic?: boolean | undefined;
|
|
71
71
|
};
|
|
72
72
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
@@ -116,9 +116,9 @@ export declare const FvInfoBox: import("../../types/plugins/component-plugin").C
|
|
|
116
116
|
readonly lang?: string | undefined;
|
|
117
117
|
readonly status?: string | undefined;
|
|
118
118
|
readonly destroy?: boolean | Function | undefined;
|
|
119
|
+
readonly showTitleBar?: boolean | undefined;
|
|
119
120
|
readonly confirmTitle?: string | undefined;
|
|
120
121
|
readonly cancelTitle?: string | undefined;
|
|
121
|
-
readonly showTitleBar?: boolean | undefined;
|
|
122
122
|
readonly acrylic?: boolean | undefined;
|
|
123
123
|
};
|
|
124
124
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
@@ -8,9 +8,9 @@ declare const _default: {
|
|
|
8
8
|
readonly lang?: string | undefined;
|
|
9
9
|
readonly status?: string | undefined;
|
|
10
10
|
readonly destroy?: boolean | Function | undefined;
|
|
11
|
+
readonly showTitleBar?: boolean | undefined;
|
|
11
12
|
readonly confirmTitle?: string | undefined;
|
|
12
13
|
readonly cancelTitle?: string | undefined;
|
|
13
|
-
readonly showTitleBar?: boolean | undefined;
|
|
14
14
|
readonly acrylic?: boolean | undefined;
|
|
15
15
|
};
|
|
16
16
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
@@ -63,9 +63,9 @@ declare const _default: {
|
|
|
63
63
|
readonly lang?: string | undefined;
|
|
64
64
|
readonly status?: string | undefined;
|
|
65
65
|
readonly destroy?: boolean | Function | undefined;
|
|
66
|
+
readonly showTitleBar?: boolean | undefined;
|
|
66
67
|
readonly confirmTitle?: string | undefined;
|
|
67
68
|
readonly cancelTitle?: string | undefined;
|
|
68
|
-
readonly showTitleBar?: boolean | undefined;
|
|
69
69
|
readonly acrylic?: boolean | undefined;
|
|
70
70
|
};
|
|
71
71
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
@@ -115,9 +115,9 @@ declare const _default: {
|
|
|
115
115
|
readonly lang?: string | undefined;
|
|
116
116
|
readonly status?: string | undefined;
|
|
117
117
|
readonly destroy?: boolean | Function | undefined;
|
|
118
|
+
readonly showTitleBar?: boolean | undefined;
|
|
118
119
|
readonly confirmTitle?: string | undefined;
|
|
119
120
|
readonly cancelTitle?: string | undefined;
|
|
120
|
-
readonly showTitleBar?: boolean | undefined;
|
|
121
121
|
readonly acrylic?: boolean | undefined;
|
|
122
122
|
};
|
|
123
123
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
@@ -10,19 +10,19 @@ export declare const FvPanel: import("../../types/plugins/component-plugin").Com
|
|
|
10
10
|
readonly disabled?: boolean | undefined;
|
|
11
11
|
readonly lang?: string | undefined;
|
|
12
12
|
readonly modelValue?: boolean | undefined;
|
|
13
|
-
readonly showTitleBar?: boolean | undefined;
|
|
14
13
|
readonly titleSize?: number | undefined;
|
|
15
14
|
readonly titleWeight?: number | undefined;
|
|
16
15
|
readonly titleColor?: string | undefined;
|
|
17
16
|
readonly controlPadding?: string | undefined;
|
|
18
17
|
readonly contentPadding?: string | undefined;
|
|
18
|
+
readonly showTitleBar?: boolean | undefined;
|
|
19
|
+
readonly isFooter?: boolean | undefined;
|
|
20
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
21
|
+
readonly isAcrylic?: boolean | undefined;
|
|
19
22
|
readonly isNearSide?: boolean | undefined;
|
|
20
23
|
readonly isBottomSide?: boolean | undefined;
|
|
21
24
|
readonly isTopSide?: boolean | undefined;
|
|
22
25
|
readonly isCentralSide?: boolean | undefined;
|
|
23
|
-
readonly isLightDismiss?: boolean | undefined;
|
|
24
|
-
readonly isFooter?: boolean | undefined;
|
|
25
|
-
readonly isAcrylic?: boolean | undefined;
|
|
26
26
|
readonly teleport?: boolean | undefined;
|
|
27
27
|
};
|
|
28
28
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -58,19 +58,19 @@ export declare const FvPanel: import("../../types/plugins/component-plugin").Com
|
|
|
58
58
|
readonly disabled?: boolean | undefined;
|
|
59
59
|
readonly lang?: string | undefined;
|
|
60
60
|
readonly modelValue?: boolean | undefined;
|
|
61
|
-
readonly showTitleBar?: boolean | undefined;
|
|
62
61
|
readonly titleSize?: number | undefined;
|
|
63
62
|
readonly titleWeight?: number | undefined;
|
|
64
63
|
readonly titleColor?: string | undefined;
|
|
65
64
|
readonly controlPadding?: string | undefined;
|
|
66
65
|
readonly contentPadding?: string | undefined;
|
|
66
|
+
readonly showTitleBar?: boolean | undefined;
|
|
67
|
+
readonly isFooter?: boolean | undefined;
|
|
68
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
69
|
+
readonly isAcrylic?: boolean | undefined;
|
|
67
70
|
readonly isNearSide?: boolean | undefined;
|
|
68
71
|
readonly isBottomSide?: boolean | undefined;
|
|
69
72
|
readonly isTopSide?: boolean | undefined;
|
|
70
73
|
readonly isCentralSide?: boolean | undefined;
|
|
71
|
-
readonly isLightDismiss?: boolean | undefined;
|
|
72
|
-
readonly isFooter?: boolean | undefined;
|
|
73
|
-
readonly isAcrylic?: boolean | undefined;
|
|
74
74
|
readonly teleport?: boolean | undefined;
|
|
75
75
|
};
|
|
76
76
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -103,19 +103,19 @@ export declare const FvPanel: import("../../types/plugins/component-plugin").Com
|
|
|
103
103
|
readonly disabled?: boolean | undefined;
|
|
104
104
|
readonly lang?: string | undefined;
|
|
105
105
|
readonly modelValue?: boolean | undefined;
|
|
106
|
-
readonly showTitleBar?: boolean | undefined;
|
|
107
106
|
readonly titleSize?: number | undefined;
|
|
108
107
|
readonly titleWeight?: number | undefined;
|
|
109
108
|
readonly titleColor?: string | undefined;
|
|
110
109
|
readonly controlPadding?: string | undefined;
|
|
111
110
|
readonly contentPadding?: string | undefined;
|
|
111
|
+
readonly showTitleBar?: boolean | undefined;
|
|
112
|
+
readonly isFooter?: boolean | undefined;
|
|
113
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
114
|
+
readonly isAcrylic?: boolean | undefined;
|
|
112
115
|
readonly isNearSide?: boolean | undefined;
|
|
113
116
|
readonly isBottomSide?: boolean | undefined;
|
|
114
117
|
readonly isTopSide?: boolean | undefined;
|
|
115
118
|
readonly isCentralSide?: boolean | undefined;
|
|
116
|
-
readonly isLightDismiss?: boolean | undefined;
|
|
117
|
-
readonly isFooter?: boolean | undefined;
|
|
118
|
-
readonly isAcrylic?: boolean | undefined;
|
|
119
119
|
readonly teleport?: boolean | undefined;
|
|
120
120
|
};
|
|
121
121
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -9,19 +9,19 @@ declare const _default: {
|
|
|
9
9
|
readonly disabled?: boolean | undefined;
|
|
10
10
|
readonly lang?: string | undefined;
|
|
11
11
|
readonly modelValue?: boolean | undefined;
|
|
12
|
-
readonly showTitleBar?: boolean | undefined;
|
|
13
12
|
readonly titleSize?: number | undefined;
|
|
14
13
|
readonly titleWeight?: number | undefined;
|
|
15
14
|
readonly titleColor?: string | undefined;
|
|
16
15
|
readonly controlPadding?: string | undefined;
|
|
17
16
|
readonly contentPadding?: string | undefined;
|
|
17
|
+
readonly showTitleBar?: boolean | undefined;
|
|
18
|
+
readonly isFooter?: boolean | undefined;
|
|
19
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
20
|
+
readonly isAcrylic?: boolean | undefined;
|
|
18
21
|
readonly isNearSide?: boolean | undefined;
|
|
19
22
|
readonly isBottomSide?: boolean | undefined;
|
|
20
23
|
readonly isTopSide?: boolean | undefined;
|
|
21
24
|
readonly isCentralSide?: boolean | undefined;
|
|
22
|
-
readonly isLightDismiss?: boolean | undefined;
|
|
23
|
-
readonly isFooter?: boolean | undefined;
|
|
24
|
-
readonly isAcrylic?: boolean | undefined;
|
|
25
25
|
readonly teleport?: boolean | undefined;
|
|
26
26
|
};
|
|
27
27
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -57,19 +57,19 @@ declare const _default: {
|
|
|
57
57
|
readonly disabled?: boolean | undefined;
|
|
58
58
|
readonly lang?: string | undefined;
|
|
59
59
|
readonly modelValue?: boolean | undefined;
|
|
60
|
-
readonly showTitleBar?: boolean | undefined;
|
|
61
60
|
readonly titleSize?: number | undefined;
|
|
62
61
|
readonly titleWeight?: number | undefined;
|
|
63
62
|
readonly titleColor?: string | undefined;
|
|
64
63
|
readonly controlPadding?: string | undefined;
|
|
65
64
|
readonly contentPadding?: string | undefined;
|
|
65
|
+
readonly showTitleBar?: boolean | undefined;
|
|
66
|
+
readonly isFooter?: boolean | undefined;
|
|
67
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
68
|
+
readonly isAcrylic?: boolean | undefined;
|
|
66
69
|
readonly isNearSide?: boolean | undefined;
|
|
67
70
|
readonly isBottomSide?: boolean | undefined;
|
|
68
71
|
readonly isTopSide?: boolean | undefined;
|
|
69
72
|
readonly isCentralSide?: boolean | undefined;
|
|
70
|
-
readonly isLightDismiss?: boolean | undefined;
|
|
71
|
-
readonly isFooter?: boolean | undefined;
|
|
72
|
-
readonly isAcrylic?: boolean | undefined;
|
|
73
73
|
readonly teleport?: boolean | undefined;
|
|
74
74
|
};
|
|
75
75
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -102,19 +102,19 @@ declare const _default: {
|
|
|
102
102
|
readonly disabled?: boolean | undefined;
|
|
103
103
|
readonly lang?: string | undefined;
|
|
104
104
|
readonly modelValue?: boolean | undefined;
|
|
105
|
-
readonly showTitleBar?: boolean | undefined;
|
|
106
105
|
readonly titleSize?: number | undefined;
|
|
107
106
|
readonly titleWeight?: number | undefined;
|
|
108
107
|
readonly titleColor?: string | undefined;
|
|
109
108
|
readonly controlPadding?: string | undefined;
|
|
110
109
|
readonly contentPadding?: string | undefined;
|
|
110
|
+
readonly showTitleBar?: boolean | undefined;
|
|
111
|
+
readonly isFooter?: boolean | undefined;
|
|
112
|
+
readonly isLightDismiss?: boolean | undefined;
|
|
113
|
+
readonly isAcrylic?: boolean | undefined;
|
|
111
114
|
readonly isNearSide?: boolean | undefined;
|
|
112
115
|
readonly isBottomSide?: boolean | undefined;
|
|
113
116
|
readonly isTopSide?: boolean | undefined;
|
|
114
117
|
readonly isCentralSide?: boolean | undefined;
|
|
115
|
-
readonly isLightDismiss?: boolean | undefined;
|
|
116
|
-
readonly isFooter?: boolean | undefined;
|
|
117
|
-
readonly isAcrylic?: boolean | undefined;
|
|
118
118
|
readonly teleport?: boolean | undefined;
|
|
119
119
|
};
|
|
120
120
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|