@dao-style/core 1.13.1-beta.1 → 1.13.1-beta.2
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/tag/props.d.ts +5 -1
- package/dist/components/tag/tag.d.ts +20 -1
- package/dist/components/tag/tag.vue.d.ts +9 -0
- package/dist/dao-style.js +2 -2
- package/dist/dao-style.mjs +625 -616
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExtractPropTypes } from 'vue';
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
|
2
2
|
export declare const tagProps: {
|
|
3
3
|
closable: {
|
|
4
4
|
type: BooleanConstructor;
|
|
@@ -16,6 +16,10 @@ export declare const tagProps: {
|
|
|
16
16
|
type: StringConstructor;
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
|
+
size: {
|
|
20
|
+
type: PropType<"sm" | "md">;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
19
23
|
};
|
|
20
24
|
export type TagProps = ExtractPropTypes<typeof tagProps>;
|
|
21
25
|
export declare const tagEmits: {
|
|
@@ -8,6 +8,7 @@ declare const DaoTag: {
|
|
|
8
8
|
label: string;
|
|
9
9
|
value: string;
|
|
10
10
|
separator: string;
|
|
11
|
+
size: "sm" | "md";
|
|
11
12
|
closable: boolean;
|
|
12
13
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
13
14
|
closable: {
|
|
@@ -26,9 +27,13 @@ declare const DaoTag: {
|
|
|
26
27
|
type: StringConstructor;
|
|
27
28
|
default: string;
|
|
28
29
|
};
|
|
30
|
+
size: {
|
|
31
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
29
34
|
}>> & {
|
|
30
35
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
31
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "value" | "separator" | "closable">;
|
|
36
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "value" | "separator" | "size" | "closable">;
|
|
32
37
|
$attrs: {
|
|
33
38
|
[x: string]: unknown;
|
|
34
39
|
};
|
|
@@ -59,12 +64,17 @@ declare const DaoTag: {
|
|
|
59
64
|
type: StringConstructor;
|
|
60
65
|
default: string;
|
|
61
66
|
};
|
|
67
|
+
size: {
|
|
68
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
62
71
|
}>> & {
|
|
63
72
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
64
73
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
|
|
65
74
|
label: string;
|
|
66
75
|
value: string;
|
|
67
76
|
separator: string;
|
|
77
|
+
size: "sm" | "md";
|
|
68
78
|
closable: boolean;
|
|
69
79
|
}, {}, string> & {
|
|
70
80
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -103,6 +113,10 @@ declare const DaoTag: {
|
|
|
103
113
|
type: StringConstructor;
|
|
104
114
|
default: string;
|
|
105
115
|
};
|
|
116
|
+
size: {
|
|
117
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
118
|
+
default: string;
|
|
119
|
+
};
|
|
106
120
|
}>> & {
|
|
107
121
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
108
122
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -126,12 +140,17 @@ declare const DaoTag: {
|
|
|
126
140
|
type: StringConstructor;
|
|
127
141
|
default: string;
|
|
128
142
|
};
|
|
143
|
+
size: {
|
|
144
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
145
|
+
default: string;
|
|
146
|
+
};
|
|
129
147
|
}>> & {
|
|
130
148
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
131
149
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {
|
|
132
150
|
label: string;
|
|
133
151
|
value: string;
|
|
134
152
|
separator: string;
|
|
153
|
+
size: "sm" | "md";
|
|
135
154
|
closable: boolean;
|
|
136
155
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
137
156
|
$props: Partial<TagProps>;
|
|
@@ -15,6 +15,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
|
+
size: {
|
|
19
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
18
22
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
23
|
closable: {
|
|
20
24
|
type: BooleanConstructor;
|
|
@@ -32,12 +36,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
36
|
type: StringConstructor;
|
|
33
37
|
default: string;
|
|
34
38
|
};
|
|
39
|
+
size: {
|
|
40
|
+
type: import("vue").PropType<"sm" | "md">;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
35
43
|
}>> & {
|
|
36
44
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
37
45
|
}, {
|
|
38
46
|
label: string;
|
|
39
47
|
value: string;
|
|
40
48
|
separator: string;
|
|
49
|
+
size: "sm" | "md";
|
|
41
50
|
closable: boolean;
|
|
42
51
|
}>;
|
|
43
52
|
export default _default;
|