@dao-style/core 1.6.1-beta.1 → 1.6.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 +0 -9
- package/dist/components/action-icon/action-icon.vue.d.ts +0 -3
- package/dist/components/action-icon/props.d.ts +1 -1
- package/dist/components/button/button.d.ts +0 -9
- package/dist/components/button/button.vue.d.ts +0 -3
- package/dist/components/dropdown/dropdown-item.d.ts +40 -1
- package/dist/components/dropdown/dropdown-item.vue.d.ts +18 -0
- package/dist/components/dropdown/dropdown.d.ts +856 -5
- package/dist/components/dropdown/dropdown.vue.d.ts +285 -2
- package/dist/components/dropdown/props.d.ts +8 -0
- package/dist/components/ellipsis/ellipsis.d.ts +2686 -994
- package/dist/components/ellipsis/ellipsis.vue.d.ts +577 -14
- package/dist/components/pagination/pagination.d.ts +4 -4
- package/dist/components/pagination/pagination.vue.d.ts +1 -1
- package/dist/components/table/column-setting-props.d.ts +4 -0
- package/dist/components/table/column-setting.vue.d.ts +9 -0
- package/dist/components/table/components/tdAction.vue.d.ts +2 -2
- package/dist/components/table/table-props.d.ts +4 -4
- package/dist/components/table/table.d.ts +20 -20
- package/dist/components/table/table.vue.d.ts +9 -9
- package/dist/components/tabs/props.d.ts +4 -0
- package/dist/components/tabs/tabs.d.ts +29 -1
- package/dist/components/tabs/tabs.vue.d.ts +12 -0
- package/dist/components/toolbar/toolbar-filter-props.d.ts +4 -0
- package/dist/components/toolbar/toolbar-filter.vue.d.ts +9 -0
- package/dist/components/toolbar/toolbar-props.d.ts +4 -0
- package/dist/components/toolbar/toolbar.d.ts +20 -1
- package/dist/components/toolbar/toolbar.vue.d.ts +9 -0
- package/dist/dao-style.js +6 -6
- package/dist/dao-style.mjs +2628 -2554
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -80,9 +80,6 @@ declare const DaoActionIcon: {
|
|
|
80
80
|
}>>, {
|
|
81
81
|
isDivider: boolean;
|
|
82
82
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
83
|
-
onMouseEnter: () => void;
|
|
84
|
-
onMouseLeave: () => void;
|
|
85
|
-
showTip: import("vue").Ref<boolean>;
|
|
86
83
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
87
84
|
type: import("./props").ActionIconType;
|
|
88
85
|
disabled: boolean;
|
|
@@ -139,9 +136,6 @@ declare const DaoActionIcon: {
|
|
|
139
136
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
140
137
|
isDivider: boolean;
|
|
141
138
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
142
|
-
onMouseEnter: () => void;
|
|
143
|
-
onMouseLeave: () => void;
|
|
144
|
-
showTip: import("vue").Ref<boolean>;
|
|
145
139
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
146
140
|
__isFragment?: undefined;
|
|
147
141
|
__isTeleport?: undefined;
|
|
@@ -175,9 +169,6 @@ declare const DaoActionIcon: {
|
|
|
175
169
|
}>>, {
|
|
176
170
|
isDivider: boolean;
|
|
177
171
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
178
|
-
onMouseEnter: () => void;
|
|
179
|
-
onMouseLeave: () => void;
|
|
180
|
-
showTip: import("vue").Ref<boolean>;
|
|
181
172
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
182
173
|
type: import("./props").ActionIconType;
|
|
183
174
|
disabled: boolean;
|
|
@@ -27,9 +27,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
}, {
|
|
28
28
|
isDivider: boolean;
|
|
29
29
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
30
|
-
onMouseEnter: () => void;
|
|
31
|
-
onMouseLeave: () => void;
|
|
32
|
-
showTip: import("vue").Ref<boolean>;
|
|
33
30
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
31
|
name: {
|
|
35
32
|
type: StringConstructor;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type PropType, ExtractPropTypes } from 'vue';
|
|
2
|
-
export type ActionIconType = 'button' | 'divider';
|
|
2
|
+
export type ActionIconType = 'button' | 'divider' | 'simple';
|
|
3
3
|
export type ActionIconSize = 'md' | 'sm' | 'xs';
|
|
4
4
|
export declare const actionIconProps: {
|
|
5
5
|
name: {
|
|
@@ -125,9 +125,6 @@ declare const DaoButton: {
|
|
|
125
125
|
realIconRight: import("vue").ComputedRef<string>;
|
|
126
126
|
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
127
127
|
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
128
|
-
onMouseEnter: () => void;
|
|
129
|
-
onMouseLeave: () => void;
|
|
130
|
-
showTip: import("vue").Ref<boolean>;
|
|
131
128
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
132
129
|
type: import("./props").ButtonType;
|
|
133
130
|
disabled: boolean;
|
|
@@ -212,9 +209,6 @@ declare const DaoButton: {
|
|
|
212
209
|
realIconRight: import("vue").ComputedRef<string>;
|
|
213
210
|
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
214
211
|
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
215
|
-
onMouseEnter: () => void;
|
|
216
|
-
onMouseLeave: () => void;
|
|
217
|
-
showTip: import("vue").Ref<boolean>;
|
|
218
212
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
219
213
|
__isFragment?: undefined;
|
|
220
214
|
__isTeleport?: undefined;
|
|
@@ -272,9 +266,6 @@ declare const DaoButton: {
|
|
|
272
266
|
realIconRight: import("vue").ComputedRef<string>;
|
|
273
267
|
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
274
268
|
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
275
|
-
onMouseEnter: () => void;
|
|
276
|
-
onMouseLeave: () => void;
|
|
277
|
-
showTip: import("vue").Ref<boolean>;
|
|
278
269
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
279
270
|
type: import("./props").ButtonType;
|
|
280
271
|
disabled: boolean;
|
|
@@ -51,9 +51,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
realIconRight: import("vue").ComputedRef<string>;
|
|
52
52
|
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
53
53
|
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
54
|
-
onMouseEnter: () => void;
|
|
55
|
-
onMouseLeave: () => void;
|
|
56
|
-
showTip: import("vue").Ref<boolean>;
|
|
57
54
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
58
55
|
type: {
|
|
59
56
|
type: import("vue").PropType<import("./props").ButtonType>;
|
|
@@ -8,6 +8,8 @@ declare const DaoDropdownItem: {
|
|
|
8
8
|
type: import("./props").DropdownItemType;
|
|
9
9
|
disabled: boolean;
|
|
10
10
|
color: import("./props").DropdownItemColor;
|
|
11
|
+
tooltipContent: string;
|
|
12
|
+
tooltipDisabled: boolean;
|
|
11
13
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
12
14
|
type: {
|
|
13
15
|
type: import("vue").PropType<import("./props").DropdownItemType>;
|
|
@@ -23,9 +25,17 @@ declare const DaoDropdownItem: {
|
|
|
23
25
|
default: string;
|
|
24
26
|
validator: (value: string) => boolean;
|
|
25
27
|
};
|
|
28
|
+
tooltipContent: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
tooltipDisabled: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
26
36
|
}>> & {
|
|
27
37
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
28
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "color">;
|
|
38
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "color" | "tooltipContent" | "tooltipDisabled">;
|
|
29
39
|
$attrs: {
|
|
30
40
|
[x: string]: unknown;
|
|
31
41
|
};
|
|
@@ -54,6 +64,14 @@ declare const DaoDropdownItem: {
|
|
|
54
64
|
default: string;
|
|
55
65
|
validator: (value: string) => boolean;
|
|
56
66
|
};
|
|
67
|
+
tooltipContent: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
tooltipDisabled: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
57
75
|
}>> & {
|
|
58
76
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
59
77
|
}, {
|
|
@@ -65,6 +83,8 @@ declare const DaoDropdownItem: {
|
|
|
65
83
|
type: import("./props").DropdownItemType;
|
|
66
84
|
disabled: boolean;
|
|
67
85
|
color: import("./props").DropdownItemColor;
|
|
86
|
+
tooltipContent: string;
|
|
87
|
+
tooltipDisabled: boolean;
|
|
68
88
|
}, {}, string> & {
|
|
69
89
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
70
90
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -100,6 +120,14 @@ declare const DaoDropdownItem: {
|
|
|
100
120
|
default: string;
|
|
101
121
|
validator: (value: string) => boolean;
|
|
102
122
|
};
|
|
123
|
+
tooltipContent: {
|
|
124
|
+
type: StringConstructor;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
127
|
+
tooltipDisabled: {
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
103
131
|
}>> & {
|
|
104
132
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
105
133
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -126,6 +154,14 @@ declare const DaoDropdownItem: {
|
|
|
126
154
|
default: string;
|
|
127
155
|
validator: (value: string) => boolean;
|
|
128
156
|
};
|
|
157
|
+
tooltipContent: {
|
|
158
|
+
type: StringConstructor;
|
|
159
|
+
default: string;
|
|
160
|
+
};
|
|
161
|
+
tooltipDisabled: {
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
default: boolean;
|
|
164
|
+
};
|
|
129
165
|
}>> & {
|
|
130
166
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
131
167
|
}, {
|
|
@@ -137,10 +173,13 @@ declare const DaoDropdownItem: {
|
|
|
137
173
|
type: import("./props").DropdownItemType;
|
|
138
174
|
disabled: boolean;
|
|
139
175
|
color: import("./props").DropdownItemColor;
|
|
176
|
+
tooltipContent: string;
|
|
177
|
+
tooltipDisabled: boolean;
|
|
140
178
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
141
179
|
$props: Partial<DropdownItemProps>;
|
|
142
180
|
$slots: {
|
|
143
181
|
default: SlotFn;
|
|
182
|
+
tooltipContent: SlotFn;
|
|
144
183
|
};
|
|
145
184
|
});
|
|
146
185
|
export default DaoDropdownItem;
|
|
@@ -13,6 +13,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
13
|
default: string;
|
|
14
14
|
validator: (value: string) => boolean;
|
|
15
15
|
};
|
|
16
|
+
tooltipContent: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
tooltipDisabled: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
16
24
|
}, {
|
|
17
25
|
classList: import("vue").ComputedRef<string[]>;
|
|
18
26
|
itemAttrs: import("vue").ComputedRef<{
|
|
@@ -33,11 +41,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
41
|
default: string;
|
|
34
42
|
validator: (value: string) => boolean;
|
|
35
43
|
};
|
|
44
|
+
tooltipContent: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
tooltipDisabled: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
36
52
|
}>> & {
|
|
37
53
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
38
54
|
}, {
|
|
39
55
|
type: import("./props").DropdownItemType;
|
|
40
56
|
disabled: boolean;
|
|
41
57
|
color: import("./props").DropdownItemColor;
|
|
58
|
+
tooltipContent: string;
|
|
59
|
+
tooltipDisabled: boolean;
|
|
42
60
|
}>;
|
|
43
61
|
export default _default;
|