@dao-style/core 1.5.1-beta.1 → 1.5.1-beta.10
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/components/action-icon/action-icon.d.ts +27 -7
- package/dist/components/action-icon/action-icon.vue.d.ts +11 -2
- package/dist/components/action-icon/props.d.ts +4 -2
- package/dist/components/autocomplete/autocomplete.d.ts +7 -7
- package/dist/components/autocomplete/autocomplete.vue.d.ts +2 -2
- package/dist/components/button/button.d.ts +20 -1
- package/dist/components/button/button.vue.d.ts +9 -0
- package/dist/components/button/props.d.ts +4 -0
- package/dist/components/checkbox/checkbox-group.d.ts +3 -3
- package/dist/components/checkbox/checkbox-group.vue.d.ts +1 -1
- package/dist/components/checkbox/checkbox.d.ts +3 -3
- package/dist/components/checkbox/checkbox.vue.d.ts +1 -1
- package/dist/components/dialog/dialog.d.ts +29 -10
- package/dist/components/dialog/dialog.vue.d.ts +12 -3
- package/dist/components/dialog/props.d.ts +4 -0
- package/dist/components/ellipsis/ellipsis.d.ts +78 -78
- package/dist/components/ellipsis/ellipsis.vue.d.ts +26 -26
- package/dist/components/expansion/expansion.d.ts +3 -3
- package/dist/components/expansion/expansion.vue.d.ts +1 -1
- package/dist/components/input/input.d.ts +3 -3
- package/dist/components/input/input.vue.d.ts +1 -1
- package/dist/components/plugin.d.ts +2 -1
- package/dist/components/popover/popover.d.ts +13 -13
- package/dist/components/popover/popover.vue.d.ts +4 -4
- package/dist/components/popper/index.d.ts +1 -0
- package/dist/components/popper/popper.d.ts +13 -13
- package/dist/components/popper/popper.vue.d.ts +14 -16
- package/dist/components/popper/use-popper.d.ts +13 -0
- package/dist/components/radio/radio-group.d.ts +3 -3
- package/dist/components/radio/radio-group.vue.d.ts +1 -1
- package/dist/components/radio/radio.d.ts +3 -3
- package/dist/components/radio/radio.vue.d.ts +1 -1
- package/dist/components/select/select.d.ts +42 -42
- package/dist/components/select/select.vue.d.ts +14 -14
- package/dist/components/switch/switch.vue.d.ts +1 -1
- package/dist/components/table/table-props.d.ts +4 -0
- package/dist/components/table/table.d.ts +20 -1
- package/dist/components/table/table.vue.d.ts +9 -0
- package/dist/components/tabs/tabs.d.ts +3 -3
- package/dist/components/tabs/tabs.vue.d.ts +1 -1
- package/dist/components/tooltip/tooltip.d.ts +13 -13
- package/dist/components/tooltip/tooltip.vue.d.ts +4 -4
- package/dist/components/transfer/transfer.d.ts +3 -3
- package/dist/components/transfer/transfer.vue.d.ts +1 -1
- package/dist/dao-style.js +6 -6
- package/dist/dao-style.mjs +5018 -4800
- package/dist/directives/index.d.ts +1 -0
- package/dist/directives/plugin.d.ts +3 -0
- package/dist/directives/tooltip/directive.d.ts +3 -0
- package/dist/directives/tooltip/index.d.ts +4 -0
- package/dist/directives/tooltip/wrapper.d.ts +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/styles/color/alias.js +61 -0
- package/dist/styles/color/preset.js +15 -0
- package/dist/styles/color/var.js +118 -0
- package/package.json +1 -1
- package/scripts/transform-variable.mjs +36 -0
- package/volar.d.ts +2 -0
|
@@ -10,6 +10,7 @@ declare const DaoActionIcon: {
|
|
|
10
10
|
name: string;
|
|
11
11
|
size: import("./props").ActionIconSize;
|
|
12
12
|
tooltipContent: string;
|
|
13
|
+
tooltipDisabled: boolean;
|
|
13
14
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
14
15
|
name: {
|
|
15
16
|
type: StringConstructor;
|
|
@@ -32,7 +33,11 @@ declare const DaoActionIcon: {
|
|
|
32
33
|
type: StringConstructor;
|
|
33
34
|
default: string;
|
|
34
35
|
};
|
|
35
|
-
|
|
36
|
+
tooltipDisabled: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "name" | "size" | "tooltipContent" | "tooltipDisabled">;
|
|
36
41
|
$attrs: {
|
|
37
42
|
[x: string]: unknown;
|
|
38
43
|
};
|
|
@@ -44,7 +49,7 @@ declare const DaoActionIcon: {
|
|
|
44
49
|
}>;
|
|
45
50
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
46
51
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
47
|
-
$emit: (event:
|
|
52
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
48
53
|
$el: any;
|
|
49
54
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
50
55
|
name: {
|
|
@@ -68,18 +73,23 @@ declare const DaoActionIcon: {
|
|
|
68
73
|
type: StringConstructor;
|
|
69
74
|
default: string;
|
|
70
75
|
};
|
|
71
|
-
|
|
76
|
+
tooltipDisabled: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
}>>, {
|
|
72
81
|
isDivider: boolean;
|
|
73
82
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
74
83
|
onMouseEnter: () => void;
|
|
75
84
|
onMouseLeave: () => void;
|
|
76
85
|
showTip: import("vue").Ref<boolean>;
|
|
77
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
86
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
78
87
|
type: import("./props").ActionIconType;
|
|
79
88
|
disabled: boolean;
|
|
80
89
|
name: string;
|
|
81
90
|
size: import("./props").ActionIconSize;
|
|
82
91
|
tooltipContent: string;
|
|
92
|
+
tooltipDisabled: boolean;
|
|
83
93
|
}, {}, string> & {
|
|
84
94
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
85
95
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -122,7 +132,11 @@ declare const DaoActionIcon: {
|
|
|
122
132
|
type: StringConstructor;
|
|
123
133
|
default: string;
|
|
124
134
|
};
|
|
125
|
-
|
|
135
|
+
tooltipDisabled: {
|
|
136
|
+
type: BooleanConstructor;
|
|
137
|
+
default: boolean;
|
|
138
|
+
};
|
|
139
|
+
}>> & import("vue").ShallowUnwrapRef<{
|
|
126
140
|
isDivider: boolean;
|
|
127
141
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
128
142
|
onMouseEnter: () => void;
|
|
@@ -154,22 +168,28 @@ declare const DaoActionIcon: {
|
|
|
154
168
|
type: StringConstructor;
|
|
155
169
|
default: string;
|
|
156
170
|
};
|
|
157
|
-
|
|
171
|
+
tooltipDisabled: {
|
|
172
|
+
type: BooleanConstructor;
|
|
173
|
+
default: boolean;
|
|
174
|
+
};
|
|
175
|
+
}>>, {
|
|
158
176
|
isDivider: boolean;
|
|
159
177
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
160
178
|
onMouseEnter: () => void;
|
|
161
179
|
onMouseLeave: () => void;
|
|
162
180
|
showTip: import("vue").Ref<boolean>;
|
|
163
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
181
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
164
182
|
type: import("./props").ActionIconType;
|
|
165
183
|
disabled: boolean;
|
|
166
184
|
name: string;
|
|
167
185
|
size: import("./props").ActionIconSize;
|
|
168
186
|
tooltipContent: string;
|
|
187
|
+
tooltipDisabled: boolean;
|
|
169
188
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
170
189
|
$props: Partial<ActionIconProps>;
|
|
171
190
|
$slots: {
|
|
172
191
|
default: SlotFn;
|
|
192
|
+
tooltipContent: SlotFn;
|
|
173
193
|
};
|
|
174
194
|
});
|
|
175
195
|
export default DaoActionIcon;
|
|
@@ -20,13 +20,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
type: StringConstructor;
|
|
21
21
|
default: string;
|
|
22
22
|
};
|
|
23
|
+
tooltipDisabled: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
23
27
|
}, {
|
|
24
28
|
isDivider: boolean;
|
|
25
29
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
26
30
|
onMouseEnter: () => void;
|
|
27
31
|
onMouseLeave: () => void;
|
|
28
32
|
showTip: import("vue").Ref<boolean>;
|
|
29
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
33
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
34
|
name: {
|
|
31
35
|
type: StringConstructor;
|
|
32
36
|
default: string;
|
|
@@ -48,11 +52,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
52
|
type: StringConstructor;
|
|
49
53
|
default: string;
|
|
50
54
|
};
|
|
51
|
-
|
|
55
|
+
tooltipDisabled: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
}>>, {
|
|
52
60
|
type: import("./props").ActionIconType;
|
|
53
61
|
disabled: boolean;
|
|
54
62
|
name: string;
|
|
55
63
|
size: import("./props").ActionIconSize;
|
|
56
64
|
tooltipContent: string;
|
|
65
|
+
tooltipDisabled: boolean;
|
|
57
66
|
}>;
|
|
58
67
|
export default _default;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { type PropType, ExtractPropTypes } from 'vue';
|
|
2
2
|
export type ActionIconType = 'button' | 'divider';
|
|
3
3
|
export type ActionIconSize = 'md' | 'sm' | 'xs';
|
|
4
|
-
export declare const actionIconEmits: {};
|
|
5
|
-
export type ActionIconEmits = typeof actionIconEmits;
|
|
6
4
|
export declare const actionIconProps: {
|
|
7
5
|
name: {
|
|
8
6
|
type: StringConstructor;
|
|
@@ -25,5 +23,9 @@ export declare const actionIconProps: {
|
|
|
25
23
|
type: StringConstructor;
|
|
26
24
|
default: string;
|
|
27
25
|
};
|
|
26
|
+
tooltipDisabled: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
export type ActionIconProps = ExtractPropTypes<typeof actionIconProps>;
|
|
@@ -97,7 +97,7 @@ declare const DaoAutocomplete: {
|
|
|
97
97
|
}>;
|
|
98
98
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
99
99
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
100
|
-
$emit: ((event: "focus", event: FocusEvent) => void) & ((event: "
|
|
100
|
+
$emit: ((event: "focus", event: FocusEvent) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "change", val: import("..").ModalValueType) => void) & ((event: "update:modelValue", val: import("..").ModalValueType) => void);
|
|
101
101
|
$el: any;
|
|
102
102
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
103
103
|
modelValue: {
|
|
@@ -266,7 +266,7 @@ declare const DaoAutocomplete: {
|
|
|
266
266
|
}>;
|
|
267
267
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
268
268
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
269
|
-
$emit: (event: "input" | "focus" | "
|
|
269
|
+
$emit: (event: "input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset", ...args: any[]) => void;
|
|
270
270
|
$el: any;
|
|
271
271
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
272
272
|
modelValue: {
|
|
@@ -347,7 +347,7 @@ declare const DaoAutocomplete: {
|
|
|
347
347
|
inputType: import("vue").ComputedRef<import("..").InputType>;
|
|
348
348
|
passwordIcon: import("vue").ComputedRef<"icon-eye" | "icon-eye-slash">;
|
|
349
349
|
toggleShowPassword: () => void;
|
|
350
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "
|
|
350
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset")[], string, {
|
|
351
351
|
type: import("..").InputType;
|
|
352
352
|
modelValue: import("..").ModalValueType;
|
|
353
353
|
disabled: boolean;
|
|
@@ -672,7 +672,7 @@ declare const DaoAutocomplete: {
|
|
|
672
672
|
}>;
|
|
673
673
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
674
674
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
675
|
-
$emit: (event: "input" | "focus" | "
|
|
675
|
+
$emit: (event: "input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset", ...args: any[]) => void;
|
|
676
676
|
$el: any;
|
|
677
677
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
678
678
|
modelValue: {
|
|
@@ -753,7 +753,7 @@ declare const DaoAutocomplete: {
|
|
|
753
753
|
inputType: import("vue").ComputedRef<import("..").InputType>;
|
|
754
754
|
passwordIcon: import("vue").ComputedRef<"icon-eye" | "icon-eye-slash">;
|
|
755
755
|
toggleShowPassword: () => void;
|
|
756
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "
|
|
756
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset")[], string, {
|
|
757
757
|
type: import("..").InputType;
|
|
758
758
|
modelValue: import("..").ModalValueType;
|
|
759
759
|
disabled: boolean;
|
|
@@ -1043,7 +1043,7 @@ declare const DaoAutocomplete: {
|
|
|
1043
1043
|
}>;
|
|
1044
1044
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1045
1045
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1046
|
-
$emit: (event: "input" | "focus" | "
|
|
1046
|
+
$emit: (event: "input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset", ...args: any[]) => void;
|
|
1047
1047
|
$el: any;
|
|
1048
1048
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1049
1049
|
modelValue: {
|
|
@@ -1124,7 +1124,7 @@ declare const DaoAutocomplete: {
|
|
|
1124
1124
|
inputType: import("vue").ComputedRef<import("..").InputType>;
|
|
1125
1125
|
passwordIcon: import("vue").ComputedRef<"icon-eye" | "icon-eye-slash">;
|
|
1126
1126
|
toggleShowPassword: () => void;
|
|
1127
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "
|
|
1127
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset")[], string, {
|
|
1128
1128
|
type: import("..").InputType;
|
|
1129
1129
|
modelValue: import("..").ModalValueType;
|
|
1130
1130
|
disabled: boolean;
|
|
@@ -162,7 +162,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
162
162
|
}>;
|
|
163
163
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
164
164
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
165
|
-
$emit: (event: "input" | "focus" | "
|
|
165
|
+
$emit: (event: "input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset", ...args: any[]) => void;
|
|
166
166
|
$el: any;
|
|
167
167
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
168
168
|
modelValue: {
|
|
@@ -243,7 +243,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
243
243
|
inputType: import("vue").ComputedRef<import("../input").InputType>;
|
|
244
244
|
passwordIcon: import("vue").ComputedRef<"icon-eye" | "icon-eye-slash">;
|
|
245
245
|
toggleShowPassword: () => void;
|
|
246
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "
|
|
246
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "focus" | "blur" | "change" | "update:modelValue" | "after-reset")[], string, {
|
|
247
247
|
type: import("../input").InputType;
|
|
248
248
|
modelValue: import("../input").ModalValueType;
|
|
249
249
|
disabled: boolean;
|
|
@@ -11,6 +11,7 @@ declare const DaoButton: {
|
|
|
11
11
|
size: "sm" | "md";
|
|
12
12
|
block: boolean;
|
|
13
13
|
tooltipContent: string;
|
|
14
|
+
tooltipDisabled: boolean;
|
|
14
15
|
loading: boolean;
|
|
15
16
|
iconLeft: string;
|
|
16
17
|
iconRight: string;
|
|
@@ -53,7 +54,11 @@ declare const DaoButton: {
|
|
|
53
54
|
type: StringConstructor;
|
|
54
55
|
default: undefined;
|
|
55
56
|
};
|
|
56
|
-
|
|
57
|
+
tooltipDisabled: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "useFont" | "size" | "block" | "tooltipContent" | "tooltipDisabled" | "loading" | "iconLeft" | "iconRight">;
|
|
57
62
|
$attrs: {
|
|
58
63
|
[x: string]: unknown;
|
|
59
64
|
};
|
|
@@ -106,6 +111,10 @@ declare const DaoButton: {
|
|
|
106
111
|
type: StringConstructor;
|
|
107
112
|
default: undefined;
|
|
108
113
|
};
|
|
114
|
+
tooltipDisabled: {
|
|
115
|
+
type: BooleanConstructor;
|
|
116
|
+
default: boolean;
|
|
117
|
+
};
|
|
109
118
|
}>>, {
|
|
110
119
|
classList: import("vue").ComputedRef<string[]>;
|
|
111
120
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
@@ -126,6 +135,7 @@ declare const DaoButton: {
|
|
|
126
135
|
size: "sm" | "md";
|
|
127
136
|
block: boolean;
|
|
128
137
|
tooltipContent: string;
|
|
138
|
+
tooltipDisabled: boolean;
|
|
129
139
|
loading: boolean;
|
|
130
140
|
iconLeft: string;
|
|
131
141
|
iconRight: string;
|
|
@@ -188,6 +198,10 @@ declare const DaoButton: {
|
|
|
188
198
|
type: StringConstructor;
|
|
189
199
|
default: undefined;
|
|
190
200
|
};
|
|
201
|
+
tooltipDisabled: {
|
|
202
|
+
type: BooleanConstructor;
|
|
203
|
+
default: boolean;
|
|
204
|
+
};
|
|
191
205
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
192
206
|
classList: import("vue").ComputedRef<string[]>;
|
|
193
207
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
@@ -244,6 +258,10 @@ declare const DaoButton: {
|
|
|
244
258
|
type: StringConstructor;
|
|
245
259
|
default: undefined;
|
|
246
260
|
};
|
|
261
|
+
tooltipDisabled: {
|
|
262
|
+
type: BooleanConstructor;
|
|
263
|
+
default: boolean;
|
|
264
|
+
};
|
|
247
265
|
}>>, {
|
|
248
266
|
classList: import("vue").ComputedRef<string[]>;
|
|
249
267
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
@@ -264,6 +282,7 @@ declare const DaoButton: {
|
|
|
264
282
|
size: "sm" | "md";
|
|
265
283
|
block: boolean;
|
|
266
284
|
tooltipContent: string;
|
|
285
|
+
tooltipDisabled: boolean;
|
|
267
286
|
loading: boolean;
|
|
268
287
|
iconLeft: string;
|
|
269
288
|
iconRight: string;
|
|
@@ -37,6 +37,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
type: StringConstructor;
|
|
38
38
|
default: undefined;
|
|
39
39
|
};
|
|
40
|
+
tooltipDisabled: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
40
44
|
}, {
|
|
41
45
|
classList: import("vue").ComputedRef<string[]>;
|
|
42
46
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
@@ -89,6 +93,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
93
|
type: StringConstructor;
|
|
90
94
|
default: undefined;
|
|
91
95
|
};
|
|
96
|
+
tooltipDisabled: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
92
100
|
}>>, {
|
|
93
101
|
type: import("./props").ButtonType;
|
|
94
102
|
disabled: boolean;
|
|
@@ -96,6 +104,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
104
|
size: "sm" | "md";
|
|
97
105
|
block: boolean;
|
|
98
106
|
tooltipContent: string;
|
|
107
|
+
tooltipDisabled: boolean;
|
|
99
108
|
loading: boolean;
|
|
100
109
|
iconLeft: string;
|
|
101
110
|
iconRight: string;
|
|
@@ -31,7 +31,7 @@ export declare const DaoCheckboxGroup: {
|
|
|
31
31
|
}>;
|
|
32
32
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
33
33
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
34
|
-
$emit: (event: "
|
|
34
|
+
$emit: (event: "change" | "update:modelValue", ...args: any[]) => void;
|
|
35
35
|
$el: any;
|
|
36
36
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
37
37
|
modelValue: {
|
|
@@ -47,7 +47,7 @@ export declare const DaoCheckboxGroup: {
|
|
|
47
47
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
48
48
|
}, {
|
|
49
49
|
checkboxGroupClasses: import("vue").ComputedRef<string[]>;
|
|
50
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
50
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], string, {
|
|
51
51
|
modelValue: unknown[] | Set<unknown>;
|
|
52
52
|
vertical: boolean;
|
|
53
53
|
}, {}, string> & {
|
|
@@ -102,7 +102,7 @@ export declare const DaoCheckboxGroup: {
|
|
|
102
102
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
103
103
|
}, {
|
|
104
104
|
checkboxGroupClasses: import("vue").ComputedRef<string[]>;
|
|
105
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
105
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", {
|
|
106
106
|
modelValue: unknown[] | Set<unknown>;
|
|
107
107
|
vertical: boolean;
|
|
108
108
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -9,7 +9,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
};
|
|
10
10
|
}, {
|
|
11
11
|
checkboxGroupClasses: import("vue").ComputedRef<string[]>;
|
|
12
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
12
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
13
|
modelValue: {
|
|
14
14
|
type: import("vue").PropType<unknown[] | Set<unknown>>;
|
|
15
15
|
default: undefined;
|
|
@@ -56,7 +56,7 @@ export declare const DaoCheckbox: {
|
|
|
56
56
|
}>;
|
|
57
57
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
58
58
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
59
|
-
$emit: (event: "
|
|
59
|
+
$emit: (event: "change" | "update:modelValue", ...args: any[]) => void;
|
|
60
60
|
$el: any;
|
|
61
61
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
62
62
|
modelValue: {
|
|
@@ -104,7 +104,7 @@ export declare const DaoCheckbox: {
|
|
|
104
104
|
}, unknown, {
|
|
105
105
|
hasHelper(): boolean | import("vue").Slot;
|
|
106
106
|
hasLabel(): boolean | import("vue").Slot;
|
|
107
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
107
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], string, {
|
|
108
108
|
modelValue: import("./props").ModelValueAnyType;
|
|
109
109
|
value: import("./props").ModelValueAnyType;
|
|
110
110
|
disabled: boolean;
|
|
@@ -228,7 +228,7 @@ export declare const DaoCheckbox: {
|
|
|
228
228
|
}, unknown, {
|
|
229
229
|
hasHelper(): boolean | import("vue").Slot;
|
|
230
230
|
hasLabel(): boolean | import("vue").Slot;
|
|
231
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
231
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", {
|
|
232
232
|
modelValue: import("./props").ModelValueAnyType;
|
|
233
233
|
value: import("./props").ModelValueAnyType;
|
|
234
234
|
disabled: boolean;
|
|
@@ -42,7 +42,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
42
|
}, unknown, {
|
|
43
43
|
hasHelper(): boolean | import("vue").Slot;
|
|
44
44
|
hasLabel(): boolean | import("vue").Slot;
|
|
45
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
45
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
46
|
modelValue: {
|
|
47
47
|
type: import("vue").PropType<ModelValueAnyType>;
|
|
48
48
|
default: undefined;
|
|
@@ -21,6 +21,7 @@ declare const DaoDialog: {
|
|
|
21
21
|
confirmDisabled: boolean;
|
|
22
22
|
confirmLoading: boolean;
|
|
23
23
|
showClose: boolean;
|
|
24
|
+
fullscreen: boolean;
|
|
24
25
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
25
26
|
modelValue: {
|
|
26
27
|
type: BooleanConstructor;
|
|
@@ -86,6 +87,10 @@ declare const DaoDialog: {
|
|
|
86
87
|
type: BooleanConstructor;
|
|
87
88
|
default: boolean;
|
|
88
89
|
};
|
|
90
|
+
fullscreen: {
|
|
91
|
+
type: BooleanConstructor;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
89
94
|
}>> & {
|
|
90
95
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
91
96
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -95,7 +100,7 @@ declare const DaoDialog: {
|
|
|
95
100
|
onOpened?: ((...args: any[]) => any) | undefined;
|
|
96
101
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
97
102
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
98
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "footer" | "header" | "top" | "bottom" | "size" | "middle" | "containerClass" | "closeOnClickOutside" | "closeOnPressEscape" | "lockScroll" | "textConfirm" | "textCancel" | "confirmDisabled" | "confirmLoading" | "showClose">;
|
|
103
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "footer" | "header" | "top" | "bottom" | "size" | "middle" | "containerClass" | "closeOnClickOutside" | "closeOnPressEscape" | "lockScroll" | "textConfirm" | "textCancel" | "confirmDisabled" | "confirmLoading" | "showClose" | "fullscreen">;
|
|
99
104
|
$attrs: {
|
|
100
105
|
[x: string]: unknown;
|
|
101
106
|
};
|
|
@@ -107,7 +112,7 @@ declare const DaoDialog: {
|
|
|
107
112
|
}>;
|
|
108
113
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
109
114
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
110
|
-
$emit: (event: "
|
|
115
|
+
$emit: (event: "cancel" | "change" | "update:modelValue" | "confirm" | "before-open" | "opened" | "before-close" | "closed", ...args: any[]) => void;
|
|
111
116
|
$el: any;
|
|
112
117
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
modelValue: {
|
|
@@ -174,6 +179,10 @@ declare const DaoDialog: {
|
|
|
174
179
|
type: BooleanConstructor;
|
|
175
180
|
default: boolean;
|
|
176
181
|
};
|
|
182
|
+
fullscreen: {
|
|
183
|
+
type: BooleanConstructor;
|
|
184
|
+
default: boolean;
|
|
185
|
+
};
|
|
177
186
|
}>> & {
|
|
178
187
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
179
188
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -184,8 +193,8 @@ declare const DaoDialog: {
|
|
|
184
193
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
185
194
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
186
195
|
}, {
|
|
187
|
-
computedPaddingTop: import("vue").ComputedRef<string>;
|
|
188
|
-
computedPaddingBottom: import("vue").ComputedRef<string>;
|
|
196
|
+
computedPaddingTop: import("vue").ComputedRef<string | 0>;
|
|
197
|
+
computedPaddingBottom: import("vue").ComputedRef<string | 0>;
|
|
189
198
|
computedContainerClass: import("vue").ComputedRef<string[]>;
|
|
190
199
|
headerTitle: import("vue").ComputedRef<string>;
|
|
191
200
|
showHeader: import("vue").ComputedRef<boolean>;
|
|
@@ -200,7 +209,7 @@ declare const DaoDialog: {
|
|
|
200
209
|
onWrapperMousedown: () => void;
|
|
201
210
|
onBeforeLeave: () => void;
|
|
202
211
|
onAfterLeave: () => void;
|
|
203
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
212
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "confirm" | "before-open" | "opened" | "before-close" | "closed")[], string, {
|
|
204
213
|
modelValue: boolean;
|
|
205
214
|
footer: boolean;
|
|
206
215
|
header: string | boolean;
|
|
@@ -217,6 +226,7 @@ declare const DaoDialog: {
|
|
|
217
226
|
confirmDisabled: boolean;
|
|
218
227
|
confirmLoading: boolean;
|
|
219
228
|
showClose: boolean;
|
|
229
|
+
fullscreen: boolean;
|
|
220
230
|
}, {}, string> & {
|
|
221
231
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
222
232
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -302,6 +312,10 @@ declare const DaoDialog: {
|
|
|
302
312
|
type: BooleanConstructor;
|
|
303
313
|
default: boolean;
|
|
304
314
|
};
|
|
315
|
+
fullscreen: {
|
|
316
|
+
type: BooleanConstructor;
|
|
317
|
+
default: boolean;
|
|
318
|
+
};
|
|
305
319
|
}>> & {
|
|
306
320
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
307
321
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -312,8 +326,8 @@ declare const DaoDialog: {
|
|
|
312
326
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
313
327
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
314
328
|
} & import("vue").ShallowUnwrapRef<{
|
|
315
|
-
computedPaddingTop: import("vue").ComputedRef<string>;
|
|
316
|
-
computedPaddingBottom: import("vue").ComputedRef<string>;
|
|
329
|
+
computedPaddingTop: import("vue").ComputedRef<string | 0>;
|
|
330
|
+
computedPaddingBottom: import("vue").ComputedRef<string | 0>;
|
|
317
331
|
computedContainerClass: import("vue").ComputedRef<string[]>;
|
|
318
332
|
headerTitle: import("vue").ComputedRef<string>;
|
|
319
333
|
showHeader: import("vue").ComputedRef<boolean>;
|
|
@@ -397,6 +411,10 @@ declare const DaoDialog: {
|
|
|
397
411
|
type: BooleanConstructor;
|
|
398
412
|
default: boolean;
|
|
399
413
|
};
|
|
414
|
+
fullscreen: {
|
|
415
|
+
type: BooleanConstructor;
|
|
416
|
+
default: boolean;
|
|
417
|
+
};
|
|
400
418
|
}>> & {
|
|
401
419
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
402
420
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -407,8 +425,8 @@ declare const DaoDialog: {
|
|
|
407
425
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
408
426
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
409
427
|
}, {
|
|
410
|
-
computedPaddingTop: import("vue").ComputedRef<string>;
|
|
411
|
-
computedPaddingBottom: import("vue").ComputedRef<string>;
|
|
428
|
+
computedPaddingTop: import("vue").ComputedRef<string | 0>;
|
|
429
|
+
computedPaddingBottom: import("vue").ComputedRef<string | 0>;
|
|
412
430
|
computedContainerClass: import("vue").ComputedRef<string[]>;
|
|
413
431
|
headerTitle: import("vue").ComputedRef<string>;
|
|
414
432
|
showHeader: import("vue").ComputedRef<boolean>;
|
|
@@ -423,7 +441,7 @@ declare const DaoDialog: {
|
|
|
423
441
|
onWrapperMousedown: () => void;
|
|
424
442
|
onBeforeLeave: () => void;
|
|
425
443
|
onAfterLeave: () => void;
|
|
426
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
444
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "confirm" | "before-open" | "opened" | "before-close" | "closed")[], "cancel" | "change" | "update:modelValue" | "confirm" | "before-open" | "opened" | "before-close" | "closed", {
|
|
427
445
|
modelValue: boolean;
|
|
428
446
|
footer: boolean;
|
|
429
447
|
header: string | boolean;
|
|
@@ -440,6 +458,7 @@ declare const DaoDialog: {
|
|
|
440
458
|
confirmDisabled: boolean;
|
|
441
459
|
confirmLoading: boolean;
|
|
442
460
|
showClose: boolean;
|
|
461
|
+
fullscreen: boolean;
|
|
443
462
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
444
463
|
$props: Partial<DialogProps>;
|
|
445
464
|
$slots: {
|
|
@@ -63,9 +63,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
63
63
|
type: BooleanConstructor;
|
|
64
64
|
default: boolean;
|
|
65
65
|
};
|
|
66
|
+
fullscreen: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
66
70
|
}, {
|
|
67
|
-
computedPaddingTop: import("vue").ComputedRef<string>;
|
|
68
|
-
computedPaddingBottom: import("vue").ComputedRef<string>;
|
|
71
|
+
computedPaddingTop: import("vue").ComputedRef<string | 0>;
|
|
72
|
+
computedPaddingBottom: import("vue").ComputedRef<string | 0>;
|
|
69
73
|
computedContainerClass: import("vue").ComputedRef<string[]>;
|
|
70
74
|
headerTitle: import("vue").ComputedRef<string>;
|
|
71
75
|
showHeader: import("vue").ComputedRef<boolean>;
|
|
@@ -80,7 +84,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
84
|
onWrapperMousedown: () => void;
|
|
81
85
|
onBeforeLeave: () => void;
|
|
82
86
|
onAfterLeave: () => void;
|
|
83
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
87
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "change" | "update:modelValue" | "confirm" | "before-open" | "opened" | "before-close" | "closed")[], "cancel" | "change" | "update:modelValue" | "confirm" | "before-open" | "opened" | "before-close" | "closed", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
84
88
|
modelValue: {
|
|
85
89
|
type: BooleanConstructor;
|
|
86
90
|
default: boolean;
|
|
@@ -145,6 +149,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
145
149
|
type: BooleanConstructor;
|
|
146
150
|
default: boolean;
|
|
147
151
|
};
|
|
152
|
+
fullscreen: {
|
|
153
|
+
type: BooleanConstructor;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
148
156
|
}>> & {
|
|
149
157
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
150
158
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -171,5 +179,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
179
|
confirmDisabled: boolean;
|
|
172
180
|
confirmLoading: boolean;
|
|
173
181
|
showClose: boolean;
|
|
182
|
+
fullscreen: boolean;
|
|
174
183
|
}>;
|
|
175
184
|
export default _default;
|
|
@@ -97,6 +97,10 @@ export declare const dialogProps: {
|
|
|
97
97
|
type: BooleanConstructor;
|
|
98
98
|
default: boolean;
|
|
99
99
|
};
|
|
100
|
+
fullscreen: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
100
104
|
};
|
|
101
105
|
export type DialogProps = ExtractPropTypes<typeof dialogProps>;
|
|
102
106
|
export type DialogFooterProps = ExtractPropTypes<typeof dialogFooterProps>;
|