@fastkit/vui 0.6.15 → 0.6.16
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/tool/index.js +8 -0
- package/dist/tool/vite-plugin.d.ts.map +1 -1
- package/dist/vui.cjs.js +322 -72
- package/dist/vui.cjs.prod.js +322 -72
- package/dist/vui.css +66 -6
- package/dist/vui.d.ts +159 -47
- package/dist/vui.esm-bundler.js +320 -73
- package/dist/vui.min.css +1 -1
- package/dist/vui.min.css.map +1 -1
- package/package.json +6 -6
package/dist/vui.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ import { VueForm } from '@fastkit/vue-kit';
|
|
|
53
53
|
import { VueStackServiceOptions } from '@fastkit/vue-kit';
|
|
54
54
|
import { WritableComputedRef } from 'vue';
|
|
55
55
|
|
|
56
|
+
declare type ARGS = Record<string, unknown> & VNodeProps;
|
|
57
|
+
|
|
56
58
|
export declare const CONTROL_FIELD_VARIANTS: readonly ["outlined", "filled", "flat"];
|
|
57
59
|
|
|
58
60
|
export declare const CONTROL_SIZES: readonly ["sm", "md", "lg"];
|
|
@@ -77,11 +79,15 @@ export declare interface ControlProvider {
|
|
|
77
79
|
export declare type ControlSize = typeof CONTROL_SIZES[number];
|
|
78
80
|
|
|
79
81
|
export declare function createCardProps(): {
|
|
82
|
+
square: BooleanConstructor;
|
|
83
|
+
headerProps: PropType<Record<string, unknown> & VNodeProps>;
|
|
84
|
+
bodyProps: PropType<Record<string, unknown> & VNodeProps>;
|
|
85
|
+
footerProps: PropType<Record<string, unknown> & VNodeProps>;
|
|
80
86
|
'v-slots': PropType<ResolveRawSlots<{
|
|
81
87
|
header: void;
|
|
88
|
+
default: void;
|
|
82
89
|
footer: void;
|
|
83
90
|
}>>;
|
|
84
|
-
square: BooleanConstructor;
|
|
85
91
|
color: PropType<ScopeName>;
|
|
86
92
|
tag: {
|
|
87
93
|
type: StringConstructor;
|
|
@@ -108,14 +114,15 @@ export declare function createElevationProps(): {
|
|
|
108
114
|
elevation: PropType<VuiElevationValue>;
|
|
109
115
|
};
|
|
110
116
|
|
|
111
|
-
export declare function createListTileProps
|
|
112
|
-
startIcon: PropType<RawIconProp
|
|
113
|
-
endIcon: PropType<RawIconProp
|
|
117
|
+
export declare function createListTileProps(): {
|
|
118
|
+
startIcon: PropType<RawIconProp>;
|
|
119
|
+
endIcon: PropType<RawIconProp>;
|
|
114
120
|
fallbackTag: {
|
|
115
121
|
type: StringConstructor;
|
|
116
122
|
default: string;
|
|
117
123
|
};
|
|
118
|
-
|
|
124
|
+
startIconEmptySpace: BooleanConstructor;
|
|
125
|
+
color: PropType<ScopeName>;
|
|
119
126
|
tag: StringConstructor;
|
|
120
127
|
to: PropType<RouteLocationRaw>;
|
|
121
128
|
replace: BooleanConstructor;
|
|
@@ -141,13 +148,15 @@ export declare function createListTileProps<T = void>(): {
|
|
|
141
148
|
};
|
|
142
149
|
|
|
143
150
|
export declare function createNavigationItemProps(): {
|
|
144
|
-
|
|
145
|
-
|
|
151
|
+
match: StringConstructor;
|
|
152
|
+
startIcon: PropType<RawIconProp>;
|
|
153
|
+
endIcon: PropType<RawIconProp>;
|
|
146
154
|
fallbackTag: {
|
|
147
155
|
type: StringConstructor;
|
|
148
156
|
default: string;
|
|
149
157
|
};
|
|
150
|
-
|
|
158
|
+
startIconEmptySpace: BooleanConstructor;
|
|
159
|
+
color: PropType<ScopeName>;
|
|
151
160
|
tag: StringConstructor;
|
|
152
161
|
to: PropType<RouteLocationRaw>;
|
|
153
162
|
replace: BooleanConstructor;
|
|
@@ -172,12 +181,29 @@ export declare function createNavigationItemProps(): {
|
|
|
172
181
|
type: PropType<"submit" | "reset" | "button" | undefined>;
|
|
173
182
|
};
|
|
174
183
|
|
|
175
|
-
export declare function
|
|
184
|
+
export declare function createPaperBaseProps(): {
|
|
176
185
|
'v-slots': PropType<ResolveRawSlots_2<{
|
|
177
186
|
header: void;
|
|
187
|
+
default: void;
|
|
178
188
|
footer: void;
|
|
179
189
|
}>>;
|
|
190
|
+
color: PropType<ScopeName>;
|
|
191
|
+
tag: {
|
|
192
|
+
type: StringConstructor;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
export declare function createPaperProps(): {
|
|
180
198
|
square: BooleanConstructor;
|
|
199
|
+
headerProps: PropType<ARGS>;
|
|
200
|
+
bodyProps: PropType<ARGS>;
|
|
201
|
+
footerProps: PropType<ARGS>;
|
|
202
|
+
'v-slots': PropType<ResolveRawSlots_2<{
|
|
203
|
+
header: void;
|
|
204
|
+
default: void;
|
|
205
|
+
footer: void;
|
|
206
|
+
}>>;
|
|
181
207
|
color: PropType<ScopeName>;
|
|
182
208
|
tag: {
|
|
183
209
|
type: StringConstructor;
|
|
@@ -446,19 +472,19 @@ declare interface InputBoxSlots {
|
|
|
446
472
|
export declare function installVuiPlugin(app: App, opts: VuiPluginOptions): App<any>;
|
|
447
473
|
|
|
448
474
|
export declare const listTileEmits: {
|
|
449
|
-
|
|
475
|
+
changeActive: (isActive: boolean) => boolean;
|
|
476
|
+
click: (ev: MouseEvent) => boolean;
|
|
450
477
|
};
|
|
451
478
|
|
|
452
|
-
export declare
|
|
453
|
-
|
|
454
|
-
export declare interface NavigationItemInputWithContent extends NavigationItemInput {
|
|
479
|
+
export declare interface NavigationItemInput extends ExtractPropInput<ReturnType<typeof createNavigationItemProps>> {
|
|
455
480
|
key: string | number;
|
|
456
481
|
label: VNodeChild | (() => VNodeChild);
|
|
482
|
+
children?: NavigationItemInput[];
|
|
457
483
|
}
|
|
458
484
|
|
|
459
|
-
export declare type RawIconProp
|
|
485
|
+
export declare type RawIconProp = IconName | EmptyIconSymbol | ToggleableIconHook;
|
|
460
486
|
|
|
461
|
-
export declare function
|
|
487
|
+
export declare function rawIconProp(): PropType<RawIconProp>;
|
|
462
488
|
|
|
463
489
|
export declare type RawVButtonIcon = IconName | VButtonIcon;
|
|
464
490
|
|
|
@@ -466,7 +492,14 @@ export declare type RawVButtonSpacer = boolean | VButtonSpacer;
|
|
|
466
492
|
|
|
467
493
|
declare type RecursiveArray<T> = T | RecursiveArray<T>[];
|
|
468
494
|
|
|
469
|
-
export declare function
|
|
495
|
+
export declare function renderNavigationItemInput(input: NavigationItemInput, extraProps?: Record<string, unknown> & VNodeProps): JSX.Element;
|
|
496
|
+
|
|
497
|
+
export declare function resolveNavigationItemInput(input: NavigationItemInput): {
|
|
498
|
+
label: VNodeChild;
|
|
499
|
+
props: NavigationItemInput;
|
|
500
|
+
};
|
|
501
|
+
|
|
502
|
+
export declare function resolveRawIconProp(payload: boolean, prop?: RawIconProp, extraProps?: Record<string, unknown> & VNodeProps): VNodeChild;
|
|
470
503
|
|
|
471
504
|
declare interface Rule<C extends any = any> {
|
|
472
505
|
<EC extends C = C>(constraints: Partial<EC>, overRides?: string | Partial<RuleSettings<EC>>): Rule<EC>;
|
|
@@ -531,6 +564,8 @@ declare interface RuleValidateOptions {
|
|
|
531
564
|
eachPrefix?: string;
|
|
532
565
|
}
|
|
533
566
|
|
|
567
|
+
declare type ToggleableIconHook = (gen: IconGenerator, ctx: boolean) => VNodeChild;
|
|
568
|
+
|
|
534
569
|
export declare function useControl(props: ControlProps, opts?: UseControlProviderOptions): ControlProvider;
|
|
535
570
|
|
|
536
571
|
export declare function useControlField(props: ControlFieldProviderProps, opts?: UseControlFieldProviderOptions): ControlFieldProvider;
|
|
@@ -556,8 +591,6 @@ export declare function useVui(): VuiService;
|
|
|
556
591
|
|
|
557
592
|
export declare function useVuiColorProvider(): VuiColorProvider;
|
|
558
593
|
|
|
559
|
-
export declare const VAccordion: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, EmitsOptions, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
|
|
560
|
-
|
|
561
594
|
declare const ValidateCancelSymbol = "__ValidateCancelSymbol__";
|
|
562
595
|
|
|
563
596
|
declare interface ValidationError {
|
|
@@ -586,7 +619,6 @@ export declare const VButton: DefineComponent<{
|
|
|
586
619
|
icon: PropType<RawVButtonIcon>;
|
|
587
620
|
startIcon: PropType<RawVButtonIcon>;
|
|
588
621
|
endIcon: PropType<RawVButtonIcon>;
|
|
589
|
-
onClick: PropType<(ev: MouseEvent) => void>;
|
|
590
622
|
tag: StringConstructor;
|
|
591
623
|
to: PropType<RouteLocationRaw>;
|
|
592
624
|
replace: BooleanConstructor;
|
|
@@ -615,7 +647,7 @@ export declare const VButton: DefineComponent<{
|
|
|
615
647
|
textColor: PropType<PaletteName>;
|
|
616
648
|
borderColor: PropType<PaletteName>;
|
|
617
649
|
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
618
|
-
click: (ev: MouseEvent) =>
|
|
650
|
+
click: (ev: MouseEvent) => boolean;
|
|
619
651
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
620
652
|
size?: unknown;
|
|
621
653
|
spacer?: unknown;
|
|
@@ -624,7 +656,6 @@ export declare const VButton: DefineComponent<{
|
|
|
624
656
|
icon?: unknown;
|
|
625
657
|
startIcon?: unknown;
|
|
626
658
|
endIcon?: unknown;
|
|
627
|
-
onClick?: unknown;
|
|
628
659
|
tag?: unknown;
|
|
629
660
|
to?: unknown;
|
|
630
661
|
replace?: unknown;
|
|
@@ -662,7 +693,6 @@ export declare const VButton: DefineComponent<{
|
|
|
662
693
|
textColor?: PaletteName | undefined;
|
|
663
694
|
borderColor?: PaletteName | undefined;
|
|
664
695
|
type?: "submit" | "reset" | "button" | undefined;
|
|
665
|
-
onClick?: ((ev: MouseEvent) => void) | undefined;
|
|
666
696
|
size?: "sm" | "md" | "lg" | undefined;
|
|
667
697
|
spacer?: RawVButtonSpacer | undefined;
|
|
668
698
|
icon?: RawVButtonIcon | undefined;
|
|
@@ -703,11 +733,15 @@ export declare type VButtonResolvedProps = ExtractPropTypes<typeof vueButtonProp
|
|
|
703
733
|
export declare type VButtonSpacer = 'left' | 'right';
|
|
704
734
|
|
|
705
735
|
export declare const VCard: DefineComponent<{
|
|
736
|
+
square: BooleanConstructor;
|
|
737
|
+
headerProps: PropType<Record<string, unknown> & VNodeProps>;
|
|
738
|
+
bodyProps: PropType<Record<string, unknown> & VNodeProps>;
|
|
739
|
+
footerProps: PropType<Record<string, unknown> & VNodeProps>;
|
|
706
740
|
'v-slots': PropType<ResolveRawSlots<{
|
|
707
741
|
header: void;
|
|
742
|
+
default: void;
|
|
708
743
|
footer: void;
|
|
709
744
|
}>>;
|
|
710
|
-
square: BooleanConstructor;
|
|
711
745
|
color: PropType<ScopeName>;
|
|
712
746
|
tag: {
|
|
713
747
|
type: StringConstructor;
|
|
@@ -715,8 +749,11 @@ export declare const VCard: DefineComponent<{
|
|
|
715
749
|
};
|
|
716
750
|
elevation: PropType<VuiElevationValue>;
|
|
717
751
|
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
718
|
-
'v-slots'?: unknown;
|
|
719
752
|
square?: unknown;
|
|
753
|
+
headerProps?: unknown;
|
|
754
|
+
bodyProps?: unknown;
|
|
755
|
+
footerProps?: unknown;
|
|
756
|
+
'v-slots'?: unknown;
|
|
720
757
|
color?: unknown;
|
|
721
758
|
tag?: unknown;
|
|
722
759
|
elevation?: unknown;
|
|
@@ -725,8 +762,12 @@ export declare const VCard: DefineComponent<{
|
|
|
725
762
|
tag: string;
|
|
726
763
|
} & {
|
|
727
764
|
elevation?: VuiElevationValue | undefined;
|
|
765
|
+
headerProps?: (Record<string, unknown> & VNodeProps) | undefined;
|
|
766
|
+
bodyProps?: (Record<string, unknown> & VNodeProps) | undefined;
|
|
767
|
+
footerProps?: (Record<string, unknown> & VNodeProps) | undefined;
|
|
728
768
|
"v-slots"?: ResolveRawSlots<{
|
|
729
769
|
header: void;
|
|
770
|
+
default: void;
|
|
730
771
|
footer: void;
|
|
731
772
|
}> | undefined;
|
|
732
773
|
color?: ScopeName | undefined;
|
|
@@ -1091,6 +1132,34 @@ export declare const VCheckboxGroup: DefineComponent<{
|
|
|
1091
1132
|
|
|
1092
1133
|
export { VDialog }
|
|
1093
1134
|
|
|
1135
|
+
export declare const VDrawerLayout: DefineComponent<{
|
|
1136
|
+
'v-slots': PropType<ResolveRawSlots<{
|
|
1137
|
+
header: void;
|
|
1138
|
+
default: void;
|
|
1139
|
+
footer: void;
|
|
1140
|
+
}>>;
|
|
1141
|
+
color: PropType<ScopeName>;
|
|
1142
|
+
tag: {
|
|
1143
|
+
type: StringConstructor;
|
|
1144
|
+
default: string;
|
|
1145
|
+
};
|
|
1146
|
+
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
1147
|
+
'v-slots'?: unknown;
|
|
1148
|
+
color?: unknown;
|
|
1149
|
+
tag?: unknown;
|
|
1150
|
+
} & {
|
|
1151
|
+
tag: string;
|
|
1152
|
+
} & {
|
|
1153
|
+
"v-slots"?: ResolveRawSlots<{
|
|
1154
|
+
header: void;
|
|
1155
|
+
default: void;
|
|
1156
|
+
footer: void;
|
|
1157
|
+
}> | undefined;
|
|
1158
|
+
color?: ScopeName | undefined;
|
|
1159
|
+
}>, {
|
|
1160
|
+
tag: string;
|
|
1161
|
+
}>;
|
|
1162
|
+
|
|
1094
1163
|
export declare const VForm: DefineComponent<{
|
|
1095
1164
|
'v-slots': PropType<ResolveRawSlots<VFormSlots>>;
|
|
1096
1165
|
size: {
|
|
@@ -1264,13 +1333,14 @@ export declare const VIcon: DefineComponent<{
|
|
|
1264
1333
|
}, {}>;
|
|
1265
1334
|
|
|
1266
1335
|
export declare const VListTile: DefineComponent<{
|
|
1267
|
-
startIcon: PropType<RawIconProp
|
|
1268
|
-
endIcon: PropType<RawIconProp
|
|
1336
|
+
startIcon: PropType<RawIconProp>;
|
|
1337
|
+
endIcon: PropType<RawIconProp>;
|
|
1269
1338
|
fallbackTag: {
|
|
1270
1339
|
type: StringConstructor;
|
|
1271
1340
|
default: string;
|
|
1272
1341
|
};
|
|
1273
|
-
|
|
1342
|
+
startIconEmptySpace: BooleanConstructor;
|
|
1343
|
+
color: PropType<ScopeName>;
|
|
1274
1344
|
tag: StringConstructor;
|
|
1275
1345
|
to: PropType<RouteLocationRaw>;
|
|
1276
1346
|
replace: BooleanConstructor;
|
|
@@ -1294,12 +1364,14 @@ export declare const VListTile: DefineComponent<{
|
|
|
1294
1364
|
referrerpolicy: StringConstructor;
|
|
1295
1365
|
type: PropType<"submit" | "reset" | "button" | undefined>;
|
|
1296
1366
|
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1297
|
-
|
|
1367
|
+
changeActive: (isActive: boolean) => boolean;
|
|
1368
|
+
click: (ev: MouseEvent) => boolean;
|
|
1298
1369
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
1299
1370
|
startIcon?: unknown;
|
|
1300
1371
|
endIcon?: unknown;
|
|
1301
1372
|
fallbackTag?: unknown;
|
|
1302
|
-
|
|
1373
|
+
startIconEmptySpace?: unknown;
|
|
1374
|
+
color?: unknown;
|
|
1303
1375
|
tag?: unknown;
|
|
1304
1376
|
to?: unknown;
|
|
1305
1377
|
replace?: unknown;
|
|
@@ -1322,14 +1394,16 @@ export declare const VListTile: DefineComponent<{
|
|
|
1322
1394
|
} & {
|
|
1323
1395
|
replace: boolean;
|
|
1324
1396
|
ariaCurrentValue: "page" | "step" | "location" | "date" | "time" | "true" | "false" | undefined;
|
|
1397
|
+
startIconEmptySpace: boolean;
|
|
1325
1398
|
fallbackTag: string;
|
|
1326
1399
|
custom: boolean;
|
|
1327
1400
|
disabled: boolean;
|
|
1328
1401
|
} & {
|
|
1329
|
-
startIcon?: RawIconProp<void> | undefined;
|
|
1330
|
-
endIcon?: RawIconProp<void> | undefined;
|
|
1331
1402
|
type?: "submit" | "reset" | "button" | undefined;
|
|
1332
|
-
|
|
1403
|
+
startIcon?: RawIconProp | undefined;
|
|
1404
|
+
endIcon?: RawIconProp | undefined;
|
|
1405
|
+
color?: ScopeName | undefined;
|
|
1406
|
+
name?: string | undefined;
|
|
1333
1407
|
tag?: string | undefined;
|
|
1334
1408
|
to?: RouteLocationRaw | undefined;
|
|
1335
1409
|
activeClass?: string | undefined;
|
|
@@ -1337,7 +1411,6 @@ export declare const VListTile: DefineComponent<{
|
|
|
1337
1411
|
href?: string | undefined;
|
|
1338
1412
|
target?: string | undefined;
|
|
1339
1413
|
rel?: string | undefined;
|
|
1340
|
-
name?: string | undefined;
|
|
1341
1414
|
charset?: string | undefined;
|
|
1342
1415
|
hreflang?: string | undefined;
|
|
1343
1416
|
download?: string | boolean | undefined;
|
|
@@ -1346,9 +1419,11 @@ export declare const VListTile: DefineComponent<{
|
|
|
1346
1419
|
referrerpolicy?: string | undefined;
|
|
1347
1420
|
}> & {
|
|
1348
1421
|
onClick?: ((ev: MouseEvent) => any) | undefined;
|
|
1422
|
+
onChangeActive?: ((isActive: boolean) => any) | undefined;
|
|
1349
1423
|
}, {
|
|
1350
1424
|
replace: boolean;
|
|
1351
1425
|
ariaCurrentValue: "page" | "step" | "location" | "date" | "time" | "true" | "false" | undefined;
|
|
1426
|
+
startIconEmptySpace: boolean;
|
|
1352
1427
|
fallbackTag: string;
|
|
1353
1428
|
custom: boolean;
|
|
1354
1429
|
disabled: boolean;
|
|
@@ -1358,23 +1433,41 @@ export { VMenu }
|
|
|
1358
1433
|
|
|
1359
1434
|
export declare const VNavigation: DefineComponent<{
|
|
1360
1435
|
items: {
|
|
1361
|
-
type: PropType<
|
|
1436
|
+
type: PropType<NavigationItemInput[]>;
|
|
1362
1437
|
required: true;
|
|
1363
1438
|
};
|
|
1439
|
+
color: PropType<ScopeName>;
|
|
1440
|
+
startIconEmptySpace: {
|
|
1441
|
+
type: BooleanConstructor;
|
|
1442
|
+
default: boolean;
|
|
1443
|
+
};
|
|
1444
|
+
caption: PropType<VNodeChild | (() => VNodeChild)>;
|
|
1364
1445
|
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
1365
1446
|
items?: unknown;
|
|
1447
|
+
color?: unknown;
|
|
1448
|
+
startIconEmptySpace?: unknown;
|
|
1449
|
+
caption?: unknown;
|
|
1366
1450
|
} & {
|
|
1367
|
-
|
|
1368
|
-
|
|
1451
|
+
startIconEmptySpace: boolean;
|
|
1452
|
+
items: NavigationItemInput[];
|
|
1453
|
+
} & {
|
|
1454
|
+
color?: ScopeName | undefined;
|
|
1455
|
+
caption?: VNodeChild | (() => VNodeChild);
|
|
1456
|
+
}>, {
|
|
1457
|
+
startIconEmptySpace: boolean;
|
|
1458
|
+
}>;
|
|
1369
1459
|
|
|
1370
1460
|
export declare const VNavigationItem: DefineComponent<{
|
|
1371
|
-
|
|
1372
|
-
|
|
1461
|
+
children: PropType<NavigationItemInput[]>;
|
|
1462
|
+
match: StringConstructor;
|
|
1463
|
+
startIcon: PropType<RawIconProp>;
|
|
1464
|
+
endIcon: PropType<RawIconProp>;
|
|
1373
1465
|
fallbackTag: {
|
|
1374
1466
|
type: StringConstructor;
|
|
1375
1467
|
default: string;
|
|
1376
1468
|
};
|
|
1377
|
-
|
|
1469
|
+
startIconEmptySpace: BooleanConstructor;
|
|
1470
|
+
color: PropType<ScopeName>;
|
|
1378
1471
|
tag: StringConstructor;
|
|
1379
1472
|
to: PropType<RouteLocationRaw>;
|
|
1380
1473
|
replace: BooleanConstructor;
|
|
@@ -1398,12 +1491,16 @@ export declare const VNavigationItem: DefineComponent<{
|
|
|
1398
1491
|
referrerpolicy: StringConstructor;
|
|
1399
1492
|
type: PropType<"submit" | "reset" | "button" | undefined>;
|
|
1400
1493
|
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1401
|
-
|
|
1494
|
+
changeActive: (isActive: boolean) => boolean;
|
|
1495
|
+
click: (ev: MouseEvent) => boolean;
|
|
1402
1496
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
1497
|
+
children?: unknown;
|
|
1498
|
+
match?: unknown;
|
|
1403
1499
|
startIcon?: unknown;
|
|
1404
1500
|
endIcon?: unknown;
|
|
1405
1501
|
fallbackTag?: unknown;
|
|
1406
|
-
|
|
1502
|
+
startIconEmptySpace?: unknown;
|
|
1503
|
+
color?: unknown;
|
|
1407
1504
|
tag?: unknown;
|
|
1408
1505
|
to?: unknown;
|
|
1409
1506
|
replace?: unknown;
|
|
@@ -1426,14 +1523,16 @@ export declare const VNavigationItem: DefineComponent<{
|
|
|
1426
1523
|
} & {
|
|
1427
1524
|
ariaCurrentValue: "page" | "step" | "location" | "date" | "time" | "true" | "false" | undefined;
|
|
1428
1525
|
replace: boolean;
|
|
1526
|
+
startIconEmptySpace: boolean;
|
|
1429
1527
|
fallbackTag: string;
|
|
1430
1528
|
custom: boolean;
|
|
1431
1529
|
disabled: boolean;
|
|
1432
1530
|
} & {
|
|
1433
|
-
|
|
1434
|
-
endIcon?: RawIconProp<void> | undefined;
|
|
1531
|
+
match?: string | undefined;
|
|
1435
1532
|
type?: "submit" | "reset" | "button" | undefined;
|
|
1436
|
-
|
|
1533
|
+
startIcon?: RawIconProp | undefined;
|
|
1534
|
+
endIcon?: RawIconProp | undefined;
|
|
1535
|
+
color?: ScopeName | undefined;
|
|
1437
1536
|
tag?: string | undefined;
|
|
1438
1537
|
to?: RouteLocationRaw | undefined;
|
|
1439
1538
|
activeClass?: string | undefined;
|
|
@@ -1448,11 +1547,14 @@ export declare const VNavigationItem: DefineComponent<{
|
|
|
1448
1547
|
media?: string | undefined;
|
|
1449
1548
|
ping?: string | undefined;
|
|
1450
1549
|
referrerpolicy?: string | undefined;
|
|
1550
|
+
children?: NavigationItemInput[] | undefined;
|
|
1451
1551
|
}> & {
|
|
1452
1552
|
onClick?: ((ev: MouseEvent) => any) | undefined;
|
|
1553
|
+
onChangeActive?: ((isActive: boolean) => any) | undefined;
|
|
1453
1554
|
}, {
|
|
1454
1555
|
ariaCurrentValue: "page" | "step" | "location" | "date" | "time" | "true" | "false" | undefined;
|
|
1455
1556
|
replace: boolean;
|
|
1557
|
+
startIconEmptySpace: boolean;
|
|
1456
1558
|
fallbackTag: string;
|
|
1457
1559
|
custom: boolean;
|
|
1458
1560
|
disabled: boolean;
|
|
@@ -1625,11 +1727,15 @@ export declare const VOptionGroup: DefineComponent<{
|
|
|
1625
1727
|
}>;
|
|
1626
1728
|
|
|
1627
1729
|
export declare const VPaper: DefineComponent<{
|
|
1730
|
+
square: BooleanConstructor;
|
|
1731
|
+
headerProps: PropType<ARGS>;
|
|
1732
|
+
bodyProps: PropType<ARGS>;
|
|
1733
|
+
footerProps: PropType<ARGS>;
|
|
1628
1734
|
'v-slots': PropType<ResolveRawSlots_2<{
|
|
1629
1735
|
header: void;
|
|
1736
|
+
default: void;
|
|
1630
1737
|
footer: void;
|
|
1631
1738
|
}>>;
|
|
1632
|
-
square: BooleanConstructor;
|
|
1633
1739
|
color: PropType<ScopeName>;
|
|
1634
1740
|
tag: {
|
|
1635
1741
|
type: StringConstructor;
|
|
@@ -1637,8 +1743,11 @@ export declare const VPaper: DefineComponent<{
|
|
|
1637
1743
|
};
|
|
1638
1744
|
elevation: PropType<VuiElevationValue>;
|
|
1639
1745
|
}, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
|
|
1640
|
-
'v-slots'?: unknown;
|
|
1641
1746
|
square?: unknown;
|
|
1747
|
+
headerProps?: unknown;
|
|
1748
|
+
bodyProps?: unknown;
|
|
1749
|
+
footerProps?: unknown;
|
|
1750
|
+
'v-slots'?: unknown;
|
|
1642
1751
|
color?: unknown;
|
|
1643
1752
|
tag?: unknown;
|
|
1644
1753
|
elevation?: unknown;
|
|
@@ -1647,8 +1756,12 @@ export declare const VPaper: DefineComponent<{
|
|
|
1647
1756
|
tag: string;
|
|
1648
1757
|
} & {
|
|
1649
1758
|
elevation?: VuiElevationValue | undefined;
|
|
1759
|
+
headerProps?: ARGS | undefined;
|
|
1760
|
+
bodyProps?: ARGS | undefined;
|
|
1761
|
+
footerProps?: ARGS | undefined;
|
|
1650
1762
|
"v-slots"?: ResolveRawSlots_2<{
|
|
1651
1763
|
header: void;
|
|
1764
|
+
default: void;
|
|
1652
1765
|
footer: void;
|
|
1653
1766
|
}> | undefined;
|
|
1654
1767
|
color?: ScopeName | undefined;
|
|
@@ -3150,7 +3263,6 @@ export declare const vueButtonProps: {
|
|
|
3150
3263
|
icon: PropType<RawVButtonIcon>;
|
|
3151
3264
|
startIcon: PropType<RawVButtonIcon>;
|
|
3152
3265
|
endIcon: PropType<RawVButtonIcon>;
|
|
3153
|
-
onClick: PropType<(ev: MouseEvent) => void>;
|
|
3154
3266
|
tag: StringConstructor;
|
|
3155
3267
|
to: PropType<RouteLocationRaw>;
|
|
3156
3268
|
replace: BooleanConstructor;
|