@dao-style/core 1.26.1-beta.4 → 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 DaoButton: {
|
|
|
7
7
|
$props: Partial<{
|
|
8
8
|
type: import("./props").ButtonType;
|
|
9
9
|
disabled: boolean;
|
|
10
|
-
useFont: boolean;
|
|
11
10
|
size: "sm" | "md";
|
|
12
11
|
block: boolean;
|
|
13
12
|
active: boolean;
|
|
@@ -58,10 +57,6 @@ declare const DaoButton: {
|
|
|
58
57
|
type: BooleanConstructor;
|
|
59
58
|
default: boolean;
|
|
60
59
|
};
|
|
61
|
-
useFont: {
|
|
62
|
-
type: BooleanConstructor;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
60
|
iconLeft: {
|
|
66
61
|
type: StringConstructor;
|
|
67
62
|
default: string;
|
|
@@ -116,7 +111,7 @@ declare const DaoButton: {
|
|
|
116
111
|
default: string;
|
|
117
112
|
validator: (value: import("./props").ButtonNativeType) => boolean;
|
|
118
113
|
};
|
|
119
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "
|
|
114
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "size" | "block" | "active" | "tooltipContent" | "tooltipDisabled" | "tooltipOption" | "loading" | "iconLeft" | "iconRight" | "nativeType">;
|
|
120
115
|
$attrs: {
|
|
121
116
|
[x: string]: unknown;
|
|
122
117
|
};
|
|
@@ -149,10 +144,6 @@ declare const DaoButton: {
|
|
|
149
144
|
type: BooleanConstructor;
|
|
150
145
|
default: boolean;
|
|
151
146
|
};
|
|
152
|
-
useFont: {
|
|
153
|
-
type: BooleanConstructor;
|
|
154
|
-
default: boolean;
|
|
155
|
-
};
|
|
156
147
|
iconLeft: {
|
|
157
148
|
type: StringConstructor;
|
|
158
149
|
default: string;
|
|
@@ -211,12 +202,8 @@ declare const DaoButton: {
|
|
|
211
202
|
classList: import("vue").ComputedRef<string[]>;
|
|
212
203
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
213
204
|
isSimpleButton: import("vue").ComputedRef<boolean | undefined>;
|
|
214
|
-
isIconLeftFont: import("vue").ComputedRef<boolean>;
|
|
215
205
|
realIconLeft: import("vue").ComputedRef<string>;
|
|
216
|
-
isIconRightFont: import("vue").ComputedRef<boolean>;
|
|
217
206
|
realIconRight: import("vue").ComputedRef<string>;
|
|
218
|
-
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
219
|
-
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
220
207
|
actualTooltipOption: import("vue").ComputedRef<Partial<{
|
|
221
208
|
modelValue: boolean;
|
|
222
209
|
disabled: boolean;
|
|
@@ -242,7 +229,6 @@ declare const DaoButton: {
|
|
|
242
229
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
243
230
|
type: import("./props").ButtonType;
|
|
244
231
|
disabled: boolean;
|
|
245
|
-
useFont: boolean;
|
|
246
232
|
size: "sm" | "md";
|
|
247
233
|
block: boolean;
|
|
248
234
|
active: boolean;
|
|
@@ -313,10 +299,6 @@ declare const DaoButton: {
|
|
|
313
299
|
type: BooleanConstructor;
|
|
314
300
|
default: boolean;
|
|
315
301
|
};
|
|
316
|
-
useFont: {
|
|
317
|
-
type: BooleanConstructor;
|
|
318
|
-
default: boolean;
|
|
319
|
-
};
|
|
320
302
|
iconLeft: {
|
|
321
303
|
type: StringConstructor;
|
|
322
304
|
default: string;
|
|
@@ -375,12 +357,8 @@ declare const DaoButton: {
|
|
|
375
357
|
classList: import("vue").ComputedRef<string[]>;
|
|
376
358
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
377
359
|
isSimpleButton: import("vue").ComputedRef<boolean | undefined>;
|
|
378
|
-
isIconLeftFont: import("vue").ComputedRef<boolean>;
|
|
379
360
|
realIconLeft: import("vue").ComputedRef<string>;
|
|
380
|
-
isIconRightFont: import("vue").ComputedRef<boolean>;
|
|
381
361
|
realIconRight: import("vue").ComputedRef<string>;
|
|
382
|
-
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
383
|
-
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
384
362
|
actualTooltipOption: import("vue").ComputedRef<Partial<{
|
|
385
363
|
modelValue: boolean;
|
|
386
364
|
disabled: boolean;
|
|
@@ -426,10 +404,6 @@ declare const DaoButton: {
|
|
|
426
404
|
type: BooleanConstructor;
|
|
427
405
|
default: boolean;
|
|
428
406
|
};
|
|
429
|
-
useFont: {
|
|
430
|
-
type: BooleanConstructor;
|
|
431
|
-
default: boolean;
|
|
432
|
-
};
|
|
433
407
|
iconLeft: {
|
|
434
408
|
type: StringConstructor;
|
|
435
409
|
default: string;
|
|
@@ -488,12 +462,8 @@ declare const DaoButton: {
|
|
|
488
462
|
classList: import("vue").ComputedRef<string[]>;
|
|
489
463
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
490
464
|
isSimpleButton: import("vue").ComputedRef<boolean | undefined>;
|
|
491
|
-
isIconLeftFont: import("vue").ComputedRef<boolean>;
|
|
492
465
|
realIconLeft: import("vue").ComputedRef<string>;
|
|
493
|
-
isIconRightFont: import("vue").ComputedRef<boolean>;
|
|
494
466
|
realIconRight: import("vue").ComputedRef<string>;
|
|
495
|
-
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
496
|
-
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
497
467
|
actualTooltipOption: import("vue").ComputedRef<Partial<{
|
|
498
468
|
modelValue: boolean;
|
|
499
469
|
disabled: boolean;
|
|
@@ -519,7 +489,6 @@ declare const DaoButton: {
|
|
|
519
489
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
520
490
|
type: import("./props").ButtonType;
|
|
521
491
|
disabled: boolean;
|
|
522
|
-
useFont: boolean;
|
|
523
492
|
size: "sm" | "md";
|
|
524
493
|
block: boolean;
|
|
525
494
|
active: boolean;
|
|
@@ -17,10 +17,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
type: BooleanConstructor;
|
|
18
18
|
default: boolean;
|
|
19
19
|
};
|
|
20
|
-
useFont: {
|
|
21
|
-
type: BooleanConstructor;
|
|
22
|
-
default: boolean;
|
|
23
|
-
};
|
|
24
20
|
iconLeft: {
|
|
25
21
|
type: StringConstructor;
|
|
26
22
|
default: string;
|
|
@@ -79,12 +75,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
79
75
|
classList: import("vue").ComputedRef<string[]>;
|
|
80
76
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
81
77
|
isSimpleButton: import("vue").ComputedRef<boolean | undefined>;
|
|
82
|
-
isIconLeftFont: import("vue").ComputedRef<boolean>;
|
|
83
78
|
realIconLeft: import("vue").ComputedRef<string>;
|
|
84
|
-
isIconRightFont: import("vue").ComputedRef<boolean>;
|
|
85
79
|
realIconRight: import("vue").ComputedRef<string>;
|
|
86
|
-
leftIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
87
|
-
rightIconClassName: import("vue").ComputedRef<"dao-btn__iconfont" | "dao-btn__icon">;
|
|
88
80
|
actualTooltipOption: import("vue").ComputedRef<Partial<{
|
|
89
81
|
modelValue: boolean;
|
|
90
82
|
disabled: boolean;
|
|
@@ -126,10 +118,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
126
118
|
type: BooleanConstructor;
|
|
127
119
|
default: boolean;
|
|
128
120
|
};
|
|
129
|
-
useFont: {
|
|
130
|
-
type: BooleanConstructor;
|
|
131
|
-
default: boolean;
|
|
132
|
-
};
|
|
133
121
|
iconLeft: {
|
|
134
122
|
type: StringConstructor;
|
|
135
123
|
default: string;
|
|
@@ -187,7 +175,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
187
175
|
}>>, {
|
|
188
176
|
type: import("./props").ButtonType;
|
|
189
177
|
disabled: boolean;
|
|
190
|
-
useFont: boolean;
|
|
191
178
|
size: "sm" | "md";
|
|
192
179
|
block: boolean;
|
|
193
180
|
active: boolean;
|
|
@@ -8,7 +8,6 @@ declare const DaoCardHeader: {
|
|
|
8
8
|
type: "simple" | "standard";
|
|
9
9
|
icon: string;
|
|
10
10
|
title: string;
|
|
11
|
-
useFont: boolean;
|
|
12
11
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
13
12
|
type: {
|
|
14
13
|
type: import("vue").PropType<"simple" | "standard">;
|
|
@@ -18,15 +17,11 @@ declare const DaoCardHeader: {
|
|
|
18
17
|
type: StringConstructor;
|
|
19
18
|
default: undefined;
|
|
20
19
|
};
|
|
21
|
-
useFont: {
|
|
22
|
-
type: BooleanConstructor;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
20
|
title: {
|
|
26
21
|
type: StringConstructor;
|
|
27
22
|
default: undefined;
|
|
28
23
|
};
|
|
29
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "icon" | "title"
|
|
24
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "icon" | "title">;
|
|
30
25
|
$attrs: {
|
|
31
26
|
[x: string]: unknown;
|
|
32
27
|
};
|
|
@@ -49,10 +44,6 @@ declare const DaoCardHeader: {
|
|
|
49
44
|
type: StringConstructor;
|
|
50
45
|
default: undefined;
|
|
51
46
|
};
|
|
52
|
-
useFont: {
|
|
53
|
-
type: BooleanConstructor;
|
|
54
|
-
default: boolean;
|
|
55
|
-
};
|
|
56
47
|
title: {
|
|
57
48
|
type: StringConstructor;
|
|
58
49
|
default: undefined;
|
|
@@ -61,7 +52,6 @@ declare const DaoCardHeader: {
|
|
|
61
52
|
type: "simple" | "standard";
|
|
62
53
|
icon: string;
|
|
63
54
|
title: string;
|
|
64
|
-
useFont: boolean;
|
|
65
55
|
}, {}, string> & {
|
|
66
56
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
67
57
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -91,10 +81,6 @@ declare const DaoCardHeader: {
|
|
|
91
81
|
type: StringConstructor;
|
|
92
82
|
default: undefined;
|
|
93
83
|
};
|
|
94
|
-
useFont: {
|
|
95
|
-
type: BooleanConstructor;
|
|
96
|
-
default: boolean;
|
|
97
|
-
};
|
|
98
84
|
title: {
|
|
99
85
|
type: StringConstructor;
|
|
100
86
|
default: undefined;
|
|
@@ -112,10 +98,6 @@ declare const DaoCardHeader: {
|
|
|
112
98
|
type: StringConstructor;
|
|
113
99
|
default: undefined;
|
|
114
100
|
};
|
|
115
|
-
useFont: {
|
|
116
|
-
type: BooleanConstructor;
|
|
117
|
-
default: boolean;
|
|
118
|
-
};
|
|
119
101
|
title: {
|
|
120
102
|
type: StringConstructor;
|
|
121
103
|
default: undefined;
|
|
@@ -124,7 +106,6 @@ declare const DaoCardHeader: {
|
|
|
124
106
|
type: "simple" | "standard";
|
|
125
107
|
icon: string;
|
|
126
108
|
title: string;
|
|
127
|
-
useFont: boolean;
|
|
128
109
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
129
110
|
$props: Partial<CardHeaderProps>;
|
|
130
111
|
$slots: {
|
|
@@ -7,10 +7,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: undefined;
|
|
9
9
|
};
|
|
10
|
-
useFont: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
10
|
title: {
|
|
15
11
|
type: StringConstructor;
|
|
16
12
|
default: undefined;
|
|
@@ -24,10 +20,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
20
|
type: StringConstructor;
|
|
25
21
|
default: undefined;
|
|
26
22
|
};
|
|
27
|
-
useFont: {
|
|
28
|
-
type: BooleanConstructor;
|
|
29
|
-
default: boolean;
|
|
30
|
-
};
|
|
31
23
|
title: {
|
|
32
24
|
type: StringConstructor;
|
|
33
25
|
default: undefined;
|
|
@@ -36,6 +28,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
36
28
|
type: "simple" | "standard";
|
|
37
29
|
icon: string;
|
|
38
30
|
title: string;
|
|
39
|
-
useFont: boolean;
|
|
40
31
|
}>;
|
|
41
32
|
export default _default;
|
|
@@ -9,10 +9,6 @@ export declare const cardProps: {
|
|
|
9
9
|
type: StringConstructor;
|
|
10
10
|
default: undefined;
|
|
11
11
|
};
|
|
12
|
-
useFont: {
|
|
13
|
-
type: BooleanConstructor;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
12
|
title: {
|
|
17
13
|
type: StringConstructor;
|
|
18
14
|
default: undefined;
|
|
@@ -31,10 +27,6 @@ export declare const cardHeaderProps: {
|
|
|
31
27
|
type: StringConstructor;
|
|
32
28
|
default: undefined;
|
|
33
29
|
};
|
|
34
|
-
useFont: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
30
|
title: {
|
|
39
31
|
type: StringConstructor;
|
|
40
32
|
default: undefined;
|
|
@@ -8,7 +8,6 @@ declare const DaoCard: {
|
|
|
8
8
|
type: import("./types").CardType;
|
|
9
9
|
icon: string;
|
|
10
10
|
title: string;
|
|
11
|
-
useFont: boolean;
|
|
12
11
|
divider: boolean;
|
|
13
12
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
14
13
|
type: {
|
|
@@ -19,10 +18,6 @@ declare const DaoCard: {
|
|
|
19
18
|
type: StringConstructor;
|
|
20
19
|
default: undefined;
|
|
21
20
|
};
|
|
22
|
-
useFont: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
21
|
title: {
|
|
27
22
|
type: StringConstructor;
|
|
28
23
|
default: undefined;
|
|
@@ -31,7 +26,7 @@ declare const DaoCard: {
|
|
|
31
26
|
type: BooleanConstructor;
|
|
32
27
|
default: boolean;
|
|
33
28
|
};
|
|
34
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "icon" | "title" | "
|
|
29
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "icon" | "title" | "divider">;
|
|
35
30
|
$attrs: {
|
|
36
31
|
[x: string]: unknown;
|
|
37
32
|
};
|
|
@@ -54,10 +49,6 @@ declare const DaoCard: {
|
|
|
54
49
|
type: StringConstructor;
|
|
55
50
|
default: undefined;
|
|
56
51
|
};
|
|
57
|
-
useFont: {
|
|
58
|
-
type: BooleanConstructor;
|
|
59
|
-
default: boolean;
|
|
60
|
-
};
|
|
61
52
|
title: {
|
|
62
53
|
type: StringConstructor;
|
|
63
54
|
default: undefined;
|
|
@@ -72,7 +63,6 @@ declare const DaoCard: {
|
|
|
72
63
|
type: import("./types").CardType;
|
|
73
64
|
icon: string;
|
|
74
65
|
title: string;
|
|
75
|
-
useFont: boolean;
|
|
76
66
|
divider: boolean;
|
|
77
67
|
}, {}, string> & {
|
|
78
68
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -103,10 +93,6 @@ declare const DaoCard: {
|
|
|
103
93
|
type: StringConstructor;
|
|
104
94
|
default: undefined;
|
|
105
95
|
};
|
|
106
|
-
useFont: {
|
|
107
|
-
type: BooleanConstructor;
|
|
108
|
-
default: boolean;
|
|
109
|
-
};
|
|
110
96
|
title: {
|
|
111
97
|
type: StringConstructor;
|
|
112
98
|
default: undefined;
|
|
@@ -130,10 +116,6 @@ declare const DaoCard: {
|
|
|
130
116
|
type: StringConstructor;
|
|
131
117
|
default: undefined;
|
|
132
118
|
};
|
|
133
|
-
useFont: {
|
|
134
|
-
type: BooleanConstructor;
|
|
135
|
-
default: boolean;
|
|
136
|
-
};
|
|
137
119
|
title: {
|
|
138
120
|
type: StringConstructor;
|
|
139
121
|
default: undefined;
|
|
@@ -148,7 +130,6 @@ declare const DaoCard: {
|
|
|
148
130
|
type: import("./types").CardType;
|
|
149
131
|
icon: string;
|
|
150
132
|
title: string;
|
|
151
|
-
useFont: boolean;
|
|
152
133
|
divider: boolean;
|
|
153
134
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
154
135
|
$props: Partial<CardProps>;
|
|
@@ -7,10 +7,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: undefined;
|
|
9
9
|
};
|
|
10
|
-
useFont: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
10
|
title: {
|
|
15
11
|
type: StringConstructor;
|
|
16
12
|
default: undefined;
|
|
@@ -30,10 +26,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
26
|
type: StringConstructor;
|
|
31
27
|
default: undefined;
|
|
32
28
|
};
|
|
33
|
-
useFont: {
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
29
|
title: {
|
|
38
30
|
type: StringConstructor;
|
|
39
31
|
default: undefined;
|
|
@@ -46,7 +38,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
38
|
type: import("./types").CardType;
|
|
47
39
|
icon: string;
|
|
48
40
|
title: string;
|
|
49
|
-
useFont: boolean;
|
|
50
41
|
divider: boolean;
|
|
51
42
|
}>;
|
|
52
43
|
export default _default;
|
|
@@ -6,7 +6,6 @@ declare const DaoNavHead: {
|
|
|
6
6
|
$props: Partial<{
|
|
7
7
|
icon: string;
|
|
8
8
|
title: string;
|
|
9
|
-
useFont: boolean;
|
|
10
9
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
11
10
|
icon: {
|
|
12
11
|
type: StringConstructor;
|
|
@@ -16,11 +15,7 @@ declare const DaoNavHead: {
|
|
|
16
15
|
type: StringConstructor;
|
|
17
16
|
default: string;
|
|
18
17
|
};
|
|
19
|
-
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "icon" | "title" | "useFont">;
|
|
18
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "icon" | "title">;
|
|
24
19
|
$attrs: {
|
|
25
20
|
[x: string]: unknown;
|
|
26
21
|
};
|
|
@@ -43,21 +38,15 @@ declare const DaoNavHead: {
|
|
|
43
38
|
type: StringConstructor;
|
|
44
39
|
default: string;
|
|
45
40
|
};
|
|
46
|
-
useFont: {
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
default: boolean;
|
|
49
|
-
};
|
|
50
41
|
}>>, {
|
|
51
42
|
classHeadList: import("vue").ComputedRef<string[]>;
|
|
52
43
|
headIcon: import("vue").ComputedRef<string>;
|
|
53
44
|
title: import("vue").Ref<string>;
|
|
54
|
-
isFontType: import("vue").ComputedRef<boolean>;
|
|
55
45
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
56
46
|
handleClickBack: () => void;
|
|
57
47
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
58
48
|
icon: string;
|
|
59
49
|
title: string;
|
|
60
|
-
useFont: boolean;
|
|
61
50
|
}, {}, string> & {
|
|
62
51
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
63
52
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -87,15 +76,10 @@ declare const DaoNavHead: {
|
|
|
87
76
|
type: StringConstructor;
|
|
88
77
|
default: string;
|
|
89
78
|
};
|
|
90
|
-
useFont: {
|
|
91
|
-
type: BooleanConstructor;
|
|
92
|
-
default: boolean;
|
|
93
|
-
};
|
|
94
79
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
95
80
|
classHeadList: import("vue").ComputedRef<string[]>;
|
|
96
81
|
headIcon: import("vue").ComputedRef<string>;
|
|
97
82
|
title: import("vue").Ref<string>;
|
|
98
|
-
isFontType: import("vue").ComputedRef<boolean>;
|
|
99
83
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
100
84
|
handleClickBack: () => void;
|
|
101
85
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -111,21 +95,15 @@ declare const DaoNavHead: {
|
|
|
111
95
|
type: StringConstructor;
|
|
112
96
|
default: string;
|
|
113
97
|
};
|
|
114
|
-
useFont: {
|
|
115
|
-
type: BooleanConstructor;
|
|
116
|
-
default: boolean;
|
|
117
|
-
};
|
|
118
98
|
}>>, {
|
|
119
99
|
classHeadList: import("vue").ComputedRef<string[]>;
|
|
120
100
|
headIcon: import("vue").ComputedRef<string>;
|
|
121
101
|
title: import("vue").Ref<string>;
|
|
122
|
-
isFontType: import("vue").ComputedRef<boolean>;
|
|
123
102
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
124
103
|
handleClickBack: () => void;
|
|
125
104
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
126
105
|
icon: string;
|
|
127
106
|
title: string;
|
|
128
|
-
useFont: boolean;
|
|
129
107
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
130
108
|
$slots: {
|
|
131
109
|
default: SlotFn;
|
|
@@ -7,15 +7,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
|
-
useFont: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
10
|
}, {
|
|
15
11
|
classHeadList: import("vue").ComputedRef<string[]>;
|
|
16
12
|
headIcon: import("vue").ComputedRef<string>;
|
|
17
13
|
title: import("vue").Ref<string>;
|
|
18
|
-
isFontType: import("vue").ComputedRef<boolean>;
|
|
19
14
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
20
15
|
handleClickBack: () => void;
|
|
21
16
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -27,13 +22,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
22
|
type: StringConstructor;
|
|
28
23
|
default: string;
|
|
29
24
|
};
|
|
30
|
-
useFont: {
|
|
31
|
-
type: BooleanConstructor;
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
25
|
}>>, {
|
|
35
26
|
icon: string;
|
|
36
27
|
title: string;
|
|
37
|
-
useFont: boolean;
|
|
38
28
|
}>;
|
|
39
29
|
export default _default;
|
|
@@ -7,7 +7,6 @@ declare const DaoNavItem: {
|
|
|
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;
|
|
@@ -39,10 +38,6 @@ declare const DaoNavItem: {
|
|
|
39
38
|
type: StringConstructor;
|
|
40
39
|
default: string;
|
|
41
40
|
};
|
|
42
|
-
useFont: {
|
|
43
|
-
type: BooleanConstructor;
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
41
|
external: {
|
|
47
42
|
type: BooleanConstructor;
|
|
48
43
|
default: boolean;
|
|
@@ -57,7 +52,7 @@ declare const DaoNavItem: {
|
|
|
57
52
|
};
|
|
58
53
|
}>> & {
|
|
59
54
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
60
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "
|
|
55
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "index" | "isActive" | "isExactActive" | "external" | "locked" | "useNormalMode">;
|
|
61
56
|
$attrs: {
|
|
62
57
|
[x: string]: unknown;
|
|
63
58
|
};
|
|
@@ -96,10 +91,6 @@ declare const DaoNavItem: {
|
|
|
96
91
|
type: StringConstructor;
|
|
97
92
|
default: string;
|
|
98
93
|
};
|
|
99
|
-
useFont: {
|
|
100
|
-
type: BooleanConstructor;
|
|
101
|
-
default: boolean;
|
|
102
|
-
};
|
|
103
94
|
external: {
|
|
104
95
|
type: BooleanConstructor;
|
|
105
96
|
default: boolean;
|
|
@@ -125,14 +116,12 @@ declare const DaoNavItem: {
|
|
|
125
116
|
icon: import("vue").Ref<string>;
|
|
126
117
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
127
118
|
title: import("vue").Ref<string>;
|
|
128
|
-
useFont: import("vue").Ref<boolean>;
|
|
129
119
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
130
120
|
handleClick: () => void;
|
|
131
121
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], string, {
|
|
132
122
|
disabled: boolean;
|
|
133
123
|
icon: string;
|
|
134
124
|
title: string;
|
|
135
|
-
useFont: boolean;
|
|
136
125
|
index: import("./props").IndexType;
|
|
137
126
|
isActive: boolean;
|
|
138
127
|
isExactActive: boolean;
|
|
@@ -184,10 +173,6 @@ declare const DaoNavItem: {
|
|
|
184
173
|
type: StringConstructor;
|
|
185
174
|
default: string;
|
|
186
175
|
};
|
|
187
|
-
useFont: {
|
|
188
|
-
type: BooleanConstructor;
|
|
189
|
-
default: boolean;
|
|
190
|
-
};
|
|
191
176
|
external: {
|
|
192
177
|
type: BooleanConstructor;
|
|
193
178
|
default: boolean;
|
|
@@ -213,7 +198,6 @@ declare const DaoNavItem: {
|
|
|
213
198
|
icon: import("vue").Ref<string>;
|
|
214
199
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
215
200
|
title: import("vue").Ref<string>;
|
|
216
|
-
useFont: import("vue").Ref<boolean>;
|
|
217
201
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
218
202
|
handleClick: () => void;
|
|
219
203
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -245,10 +229,6 @@ declare const DaoNavItem: {
|
|
|
245
229
|
type: StringConstructor;
|
|
246
230
|
default: string;
|
|
247
231
|
};
|
|
248
|
-
useFont: {
|
|
249
|
-
type: BooleanConstructor;
|
|
250
|
-
default: boolean;
|
|
251
|
-
};
|
|
252
232
|
external: {
|
|
253
233
|
type: BooleanConstructor;
|
|
254
234
|
default: boolean;
|
|
@@ -274,14 +254,12 @@ declare const DaoNavItem: {
|
|
|
274
254
|
icon: import("vue").Ref<string>;
|
|
275
255
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
276
256
|
title: import("vue").Ref<string>;
|
|
277
|
-
useFont: import("vue").Ref<boolean>;
|
|
278
257
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
279
258
|
handleClick: () => void;
|
|
280
259
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", {
|
|
281
260
|
disabled: boolean;
|
|
282
261
|
icon: string;
|
|
283
262
|
title: string;
|
|
284
|
-
useFont: boolean;
|
|
285
263
|
index: import("./props").IndexType;
|
|
286
264
|
isActive: boolean;
|
|
287
265
|
isExactActive: boolean;
|
|
@@ -23,10 +23,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
type: StringConstructor;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
-
useFont: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
26
|
external: {
|
|
31
27
|
type: BooleanConstructor;
|
|
32
28
|
default: boolean;
|
|
@@ -50,7 +46,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
46
|
icon: import("vue").Ref<string>;
|
|
51
47
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
52
48
|
title: import("vue").Ref<string>;
|
|
53
|
-
useFont: import("vue").Ref<boolean>;
|
|
54
49
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
55
50
|
handleClick: () => void;
|
|
56
51
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -78,10 +73,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
78
73
|
type: StringConstructor;
|
|
79
74
|
default: string;
|
|
80
75
|
};
|
|
81
|
-
useFont: {
|
|
82
|
-
type: BooleanConstructor;
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
76
|
external: {
|
|
86
77
|
type: BooleanConstructor;
|
|
87
78
|
default: boolean;
|
|
@@ -100,7 +91,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
100
91
|
disabled: boolean;
|
|
101
92
|
icon: string;
|
|
102
93
|
title: string;
|
|
103
|
-
useFont: boolean;
|
|
104
94
|
index: import("./props").IndexType;
|
|
105
95
|
isActive: boolean;
|
|
106
96
|
isExactActive: boolean;
|