@dao-style/core 1.28.0 → 1.29.0
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/form/form-item.d.ts +20 -1
- package/dist/components/form/form-item.vue.d.ts +9 -0
- package/dist/components/form/props.d.ts +4 -0
- package/dist/components/nav/nav-item.d.ts +26 -4
- package/dist/components/nav/nav-item.vue.d.ts +11 -1
- package/dist/components/nav/nav-sub.d.ts +26 -4
- package/dist/components/nav/nav-sub.vue.d.ts +11 -1
- package/dist/components/nav/props.d.ts +10 -2
- package/dist/dao-style.js +7 -7
- package/dist/dao-style.mjs +2472 -2430
- package/dist/font/DaoCloudIconFont/DaoCloudIconFont.woff2 +0 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ declare const DaoFormItem: {
|
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
7
|
error: string;
|
|
8
|
+
type: "vertical" | "horizontal";
|
|
8
9
|
label: string;
|
|
9
10
|
required: boolean;
|
|
10
11
|
helper: string;
|
|
@@ -50,7 +51,11 @@ declare const DaoFormItem: {
|
|
|
50
51
|
type: import("vue").PropType<string>;
|
|
51
52
|
default: undefined;
|
|
52
53
|
};
|
|
53
|
-
|
|
54
|
+
type: {
|
|
55
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
56
|
+
default: undefined;
|
|
57
|
+
};
|
|
58
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "type" | "label" | "required" | "helper" | "paddingBottom" | "paddingTop" | "labelWidth" | "wrapperType" | "iconMessage">;
|
|
54
59
|
$attrs: {
|
|
55
60
|
[x: string]: unknown;
|
|
56
61
|
};
|
|
@@ -101,6 +106,10 @@ declare const DaoFormItem: {
|
|
|
101
106
|
type: import("vue").PropType<string>;
|
|
102
107
|
default: undefined;
|
|
103
108
|
};
|
|
109
|
+
type: {
|
|
110
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
111
|
+
default: undefined;
|
|
112
|
+
};
|
|
104
113
|
}>>, {
|
|
105
114
|
labelStyle: import("vue").ComputedRef<{
|
|
106
115
|
width: string;
|
|
@@ -132,6 +141,7 @@ declare const DaoFormItem: {
|
|
|
132
141
|
};
|
|
133
142
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
134
143
|
error: string;
|
|
144
|
+
type: "vertical" | "horizontal";
|
|
135
145
|
label: string;
|
|
136
146
|
required: boolean;
|
|
137
147
|
helper: string;
|
|
@@ -197,6 +207,10 @@ declare const DaoFormItem: {
|
|
|
197
207
|
type: import("vue").PropType<string>;
|
|
198
208
|
default: undefined;
|
|
199
209
|
};
|
|
210
|
+
type: {
|
|
211
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
212
|
+
default: undefined;
|
|
213
|
+
};
|
|
200
214
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
201
215
|
labelStyle: import("vue").ComputedRef<{
|
|
202
216
|
width: string;
|
|
@@ -267,6 +281,10 @@ declare const DaoFormItem: {
|
|
|
267
281
|
type: import("vue").PropType<string>;
|
|
268
282
|
default: undefined;
|
|
269
283
|
};
|
|
284
|
+
type: {
|
|
285
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
286
|
+
default: undefined;
|
|
287
|
+
};
|
|
270
288
|
}>>, {
|
|
271
289
|
labelStyle: import("vue").ComputedRef<{
|
|
272
290
|
width: string;
|
|
@@ -298,6 +316,7 @@ declare const DaoFormItem: {
|
|
|
298
316
|
};
|
|
299
317
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
300
318
|
error: string;
|
|
319
|
+
type: "vertical" | "horizontal";
|
|
301
320
|
label: string;
|
|
302
321
|
required: boolean;
|
|
303
322
|
helper: string;
|
|
@@ -35,6 +35,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
35
|
type: import("vue").PropType<string>;
|
|
36
36
|
default: undefined;
|
|
37
37
|
};
|
|
38
|
+
type: {
|
|
39
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
38
42
|
}, {
|
|
39
43
|
labelStyle: import("vue").ComputedRef<{
|
|
40
44
|
width: string;
|
|
@@ -101,8 +105,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
101
105
|
type: import("vue").PropType<string>;
|
|
102
106
|
default: undefined;
|
|
103
107
|
};
|
|
108
|
+
type: {
|
|
109
|
+
type: import("vue").PropType<"vertical" | "horizontal">;
|
|
110
|
+
default: undefined;
|
|
111
|
+
};
|
|
104
112
|
}>>, {
|
|
105
113
|
error: string;
|
|
114
|
+
type: "vertical" | "horizontal";
|
|
106
115
|
label: string;
|
|
107
116
|
required: boolean;
|
|
108
117
|
helper: string;
|
|
@@ -37,6 +37,10 @@ export declare const formItemProps: {
|
|
|
37
37
|
type: PropType<string>;
|
|
38
38
|
default: undefined;
|
|
39
39
|
};
|
|
40
|
+
type: {
|
|
41
|
+
type: PropType<"vertical" | "horizontal">;
|
|
42
|
+
default: undefined;
|
|
43
|
+
};
|
|
40
44
|
};
|
|
41
45
|
export type FormItemProps = ExtractPropTypes<typeof formItemProps>;
|
|
42
46
|
export declare const formProps: {
|
|
@@ -13,6 +13,7 @@ declare const DaoNavItem: {
|
|
|
13
13
|
external: boolean;
|
|
14
14
|
locked: boolean;
|
|
15
15
|
useNormalMode: boolean;
|
|
16
|
+
href: string;
|
|
16
17
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
17
18
|
disabled: {
|
|
18
19
|
type: BooleanConstructor;
|
|
@@ -50,9 +51,13 @@ declare const DaoNavItem: {
|
|
|
50
51
|
type: BooleanConstructor;
|
|
51
52
|
default: undefined;
|
|
52
53
|
};
|
|
54
|
+
href: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: undefined;
|
|
57
|
+
};
|
|
53
58
|
}>> & {
|
|
54
59
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
55
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "index" | "isActive" | "isExactActive" | "external" | "locked" | "useNormalMode">;
|
|
60
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "index" | "isActive" | "isExactActive" | "external" | "locked" | "useNormalMode" | "href">;
|
|
56
61
|
$attrs: {
|
|
57
62
|
[x: string]: unknown;
|
|
58
63
|
};
|
|
@@ -103,6 +108,10 @@ declare const DaoNavItem: {
|
|
|
103
108
|
type: BooleanConstructor;
|
|
104
109
|
default: undefined;
|
|
105
110
|
};
|
|
111
|
+
href: {
|
|
112
|
+
type: StringConstructor;
|
|
113
|
+
default: undefined;
|
|
114
|
+
};
|
|
106
115
|
}>> & {
|
|
107
116
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
108
117
|
}, {
|
|
@@ -117,7 +126,8 @@ declare const DaoNavItem: {
|
|
|
117
126
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
118
127
|
title: import("vue").Ref<string>;
|
|
119
128
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
120
|
-
handleClick: () => void;
|
|
129
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
130
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
121
131
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], string, {
|
|
122
132
|
disabled: boolean;
|
|
123
133
|
icon: string;
|
|
@@ -128,6 +138,7 @@ declare const DaoNavItem: {
|
|
|
128
138
|
external: boolean;
|
|
129
139
|
locked: boolean;
|
|
130
140
|
useNormalMode: boolean;
|
|
141
|
+
href: string;
|
|
131
142
|
}, {}, string> & {
|
|
132
143
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
133
144
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -185,6 +196,10 @@ declare const DaoNavItem: {
|
|
|
185
196
|
type: BooleanConstructor;
|
|
186
197
|
default: undefined;
|
|
187
198
|
};
|
|
199
|
+
href: {
|
|
200
|
+
type: StringConstructor;
|
|
201
|
+
default: undefined;
|
|
202
|
+
};
|
|
188
203
|
}>> & {
|
|
189
204
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
190
205
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -199,7 +214,8 @@ declare const DaoNavItem: {
|
|
|
199
214
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
200
215
|
title: import("vue").Ref<string>;
|
|
201
216
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
202
|
-
handleClick: () => void;
|
|
217
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
218
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
203
219
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
204
220
|
__isFragment?: undefined;
|
|
205
221
|
__isTeleport?: undefined;
|
|
@@ -241,6 +257,10 @@ declare const DaoNavItem: {
|
|
|
241
257
|
type: BooleanConstructor;
|
|
242
258
|
default: undefined;
|
|
243
259
|
};
|
|
260
|
+
href: {
|
|
261
|
+
type: StringConstructor;
|
|
262
|
+
default: undefined;
|
|
263
|
+
};
|
|
244
264
|
}>> & {
|
|
245
265
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
246
266
|
}, {
|
|
@@ -255,7 +275,8 @@ declare const DaoNavItem: {
|
|
|
255
275
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
256
276
|
title: import("vue").Ref<string>;
|
|
257
277
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
258
|
-
handleClick: () => void;
|
|
278
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
279
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
259
280
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", {
|
|
260
281
|
disabled: boolean;
|
|
261
282
|
icon: string;
|
|
@@ -266,6 +287,7 @@ declare const DaoNavItem: {
|
|
|
266
287
|
external: boolean;
|
|
267
288
|
locked: boolean;
|
|
268
289
|
useNormalMode: boolean;
|
|
290
|
+
href: string;
|
|
269
291
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
270
292
|
$slots: {
|
|
271
293
|
default: SlotFn;
|
|
@@ -35,6 +35,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
35
|
type: BooleanConstructor;
|
|
36
36
|
default: undefined;
|
|
37
37
|
};
|
|
38
|
+
href: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
38
42
|
}, {
|
|
39
43
|
classItemList: import("vue").ComputedRef<(string | {
|
|
40
44
|
'dao-nav__item-disabled': boolean;
|
|
@@ -47,7 +51,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
51
|
showIcon: import("vue").ComputedRef<boolean>;
|
|
48
52
|
title: import("vue").Ref<string>;
|
|
49
53
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
50
|
-
handleClick: () => void;
|
|
54
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
55
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
51
56
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
57
|
disabled: {
|
|
53
58
|
type: BooleanConstructor;
|
|
@@ -85,6 +90,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
90
|
type: BooleanConstructor;
|
|
86
91
|
default: undefined;
|
|
87
92
|
};
|
|
93
|
+
href: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
default: undefined;
|
|
96
|
+
};
|
|
88
97
|
}>> & {
|
|
89
98
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
90
99
|
}, {
|
|
@@ -97,5 +106,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
106
|
external: boolean;
|
|
98
107
|
locked: boolean;
|
|
99
108
|
useNormalMode: boolean;
|
|
109
|
+
href: string;
|
|
100
110
|
}>;
|
|
101
111
|
export default _default;
|
|
@@ -13,6 +13,7 @@ declare const DaoNavSub: {
|
|
|
13
13
|
external: boolean;
|
|
14
14
|
locked: boolean;
|
|
15
15
|
useNormalMode: boolean;
|
|
16
|
+
href: string;
|
|
16
17
|
fold: boolean;
|
|
17
18
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
18
19
|
disabled: {
|
|
@@ -55,9 +56,13 @@ declare const DaoNavSub: {
|
|
|
55
56
|
type: BooleanConstructor;
|
|
56
57
|
default: undefined;
|
|
57
58
|
};
|
|
59
|
+
href: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
58
63
|
}>> & {
|
|
59
64
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
60
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "index" | "isActive" | "isExactActive" | "external" | "locked" | "useNormalMode" | "fold">;
|
|
65
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "icon" | "title" | "index" | "isActive" | "isExactActive" | "external" | "locked" | "useNormalMode" | "href" | "fold">;
|
|
61
66
|
$attrs: {
|
|
62
67
|
[x: string]: unknown;
|
|
63
68
|
};
|
|
@@ -112,6 +117,10 @@ declare const DaoNavSub: {
|
|
|
112
117
|
type: BooleanConstructor;
|
|
113
118
|
default: undefined;
|
|
114
119
|
};
|
|
120
|
+
href: {
|
|
121
|
+
type: StringConstructor;
|
|
122
|
+
default: undefined;
|
|
123
|
+
};
|
|
115
124
|
}>> & {
|
|
116
125
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
117
126
|
}, {
|
|
@@ -132,7 +141,8 @@ declare const DaoNavSub: {
|
|
|
132
141
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
133
142
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
134
143
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
135
|
-
handleClick: () => void;
|
|
144
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
145
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
136
146
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], string, {
|
|
137
147
|
disabled: boolean;
|
|
138
148
|
icon: string;
|
|
@@ -143,6 +153,7 @@ declare const DaoNavSub: {
|
|
|
143
153
|
external: boolean;
|
|
144
154
|
locked: boolean;
|
|
145
155
|
useNormalMode: boolean;
|
|
156
|
+
href: string;
|
|
146
157
|
fold: boolean;
|
|
147
158
|
}, {}, string> & {
|
|
148
159
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -205,6 +216,10 @@ declare const DaoNavSub: {
|
|
|
205
216
|
type: BooleanConstructor;
|
|
206
217
|
default: undefined;
|
|
207
218
|
};
|
|
219
|
+
href: {
|
|
220
|
+
type: StringConstructor;
|
|
221
|
+
default: undefined;
|
|
222
|
+
};
|
|
208
223
|
}>> & {
|
|
209
224
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
210
225
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -225,7 +240,8 @@ declare const DaoNavSub: {
|
|
|
225
240
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
226
241
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
227
242
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
228
|
-
handleClick: () => void;
|
|
243
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
244
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
229
245
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
230
246
|
__isFragment?: undefined;
|
|
231
247
|
__isTeleport?: undefined;
|
|
@@ -271,6 +287,10 @@ declare const DaoNavSub: {
|
|
|
271
287
|
type: BooleanConstructor;
|
|
272
288
|
default: undefined;
|
|
273
289
|
};
|
|
290
|
+
href: {
|
|
291
|
+
type: StringConstructor;
|
|
292
|
+
default: undefined;
|
|
293
|
+
};
|
|
274
294
|
}>> & {
|
|
275
295
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
276
296
|
}, {
|
|
@@ -291,7 +311,8 @@ declare const DaoNavSub: {
|
|
|
291
311
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
292
312
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
293
313
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
294
|
-
handleClick: () => void;
|
|
314
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
315
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
295
316
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", {
|
|
296
317
|
disabled: boolean;
|
|
297
318
|
icon: string;
|
|
@@ -302,6 +323,7 @@ declare const DaoNavSub: {
|
|
|
302
323
|
external: boolean;
|
|
303
324
|
locked: boolean;
|
|
304
325
|
useNormalMode: boolean;
|
|
326
|
+
href: string;
|
|
305
327
|
fold: boolean;
|
|
306
328
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
307
329
|
$slots: {
|
|
@@ -40,6 +40,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
type: BooleanConstructor;
|
|
41
41
|
default: undefined;
|
|
42
42
|
};
|
|
43
|
+
href: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: undefined;
|
|
46
|
+
};
|
|
43
47
|
}, {
|
|
44
48
|
classSubList: import("vue").ComputedRef<(string | {
|
|
45
49
|
'dao-nav__sub-disabled': boolean;
|
|
@@ -58,7 +62,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
62
|
realLocked: import("vue").ComputedRef<boolean>;
|
|
59
63
|
isExternal: import("vue").ComputedRef<boolean>;
|
|
60
64
|
iconRightName: import("vue").ComputedRef<"icon-locker" | "icon-new-tab" | undefined>;
|
|
61
|
-
handleClick: () => void;
|
|
65
|
+
handleClick: (e: MouseEvent | KeyboardEvent) => void;
|
|
66
|
+
handleMiddleClick: (e: MouseEvent) => void;
|
|
62
67
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
68
|
disabled: {
|
|
64
69
|
type: BooleanConstructor;
|
|
@@ -100,6 +105,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
100
105
|
type: BooleanConstructor;
|
|
101
106
|
default: undefined;
|
|
102
107
|
};
|
|
108
|
+
href: {
|
|
109
|
+
type: StringConstructor;
|
|
110
|
+
default: undefined;
|
|
111
|
+
};
|
|
103
112
|
}>> & {
|
|
104
113
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
105
114
|
}, {
|
|
@@ -112,6 +121,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
112
121
|
external: boolean;
|
|
113
122
|
locked: boolean;
|
|
114
123
|
useNormalMode: boolean;
|
|
124
|
+
href: string;
|
|
115
125
|
fold: boolean;
|
|
116
126
|
}>;
|
|
117
127
|
export default _default;
|
|
@@ -82,9 +82,13 @@ export declare const navSubProps: {
|
|
|
82
82
|
type: BooleanConstructor;
|
|
83
83
|
default: undefined;
|
|
84
84
|
};
|
|
85
|
+
href: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: undefined;
|
|
88
|
+
};
|
|
85
89
|
};
|
|
86
90
|
export declare const navSubEmits: {
|
|
87
|
-
click: () => void;
|
|
91
|
+
click: (e: MouseEvent | KeyboardEvent) => void;
|
|
88
92
|
};
|
|
89
93
|
export type NavSubEmits = typeof navSubEmits;
|
|
90
94
|
export declare const navItemProps: {
|
|
@@ -124,8 +128,12 @@ export declare const navItemProps: {
|
|
|
124
128
|
type: BooleanConstructor;
|
|
125
129
|
default: undefined;
|
|
126
130
|
};
|
|
131
|
+
href: {
|
|
132
|
+
type: StringConstructor;
|
|
133
|
+
default: undefined;
|
|
134
|
+
};
|
|
127
135
|
};
|
|
128
136
|
export declare const navItemEmits: {
|
|
129
|
-
click: () => void;
|
|
137
|
+
click: (e: MouseEvent | KeyboardEvent) => void;
|
|
130
138
|
};
|
|
131
139
|
export type NavItemEmits = typeof navItemEmits;
|