vuetify 3.5.6 → 3.5.7
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/_component-variables-labs.sass +2 -0
- package/dist/json/attributes.json +312 -40
- package/dist/json/importMap-labs.json +8 -0
- package/dist/json/importMap.json +122 -122
- package/dist/json/tags.json +78 -0
- package/dist/json/web-types.json +793 -52
- package/dist/vuetify-labs.css +1931 -1803
- package/dist/vuetify-labs.d.ts +1073 -106
- package/dist/vuetify-labs.esm.js +315 -75
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +315 -75
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +846 -844
- package/dist/vuetify.d.ts +74 -141
- package/dist/vuetify.esm.js +70 -69
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +70 -69
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +50 -49
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VApp/index.d.mts +8 -6
- package/lib/components/VAutocomplete/VAutocomplete.css +4 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs +28 -27
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +3 -1
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +4 -4
- package/lib/components/VCombobox/VCombobox.mjs +19 -22
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +50 -94
- package/lib/components/VLayout/index.d.mts +8 -6
- package/lib/components/VSelect/VSelect.mjs +18 -17
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbar.css +3 -1
- package/lib/components/VToolbar/VToolbar.sass +2 -1
- package/lib/components/index.d.mts +38 -105
- package/lib/composables/layout.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +38 -36
- package/lib/labs/VEmptyState/VEmptyState.css +59 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
- package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
- package/lib/labs/VEmptyState/_variables.scss +22 -0
- package/lib/labs/VEmptyState/index.d.mts +415 -0
- package/lib/labs/VEmptyState/index.mjs +2 -0
- package/lib/labs/VEmptyState/index.mjs.map +1 -0
- package/lib/labs/VFab/VFab.css +69 -0
- package/lib/labs/VFab/VFab.mjs +114 -0
- package/lib/labs/VFab/VFab.mjs.map +1 -0
- package/lib/labs/VFab/VFab.sass +82 -0
- package/lib/labs/VFab/_mixins.scss +22 -0
- package/lib/labs/VFab/_variables.scss +33 -0
- package/lib/labs/VFab/index.d.mts +656 -0
- package/lib/labs/VFab/index.mjs +2 -0
- package/lib/labs/VFab/index.mjs.map +1 -0
- package/lib/labs/VSparkline/VBarline.mjs +4 -4
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
- package/lib/labs/VSparkline/VTrendline.mjs +6 -2
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/labs/VSparkline/index.d.mts +12 -0
- package/lib/labs/VSparkline/util/line.mjs +2 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -1
- package/lib/labs/components.d.mts +1066 -2
- package/lib/labs/components.mjs +2 -0
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -799,7 +799,7 @@ declare const VApp: {
|
|
|
799
799
|
}, {
|
|
800
800
|
getLayoutItem: (id: string) => {
|
|
801
801
|
size: number;
|
|
802
|
-
position:
|
|
802
|
+
position: Position;
|
|
803
803
|
top: number;
|
|
804
804
|
bottom: number;
|
|
805
805
|
left: number;
|
|
@@ -808,7 +808,7 @@ declare const VApp: {
|
|
|
808
808
|
} | undefined;
|
|
809
809
|
items: vue.ComputedRef<{
|
|
810
810
|
size: number;
|
|
811
|
-
position:
|
|
811
|
+
position: Position;
|
|
812
812
|
top: number;
|
|
813
813
|
bottom: number;
|
|
814
814
|
left: number;
|
|
@@ -865,7 +865,7 @@ declare const VApp: {
|
|
|
865
865
|
}, {
|
|
866
866
|
getLayoutItem: (id: string) => {
|
|
867
867
|
size: number;
|
|
868
|
-
position:
|
|
868
|
+
position: Position;
|
|
869
869
|
top: number;
|
|
870
870
|
bottom: number;
|
|
871
871
|
left: number;
|
|
@@ -874,7 +874,7 @@ declare const VApp: {
|
|
|
874
874
|
} | undefined;
|
|
875
875
|
items: vue.ComputedRef<{
|
|
876
876
|
size: number;
|
|
877
|
-
position:
|
|
877
|
+
position: Position;
|
|
878
878
|
top: number;
|
|
879
879
|
bottom: number;
|
|
880
880
|
left: number;
|
|
@@ -908,7 +908,7 @@ declare const VApp: {
|
|
|
908
908
|
}, {
|
|
909
909
|
getLayoutItem: (id: string) => {
|
|
910
910
|
size: number;
|
|
911
|
-
position:
|
|
911
|
+
position: Position;
|
|
912
912
|
top: number;
|
|
913
913
|
bottom: number;
|
|
914
914
|
left: number;
|
|
@@ -917,7 +917,7 @@ declare const VApp: {
|
|
|
917
917
|
} | undefined;
|
|
918
918
|
items: vue.ComputedRef<{
|
|
919
919
|
size: number;
|
|
920
|
-
position:
|
|
920
|
+
position: Position;
|
|
921
921
|
top: number;
|
|
922
922
|
bottom: number;
|
|
923
923
|
left: number;
|
|
@@ -22452,7 +22452,7 @@ interface DataIteratorItem<T = any> extends GroupableItem<T>, SelectableItem {
|
|
|
22452
22452
|
value: unknown;
|
|
22453
22453
|
}
|
|
22454
22454
|
|
|
22455
|
-
type VDataIteratorSlotProps = {
|
|
22455
|
+
type VDataIteratorSlotProps<T> = {
|
|
22456
22456
|
page: number;
|
|
22457
22457
|
itemsPerPage: number;
|
|
22458
22458
|
sortBy: readonly SortItem[];
|
|
@@ -22470,8 +22470,14 @@ type VDataIteratorSlotProps = {
|
|
|
22470
22470
|
toggleExpand: ReturnType<typeof provideExpanded>['toggleExpand'];
|
|
22471
22471
|
isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
|
|
22472
22472
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
|
22473
|
-
items: readonly DataIteratorItem[];
|
|
22474
|
-
groupedItems: readonly (DataIteratorItem | Group<DataIteratorItem
|
|
22473
|
+
items: readonly DataIteratorItem<T>[];
|
|
22474
|
+
groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
|
|
22475
|
+
};
|
|
22476
|
+
type VDataIteratorSlots<T> = {
|
|
22477
|
+
default: VDataIteratorSlotProps<T>;
|
|
22478
|
+
header: VDataIteratorSlotProps<T>;
|
|
22479
|
+
footer: VDataIteratorSlotProps<T>;
|
|
22480
|
+
'no-data': never;
|
|
22475
22481
|
};
|
|
22476
22482
|
declare const VDataIterator: {
|
|
22477
22483
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
@@ -22481,7 +22487,6 @@ declare const VDataIterator: {
|
|
|
22481
22487
|
expanded: readonly string[];
|
|
22482
22488
|
tag: string;
|
|
22483
22489
|
sortBy: readonly SortItem[];
|
|
22484
|
-
items: any[];
|
|
22485
22490
|
modelValue: readonly any[];
|
|
22486
22491
|
valueComparator: typeof deepEqual;
|
|
22487
22492
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22504,24 +22509,6 @@ declare const VDataIterator: {
|
|
|
22504
22509
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22505
22510
|
filterKeys?: FilterKeys | undefined;
|
|
22506
22511
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22507
|
-
} & {
|
|
22508
|
-
$children?: vue.VNodeChild | {
|
|
22509
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22510
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22511
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22512
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22513
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22514
|
-
'v-slots'?: {
|
|
22515
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22516
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22517
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22518
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22519
|
-
} | undefined;
|
|
22520
|
-
} & {
|
|
22521
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22522
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22523
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22524
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22525
22512
|
} & {
|
|
22526
22513
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22527
22514
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22531,7 +22518,7 @@ declare const VDataIterator: {
|
|
|
22531
22518
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
22532
22519
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
22533
22520
|
"onUpdate:currentItems"?: ((value: any) => any) | undefined;
|
|
22534
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
22521
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22535
22522
|
'update:modelValue': (value: any[]) => boolean;
|
|
22536
22523
|
'update:groupBy': (value: any) => boolean;
|
|
22537
22524
|
'update:page': (value: number) => boolean;
|
|
@@ -22540,14 +22527,13 @@ declare const VDataIterator: {
|
|
|
22540
22527
|
'update:options': (value: any) => boolean;
|
|
22541
22528
|
'update:expanded': (value: any) => boolean;
|
|
22542
22529
|
'update:currentItems': (value: any) => boolean;
|
|
22543
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
22530
|
+
}, "$children" | "v-slot:default" | "v-slots" | "items" | "v-slot:header" | "v-slot:no-data" | "v-slot:footer">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
22544
22531
|
page: string | number;
|
|
22545
22532
|
loading: boolean;
|
|
22546
22533
|
style: vue.StyleValue;
|
|
22547
22534
|
expanded: readonly string[];
|
|
22548
22535
|
tag: string;
|
|
22549
22536
|
sortBy: readonly SortItem[];
|
|
22550
|
-
items: any[];
|
|
22551
22537
|
modelValue: readonly any[];
|
|
22552
22538
|
valueComparator: typeof deepEqual;
|
|
22553
22539
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22570,24 +22556,6 @@ declare const VDataIterator: {
|
|
|
22570
22556
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22571
22557
|
filterKeys?: FilterKeys | undefined;
|
|
22572
22558
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22573
|
-
} & {
|
|
22574
|
-
$children?: vue.VNodeChild | {
|
|
22575
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22576
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22577
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22578
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22579
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22580
|
-
'v-slots'?: {
|
|
22581
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22582
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22583
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22584
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22585
|
-
} | undefined;
|
|
22586
|
-
} & {
|
|
22587
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22588
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22589
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22590
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22591
22559
|
} & {
|
|
22592
22560
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22593
22561
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22604,7 +22572,6 @@ declare const VDataIterator: {
|
|
|
22604
22572
|
expanded: readonly string[];
|
|
22605
22573
|
tag: string;
|
|
22606
22574
|
sortBy: readonly SortItem[];
|
|
22607
|
-
items: any[];
|
|
22608
22575
|
modelValue: readonly any[];
|
|
22609
22576
|
valueComparator: typeof deepEqual;
|
|
22610
22577
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22621,13 +22588,13 @@ declare const VDataIterator: {
|
|
|
22621
22588
|
showExpand: boolean;
|
|
22622
22589
|
itemsPerPage: NonNullable<string | number>;
|
|
22623
22590
|
}, true, {}, vue.SlotsType<Partial<{
|
|
22624
|
-
default: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22591
|
+
default: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22625
22592
|
[key: string]: any;
|
|
22626
22593
|
}>[];
|
|
22627
|
-
header: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22594
|
+
header: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22628
22595
|
[key: string]: any;
|
|
22629
22596
|
}>[];
|
|
22630
|
-
footer: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22597
|
+
footer: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22631
22598
|
[key: string]: any;
|
|
22632
22599
|
}>[];
|
|
22633
22600
|
'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -22647,7 +22614,6 @@ declare const VDataIterator: {
|
|
|
22647
22614
|
expanded: readonly string[];
|
|
22648
22615
|
tag: string;
|
|
22649
22616
|
sortBy: readonly SortItem[];
|
|
22650
|
-
items: any[];
|
|
22651
22617
|
modelValue: readonly any[];
|
|
22652
22618
|
valueComparator: typeof deepEqual;
|
|
22653
22619
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22670,24 +22636,6 @@ declare const VDataIterator: {
|
|
|
22670
22636
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22671
22637
|
filterKeys?: FilterKeys | undefined;
|
|
22672
22638
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22673
|
-
} & {
|
|
22674
|
-
$children?: vue.VNodeChild | {
|
|
22675
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22676
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22677
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22678
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22679
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22680
|
-
'v-slots'?: {
|
|
22681
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22682
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22683
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22684
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22685
|
-
} | undefined;
|
|
22686
|
-
} & {
|
|
22687
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22688
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22689
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22690
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22691
22639
|
} & {
|
|
22692
22640
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22693
22641
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22704,7 +22652,6 @@ declare const VDataIterator: {
|
|
|
22704
22652
|
expanded: readonly string[];
|
|
22705
22653
|
tag: string;
|
|
22706
22654
|
sortBy: readonly SortItem[];
|
|
22707
|
-
items: any[];
|
|
22708
22655
|
modelValue: readonly any[];
|
|
22709
22656
|
valueComparator: typeof deepEqual;
|
|
22710
22657
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22731,7 +22678,6 @@ declare const VDataIterator: {
|
|
|
22731
22678
|
expanded: readonly string[];
|
|
22732
22679
|
tag: string;
|
|
22733
22680
|
sortBy: readonly SortItem[];
|
|
22734
|
-
items: any[];
|
|
22735
22681
|
modelValue: readonly any[];
|
|
22736
22682
|
valueComparator: typeof deepEqual;
|
|
22737
22683
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22754,24 +22700,6 @@ declare const VDataIterator: {
|
|
|
22754
22700
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22755
22701
|
filterKeys?: FilterKeys | undefined;
|
|
22756
22702
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22757
|
-
} & {
|
|
22758
|
-
$children?: vue.VNodeChild | {
|
|
22759
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22760
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22761
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22762
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22763
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22764
|
-
'v-slots'?: {
|
|
22765
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22766
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22767
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22768
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22769
|
-
} | undefined;
|
|
22770
|
-
} & {
|
|
22771
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22772
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22773
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22774
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22775
22703
|
} & {
|
|
22776
22704
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22777
22705
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22781,7 +22709,7 @@ declare const VDataIterator: {
|
|
|
22781
22709
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
22782
22710
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
22783
22711
|
"onUpdate:currentItems"?: ((value: any) => any) | undefined;
|
|
22784
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
22712
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22785
22713
|
'update:modelValue': (value: any[]) => boolean;
|
|
22786
22714
|
'update:groupBy': (value: any) => boolean;
|
|
22787
22715
|
'update:page': (value: number) => boolean;
|
|
@@ -22790,14 +22718,13 @@ declare const VDataIterator: {
|
|
|
22790
22718
|
'update:options': (value: any) => boolean;
|
|
22791
22719
|
'update:expanded': (value: any) => boolean;
|
|
22792
22720
|
'update:currentItems': (value: any) => boolean;
|
|
22793
|
-
}, string, {
|
|
22721
|
+
}, "$children" | "v-slot:default" | "v-slots" | "items" | "v-slot:header" | "v-slot:no-data" | "v-slot:footer">, string, {
|
|
22794
22722
|
page: string | number;
|
|
22795
22723
|
loading: boolean;
|
|
22796
22724
|
style: vue.StyleValue;
|
|
22797
22725
|
expanded: readonly string[];
|
|
22798
22726
|
tag: string;
|
|
22799
22727
|
sortBy: readonly SortItem[];
|
|
22800
|
-
items: any[];
|
|
22801
22728
|
modelValue: readonly any[];
|
|
22802
22729
|
valueComparator: typeof deepEqual;
|
|
22803
22730
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22814,19 +22741,23 @@ declare const VDataIterator: {
|
|
|
22814
22741
|
showExpand: boolean;
|
|
22815
22742
|
itemsPerPage: NonNullable<string | number>;
|
|
22816
22743
|
}, {}, string, vue.SlotsType<Partial<{
|
|
22817
|
-
default: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22744
|
+
default: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22818
22745
|
[key: string]: any;
|
|
22819
22746
|
}>[];
|
|
22820
|
-
header: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22747
|
+
header: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22821
22748
|
[key: string]: any;
|
|
22822
22749
|
}>[];
|
|
22823
|
-
footer: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22750
|
+
footer: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22824
22751
|
[key: string]: any;
|
|
22825
22752
|
}>[];
|
|
22826
22753
|
'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22827
22754
|
[key: string]: any;
|
|
22828
22755
|
}>[];
|
|
22829
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps &
|
|
22756
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
22757
|
+
items?: readonly T[] | undefined;
|
|
22758
|
+
}, slots: VDataIteratorSlots<T>) => GenericProps<{
|
|
22759
|
+
items?: readonly T[] | undefined;
|
|
22760
|
+
}, VDataIteratorSlots<T>>) & FilterPropsOptions<{
|
|
22830
22761
|
tag: {
|
|
22831
22762
|
type: StringConstructor;
|
|
22832
22763
|
default: string;
|
|
@@ -36821,7 +36752,7 @@ declare const VLayout: {
|
|
|
36821
36752
|
}, {
|
|
36822
36753
|
getLayoutItem: (id: string) => {
|
|
36823
36754
|
size: number;
|
|
36824
|
-
position:
|
|
36755
|
+
position: Position;
|
|
36825
36756
|
top: number;
|
|
36826
36757
|
bottom: number;
|
|
36827
36758
|
left: number;
|
|
@@ -36830,7 +36761,7 @@ declare const VLayout: {
|
|
|
36830
36761
|
} | undefined;
|
|
36831
36762
|
items: vue.ComputedRef<{
|
|
36832
36763
|
size: number;
|
|
36833
|
-
position:
|
|
36764
|
+
position: Position;
|
|
36834
36765
|
top: number;
|
|
36835
36766
|
bottom: number;
|
|
36836
36767
|
left: number;
|
|
@@ -36884,7 +36815,7 @@ declare const VLayout: {
|
|
|
36884
36815
|
}, {
|
|
36885
36816
|
getLayoutItem: (id: string) => {
|
|
36886
36817
|
size: number;
|
|
36887
|
-
position:
|
|
36818
|
+
position: Position;
|
|
36888
36819
|
top: number;
|
|
36889
36820
|
bottom: number;
|
|
36890
36821
|
left: number;
|
|
@@ -36893,7 +36824,7 @@ declare const VLayout: {
|
|
|
36893
36824
|
} | undefined;
|
|
36894
36825
|
items: vue.ComputedRef<{
|
|
36895
36826
|
size: number;
|
|
36896
|
-
position:
|
|
36827
|
+
position: Position;
|
|
36897
36828
|
top: number;
|
|
36898
36829
|
bottom: number;
|
|
36899
36830
|
left: number;
|
|
@@ -36925,7 +36856,7 @@ declare const VLayout: {
|
|
|
36925
36856
|
}, {
|
|
36926
36857
|
getLayoutItem: (id: string) => {
|
|
36927
36858
|
size: number;
|
|
36928
|
-
position:
|
|
36859
|
+
position: Position;
|
|
36929
36860
|
top: number;
|
|
36930
36861
|
bottom: number;
|
|
36931
36862
|
left: number;
|
|
@@ -36934,7 +36865,7 @@ declare const VLayout: {
|
|
|
36934
36865
|
} | undefined;
|
|
36935
36866
|
items: vue.ComputedRef<{
|
|
36936
36867
|
size: number;
|
|
36937
|
-
position:
|
|
36868
|
+
position: Position;
|
|
36938
36869
|
top: number;
|
|
36939
36870
|
bottom: number;
|
|
36940
36871
|
left: number;
|
|
@@ -68258,50 +68189,47 @@ declare module '@vue/runtime-core' {
|
|
|
68258
68189
|
}
|
|
68259
68190
|
|
|
68260
68191
|
export interface GlobalComponents {
|
|
68261
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
68262
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68263
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68264
68192
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68265
68193
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68266
68194
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
68195
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
68196
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68197
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68198
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68267
68199
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
68268
68200
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68201
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68202
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
68269
68203
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
68270
68204
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
68271
68205
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68272
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68273
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68274
68206
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68275
68207
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68276
68208
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68277
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68278
68209
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68279
|
-
|
|
68210
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68280
68211
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68281
68212
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
68282
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68283
68213
|
VCard: typeof import('vuetify/components')['VCard']
|
|
68284
68214
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
68285
68215
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
68286
68216
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
68287
68217
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
68288
68218
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
68219
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68289
68220
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
68290
68221
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
68291
68222
|
VChip: typeof import('vuetify/components')['VChip']
|
|
68292
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
68293
68223
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
68294
|
-
|
|
68295
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68224
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
68296
68225
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68226
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68297
68227
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68298
68228
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
68299
68229
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
68300
68230
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
68301
68231
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
68302
68232
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68303
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
68304
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
68305
68233
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68306
68234
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
68307
68235
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -68309,27 +68237,28 @@ declare module '@vue/runtime-core' {
|
|
|
68309
68237
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68310
68238
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68311
68239
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68312
|
-
|
|
68240
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68241
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
68313
68242
|
VField: typeof import('vuetify/components')['VField']
|
|
68314
68243
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
68244
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
68245
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68246
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68315
68247
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
68316
68248
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
68317
68249
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
68318
68250
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
68319
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68320
68251
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
68321
68252
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
68322
68253
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
68323
68254
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
68324
68255
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
68325
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
68326
|
-
VItem: typeof import('vuetify/components')['VItem']
|
|
68327
68256
|
VImg: typeof import('vuetify/components')['VImg']
|
|
68328
68257
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68329
|
-
|
|
68258
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
68259
|
+
VItem: typeof import('vuetify/components')['VItem']
|
|
68330
68260
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
68331
|
-
|
|
68332
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68261
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
68333
68262
|
VList: typeof import('vuetify/components')['VList']
|
|
68334
68263
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
68335
68264
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -68339,65 +68268,67 @@ declare module '@vue/runtime-core' {
|
|
|
68339
68268
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
68340
68269
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
68341
68270
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
68271
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68272
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
68342
68273
|
VMain: typeof import('vuetify/components')['VMain']
|
|
68343
68274
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
68344
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
68345
68275
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
68346
68276
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
68277
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
68347
68278
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
68348
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
68349
68279
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
68350
68280
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
68281
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
68351
68282
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
68352
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
68353
68283
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
68354
|
-
|
|
68355
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
68284
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
68356
68285
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
68357
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
68358
68286
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
68359
68287
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
68288
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
68289
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
68360
68290
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
68361
68291
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
68362
68292
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
68363
68293
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
68364
68294
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
68365
68295
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
68366
|
-
|
|
68367
|
-
|
|
68368
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
68369
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
68296
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
68297
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
68370
68298
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
68371
68299
|
VTable: typeof import('vuetify/components')['VTable']
|
|
68372
|
-
|
|
68373
|
-
|
|
68374
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
68300
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
68301
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
68375
68302
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
68303
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
68304
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
68376
68305
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
68377
68306
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
68378
68307
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
68379
68308
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
68309
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
68310
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
68380
68311
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
68381
68312
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
68382
68313
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
68383
68314
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
68384
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
68385
68315
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
68386
68316
|
VCol: typeof import('vuetify/components')['VCol']
|
|
68387
68317
|
VRow: typeof import('vuetify/components')['VRow']
|
|
68388
68318
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
68319
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
68389
68320
|
VHover: typeof import('vuetify/components')['VHover']
|
|
68321
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
68390
68322
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
68391
68323
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
68392
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
68393
68324
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
68394
68325
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
68395
68326
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
68396
68327
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
68397
68328
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
68398
68329
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
68399
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
68400
68330
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
68331
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
68401
68332
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
68402
68333
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
68403
68334
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
@@ -68421,6 +68352,8 @@ declare module '@vue/runtime-core' {
|
|
|
68421
68352
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
68422
68353
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
68423
68354
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
68355
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
68356
|
+
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
68424
68357
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
68425
68358
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
68426
68359
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|