vuetify 3.6.6 → 3.6.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/json/attributes.json +42 -2
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +118 -118
- package/dist/json/tags.json +11 -1
- package/dist/json/web-types.json +119 -10
- package/dist/vuetify-labs.css +2529 -2516
- package/dist/vuetify-labs.d.ts +117 -15
- package/dist/vuetify-labs.esm.js +62 -29
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +62 -29
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +561 -548
- package/dist/vuetify.d.ts +149 -47
- package/dist/vuetify.esm.js +60 -27
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +60 -27
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +105 -103
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +3 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBtn/VBtn.css +6 -0
- package/lib/components/VBtn/VBtn.sass +6 -0
- package/lib/components/VCombobox/VCombobox.mjs +4 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs +8 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs.map +1 -1
- package/lib/components/VConfirmEdit/index.d.mts +24 -3
- package/lib/components/VDataTable/VDataTable.css +4 -0
- package/lib/components/VDataTable/VDataTable.mjs +2 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.sass +4 -0
- package/lib/components/VDataTable/VDataTableHeaders.mjs +4 -3
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +1 -1
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +63 -0
- package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonths.mjs +10 -1
- package/lib/components/VDatePicker/VDatePickerMonths.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +24 -6
- package/lib/components/VDivider/VDivider.css +2 -1
- package/lib/components/VDivider/VDivider.sass +2 -1
- package/lib/components/VField/VField.css +1 -0
- package/lib/components/VField/VField.sass +2 -0
- package/lib/components/VList/VListChildren.mjs +2 -1
- package/lib/components/VList/VListChildren.mjs.map +1 -1
- package/lib/components/index.d.mts +111 -9
- package/lib/composables/defaults.mjs +1 -1
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/dimensions.mjs +16 -8
- package/lib/composables/dimensions.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +38 -38
- package/lib/labs/VCalendar/VCalendar.mjs +2 -2
- package/lib/labs/VCalendar/VCalendar.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +6 -6
- package/lib/labs/components.d.mts +6 -6
- package/lib/locale/fa.mjs +10 -10
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/util/helpers.mjs +2 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -22735,6 +22735,9 @@ type VCombobox = InstanceType<typeof VCombobox>;
|
|
|
22735
22735
|
type VConfirmEditSlots<T> = {
|
|
22736
22736
|
default: {
|
|
22737
22737
|
model: Ref<T>;
|
|
22738
|
+
save: () => void;
|
|
22739
|
+
cancel: () => void;
|
|
22740
|
+
isPristine: boolean;
|
|
22738
22741
|
get actions(): VNode;
|
|
22739
22742
|
};
|
|
22740
22743
|
};
|
|
@@ -22746,7 +22749,11 @@ declare const VConfirmEdit: {
|
|
|
22746
22749
|
color?: string | undefined;
|
|
22747
22750
|
} & {
|
|
22748
22751
|
onCancel?: (() => any) | undefined;
|
|
22749
|
-
},
|
|
22752
|
+
}, {
|
|
22753
|
+
save: () => void;
|
|
22754
|
+
cancel: () => void;
|
|
22755
|
+
isPristine: vue.ComputedRef<boolean>;
|
|
22756
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22750
22757
|
cancel: () => true;
|
|
22751
22758
|
save: (value: any) => true;
|
|
22752
22759
|
'update:modelValue': (value: any) => true;
|
|
@@ -22763,6 +22770,9 @@ declare const VConfirmEdit: {
|
|
|
22763
22770
|
}, true, {}, vue.SlotsType<Partial<{
|
|
22764
22771
|
default: (arg: {
|
|
22765
22772
|
model: Ref<unknown>;
|
|
22773
|
+
save: () => void;
|
|
22774
|
+
cancel: () => void;
|
|
22775
|
+
isPristine: boolean;
|
|
22766
22776
|
readonly actions: VNode<vue.RendererNode, vue.RendererElement, {
|
|
22767
22777
|
[key: string]: any;
|
|
22768
22778
|
}>;
|
|
@@ -22783,7 +22793,11 @@ declare const VConfirmEdit: {
|
|
|
22783
22793
|
color?: string | undefined;
|
|
22784
22794
|
} & {
|
|
22785
22795
|
onCancel?: (() => any) | undefined;
|
|
22786
|
-
}, {
|
|
22796
|
+
}, {
|
|
22797
|
+
save: () => void;
|
|
22798
|
+
cancel: () => void;
|
|
22799
|
+
isPristine: vue.ComputedRef<boolean>;
|
|
22800
|
+
}, {}, {}, {}, {
|
|
22787
22801
|
cancelText: string;
|
|
22788
22802
|
okText: string;
|
|
22789
22803
|
}>;
|
|
@@ -22797,7 +22811,11 @@ declare const VConfirmEdit: {
|
|
|
22797
22811
|
color?: string | undefined;
|
|
22798
22812
|
} & {
|
|
22799
22813
|
onCancel?: (() => any) | undefined;
|
|
22800
|
-
},
|
|
22814
|
+
}, {
|
|
22815
|
+
save: () => void;
|
|
22816
|
+
cancel: () => void;
|
|
22817
|
+
isPristine: vue.ComputedRef<boolean>;
|
|
22818
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22801
22819
|
cancel: () => true;
|
|
22802
22820
|
save: (value: any) => true;
|
|
22803
22821
|
'update:modelValue': (value: any) => true;
|
|
@@ -22807,6 +22825,9 @@ declare const VConfirmEdit: {
|
|
|
22807
22825
|
}, {}, string, vue.SlotsType<Partial<{
|
|
22808
22826
|
default: (arg: {
|
|
22809
22827
|
model: Ref<unknown>;
|
|
22828
|
+
save: () => void;
|
|
22829
|
+
cancel: () => void;
|
|
22830
|
+
isPristine: boolean;
|
|
22810
22831
|
readonly actions: VNode<vue.RendererNode, vue.RendererElement, {
|
|
22811
22832
|
[key: string]: any;
|
|
22812
22833
|
}>;
|
|
@@ -23808,6 +23829,7 @@ declare const VDataTableHeaders: {
|
|
|
23808
23829
|
mobile: boolean | null;
|
|
23809
23830
|
sticky: boolean;
|
|
23810
23831
|
multiSort: boolean;
|
|
23832
|
+
disableSort: boolean;
|
|
23811
23833
|
sortAscIcon: IconValue;
|
|
23812
23834
|
sortDescIcon: IconValue;
|
|
23813
23835
|
} & {
|
|
@@ -23840,6 +23862,7 @@ declare const VDataTableHeaders: {
|
|
|
23840
23862
|
mobile: boolean | null;
|
|
23841
23863
|
sticky: boolean;
|
|
23842
23864
|
multiSort: boolean;
|
|
23865
|
+
disableSort: boolean;
|
|
23843
23866
|
sortAscIcon: IconValue;
|
|
23844
23867
|
sortDescIcon: IconValue;
|
|
23845
23868
|
} & {
|
|
@@ -23872,6 +23895,7 @@ declare const VDataTableHeaders: {
|
|
|
23872
23895
|
mobile: boolean | null;
|
|
23873
23896
|
sticky: boolean;
|
|
23874
23897
|
multiSort: boolean;
|
|
23898
|
+
disableSort: boolean;
|
|
23875
23899
|
sortAscIcon: IconValue;
|
|
23876
23900
|
sortDescIcon: IconValue;
|
|
23877
23901
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -23901,6 +23925,7 @@ declare const VDataTableHeaders: {
|
|
|
23901
23925
|
mobile: boolean | null;
|
|
23902
23926
|
sticky: boolean;
|
|
23903
23927
|
multiSort: boolean;
|
|
23928
|
+
disableSort: boolean;
|
|
23904
23929
|
sortAscIcon: IconValue;
|
|
23905
23930
|
sortDescIcon: IconValue;
|
|
23906
23931
|
} & {
|
|
@@ -23933,6 +23958,7 @@ declare const VDataTableHeaders: {
|
|
|
23933
23958
|
mobile: boolean | null;
|
|
23934
23959
|
sticky: boolean;
|
|
23935
23960
|
multiSort: boolean;
|
|
23961
|
+
disableSort: boolean;
|
|
23936
23962
|
sortAscIcon: IconValue;
|
|
23937
23963
|
sortDescIcon: IconValue;
|
|
23938
23964
|
}>;
|
|
@@ -23943,6 +23969,7 @@ declare const VDataTableHeaders: {
|
|
|
23943
23969
|
mobile: boolean | null;
|
|
23944
23970
|
sticky: boolean;
|
|
23945
23971
|
multiSort: boolean;
|
|
23972
|
+
disableSort: boolean;
|
|
23946
23973
|
sortAscIcon: IconValue;
|
|
23947
23974
|
sortDescIcon: IconValue;
|
|
23948
23975
|
} & {
|
|
@@ -23975,6 +24002,7 @@ declare const VDataTableHeaders: {
|
|
|
23975
24002
|
mobile: boolean | null;
|
|
23976
24003
|
sticky: boolean;
|
|
23977
24004
|
multiSort: boolean;
|
|
24005
|
+
disableSort: boolean;
|
|
23978
24006
|
sortAscIcon: IconValue;
|
|
23979
24007
|
sortDescIcon: IconValue;
|
|
23980
24008
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -24002,6 +24030,7 @@ declare const VDataTableHeaders: {
|
|
|
24002
24030
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
24003
24031
|
color: StringConstructor;
|
|
24004
24032
|
sticky: BooleanConstructor;
|
|
24033
|
+
disableSort: BooleanConstructor;
|
|
24005
24034
|
multiSort: BooleanConstructor;
|
|
24006
24035
|
sortAscIcon: {
|
|
24007
24036
|
type: PropType<IconValue>;
|
|
@@ -24023,6 +24052,7 @@ declare const VDataTableHeaders: {
|
|
|
24023
24052
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
24024
24053
|
color: StringConstructor;
|
|
24025
24054
|
sticky: BooleanConstructor;
|
|
24055
|
+
disableSort: BooleanConstructor;
|
|
24026
24056
|
multiSort: BooleanConstructor;
|
|
24027
24057
|
sortAscIcon: {
|
|
24028
24058
|
type: PropType<IconValue>;
|
|
@@ -24500,10 +24530,12 @@ declare const VDataTable: {
|
|
|
24500
24530
|
value: number;
|
|
24501
24531
|
})[];
|
|
24502
24532
|
showCurrentPage: boolean;
|
|
24533
|
+
disableSort: boolean;
|
|
24503
24534
|
sortAscIcon: IconValue;
|
|
24504
24535
|
sortDescIcon: IconValue;
|
|
24505
24536
|
fixedHeader: boolean;
|
|
24506
24537
|
fixedFooter: boolean;
|
|
24538
|
+
hideDefaultBody: boolean;
|
|
24507
24539
|
hideDefaultFooter: boolean;
|
|
24508
24540
|
hideDefaultHeader: boolean;
|
|
24509
24541
|
} & {
|
|
@@ -24577,10 +24609,12 @@ declare const VDataTable: {
|
|
|
24577
24609
|
value: number;
|
|
24578
24610
|
})[];
|
|
24579
24611
|
showCurrentPage: boolean;
|
|
24612
|
+
disableSort: boolean;
|
|
24580
24613
|
sortAscIcon: IconValue;
|
|
24581
24614
|
sortDescIcon: IconValue;
|
|
24582
24615
|
fixedHeader: boolean;
|
|
24583
24616
|
fixedFooter: boolean;
|
|
24617
|
+
hideDefaultBody: boolean;
|
|
24584
24618
|
hideDefaultFooter: boolean;
|
|
24585
24619
|
hideDefaultHeader: boolean;
|
|
24586
24620
|
} & {
|
|
@@ -24645,10 +24679,12 @@ declare const VDataTable: {
|
|
|
24645
24679
|
value: number;
|
|
24646
24680
|
})[];
|
|
24647
24681
|
showCurrentPage: boolean;
|
|
24682
|
+
disableSort: boolean;
|
|
24648
24683
|
sortAscIcon: IconValue;
|
|
24649
24684
|
sortDescIcon: IconValue;
|
|
24650
24685
|
fixedHeader: boolean;
|
|
24651
24686
|
fixedFooter: boolean;
|
|
24687
|
+
hideDefaultBody: boolean;
|
|
24652
24688
|
hideDefaultFooter: boolean;
|
|
24653
24689
|
hideDefaultHeader: boolean;
|
|
24654
24690
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -24795,10 +24831,12 @@ declare const VDataTable: {
|
|
|
24795
24831
|
value: number;
|
|
24796
24832
|
})[];
|
|
24797
24833
|
showCurrentPage: boolean;
|
|
24834
|
+
disableSort: boolean;
|
|
24798
24835
|
sortAscIcon: IconValue;
|
|
24799
24836
|
sortDescIcon: IconValue;
|
|
24800
24837
|
fixedHeader: boolean;
|
|
24801
24838
|
fixedFooter: boolean;
|
|
24839
|
+
hideDefaultBody: boolean;
|
|
24802
24840
|
hideDefaultFooter: boolean;
|
|
24803
24841
|
hideDefaultHeader: boolean;
|
|
24804
24842
|
} & {
|
|
@@ -24863,10 +24901,12 @@ declare const VDataTable: {
|
|
|
24863
24901
|
value: number;
|
|
24864
24902
|
})[];
|
|
24865
24903
|
showCurrentPage: boolean;
|
|
24904
|
+
disableSort: boolean;
|
|
24866
24905
|
sortAscIcon: IconValue;
|
|
24867
24906
|
sortDescIcon: IconValue;
|
|
24868
24907
|
fixedHeader: boolean;
|
|
24869
24908
|
fixedFooter: boolean;
|
|
24909
|
+
hideDefaultBody: boolean;
|
|
24870
24910
|
hideDefaultFooter: boolean;
|
|
24871
24911
|
hideDefaultHeader: boolean;
|
|
24872
24912
|
}>;
|
|
@@ -24913,10 +24953,12 @@ declare const VDataTable: {
|
|
|
24913
24953
|
value: number;
|
|
24914
24954
|
})[];
|
|
24915
24955
|
showCurrentPage: boolean;
|
|
24956
|
+
disableSort: boolean;
|
|
24916
24957
|
sortAscIcon: IconValue;
|
|
24917
24958
|
sortDescIcon: IconValue;
|
|
24918
24959
|
fixedHeader: boolean;
|
|
24919
24960
|
fixedFooter: boolean;
|
|
24961
|
+
hideDefaultBody: boolean;
|
|
24920
24962
|
hideDefaultFooter: boolean;
|
|
24921
24963
|
hideDefaultHeader: boolean;
|
|
24922
24964
|
} & {
|
|
@@ -24990,10 +25032,12 @@ declare const VDataTable: {
|
|
|
24990
25032
|
value: number;
|
|
24991
25033
|
})[];
|
|
24992
25034
|
showCurrentPage: boolean;
|
|
25035
|
+
disableSort: boolean;
|
|
24993
25036
|
sortAscIcon: IconValue;
|
|
24994
25037
|
sortDescIcon: IconValue;
|
|
24995
25038
|
fixedHeader: boolean;
|
|
24996
25039
|
fixedFooter: boolean;
|
|
25040
|
+
hideDefaultBody: boolean;
|
|
24997
25041
|
hideDefaultFooter: boolean;
|
|
24998
25042
|
hideDefaultHeader: boolean;
|
|
24999
25043
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -25242,6 +25286,7 @@ declare const VDataTable: {
|
|
|
25242
25286
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
25243
25287
|
color: StringConstructor;
|
|
25244
25288
|
sticky: BooleanConstructor;
|
|
25289
|
+
disableSort: BooleanConstructor;
|
|
25245
25290
|
multiSort: BooleanConstructor;
|
|
25246
25291
|
sortAscIcon: {
|
|
25247
25292
|
type: vue.PropType<IconValue>;
|
|
@@ -25343,6 +25388,7 @@ declare const VDataTable: {
|
|
|
25343
25388
|
type: vue.PropType<readonly string[]>;
|
|
25344
25389
|
default: () => never[];
|
|
25345
25390
|
};
|
|
25391
|
+
hideDefaultBody: BooleanConstructor;
|
|
25346
25392
|
hideDefaultFooter: BooleanConstructor;
|
|
25347
25393
|
hideDefaultHeader: BooleanConstructor;
|
|
25348
25394
|
width: (StringConstructor | NumberConstructor)[];
|
|
@@ -25451,6 +25497,7 @@ declare const VDataTable: {
|
|
|
25451
25497
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
25452
25498
|
color: StringConstructor;
|
|
25453
25499
|
sticky: BooleanConstructor;
|
|
25500
|
+
disableSort: BooleanConstructor;
|
|
25454
25501
|
multiSort: BooleanConstructor;
|
|
25455
25502
|
sortAscIcon: {
|
|
25456
25503
|
type: vue.PropType<IconValue>;
|
|
@@ -25552,6 +25599,7 @@ declare const VDataTable: {
|
|
|
25552
25599
|
type: vue.PropType<readonly string[]>;
|
|
25553
25600
|
default: () => never[];
|
|
25554
25601
|
};
|
|
25602
|
+
hideDefaultBody: BooleanConstructor;
|
|
25555
25603
|
hideDefaultFooter: BooleanConstructor;
|
|
25556
25604
|
hideDefaultHeader: BooleanConstructor;
|
|
25557
25605
|
width: (StringConstructor | NumberConstructor)[];
|
|
@@ -25888,10 +25936,12 @@ declare const VDataTableVirtual: {
|
|
|
25888
25936
|
showSelect: boolean;
|
|
25889
25937
|
expandOnClick: boolean;
|
|
25890
25938
|
showExpand: boolean;
|
|
25939
|
+
disableSort: boolean;
|
|
25891
25940
|
sortAscIcon: IconValue;
|
|
25892
25941
|
sortDescIcon: IconValue;
|
|
25893
25942
|
fixedHeader: boolean;
|
|
25894
25943
|
fixedFooter: boolean;
|
|
25944
|
+
hideDefaultBody: boolean;
|
|
25895
25945
|
hideDefaultFooter: boolean;
|
|
25896
25946
|
hideDefaultHeader: boolean;
|
|
25897
25947
|
} & {
|
|
@@ -25988,10 +26038,12 @@ declare const VDataTableVirtual: {
|
|
|
25988
26038
|
showSelect: boolean;
|
|
25989
26039
|
expandOnClick: boolean;
|
|
25990
26040
|
showExpand: boolean;
|
|
26041
|
+
disableSort: boolean;
|
|
25991
26042
|
sortAscIcon: IconValue;
|
|
25992
26043
|
sortDescIcon: IconValue;
|
|
25993
26044
|
fixedHeader: boolean;
|
|
25994
26045
|
fixedFooter: boolean;
|
|
26046
|
+
hideDefaultBody: boolean;
|
|
25995
26047
|
hideDefaultFooter: boolean;
|
|
25996
26048
|
hideDefaultHeader: boolean;
|
|
25997
26049
|
} & {
|
|
@@ -26082,10 +26134,12 @@ declare const VDataTableVirtual: {
|
|
|
26082
26134
|
showSelect: boolean;
|
|
26083
26135
|
expandOnClick: boolean;
|
|
26084
26136
|
showExpand: boolean;
|
|
26137
|
+
disableSort: boolean;
|
|
26085
26138
|
sortAscIcon: IconValue;
|
|
26086
26139
|
sortDescIcon: IconValue;
|
|
26087
26140
|
fixedHeader: boolean;
|
|
26088
26141
|
fixedFooter: boolean;
|
|
26142
|
+
hideDefaultBody: boolean;
|
|
26089
26143
|
hideDefaultFooter: boolean;
|
|
26090
26144
|
hideDefaultHeader: boolean;
|
|
26091
26145
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -26200,10 +26254,12 @@ declare const VDataTableVirtual: {
|
|
|
26200
26254
|
showSelect: boolean;
|
|
26201
26255
|
expandOnClick: boolean;
|
|
26202
26256
|
showExpand: boolean;
|
|
26257
|
+
disableSort: boolean;
|
|
26203
26258
|
sortAscIcon: IconValue;
|
|
26204
26259
|
sortDescIcon: IconValue;
|
|
26205
26260
|
fixedHeader: boolean;
|
|
26206
26261
|
fixedFooter: boolean;
|
|
26262
|
+
hideDefaultBody: boolean;
|
|
26207
26263
|
hideDefaultFooter: boolean;
|
|
26208
26264
|
hideDefaultHeader: boolean;
|
|
26209
26265
|
} & {
|
|
@@ -26294,10 +26350,12 @@ declare const VDataTableVirtual: {
|
|
|
26294
26350
|
showSelect: boolean;
|
|
26295
26351
|
expandOnClick: boolean;
|
|
26296
26352
|
showExpand: boolean;
|
|
26353
|
+
disableSort: boolean;
|
|
26297
26354
|
sortAscIcon: IconValue;
|
|
26298
26355
|
sortDescIcon: IconValue;
|
|
26299
26356
|
fixedHeader: boolean;
|
|
26300
26357
|
fixedFooter: boolean;
|
|
26358
|
+
hideDefaultBody: boolean;
|
|
26301
26359
|
hideDefaultFooter: boolean;
|
|
26302
26360
|
hideDefaultHeader: boolean;
|
|
26303
26361
|
}>;
|
|
@@ -26328,10 +26386,12 @@ declare const VDataTableVirtual: {
|
|
|
26328
26386
|
showSelect: boolean;
|
|
26329
26387
|
expandOnClick: boolean;
|
|
26330
26388
|
showExpand: boolean;
|
|
26389
|
+
disableSort: boolean;
|
|
26331
26390
|
sortAscIcon: IconValue;
|
|
26332
26391
|
sortDescIcon: IconValue;
|
|
26333
26392
|
fixedHeader: boolean;
|
|
26334
26393
|
fixedFooter: boolean;
|
|
26394
|
+
hideDefaultBody: boolean;
|
|
26335
26395
|
hideDefaultFooter: boolean;
|
|
26336
26396
|
hideDefaultHeader: boolean;
|
|
26337
26397
|
} & {
|
|
@@ -26428,10 +26488,12 @@ declare const VDataTableVirtual: {
|
|
|
26428
26488
|
showSelect: boolean;
|
|
26429
26489
|
expandOnClick: boolean;
|
|
26430
26490
|
showExpand: boolean;
|
|
26491
|
+
disableSort: boolean;
|
|
26431
26492
|
sortAscIcon: IconValue;
|
|
26432
26493
|
sortDescIcon: IconValue;
|
|
26433
26494
|
fixedHeader: boolean;
|
|
26434
26495
|
fixedFooter: boolean;
|
|
26496
|
+
hideDefaultBody: boolean;
|
|
26435
26497
|
hideDefaultFooter: boolean;
|
|
26436
26498
|
hideDefaultHeader: boolean;
|
|
26437
26499
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -26575,6 +26637,7 @@ declare const VDataTableVirtual: {
|
|
|
26575
26637
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
26576
26638
|
color: StringConstructor;
|
|
26577
26639
|
sticky: BooleanConstructor;
|
|
26640
|
+
disableSort: BooleanConstructor;
|
|
26578
26641
|
multiSort: BooleanConstructor;
|
|
26579
26642
|
sortAscIcon: {
|
|
26580
26643
|
type: vue.PropType<IconValue>;
|
|
@@ -26672,6 +26735,7 @@ declare const VDataTableVirtual: {
|
|
|
26672
26735
|
type: vue.PropType<readonly string[]>;
|
|
26673
26736
|
default: () => never[];
|
|
26674
26737
|
};
|
|
26738
|
+
hideDefaultBody: BooleanConstructor;
|
|
26675
26739
|
hideDefaultFooter: BooleanConstructor;
|
|
26676
26740
|
hideDefaultHeader: BooleanConstructor;
|
|
26677
26741
|
width: (StringConstructor | NumberConstructor)[];
|
|
@@ -26729,6 +26793,7 @@ declare const VDataTableVirtual: {
|
|
|
26729
26793
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
26730
26794
|
color: StringConstructor;
|
|
26731
26795
|
sticky: BooleanConstructor;
|
|
26796
|
+
disableSort: BooleanConstructor;
|
|
26732
26797
|
multiSort: BooleanConstructor;
|
|
26733
26798
|
sortAscIcon: {
|
|
26734
26799
|
type: vue.PropType<IconValue>;
|
|
@@ -26826,6 +26891,7 @@ declare const VDataTableVirtual: {
|
|
|
26826
26891
|
type: vue.PropType<readonly string[]>;
|
|
26827
26892
|
default: () => never[];
|
|
26828
26893
|
};
|
|
26894
|
+
hideDefaultBody: BooleanConstructor;
|
|
26829
26895
|
hideDefaultFooter: BooleanConstructor;
|
|
26830
26896
|
hideDefaultHeader: BooleanConstructor;
|
|
26831
26897
|
width: (StringConstructor | NumberConstructor)[];
|
|
@@ -26883,10 +26949,12 @@ declare const VDataTableServer: {
|
|
|
26883
26949
|
value: number;
|
|
26884
26950
|
})[];
|
|
26885
26951
|
showCurrentPage: boolean;
|
|
26952
|
+
disableSort: boolean;
|
|
26886
26953
|
sortAscIcon: IconValue;
|
|
26887
26954
|
sortDescIcon: IconValue;
|
|
26888
26955
|
fixedHeader: boolean;
|
|
26889
26956
|
fixedFooter: boolean;
|
|
26957
|
+
hideDefaultBody: boolean;
|
|
26890
26958
|
hideDefaultFooter: boolean;
|
|
26891
26959
|
hideDefaultHeader: boolean;
|
|
26892
26960
|
} & {
|
|
@@ -26999,10 +27067,12 @@ declare const VDataTableServer: {
|
|
|
26999
27067
|
value: number;
|
|
27000
27068
|
})[];
|
|
27001
27069
|
showCurrentPage: boolean;
|
|
27070
|
+
disableSort: boolean;
|
|
27002
27071
|
sortAscIcon: IconValue;
|
|
27003
27072
|
sortDescIcon: IconValue;
|
|
27004
27073
|
fixedHeader: boolean;
|
|
27005
27074
|
fixedFooter: boolean;
|
|
27075
|
+
hideDefaultBody: boolean;
|
|
27006
27076
|
hideDefaultFooter: boolean;
|
|
27007
27077
|
hideDefaultHeader: boolean;
|
|
27008
27078
|
} & {
|
|
@@ -27106,10 +27176,12 @@ declare const VDataTableServer: {
|
|
|
27106
27176
|
value: number;
|
|
27107
27177
|
})[];
|
|
27108
27178
|
showCurrentPage: boolean;
|
|
27179
|
+
disableSort: boolean;
|
|
27109
27180
|
sortAscIcon: IconValue;
|
|
27110
27181
|
sortDescIcon: IconValue;
|
|
27111
27182
|
fixedHeader: boolean;
|
|
27112
27183
|
fixedFooter: boolean;
|
|
27184
|
+
hideDefaultBody: boolean;
|
|
27113
27185
|
hideDefaultFooter: boolean;
|
|
27114
27186
|
hideDefaultHeader: boolean;
|
|
27115
27187
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -27255,10 +27327,12 @@ declare const VDataTableServer: {
|
|
|
27255
27327
|
value: number;
|
|
27256
27328
|
})[];
|
|
27257
27329
|
showCurrentPage: boolean;
|
|
27330
|
+
disableSort: boolean;
|
|
27258
27331
|
sortAscIcon: IconValue;
|
|
27259
27332
|
sortDescIcon: IconValue;
|
|
27260
27333
|
fixedHeader: boolean;
|
|
27261
27334
|
fixedFooter: boolean;
|
|
27335
|
+
hideDefaultBody: boolean;
|
|
27262
27336
|
hideDefaultFooter: boolean;
|
|
27263
27337
|
hideDefaultHeader: boolean;
|
|
27264
27338
|
} & {
|
|
@@ -27362,10 +27436,12 @@ declare const VDataTableServer: {
|
|
|
27362
27436
|
value: number;
|
|
27363
27437
|
})[];
|
|
27364
27438
|
showCurrentPage: boolean;
|
|
27439
|
+
disableSort: boolean;
|
|
27365
27440
|
sortAscIcon: IconValue;
|
|
27366
27441
|
sortDescIcon: IconValue;
|
|
27367
27442
|
fixedHeader: boolean;
|
|
27368
27443
|
fixedFooter: boolean;
|
|
27444
|
+
hideDefaultBody: boolean;
|
|
27369
27445
|
hideDefaultFooter: boolean;
|
|
27370
27446
|
hideDefaultHeader: boolean;
|
|
27371
27447
|
}>;
|
|
@@ -27411,10 +27487,12 @@ declare const VDataTableServer: {
|
|
|
27411
27487
|
value: number;
|
|
27412
27488
|
})[];
|
|
27413
27489
|
showCurrentPage: boolean;
|
|
27490
|
+
disableSort: boolean;
|
|
27414
27491
|
sortAscIcon: IconValue;
|
|
27415
27492
|
sortDescIcon: IconValue;
|
|
27416
27493
|
fixedHeader: boolean;
|
|
27417
27494
|
fixedFooter: boolean;
|
|
27495
|
+
hideDefaultBody: boolean;
|
|
27418
27496
|
hideDefaultFooter: boolean;
|
|
27419
27497
|
hideDefaultHeader: boolean;
|
|
27420
27498
|
} & {
|
|
@@ -27526,10 +27604,12 @@ declare const VDataTableServer: {
|
|
|
27526
27604
|
value: number;
|
|
27527
27605
|
})[];
|
|
27528
27606
|
showCurrentPage: boolean;
|
|
27607
|
+
disableSort: boolean;
|
|
27529
27608
|
sortAscIcon: IconValue;
|
|
27530
27609
|
sortDescIcon: IconValue;
|
|
27531
27610
|
fixedHeader: boolean;
|
|
27532
27611
|
fixedFooter: boolean;
|
|
27612
|
+
hideDefaultBody: boolean;
|
|
27533
27613
|
hideDefaultFooter: boolean;
|
|
27534
27614
|
hideDefaultHeader: boolean;
|
|
27535
27615
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -27724,6 +27804,7 @@ declare const VDataTableServer: {
|
|
|
27724
27804
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
27725
27805
|
color: StringConstructor;
|
|
27726
27806
|
sticky: BooleanConstructor;
|
|
27807
|
+
disableSort: BooleanConstructor;
|
|
27727
27808
|
multiSort: BooleanConstructor;
|
|
27728
27809
|
sortAscIcon: {
|
|
27729
27810
|
type: vue.PropType<IconValue>;
|
|
@@ -27825,6 +27906,7 @@ declare const VDataTableServer: {
|
|
|
27825
27906
|
type: vue.PropType<readonly string[]>;
|
|
27826
27907
|
default: () => never[];
|
|
27827
27908
|
};
|
|
27909
|
+
hideDefaultBody: BooleanConstructor;
|
|
27828
27910
|
hideDefaultFooter: BooleanConstructor;
|
|
27829
27911
|
hideDefaultHeader: BooleanConstructor;
|
|
27830
27912
|
width: (StringConstructor | NumberConstructor)[];
|
|
@@ -27929,6 +28011,7 @@ declare const VDataTableServer: {
|
|
|
27929
28011
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
27930
28012
|
color: StringConstructor;
|
|
27931
28013
|
sticky: BooleanConstructor;
|
|
28014
|
+
disableSort: BooleanConstructor;
|
|
27932
28015
|
multiSort: BooleanConstructor;
|
|
27933
28016
|
sortAscIcon: {
|
|
27934
28017
|
type: vue.PropType<IconValue>;
|
|
@@ -28030,6 +28113,7 @@ declare const VDataTableServer: {
|
|
|
28030
28113
|
type: vue.PropType<readonly string[]>;
|
|
28031
28114
|
default: () => never[];
|
|
28032
28115
|
};
|
|
28116
|
+
hideDefaultBody: BooleanConstructor;
|
|
28033
28117
|
hideDefaultFooter: BooleanConstructor;
|
|
28034
28118
|
hideDefaultHeader: BooleanConstructor;
|
|
28035
28119
|
width: (StringConstructor | NumberConstructor)[];
|
|
@@ -28101,7 +28185,7 @@ declare const VDatePicker: {
|
|
|
28101
28185
|
theme?: string | undefined;
|
|
28102
28186
|
color?: string | undefined;
|
|
28103
28187
|
month?: string | number | undefined;
|
|
28104
|
-
year?:
|
|
28188
|
+
year?: number | undefined;
|
|
28105
28189
|
border?: string | number | boolean | undefined;
|
|
28106
28190
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
28107
28191
|
rounded?: string | number | boolean | undefined;
|
|
@@ -28154,7 +28238,7 @@ declare const VDatePicker: {
|
|
|
28154
28238
|
theme?: string | undefined;
|
|
28155
28239
|
color?: string | undefined;
|
|
28156
28240
|
month?: string | number | undefined;
|
|
28157
|
-
year?:
|
|
28241
|
+
year?: number | undefined;
|
|
28158
28242
|
border?: string | number | boolean | undefined;
|
|
28159
28243
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
28160
28244
|
rounded?: string | number | boolean | undefined;
|
|
@@ -28247,7 +28331,7 @@ declare const VDatePicker: {
|
|
|
28247
28331
|
theme?: string | undefined;
|
|
28248
28332
|
color?: string | undefined;
|
|
28249
28333
|
month?: string | number | undefined;
|
|
28250
|
-
year?:
|
|
28334
|
+
year?: number | undefined;
|
|
28251
28335
|
border?: string | number | boolean | undefined;
|
|
28252
28336
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
28253
28337
|
rounded?: string | number | boolean | undefined;
|
|
@@ -28321,7 +28405,7 @@ declare const VDatePicker: {
|
|
|
28321
28405
|
theme?: string | undefined;
|
|
28322
28406
|
color?: string | undefined;
|
|
28323
28407
|
month?: string | number | undefined;
|
|
28324
|
-
year?:
|
|
28408
|
+
year?: number | undefined;
|
|
28325
28409
|
border?: string | number | boolean | undefined;
|
|
28326
28410
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
28327
28411
|
rounded?: string | number | boolean | undefined;
|
|
@@ -28434,12 +28518,12 @@ declare const VDatePicker: {
|
|
|
28434
28518
|
hideHeader: BooleanConstructor;
|
|
28435
28519
|
max: vue.PropType<unknown>;
|
|
28436
28520
|
min: vue.PropType<unknown>;
|
|
28521
|
+
year: NumberConstructor;
|
|
28437
28522
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28438
28523
|
disabled: BooleanConstructor;
|
|
28439
28524
|
displayValue: vue.PropType<unknown>;
|
|
28440
28525
|
month: (StringConstructor | NumberConstructor)[];
|
|
28441
28526
|
showAdjacentMonths: BooleanConstructor;
|
|
28442
|
-
year: (StringConstructor | NumberConstructor)[];
|
|
28443
28527
|
weekdays: {
|
|
28444
28528
|
type: {
|
|
28445
28529
|
(arrayLength: number): number[];
|
|
@@ -28543,12 +28627,12 @@ declare const VDatePicker: {
|
|
|
28543
28627
|
hideHeader: BooleanConstructor;
|
|
28544
28628
|
max: vue.PropType<unknown>;
|
|
28545
28629
|
min: vue.PropType<unknown>;
|
|
28630
|
+
year: NumberConstructor;
|
|
28546
28631
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28547
28632
|
disabled: BooleanConstructor;
|
|
28548
28633
|
displayValue: vue.PropType<unknown>;
|
|
28549
28634
|
month: (StringConstructor | NumberConstructor)[];
|
|
28550
28635
|
showAdjacentMonths: BooleanConstructor;
|
|
28551
|
-
year: (StringConstructor | NumberConstructor)[];
|
|
28552
28636
|
weekdays: {
|
|
28553
28637
|
type: {
|
|
28554
28638
|
(arrayLength: number): number[];
|
|
@@ -29325,7 +29409,10 @@ declare const VDatePickerMonths: {
|
|
|
29325
29409
|
new (...args: any[]): vue.CreateComponentPublicInstance<{} & {
|
|
29326
29410
|
height?: string | number | undefined;
|
|
29327
29411
|
color?: string | undefined;
|
|
29412
|
+
year?: number | undefined;
|
|
29328
29413
|
modelValue?: number | undefined;
|
|
29414
|
+
max?: unknown;
|
|
29415
|
+
min?: unknown;
|
|
29329
29416
|
} & {
|
|
29330
29417
|
$children?: {} | vue.VNodeChild | {
|
|
29331
29418
|
month?: ((arg: {
|
|
@@ -29369,7 +29456,10 @@ declare const VDatePickerMonths: {
|
|
|
29369
29456
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {} & {
|
|
29370
29457
|
height?: string | number | undefined;
|
|
29371
29458
|
color?: string | undefined;
|
|
29459
|
+
year?: number | undefined;
|
|
29372
29460
|
modelValue?: number | undefined;
|
|
29461
|
+
max?: unknown;
|
|
29462
|
+
min?: unknown;
|
|
29373
29463
|
} & {
|
|
29374
29464
|
$children?: {} | vue.VNodeChild | {
|
|
29375
29465
|
month?: ((arg: {
|
|
@@ -29431,7 +29521,10 @@ declare const VDatePickerMonths: {
|
|
|
29431
29521
|
}, {} & {
|
|
29432
29522
|
height?: string | number | undefined;
|
|
29433
29523
|
color?: string | undefined;
|
|
29524
|
+
year?: number | undefined;
|
|
29434
29525
|
modelValue?: number | undefined;
|
|
29526
|
+
max?: unknown;
|
|
29527
|
+
min?: unknown;
|
|
29435
29528
|
} & {
|
|
29436
29529
|
$children?: {} | vue.VNodeChild | {
|
|
29437
29530
|
month?: ((arg: {
|
|
@@ -29477,7 +29570,10 @@ declare const VDatePickerMonths: {
|
|
|
29477
29570
|
} & vue.ComponentOptionsBase<{} & {
|
|
29478
29571
|
height?: string | number | undefined;
|
|
29479
29572
|
color?: string | undefined;
|
|
29573
|
+
year?: number | undefined;
|
|
29480
29574
|
modelValue?: number | undefined;
|
|
29575
|
+
max?: unknown;
|
|
29576
|
+
min?: unknown;
|
|
29481
29577
|
} & {
|
|
29482
29578
|
$children?: {} | vue.VNodeChild | {
|
|
29483
29579
|
month?: ((arg: {
|
|
@@ -29534,11 +29630,17 @@ declare const VDatePickerMonths: {
|
|
|
29534
29630
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
29535
29631
|
color: StringConstructor;
|
|
29536
29632
|
height: (StringConstructor | NumberConstructor)[];
|
|
29633
|
+
min: PropType<unknown>;
|
|
29634
|
+
max: PropType<unknown>;
|
|
29537
29635
|
modelValue: NumberConstructor;
|
|
29636
|
+
year: NumberConstructor;
|
|
29538
29637
|
}, vue.ExtractPropTypes<{
|
|
29539
29638
|
color: StringConstructor;
|
|
29540
29639
|
height: (StringConstructor | NumberConstructor)[];
|
|
29640
|
+
min: PropType<unknown>;
|
|
29641
|
+
max: PropType<unknown>;
|
|
29541
29642
|
modelValue: NumberConstructor;
|
|
29643
|
+
year: NumberConstructor;
|
|
29542
29644
|
}>>;
|
|
29543
29645
|
type VDatePickerMonths = InstanceType<typeof VDatePickerMonths>;
|
|
29544
29646
|
|
|
@@ -73461,37 +73563,36 @@ declare module '@vue/runtime-core' {
|
|
|
73461
73563
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
73462
73564
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
73463
73565
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
73566
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
73464
73567
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
73465
73568
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
73466
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
73467
73569
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
73468
73570
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
73469
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
73470
73571
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
73471
73572
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
73472
73573
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
73574
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
73575
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
73473
73576
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
73474
73577
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
73475
73578
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
73476
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
73477
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
73478
73579
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
73580
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
73479
73581
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
73480
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
73481
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
73482
73582
|
VCard: typeof import('vuetify/components')['VCard']
|
|
73483
73583
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
73484
73584
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
73485
73585
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
73486
73586
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
73487
73587
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
73588
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
73589
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
73488
73590
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
73489
73591
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
73490
73592
|
VChip: typeof import('vuetify/components')['VChip']
|
|
73593
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
73491
73594
|
VCode: typeof import('vuetify/components')['VCode']
|
|
73492
73595
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
73493
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
73494
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
73495
73596
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
73496
73597
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
73497
73598
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
@@ -73499,6 +73600,8 @@ declare module '@vue/runtime-core' {
|
|
|
73499
73600
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
73500
73601
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
73501
73602
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
73603
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
73604
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
73502
73605
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
73503
73606
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
73504
73607
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
@@ -73507,29 +73610,26 @@ declare module '@vue/runtime-core' {
|
|
|
73507
73610
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
73508
73611
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
73509
73612
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
73510
|
-
|
|
73613
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
73511
73614
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
73512
73615
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
73513
73616
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
73514
73617
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
73515
|
-
|
|
73618
|
+
VFab: typeof import('vuetify/components')['VFab']
|
|
73619
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
73516
73620
|
VField: typeof import('vuetify/components')['VField']
|
|
73517
73621
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
73518
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
73519
73622
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
73520
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
73521
73623
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
73522
73624
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
73523
73625
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
73524
73626
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
73525
73627
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
73526
|
-
VFab: typeof import('vuetify/components')['VFab']
|
|
73527
73628
|
VInput: typeof import('vuetify/components')['VInput']
|
|
73528
73629
|
VImg: typeof import('vuetify/components')['VImg']
|
|
73630
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
73529
73631
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
73530
73632
|
VItem: typeof import('vuetify/components')['VItem']
|
|
73531
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
73532
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
73533
73633
|
VList: typeof import('vuetify/components')['VList']
|
|
73534
73634
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
73535
73635
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -73539,70 +73639,73 @@ declare module '@vue/runtime-core' {
|
|
|
73539
73639
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
73540
73640
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
73541
73641
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
73642
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
73643
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
73542
73644
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
73543
73645
|
VMain: typeof import('vuetify/components')['VMain']
|
|
73544
73646
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
73647
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
73545
73648
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
73649
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
73546
73650
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
73547
73651
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
73548
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
73549
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
73550
73652
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
73551
73653
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
73552
73654
|
VRating: typeof import('vuetify/components')['VRating']
|
|
73553
73655
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
73554
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
73555
73656
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
73657
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
73556
73658
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
73659
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
73557
73660
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
73661
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
73662
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
73558
73663
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
73559
73664
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
73560
|
-
|
|
73561
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
73665
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
73562
73666
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
73563
73667
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
73564
73668
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
73565
73669
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
73566
73670
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
73567
73671
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
73568
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
73569
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
73570
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
73571
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
73572
73672
|
VTab: typeof import('vuetify/components')['VTab']
|
|
73573
73673
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
73574
73674
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
73575
73675
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
73576
73676
|
VTable: typeof import('vuetify/components')['VTable']
|
|
73677
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
73678
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
73679
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
73577
73680
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
73578
73681
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
73579
73682
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
73580
|
-
|
|
73581
|
-
|
|
73683
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
73684
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
73582
73685
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
73583
73686
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
73584
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
73585
73687
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
|
73586
73688
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
73587
73689
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
73588
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
73589
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
73590
73690
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
73591
73691
|
VCol: typeof import('vuetify/components')['VCol']
|
|
73592
73692
|
VRow: typeof import('vuetify/components')['VRow']
|
|
73593
73693
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
73694
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
73695
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
73594
73696
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
73595
73697
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
73596
73698
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
73597
73699
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
73598
73700
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
73599
73701
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
73600
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
73601
73702
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
73703
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
73602
73704
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
73603
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
73604
73705
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
73706
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
73605
73707
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
73708
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
73606
73709
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
73607
73710
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
73608
73711
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
@@ -73620,22 +73723,21 @@ declare module '@vue/runtime-core' {
|
|
|
73620
73723
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
73621
73724
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
73622
73725
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
73623
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
73624
73726
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
73625
73727
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
73626
73728
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
73627
73729
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
73628
73730
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
73629
73731
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
73630
|
-
|
|
73631
|
-
|
|
73632
|
-
|
|
73732
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
73733
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
73734
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
73633
73735
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
73634
73736
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
73635
73737
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
73636
|
-
|
|
73637
|
-
|
|
73638
|
-
|
|
73738
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
73739
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
73740
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
73639
73741
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
73640
73742
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
73641
73743
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|