@dao-style/core 1.27.0 → 1.27.1-beta.1
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/button/button.d.ts +1 -32
- package/dist/components/button/button.vue.d.ts +0 -13
- package/dist/components/button/props.d.ts +0 -4
- package/dist/components/card/card-header.d.ts +1 -20
- package/dist/components/card/card-header.vue.d.ts +0 -9
- package/dist/components/card/card-props.d.ts +0 -8
- package/dist/components/card/card.d.ts +1 -20
- package/dist/components/card/card.vue.d.ts +0 -9
- package/dist/components/nav/nav-head.d.ts +1 -23
- package/dist/components/nav/nav-head.vue.d.ts +0 -10
- package/dist/components/nav/nav-item.d.ts +1 -23
- package/dist/components/nav/nav-item.vue.d.ts +0 -10
- package/dist/components/nav/nav-sub.d.ts +1 -23
- package/dist/components/nav/nav-sub.vue.d.ts +0 -10
- package/dist/components/nav/props.d.ts +0 -12
- package/dist/dao-style.js +6 -6
- package/dist/dao-style.mjs +2752 -2819
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,6 @@ declare const DaoNavSub: {
|
|
|
7
7
|
disabled: boolean;
|
|
8
8
|
icon: string;
|
|
9
9
|
title: string;
|
|
10
|
-
useFont: boolean;
|
|
11
10
|
index: import("./props").IndexType;
|
|
12
11
|
isActive: boolean;
|
|
13
12
|
isExactActive: boolean;
|
|
@@ -44,10 +43,6 @@ declare const DaoNavSub: {
|
|
|
44
43
|
type: StringConstructor;
|
|
45
44
|
default: string;
|
|
46
45
|
};
|
|
47
|
-
useFont: {
|
|
48
|
-
type: BooleanConstructor;
|
|
49
|
-
default: boolean;
|
|
50
|
-
};
|
|
51
46
|
external: {
|
|
52
47
|
type: BooleanConstructor;
|
|
53
48
|
default: boolean;
|
|
@@ -62,7 +57,7 @@ declare const DaoNavSub: {
|
|
|
62
57
|
};
|
|
63
58
|
}>> & {
|
|
64
59
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
65
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "
|
|
60
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "index" | "isActive" | "isExactActive" | "external" | "locked" | "useNormalMode" | "fold">;
|
|
66
61
|
$attrs: {
|
|
67
62
|
[x: string]: unknown;
|
|
68
63
|
};
|
|
@@ -105,10 +100,6 @@ declare const DaoNavSub: {
|
|
|
105
100
|
type: StringConstructor;
|
|
106
101
|
default: string;
|
|
107
102
|
};
|
|
108
|
-
useFont: {
|
|
109
|
-
type: BooleanConstructor;
|
|
110
|
-
default: boolean;
|
|
111
|
-
};
|
|
112
103
|
external: {
|
|
113
104
|
type: BooleanConstructor;
|
|
114
105
|
default: boolean;
|
|
@@ -137,7 +128,6 @@ declare const DaoNavSub: {
|
|
|
137
128
|
foldIcon: import("vue").ComputedRef<"icon_caret-up" | "icon_caret-down">;
|
|
138
129
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
139
130
|
title: import("vue").Ref<string>;
|
|
140
|
-
useFont: import("vue").Ref<boolean>;
|
|
141
131
|
opened: import("vue").Ref<boolean>;
|
|
142
132
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
143
133
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
@@ -147,7 +137,6 @@ declare const DaoNavSub: {
|
|
|
147
137
|
disabled: boolean;
|
|
148
138
|
icon: string;
|
|
149
139
|
title: string;
|
|
150
|
-
useFont: boolean;
|
|
151
140
|
index: import("./props").IndexType;
|
|
152
141
|
isActive: boolean;
|
|
153
142
|
isExactActive: boolean;
|
|
@@ -204,10 +193,6 @@ declare const DaoNavSub: {
|
|
|
204
193
|
type: StringConstructor;
|
|
205
194
|
default: string;
|
|
206
195
|
};
|
|
207
|
-
useFont: {
|
|
208
|
-
type: BooleanConstructor;
|
|
209
|
-
default: boolean;
|
|
210
|
-
};
|
|
211
196
|
external: {
|
|
212
197
|
type: BooleanConstructor;
|
|
213
198
|
default: boolean;
|
|
@@ -236,7 +221,6 @@ declare const DaoNavSub: {
|
|
|
236
221
|
foldIcon: import("vue").ComputedRef<"icon_caret-up" | "icon_caret-down">;
|
|
237
222
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
238
223
|
title: import("vue").Ref<string>;
|
|
239
|
-
useFont: import("vue").Ref<boolean>;
|
|
240
224
|
opened: import("vue").Ref<boolean>;
|
|
241
225
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
242
226
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
@@ -275,10 +259,6 @@ declare const DaoNavSub: {
|
|
|
275
259
|
type: StringConstructor;
|
|
276
260
|
default: string;
|
|
277
261
|
};
|
|
278
|
-
useFont: {
|
|
279
|
-
type: BooleanConstructor;
|
|
280
|
-
default: boolean;
|
|
281
|
-
};
|
|
282
262
|
external: {
|
|
283
263
|
type: BooleanConstructor;
|
|
284
264
|
default: boolean;
|
|
@@ -307,7 +287,6 @@ declare const DaoNavSub: {
|
|
|
307
287
|
foldIcon: import("vue").ComputedRef<"icon_caret-up" | "icon_caret-down">;
|
|
308
288
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
309
289
|
title: import("vue").Ref<string>;
|
|
310
|
-
useFont: import("vue").Ref<boolean>;
|
|
311
290
|
opened: import("vue").Ref<boolean>;
|
|
312
291
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
313
292
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
@@ -317,7 +296,6 @@ declare const DaoNavSub: {
|
|
|
317
296
|
disabled: boolean;
|
|
318
297
|
icon: string;
|
|
319
298
|
title: string;
|
|
320
|
-
useFont: boolean;
|
|
321
299
|
index: import("./props").IndexType;
|
|
322
300
|
isActive: boolean;
|
|
323
301
|
isExactActive: boolean;
|
|
@@ -28,10 +28,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
type: StringConstructor;
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
|
-
useFont: {
|
|
32
|
-
type: BooleanConstructor;
|
|
33
|
-
default: boolean;
|
|
34
|
-
};
|
|
35
31
|
external: {
|
|
36
32
|
type: BooleanConstructor;
|
|
37
33
|
default: boolean;
|
|
@@ -58,7 +54,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
54
|
foldIcon: import("vue").ComputedRef<"icon_caret-up" | "icon_caret-down">;
|
|
59
55
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
60
56
|
title: import("vue").Ref<string>;
|
|
61
|
-
useFont: import("vue").Ref<boolean>;
|
|
62
57
|
opened: import("vue").Ref<boolean>;
|
|
63
58
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
64
59
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
@@ -93,10 +88,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
88
|
type: StringConstructor;
|
|
94
89
|
default: string;
|
|
95
90
|
};
|
|
96
|
-
useFont: {
|
|
97
|
-
type: BooleanConstructor;
|
|
98
|
-
default: boolean;
|
|
99
|
-
};
|
|
100
91
|
external: {
|
|
101
92
|
type: BooleanConstructor;
|
|
102
93
|
default: boolean;
|
|
@@ -115,7 +106,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
115
106
|
disabled: boolean;
|
|
116
107
|
icon: string;
|
|
117
108
|
title: string;
|
|
118
|
-
useFont: boolean;
|
|
119
109
|
index: IndexType;
|
|
120
110
|
isActive: boolean;
|
|
121
111
|
isExactActive: boolean;
|
|
@@ -40,10 +40,6 @@ export declare const navHeadProps: {
|
|
|
40
40
|
type: StringConstructor;
|
|
41
41
|
default: string;
|
|
42
42
|
};
|
|
43
|
-
useFont: {
|
|
44
|
-
type: BooleanConstructor;
|
|
45
|
-
default: boolean;
|
|
46
|
-
};
|
|
47
43
|
};
|
|
48
44
|
export declare const navSubProps: {
|
|
49
45
|
disabled: {
|
|
@@ -74,10 +70,6 @@ export declare const navSubProps: {
|
|
|
74
70
|
type: StringConstructor;
|
|
75
71
|
default: string;
|
|
76
72
|
};
|
|
77
|
-
useFont: {
|
|
78
|
-
type: BooleanConstructor;
|
|
79
|
-
default: boolean;
|
|
80
|
-
};
|
|
81
73
|
external: {
|
|
82
74
|
type: BooleanConstructor;
|
|
83
75
|
default: boolean;
|
|
@@ -120,10 +112,6 @@ export declare const navItemProps: {
|
|
|
120
112
|
type: StringConstructor;
|
|
121
113
|
default: string;
|
|
122
114
|
};
|
|
123
|
-
useFont: {
|
|
124
|
-
type: BooleanConstructor;
|
|
125
|
-
default: boolean;
|
|
126
|
-
};
|
|
127
115
|
external: {
|
|
128
116
|
type: BooleanConstructor;
|
|
129
117
|
default: boolean;
|