@vuetify/nightly 3.9.0-beta.1-dev.2025-07-02 → 3.9.0-beta.1-dev.2025-07-04
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/CHANGELOG.md +15 -3
- package/dist/json/attributes.json +3406 -3414
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +2 -4
- package/dist/json/web-types.json +6709 -6730
- package/dist/vuetify-labs.cjs +121 -61
- package/dist/vuetify-labs.css +4732 -4721
- package/dist/vuetify-labs.d.ts +106 -116
- package/dist/vuetify-labs.esm.js +121 -61
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +121 -61
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +121 -61
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3631 -3620
- package/dist/vuetify.d.ts +106 -116
- package/dist/vuetify.esm.js +121 -61
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +121 -61
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +73 -59
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +12 -1
- package/lib/components/VDataTable/VDataTable.d.ts +20 -38
- package/lib/components/VDataTable/VDataTable.sass +12 -2
- package/lib/components/VDataTable/VDataTableColumn.d.ts +9 -3
- package/lib/components/VDataTable/VDataTableColumn.js +12 -3
- package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +0 -13
- package/lib/components/VDataTable/VDataTableHeaders.js +5 -4
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.js +2 -0
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +10 -23
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +10 -23
- package/lib/components/VDataTable/composables/headers.d.ts +22 -14
- package/lib/components/VDataTable/composables/headers.js +51 -22
- package/lib/components/VDataTable/composables/headers.js.map +1 -1
- package/lib/components/VDataTable/types.d.ts +3 -1
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VList/VListGroup.d.ts +13 -0
- package/lib/components/VList/VListGroup.js +2 -1
- package/lib/components/VList/VListGroup.js.map +1 -1
- package/lib/components/VList/VListItem.d.ts +6 -3
- package/lib/components/VList/VListItem.js +1 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.d.ts +6 -21
- package/lib/components/VTreeview/VTreeview.js +6 -9
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewGroup.d.ts +13 -0
- package/lib/components/VTreeview/VTreeviewItem.d.ts +18 -9
- package/lib/components/VTreeview/VTreeviewItem.js +1 -1
- package/lib/components/VTreeview/VTreeviewItem.js.map +1 -1
- package/lib/composables/nested/nested.d.ts +7 -4
- package/lib/composables/nested/nested.js +16 -6
- package/lib/composables/nested/nested.js.map +1 -1
- package/lib/composables/nested/selectStrategies.d.ts +2 -1
- package/lib/composables/nested/selectStrategies.js +22 -11
- package/lib/composables/nested/selectStrategies.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -58
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -838,9 +838,10 @@ type SelectStrategyFunction = (data: {
|
|
838
838
|
selected: Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
839
839
|
children: Map<unknown, unknown[]>;
|
840
840
|
parents: Map<unknown, unknown>;
|
841
|
+
disabled: Set<unknown>;
|
841
842
|
event?: Event;
|
842
843
|
}) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
843
|
-
type SelectStrategyTransformInFunction = (v: readonly unknown[] | undefined, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
844
|
+
type SelectStrategyTransformInFunction = (v: readonly unknown[] | undefined, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>, disabled: Set<unknown>) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
844
845
|
type SelectStrategyTransformOutFunction = (v: Map<unknown, 'on' | 'off' | 'indeterminate'>, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>) => unknown[];
|
845
846
|
type SelectStrategy = {
|
846
847
|
select: SelectStrategyFunction;
|
@@ -959,7 +960,7 @@ type DataTableHeader<T = Record<string, any>> = {
|
|
959
960
|
key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {});
|
960
961
|
value?: SelectItemKey<T>;
|
961
962
|
title?: string;
|
962
|
-
fixed?: boolean;
|
963
|
+
fixed?: boolean | 'start' | 'end';
|
963
964
|
align?: 'start' | 'end' | 'center';
|
964
965
|
width?: number | string;
|
965
966
|
minWidth?: number | string;
|
@@ -978,7 +979,9 @@ type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children
|
|
978
979
|
value: SelectItemKey | null;
|
979
980
|
sortable: boolean;
|
980
981
|
fixedOffset?: number;
|
982
|
+
fixedEndOffset?: number;
|
981
983
|
lastFixed?: boolean;
|
984
|
+
firstFixedEnd?: boolean;
|
982
985
|
nowrap?: boolean;
|
983
986
|
colspan?: number;
|
984
987
|
rowspan?: number;
|
@@ -6914,13 +6917,14 @@ declare const VListItem: {
|
|
6914
6917
|
root: {
|
6915
6918
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
6916
6919
|
parents: vue.Ref<Map<unknown, unknown>>;
|
6920
|
+
disabled: vue.Ref<Set<unknown>>;
|
6917
6921
|
activatable: vue.Ref<boolean>;
|
6918
6922
|
selectable: vue.Ref<boolean>;
|
6919
6923
|
opened: vue.Ref<Set<unknown>>;
|
6920
6924
|
activated: vue.Ref<Set<unknown>>;
|
6921
6925
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
6922
6926
|
selectedValues: vue.Ref<unknown[]>;
|
6923
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
6927
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
6924
6928
|
unregister: (id: unknown) => void;
|
6925
6929
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
6926
6930
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -7047,13 +7051,14 @@ declare const VListItem: {
|
|
7047
7051
|
root: {
|
7048
7052
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
7049
7053
|
parents: vue.Ref<Map<unknown, unknown>>;
|
7054
|
+
disabled: vue.Ref<Set<unknown>>;
|
7050
7055
|
activatable: vue.Ref<boolean>;
|
7051
7056
|
selectable: vue.Ref<boolean>;
|
7052
7057
|
opened: vue.Ref<Set<unknown>>;
|
7053
7058
|
activated: vue.Ref<Set<unknown>>;
|
7054
7059
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
7055
7060
|
selectedValues: vue.Ref<unknown[]>;
|
7056
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
7061
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
7057
7062
|
unregister: (id: unknown) => void;
|
7058
7063
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
7059
7064
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -7169,13 +7174,14 @@ declare const VListItem: {
|
|
7169
7174
|
root: {
|
7170
7175
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
7171
7176
|
parents: vue.Ref<Map<unknown, unknown>>;
|
7177
|
+
disabled: vue.Ref<Set<unknown>>;
|
7172
7178
|
activatable: vue.Ref<boolean>;
|
7173
7179
|
selectable: vue.Ref<boolean>;
|
7174
7180
|
opened: vue.Ref<Set<unknown>>;
|
7175
7181
|
activated: vue.Ref<Set<unknown>>;
|
7176
7182
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
7177
7183
|
selectedValues: vue.Ref<unknown[]>;
|
7178
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
7184
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
7179
7185
|
unregister: (id: unknown) => void;
|
7180
7186
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
7181
7187
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -7982,6 +7988,7 @@ type VList = InstanceType<typeof VList>;
|
|
7982
7988
|
declare const VListGroup: {
|
7983
7989
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
7984
7990
|
style: vue.StyleValue;
|
7991
|
+
disabled: boolean;
|
7985
7992
|
tag: string | JSXComponent;
|
7986
7993
|
subgroup: boolean;
|
7987
7994
|
collapseIcon: IconValue;
|
@@ -8022,6 +8029,7 @@ declare const VListGroup: {
|
|
8022
8029
|
isOpen: vue.ComputedRef<boolean>;
|
8023
8030
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
8024
8031
|
style: vue.StyleValue;
|
8032
|
+
disabled: boolean;
|
8025
8033
|
tag: string | JSXComponent;
|
8026
8034
|
subgroup: boolean;
|
8027
8035
|
collapseIcon: IconValue;
|
@@ -8042,6 +8050,7 @@ declare const VListGroup: {
|
|
8042
8050
|
Defaults: {};
|
8043
8051
|
}, {
|
8044
8052
|
style: vue.StyleValue;
|
8053
|
+
disabled: boolean;
|
8045
8054
|
tag: string | JSXComponent;
|
8046
8055
|
subgroup: boolean;
|
8047
8056
|
collapseIcon: IconValue;
|
@@ -8082,6 +8091,7 @@ declare const VListGroup: {
|
|
8082
8091
|
isOpen: vue.ComputedRef<boolean>;
|
8083
8092
|
}, {}, {}, {}, {
|
8084
8093
|
style: vue.StyleValue;
|
8094
|
+
disabled: boolean;
|
8085
8095
|
tag: string | JSXComponent;
|
8086
8096
|
subgroup: boolean;
|
8087
8097
|
collapseIcon: IconValue;
|
@@ -8093,6 +8103,7 @@ declare const VListGroup: {
|
|
8093
8103
|
__isSuspense?: never;
|
8094
8104
|
} & vue.ComponentOptionsBase<{
|
8095
8105
|
style: vue.StyleValue;
|
8106
|
+
disabled: boolean;
|
8096
8107
|
tag: string | JSXComponent;
|
8097
8108
|
subgroup: boolean;
|
8098
8109
|
collapseIcon: IconValue;
|
@@ -8133,6 +8144,7 @@ declare const VListGroup: {
|
|
8133
8144
|
isOpen: vue.ComputedRef<boolean>;
|
8134
8145
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
8135
8146
|
style: vue.StyleValue;
|
8147
|
+
disabled: boolean;
|
8136
8148
|
tag: string | JSXComponent;
|
8137
8149
|
subgroup: boolean;
|
8138
8150
|
collapseIcon: IconValue;
|
@@ -8161,6 +8173,7 @@ declare const VListGroup: {
|
|
8161
8173
|
type: vue.PropType<IconValue>;
|
8162
8174
|
default: string;
|
8163
8175
|
};
|
8176
|
+
disabled: BooleanConstructor;
|
8164
8177
|
expandIcon: {
|
8165
8178
|
type: vue.PropType<IconValue>;
|
8166
8179
|
default: string;
|
@@ -8189,6 +8202,7 @@ declare const VListGroup: {
|
|
8189
8202
|
type: vue.PropType<IconValue>;
|
8190
8203
|
default: string;
|
8191
8204
|
};
|
8205
|
+
disabled: BooleanConstructor;
|
8192
8206
|
expandIcon: {
|
8193
8207
|
type: vue.PropType<IconValue>;
|
8194
8208
|
default: string;
|
@@ -37669,7 +37683,6 @@ declare const VDataTableHeaders: {
|
|
37669
37683
|
sticky: boolean;
|
37670
37684
|
multiSort: boolean;
|
37671
37685
|
disableSort: boolean;
|
37672
|
-
lastFixed: boolean;
|
37673
37686
|
fixedHeader: boolean;
|
37674
37687
|
sortAscIcon: IconValue;
|
37675
37688
|
sortDescIcon: IconValue;
|
@@ -37704,7 +37717,6 @@ declare const VDataTableHeaders: {
|
|
37704
37717
|
sticky: boolean;
|
37705
37718
|
multiSort: boolean;
|
37706
37719
|
disableSort: boolean;
|
37707
|
-
lastFixed: boolean;
|
37708
37720
|
fixedHeader: boolean;
|
37709
37721
|
sortAscIcon: IconValue;
|
37710
37722
|
sortDescIcon: IconValue;
|
@@ -37726,7 +37738,6 @@ declare const VDataTableHeaders: {
|
|
37726
37738
|
sticky: boolean;
|
37727
37739
|
multiSort: boolean;
|
37728
37740
|
disableSort: boolean;
|
37729
|
-
lastFixed: boolean;
|
37730
37741
|
fixedHeader: boolean;
|
37731
37742
|
sortAscIcon: IconValue;
|
37732
37743
|
sortDescIcon: IconValue;
|
@@ -37761,7 +37772,6 @@ declare const VDataTableHeaders: {
|
|
37761
37772
|
sticky: boolean;
|
37762
37773
|
multiSort: boolean;
|
37763
37774
|
disableSort: boolean;
|
37764
|
-
lastFixed: boolean;
|
37765
37775
|
fixedHeader: boolean;
|
37766
37776
|
sortAscIcon: IconValue;
|
37767
37777
|
sortDescIcon: IconValue;
|
@@ -37774,7 +37784,6 @@ declare const VDataTableHeaders: {
|
|
37774
37784
|
sticky: boolean;
|
37775
37785
|
multiSort: boolean;
|
37776
37786
|
disableSort: boolean;
|
37777
|
-
lastFixed: boolean;
|
37778
37787
|
fixedHeader: boolean;
|
37779
37788
|
sortAscIcon: IconValue;
|
37780
37789
|
sortDescIcon: IconValue;
|
@@ -37809,7 +37818,6 @@ declare const VDataTableHeaders: {
|
|
37809
37818
|
sticky: boolean;
|
37810
37819
|
multiSort: boolean;
|
37811
37820
|
disableSort: boolean;
|
37812
|
-
lastFixed: boolean;
|
37813
37821
|
fixedHeader: boolean;
|
37814
37822
|
sortAscIcon: IconValue;
|
37815
37823
|
sortDescIcon: IconValue;
|
@@ -37829,7 +37837,6 @@ declare const VDataTableHeaders: {
|
|
37829
37837
|
color: StringConstructor;
|
37830
37838
|
disableSort: BooleanConstructor;
|
37831
37839
|
fixedHeader: BooleanConstructor;
|
37832
|
-
lastFixed: BooleanConstructor;
|
37833
37840
|
multiSort: BooleanConstructor;
|
37834
37841
|
sortAscIcon: {
|
37835
37842
|
type: PropType<IconValue>;
|
@@ -37853,7 +37860,6 @@ declare const VDataTableHeaders: {
|
|
37853
37860
|
color: StringConstructor;
|
37854
37861
|
disableSort: BooleanConstructor;
|
37855
37862
|
fixedHeader: BooleanConstructor;
|
37856
|
-
lastFixed: BooleanConstructor;
|
37857
37863
|
multiSort: BooleanConstructor;
|
37858
37864
|
sortAscIcon: {
|
37859
37865
|
type: PropType<IconValue>;
|
@@ -38428,7 +38434,6 @@ declare const VDataTable: {
|
|
38428
38434
|
value: number;
|
38429
38435
|
})[];
|
38430
38436
|
showCurrentPage: boolean;
|
38431
|
-
lastFixed: boolean;
|
38432
38437
|
fixedHeader: boolean;
|
38433
38438
|
sortAscIcon: IconValue;
|
38434
38439
|
sortDescIcon: IconValue;
|
@@ -38509,7 +38514,6 @@ declare const VDataTable: {
|
|
38509
38514
|
value: number;
|
38510
38515
|
})[];
|
38511
38516
|
showCurrentPage: boolean;
|
38512
|
-
lastFixed: boolean;
|
38513
38517
|
fixedHeader: boolean;
|
38514
38518
|
sortAscIcon: IconValue;
|
38515
38519
|
sortDescIcon: IconValue;
|
@@ -38611,7 +38615,6 @@ declare const VDataTable: {
|
|
38611
38615
|
value: number;
|
38612
38616
|
})[];
|
38613
38617
|
showCurrentPage: boolean;
|
38614
|
-
lastFixed: boolean;
|
38615
38618
|
fixedHeader: boolean;
|
38616
38619
|
sortAscIcon: IconValue;
|
38617
38620
|
sortDescIcon: IconValue;
|
@@ -38683,7 +38686,6 @@ declare const VDataTable: {
|
|
38683
38686
|
value: number;
|
38684
38687
|
})[];
|
38685
38688
|
showCurrentPage: boolean;
|
38686
|
-
lastFixed: boolean;
|
38687
38689
|
fixedHeader: boolean;
|
38688
38690
|
sortAscIcon: IconValue;
|
38689
38691
|
sortDescIcon: IconValue;
|
@@ -38737,7 +38739,6 @@ declare const VDataTable: {
|
|
38737
38739
|
value: number;
|
38738
38740
|
})[];
|
38739
38741
|
showCurrentPage: boolean;
|
38740
|
-
lastFixed: boolean;
|
38741
38742
|
fixedHeader: boolean;
|
38742
38743
|
sortAscIcon: IconValue;
|
38743
38744
|
sortDescIcon: IconValue;
|
@@ -38818,7 +38819,6 @@ declare const VDataTable: {
|
|
38818
38819
|
value: number;
|
38819
38820
|
})[];
|
38820
38821
|
showCurrentPage: boolean;
|
38821
|
-
lastFixed: boolean;
|
38822
38822
|
fixedHeader: boolean;
|
38823
38823
|
sortAscIcon: IconValue;
|
38824
38824
|
sortDescIcon: IconValue;
|
@@ -38972,7 +38972,6 @@ declare const VDataTable: {
|
|
38972
38972
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
38973
38973
|
color: StringConstructor;
|
38974
38974
|
disableSort: BooleanConstructor;
|
38975
|
-
lastFixed: BooleanConstructor;
|
38976
38975
|
multiSort: BooleanConstructor;
|
38977
38976
|
sortAscIcon: {
|
38978
38977
|
type: vue.PropType<IconValue>;
|
@@ -39145,7 +39144,6 @@ declare const VDataTable: {
|
|
39145
39144
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
39146
39145
|
color: StringConstructor;
|
39147
39146
|
disableSort: BooleanConstructor;
|
39148
|
-
lastFixed: BooleanConstructor;
|
39149
39147
|
multiSort: BooleanConstructor;
|
39150
39148
|
sortAscIcon: {
|
39151
39149
|
type: vue.PropType<IconValue>;
|
@@ -39519,7 +39517,6 @@ declare const VDataTableVirtual: {
|
|
39519
39517
|
itemKey: SelectItemKey;
|
39520
39518
|
hideNoData: boolean;
|
39521
39519
|
hover: boolean;
|
39522
|
-
lastFixed: boolean;
|
39523
39520
|
fixedHeader: boolean;
|
39524
39521
|
sortAscIcon: IconValue;
|
39525
39522
|
sortDescIcon: IconValue;
|
@@ -39581,7 +39578,6 @@ declare const VDataTableVirtual: {
|
|
39581
39578
|
itemKey: SelectItemKey;
|
39582
39579
|
hideNoData: boolean;
|
39583
39580
|
hover: boolean;
|
39584
|
-
lastFixed: boolean;
|
39585
39581
|
fixedHeader: boolean;
|
39586
39582
|
sortAscIcon: IconValue;
|
39587
39583
|
sortDescIcon: IconValue;
|
@@ -39666,7 +39662,6 @@ declare const VDataTableVirtual: {
|
|
39666
39662
|
itemKey: SelectItemKey;
|
39667
39663
|
hideNoData: boolean;
|
39668
39664
|
hover: boolean;
|
39669
|
-
lastFixed: boolean;
|
39670
39665
|
fixedHeader: boolean;
|
39671
39666
|
sortAscIcon: IconValue;
|
39672
39667
|
sortDescIcon: IconValue;
|
@@ -39722,7 +39717,6 @@ declare const VDataTableVirtual: {
|
|
39722
39717
|
itemKey: SelectItemKey;
|
39723
39718
|
hideNoData: boolean;
|
39724
39719
|
hover: boolean;
|
39725
|
-
lastFixed: boolean;
|
39726
39720
|
fixedHeader: boolean;
|
39727
39721
|
sortAscIcon: IconValue;
|
39728
39722
|
sortDescIcon: IconValue;
|
@@ -39760,7 +39754,6 @@ declare const VDataTableVirtual: {
|
|
39760
39754
|
itemKey: SelectItemKey;
|
39761
39755
|
hideNoData: boolean;
|
39762
39756
|
hover: boolean;
|
39763
|
-
lastFixed: boolean;
|
39764
39757
|
fixedHeader: boolean;
|
39765
39758
|
sortAscIcon: IconValue;
|
39766
39759
|
sortDescIcon: IconValue;
|
@@ -39822,7 +39815,6 @@ declare const VDataTableVirtual: {
|
|
39822
39815
|
itemKey: SelectItemKey;
|
39823
39816
|
hideNoData: boolean;
|
39824
39817
|
hover: boolean;
|
39825
|
-
lastFixed: boolean;
|
39826
39818
|
fixedHeader: boolean;
|
39827
39819
|
sortAscIcon: IconValue;
|
39828
39820
|
sortDescIcon: IconValue;
|
@@ -39990,7 +39982,6 @@ declare const VDataTableVirtual: {
|
|
39990
39982
|
};
|
39991
39983
|
hideNoData: BooleanConstructor;
|
39992
39984
|
hover: BooleanConstructor;
|
39993
|
-
lastFixed: BooleanConstructor;
|
39994
39985
|
fixedHeader: BooleanConstructor;
|
39995
39986
|
sortAscIcon: {
|
39996
39987
|
type: vue.PropType<IconValue>;
|
@@ -40111,7 +40102,6 @@ declare const VDataTableVirtual: {
|
|
40111
40102
|
};
|
40112
40103
|
hideNoData: BooleanConstructor;
|
40113
40104
|
hover: BooleanConstructor;
|
40114
|
-
lastFixed: BooleanConstructor;
|
40115
40105
|
fixedHeader: BooleanConstructor;
|
40116
40106
|
sortAscIcon: {
|
40117
40107
|
type: vue.PropType<IconValue>;
|
@@ -40170,7 +40160,6 @@ declare const VDataTableServer: {
|
|
40170
40160
|
value: number;
|
40171
40161
|
})[];
|
40172
40162
|
showCurrentPage: boolean;
|
40173
|
-
lastFixed: boolean;
|
40174
40163
|
fixedHeader: boolean;
|
40175
40164
|
sortAscIcon: IconValue;
|
40176
40165
|
sortDescIcon: IconValue;
|
@@ -40244,7 +40233,6 @@ declare const VDataTableServer: {
|
|
40244
40233
|
value: number;
|
40245
40234
|
})[];
|
40246
40235
|
showCurrentPage: boolean;
|
40247
|
-
lastFixed: boolean;
|
40248
40236
|
fixedHeader: boolean;
|
40249
40237
|
sortAscIcon: IconValue;
|
40250
40238
|
sortDescIcon: IconValue;
|
@@ -40345,7 +40333,6 @@ declare const VDataTableServer: {
|
|
40345
40333
|
value: number;
|
40346
40334
|
})[];
|
40347
40335
|
showCurrentPage: boolean;
|
40348
|
-
lastFixed: boolean;
|
40349
40336
|
fixedHeader: boolean;
|
40350
40337
|
sortAscIcon: IconValue;
|
40351
40338
|
sortDescIcon: IconValue;
|
@@ -40411,7 +40398,6 @@ declare const VDataTableServer: {
|
|
40411
40398
|
value: number;
|
40412
40399
|
})[];
|
40413
40400
|
showCurrentPage: boolean;
|
40414
|
-
lastFixed: boolean;
|
40415
40401
|
fixedHeader: boolean;
|
40416
40402
|
sortAscIcon: IconValue;
|
40417
40403
|
sortDescIcon: IconValue;
|
@@ -40464,7 +40450,6 @@ declare const VDataTableServer: {
|
|
40464
40450
|
value: number;
|
40465
40451
|
})[];
|
40466
40452
|
showCurrentPage: boolean;
|
40467
|
-
lastFixed: boolean;
|
40468
40453
|
fixedHeader: boolean;
|
40469
40454
|
sortAscIcon: IconValue;
|
40470
40455
|
sortDescIcon: IconValue;
|
@@ -40538,7 +40523,6 @@ declare const VDataTableServer: {
|
|
40538
40523
|
value: number;
|
40539
40524
|
})[];
|
40540
40525
|
showCurrentPage: boolean;
|
40541
|
-
lastFixed: boolean;
|
40542
40526
|
fixedHeader: boolean;
|
40543
40527
|
sortAscIcon: IconValue;
|
40544
40528
|
sortDescIcon: IconValue;
|
@@ -40684,7 +40668,6 @@ declare const VDataTableServer: {
|
|
40684
40668
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
40685
40669
|
color: StringConstructor;
|
40686
40670
|
disableSort: BooleanConstructor;
|
40687
|
-
lastFixed: BooleanConstructor;
|
40688
40671
|
multiSort: BooleanConstructor;
|
40689
40672
|
sortAscIcon: {
|
40690
40673
|
type: vue.PropType<IconValue>;
|
@@ -40853,7 +40836,6 @@ declare const VDataTableServer: {
|
|
40853
40836
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
40854
40837
|
color: StringConstructor;
|
40855
40838
|
disableSort: BooleanConstructor;
|
40856
|
-
lastFixed: BooleanConstructor;
|
40857
40839
|
multiSort: BooleanConstructor;
|
40858
40840
|
sortAscIcon: {
|
40859
40841
|
type: vue.PropType<IconValue>;
|
@@ -88789,7 +88771,6 @@ declare const VTreeview: {
|
|
88789
88771
|
filterMode: FilterMode;
|
88790
88772
|
noFilter: boolean;
|
88791
88773
|
filterKeys: FilterKeys;
|
88792
|
-
modelValue: unknown[];
|
88793
88774
|
itemValue: SelectItemKey;
|
88794
88775
|
returnObject: boolean;
|
88795
88776
|
selectStrategy: SelectStrategyProp;
|
@@ -88825,6 +88806,7 @@ declare const VTreeview: {
|
|
88825
88806
|
elevation?: string | number | undefined;
|
88826
88807
|
customFilter?: FilterFunction | undefined;
|
88827
88808
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
88809
|
+
modelValue?: unknown[] | undefined;
|
88828
88810
|
opened?: any;
|
88829
88811
|
valueComparator?: typeof deepEqual | undefined;
|
88830
88812
|
rounded?: string | number | boolean | undefined;
|
@@ -88889,7 +88871,6 @@ declare const VTreeview: {
|
|
88889
88871
|
filterMode: FilterMode;
|
88890
88872
|
noFilter: boolean;
|
88891
88873
|
filterKeys: FilterKeys;
|
88892
|
-
modelValue: unknown[];
|
88893
88874
|
itemValue: SelectItemKey;
|
88894
88875
|
returnObject: boolean;
|
88895
88876
|
selectStrategy: SelectStrategyProp;
|
@@ -88953,7 +88934,6 @@ declare const VTreeview: {
|
|
88953
88934
|
filterMode: FilterMode;
|
88954
88935
|
noFilter: boolean;
|
88955
88936
|
filterKeys: FilterKeys;
|
88956
|
-
modelValue: unknown[];
|
88957
88937
|
itemValue: SelectItemKey;
|
88958
88938
|
returnObject: boolean;
|
88959
88939
|
selectStrategy: SelectStrategyProp;
|
@@ -88989,6 +88969,7 @@ declare const VTreeview: {
|
|
88989
88969
|
elevation?: string | number | undefined;
|
88990
88970
|
customFilter?: FilterFunction | undefined;
|
88991
88971
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
88972
|
+
modelValue?: unknown[] | undefined;
|
88992
88973
|
opened?: any;
|
88993
88974
|
valueComparator?: typeof deepEqual | undefined;
|
88994
88975
|
rounded?: string | number | boolean | undefined;
|
@@ -89038,7 +89019,6 @@ declare const VTreeview: {
|
|
89038
89019
|
filterMode: FilterMode;
|
89039
89020
|
noFilter: boolean;
|
89040
89021
|
filterKeys: FilterKeys;
|
89041
|
-
modelValue: unknown[];
|
89042
89022
|
itemValue: SelectItemKey;
|
89043
89023
|
returnObject: boolean;
|
89044
89024
|
selectStrategy: SelectStrategyProp;
|
@@ -89073,7 +89053,6 @@ declare const VTreeview: {
|
|
89073
89053
|
filterMode: FilterMode;
|
89074
89054
|
noFilter: boolean;
|
89075
89055
|
filterKeys: FilterKeys;
|
89076
|
-
modelValue: unknown[];
|
89077
89056
|
itemValue: SelectItemKey;
|
89078
89057
|
returnObject: boolean;
|
89079
89058
|
selectStrategy: SelectStrategyProp;
|
@@ -89109,6 +89088,7 @@ declare const VTreeview: {
|
|
89109
89088
|
elevation?: string | number | undefined;
|
89110
89089
|
customFilter?: FilterFunction | undefined;
|
89111
89090
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
89091
|
+
modelValue?: unknown[] | undefined;
|
89112
89092
|
opened?: any;
|
89113
89093
|
valueComparator?: typeof deepEqual | undefined;
|
89114
89094
|
rounded?: string | number | boolean | undefined;
|
@@ -89173,7 +89153,6 @@ declare const VTreeview: {
|
|
89173
89153
|
filterMode: FilterMode;
|
89174
89154
|
noFilter: boolean;
|
89175
89155
|
filterKeys: FilterKeys;
|
89176
|
-
modelValue: unknown[];
|
89177
89156
|
itemValue: SelectItemKey;
|
89178
89157
|
returnObject: boolean;
|
89179
89158
|
selectStrategy: SelectStrategyProp;
|
@@ -89223,10 +89202,7 @@ declare const VTreeview: {
|
|
89223
89202
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
89224
89203
|
items?: T[];
|
89225
89204
|
}, slots: VListChildrenSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
89226
|
-
modelValue:
|
89227
|
-
type: ArrayConstructor;
|
89228
|
-
default: () => never[];
|
89229
|
-
};
|
89205
|
+
modelValue: ArrayConstructor;
|
89230
89206
|
variant: Omit<{
|
89231
89207
|
type: vue.PropType<Variant$2>;
|
89232
89208
|
default: string;
|
@@ -89364,10 +89340,7 @@ declare const VTreeview: {
|
|
89364
89340
|
openAll: BooleanConstructor;
|
89365
89341
|
search: StringConstructor;
|
89366
89342
|
}, vue.ExtractPropTypes<{
|
89367
|
-
modelValue:
|
89368
|
-
type: ArrayConstructor;
|
89369
|
-
default: () => never[];
|
89370
|
-
};
|
89343
|
+
modelValue: ArrayConstructor;
|
89371
89344
|
variant: Omit<{
|
89372
89345
|
type: vue.PropType<Variant$2>;
|
89373
89346
|
default: string;
|
@@ -89765,13 +89738,14 @@ declare const VTreeviewItem: {
|
|
89765
89738
|
root: {
|
89766
89739
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89767
89740
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89741
|
+
disabled: vue.Ref<Set<unknown>>;
|
89768
89742
|
activatable: vue.Ref<boolean>;
|
89769
89743
|
selectable: vue.Ref<boolean>;
|
89770
89744
|
opened: vue.Ref<Set<unknown>>;
|
89771
89745
|
activated: vue.Ref<Set<unknown>>;
|
89772
89746
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89773
89747
|
selectedValues: vue.Ref<unknown[]>;
|
89774
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89748
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89775
89749
|
unregister: (id: unknown) => void;
|
89776
89750
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89777
89751
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -89931,13 +89905,14 @@ declare const VTreeviewItem: {
|
|
89931
89905
|
root: {
|
89932
89906
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89933
89907
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89908
|
+
disabled: vue.Ref<Set<unknown>>;
|
89934
89909
|
activatable: vue.Ref<boolean>;
|
89935
89910
|
selectable: vue.Ref<boolean>;
|
89936
89911
|
opened: vue.Ref<Set<unknown>>;
|
89937
89912
|
activated: vue.Ref<Set<unknown>>;
|
89938
89913
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89939
89914
|
selectedValues: vue.Ref<unknown[]>;
|
89940
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89915
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89941
89916
|
unregister: (id: unknown) => void;
|
89942
89917
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89943
89918
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -89962,13 +89937,14 @@ declare const VTreeviewItem: {
|
|
89962
89937
|
root: {
|
89963
89938
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89964
89939
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89940
|
+
disabled: vue.Ref<Set<unknown>>;
|
89965
89941
|
activatable: vue.Ref<boolean>;
|
89966
89942
|
selectable: vue.Ref<boolean>;
|
89967
89943
|
opened: vue.Ref<Set<unknown>>;
|
89968
89944
|
activated: vue.Ref<Set<unknown>>;
|
89969
89945
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89970
89946
|
selectedValues: vue.Ref<unknown[]>;
|
89971
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89947
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89972
89948
|
unregister: (id: unknown) => void;
|
89973
89949
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89974
89950
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90272,13 +90248,14 @@ declare const VTreeviewItem: {
|
|
90272
90248
|
root: {
|
90273
90249
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90274
90250
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90251
|
+
disabled: vue.Ref<Set<unknown>>;
|
90275
90252
|
activatable: vue.Ref<boolean>;
|
90276
90253
|
selectable: vue.Ref<boolean>;
|
90277
90254
|
opened: vue.Ref<Set<unknown>>;
|
90278
90255
|
activated: vue.Ref<Set<unknown>>;
|
90279
90256
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90280
90257
|
selectedValues: vue.Ref<unknown[]>;
|
90281
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90258
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90282
90259
|
unregister: (id: unknown) => void;
|
90283
90260
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90284
90261
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90438,13 +90415,14 @@ declare const VTreeviewItem: {
|
|
90438
90415
|
root: {
|
90439
90416
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90440
90417
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90418
|
+
disabled: vue.Ref<Set<unknown>>;
|
90441
90419
|
activatable: vue.Ref<boolean>;
|
90442
90420
|
selectable: vue.Ref<boolean>;
|
90443
90421
|
opened: vue.Ref<Set<unknown>>;
|
90444
90422
|
activated: vue.Ref<Set<unknown>>;
|
90445
90423
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90446
90424
|
selectedValues: vue.Ref<unknown[]>;
|
90447
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90425
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90448
90426
|
unregister: (id: unknown) => void;
|
90449
90427
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90450
90428
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90469,13 +90447,14 @@ declare const VTreeviewItem: {
|
|
90469
90447
|
root: {
|
90470
90448
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90471
90449
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90450
|
+
disabled: vue.Ref<Set<unknown>>;
|
90472
90451
|
activatable: vue.Ref<boolean>;
|
90473
90452
|
selectable: vue.Ref<boolean>;
|
90474
90453
|
opened: vue.Ref<Set<unknown>>;
|
90475
90454
|
activated: vue.Ref<Set<unknown>>;
|
90476
90455
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90477
90456
|
selectedValues: vue.Ref<unknown[]>;
|
90478
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90457
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90479
90458
|
unregister: (id: unknown) => void;
|
90480
90459
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90481
90460
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90768,13 +90747,14 @@ declare const VTreeviewItem: {
|
|
90768
90747
|
root: {
|
90769
90748
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90770
90749
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90750
|
+
disabled: vue.Ref<Set<unknown>>;
|
90771
90751
|
activatable: vue.Ref<boolean>;
|
90772
90752
|
selectable: vue.Ref<boolean>;
|
90773
90753
|
opened: vue.Ref<Set<unknown>>;
|
90774
90754
|
activated: vue.Ref<Set<unknown>>;
|
90775
90755
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90776
90756
|
selectedValues: vue.Ref<unknown[]>;
|
90777
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90757
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90778
90758
|
unregister: (id: unknown) => void;
|
90779
90759
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90780
90760
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90934,13 +90914,14 @@ declare const VTreeviewItem: {
|
|
90934
90914
|
root: {
|
90935
90915
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90936
90916
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90917
|
+
disabled: vue.Ref<Set<unknown>>;
|
90937
90918
|
activatable: vue.Ref<boolean>;
|
90938
90919
|
selectable: vue.Ref<boolean>;
|
90939
90920
|
opened: vue.Ref<Set<unknown>>;
|
90940
90921
|
activated: vue.Ref<Set<unknown>>;
|
90941
90922
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90942
90923
|
selectedValues: vue.Ref<unknown[]>;
|
90943
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90924
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90944
90925
|
unregister: (id: unknown) => void;
|
90945
90926
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90946
90927
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90965,13 +90946,14 @@ declare const VTreeviewItem: {
|
|
90965
90946
|
root: {
|
90966
90947
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90967
90948
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90949
|
+
disabled: vue.Ref<Set<unknown>>;
|
90968
90950
|
activatable: vue.Ref<boolean>;
|
90969
90951
|
selectable: vue.Ref<boolean>;
|
90970
90952
|
opened: vue.Ref<Set<unknown>>;
|
90971
90953
|
activated: vue.Ref<Set<unknown>>;
|
90972
90954
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90973
90955
|
selectedValues: vue.Ref<unknown[]>;
|
90974
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90956
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90975
90957
|
unregister: (id: unknown) => void;
|
90976
90958
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90977
90959
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -91185,6 +91167,7 @@ type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
|
|
91185
91167
|
declare const VTreeviewGroup: {
|
91186
91168
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
91187
91169
|
style: vue.StyleValue;
|
91170
|
+
disabled: boolean;
|
91188
91171
|
tag: string | JSXComponent;
|
91189
91172
|
collapseIcon: IconValue;
|
91190
91173
|
expandIcon: IconValue;
|
@@ -91222,6 +91205,7 @@ declare const VTreeviewGroup: {
|
|
91222
91205
|
}) => vue.VNodeChild) | undefined;
|
91223
91206
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
91224
91207
|
style: vue.StyleValue;
|
91208
|
+
disabled: boolean;
|
91225
91209
|
tag: string | JSXComponent;
|
91226
91210
|
collapseIcon: IconValue;
|
91227
91211
|
expandIcon: IconValue;
|
@@ -91241,6 +91225,7 @@ declare const VTreeviewGroup: {
|
|
91241
91225
|
Defaults: {};
|
91242
91226
|
}, {
|
91243
91227
|
style: vue.StyleValue;
|
91228
|
+
disabled: boolean;
|
91244
91229
|
tag: string | JSXComponent;
|
91245
91230
|
collapseIcon: IconValue;
|
91246
91231
|
expandIcon: IconValue;
|
@@ -91278,6 +91263,7 @@ declare const VTreeviewGroup: {
|
|
91278
91263
|
}) => vue.VNodeChild) | undefined;
|
91279
91264
|
}, {}, {}, {}, {}, {
|
91280
91265
|
style: vue.StyleValue;
|
91266
|
+
disabled: boolean;
|
91281
91267
|
tag: string | JSXComponent;
|
91282
91268
|
collapseIcon: IconValue;
|
91283
91269
|
expandIcon: IconValue;
|
@@ -91288,6 +91274,7 @@ declare const VTreeviewGroup: {
|
|
91288
91274
|
__isSuspense?: never;
|
91289
91275
|
} & vue.ComponentOptionsBase<{
|
91290
91276
|
style: vue.StyleValue;
|
91277
|
+
disabled: boolean;
|
91291
91278
|
tag: string | JSXComponent;
|
91292
91279
|
collapseIcon: IconValue;
|
91293
91280
|
expandIcon: IconValue;
|
@@ -91325,6 +91312,7 @@ declare const VTreeviewGroup: {
|
|
91325
91312
|
}) => vue.VNodeChild) | undefined;
|
91326
91313
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
91327
91314
|
style: vue.StyleValue;
|
91315
|
+
disabled: boolean;
|
91328
91316
|
tag: string | JSXComponent;
|
91329
91317
|
collapseIcon: IconValue;
|
91330
91318
|
expandIcon: IconValue;
|
@@ -91343,6 +91331,7 @@ declare const VTreeviewGroup: {
|
|
91343
91331
|
default: null;
|
91344
91332
|
};
|
91345
91333
|
title: StringConstructor;
|
91334
|
+
disabled: BooleanConstructor;
|
91346
91335
|
class: vue.PropType<ClassValue>;
|
91347
91336
|
tag: {
|
91348
91337
|
type: vue.PropType<string | JSXComponent>;
|
@@ -91376,6 +91365,7 @@ declare const VTreeviewGroup: {
|
|
91376
91365
|
default: null;
|
91377
91366
|
};
|
91378
91367
|
title: StringConstructor;
|
91368
|
+
disabled: BooleanConstructor;
|
91379
91369
|
class: vue.PropType<ClassValue>;
|
91380
91370
|
tag: {
|
91381
91371
|
type: vue.PropType<string | JSXComponent>;
|
@@ -114063,47 +114053,40 @@ declare module 'vue' {
|
|
114063
114053
|
}
|
114064
114054
|
export interface GlobalComponents {
|
114065
114055
|
VApp: VApp
|
114066
|
-
|
114067
|
-
|
114068
|
-
|
114056
|
+
VAppBar: VAppBar
|
114057
|
+
VAppBarNavIcon: VAppBarNavIcon
|
114058
|
+
VAppBarTitle: VAppBarTitle
|
114069
114059
|
VAvatar: VAvatar
|
114070
114060
|
VAutocomplete: VAutocomplete
|
114061
|
+
VBadge: VBadge
|
114062
|
+
VAlert: VAlert
|
114063
|
+
VAlertTitle: VAlertTitle
|
114064
|
+
VBottomSheet: VBottomSheet
|
114071
114065
|
VBanner: VBanner
|
114072
114066
|
VBannerActions: VBannerActions
|
114073
114067
|
VBannerText: VBannerText
|
114068
|
+
VBottomNavigation: VBottomNavigation
|
114069
|
+
VBtn: VBtn
|
114074
114070
|
VBreadcrumbs: VBreadcrumbs
|
114075
114071
|
VBreadcrumbsItem: VBreadcrumbsItem
|
114076
114072
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
114077
|
-
|
114078
|
-
|
114079
|
-
VAppBarNavIcon: VAppBarNavIcon
|
114080
|
-
VAppBarTitle: VAppBarTitle
|
114081
|
-
VBtn: VBtn
|
114082
|
-
VCarousel: VCarousel
|
114083
|
-
VCarouselItem: VCarouselItem
|
114084
|
-
VBottomSheet: VBottomSheet
|
114073
|
+
VBtnGroup: VBtnGroup
|
114074
|
+
VBtnToggle: VBtnToggle
|
114085
114075
|
VCard: VCard
|
114086
114076
|
VCardActions: VCardActions
|
114087
114077
|
VCardItem: VCardItem
|
114088
114078
|
VCardSubtitle: VCardSubtitle
|
114089
114079
|
VCardText: VCardText
|
114090
114080
|
VCardTitle: VCardTitle
|
114091
|
-
VBtnToggle: VBtnToggle
|
114092
|
-
VChipGroup: VChipGroup
|
114093
114081
|
VCheckbox: VCheckbox
|
114094
114082
|
VCheckboxBtn: VCheckboxBtn
|
114095
|
-
|
114096
|
-
|
114097
|
-
VCounter: VCounter
|
114083
|
+
VCarousel: VCarousel
|
114084
|
+
VCarouselItem: VCarouselItem
|
114098
114085
|
VChip: VChip
|
114086
|
+
VCode: VCode
|
114087
|
+
VChipGroup: VChipGroup
|
114099
114088
|
VCombobox: VCombobox
|
114100
114089
|
VColorPicker: VColorPicker
|
114101
|
-
VDatePicker: VDatePicker
|
114102
|
-
VDatePickerControls: VDatePickerControls
|
114103
|
-
VDatePickerHeader: VDatePickerHeader
|
114104
|
-
VDatePickerMonth: VDatePickerMonth
|
114105
|
-
VDatePickerMonths: VDatePickerMonths
|
114106
|
-
VDatePickerYears: VDatePickerYears
|
114107
114090
|
VDataTable: VDataTable
|
114108
114091
|
VDataTableHeaders: VDataTableHeaders
|
114109
114092
|
VDataTableFooter: VDataTableFooter
|
@@ -114111,15 +114094,22 @@ declare module 'vue' {
|
|
114111
114094
|
VDataTableRow: VDataTableRow
|
114112
114095
|
VDataTableVirtual: VDataTableVirtual
|
114113
114096
|
VDataTableServer: VDataTableServer
|
114097
|
+
VCounter: VCounter
|
114098
|
+
VDatePicker: VDatePicker
|
114099
|
+
VDatePickerControls: VDatePickerControls
|
114100
|
+
VDatePickerHeader: VDatePickerHeader
|
114101
|
+
VDatePickerMonth: VDatePickerMonth
|
114102
|
+
VDatePickerMonths: VDatePickerMonths
|
114103
|
+
VDatePickerYears: VDatePickerYears
|
114114
114104
|
VDivider: VDivider
|
114115
114105
|
VDialog: VDialog
|
114116
114106
|
VExpansionPanels: VExpansionPanels
|
114117
114107
|
VExpansionPanel: VExpansionPanel
|
114118
114108
|
VExpansionPanelText: VExpansionPanelText
|
114119
114109
|
VExpansionPanelTitle: VExpansionPanelTitle
|
114120
|
-
VFileInput: VFileInput
|
114121
114110
|
VEmptyState: VEmptyState
|
114122
114111
|
VFab: VFab
|
114112
|
+
VFileInput: VFileInput
|
114123
114113
|
VField: VField
|
114124
114114
|
VFieldLabel: VFieldLabel
|
114125
114115
|
VFooter: VFooter
|
@@ -114130,9 +114120,10 @@ declare module 'vue' {
|
|
114130
114120
|
VLigatureIcon: VLigatureIcon
|
114131
114121
|
VClassIcon: VClassIcon
|
114132
114122
|
VInput: VInput
|
114123
|
+
VInfiniteScroll: VInfiniteScroll
|
114133
114124
|
VItemGroup: VItemGroup
|
114134
114125
|
VItem: VItem
|
114135
|
-
|
114126
|
+
VLabel: VLabel
|
114136
114127
|
VList: VList
|
114137
114128
|
VListGroup: VListGroup
|
114138
114129
|
VListImg: VListImg
|
@@ -114142,63 +114133,58 @@ declare module 'vue' {
|
|
114142
114133
|
VListItemSubtitle: VListItemSubtitle
|
114143
114134
|
VListItemTitle: VListItemTitle
|
114144
114135
|
VListSubheader: VListSubheader
|
114145
|
-
|
114146
|
-
VLabel: VLabel
|
114136
|
+
VKbd: VKbd
|
114147
114137
|
VMessages: VMessages
|
114148
114138
|
VMenu: VMenu
|
114139
|
+
VNavigationDrawer: VNavigationDrawer
|
114149
114140
|
VOtpInput: VOtpInput
|
114150
|
-
|
114151
|
-
VNumberInput: VNumberInput
|
114141
|
+
VMain: VMain
|
114152
114142
|
VPagination: VPagination
|
114153
|
-
|
114154
|
-
VNavigationDrawer: VNavigationDrawer
|
114155
|
-
VProgressLinear: VProgressLinear
|
114156
|
-
VRadioGroup: VRadioGroup
|
114143
|
+
VNumberInput: VNumberInput
|
114157
114144
|
VOverlay: VOverlay
|
114158
|
-
|
114159
|
-
VSelectionControl: VSelectionControl
|
114145
|
+
VProgressLinear: VProgressLinear
|
114160
114146
|
VRating: VRating
|
114147
|
+
VProgressCircular: VProgressCircular
|
114148
|
+
VSelect: VSelect
|
114149
|
+
VRadioGroup: VRadioGroup
|
114150
|
+
VSheet: VSheet
|
114161
114151
|
VSelectionControlGroup: VSelectionControlGroup
|
114162
|
-
VSkeletonLoader: VSkeletonLoader
|
114163
114152
|
VSlideGroup: VSlideGroup
|
114164
114153
|
VSlideGroupItem: VSlideGroupItem
|
114165
|
-
|
114166
|
-
VSnackbar: VSnackbar
|
114167
|
-
VSlider: VSlider
|
114154
|
+
VSelectionControl: VSelectionControl
|
114168
114155
|
VStepper: VStepper
|
114169
114156
|
VStepperActions: VStepperActions
|
114170
114157
|
VStepperHeader: VStepperHeader
|
114171
114158
|
VStepperItem: VStepperItem
|
114172
114159
|
VStepperWindow: VStepperWindow
|
114173
114160
|
VStepperWindowItem: VStepperWindowItem
|
114174
|
-
|
114161
|
+
VSkeletonLoader: VSkeletonLoader
|
114162
|
+
VSnackbar: VSnackbar
|
114163
|
+
VSlider: VSlider
|
114164
|
+
VSwitch: VSwitch
|
114165
|
+
VTable: VTable
|
114175
114166
|
VTab: VTab
|
114176
114167
|
VTabs: VTabs
|
114177
114168
|
VTabsWindow: VTabsWindow
|
114178
114169
|
VTabsWindowItem: VTabsWindowItem
|
114170
|
+
VTimeline: VTimeline
|
114171
|
+
VTimelineItem: VTimelineItem
|
114172
|
+
VSystemBar: VSystemBar
|
114179
114173
|
VTextField: VTextField
|
114180
|
-
VTable: VTable
|
114181
114174
|
VTextarea: VTextarea
|
114182
|
-
VToolbar: VToolbar
|
114183
|
-
VToolbarTitle: VToolbarTitle
|
114184
|
-
VToolbarItems: VToolbarItems
|
114185
|
-
VTimePicker: VTimePicker
|
114186
|
-
VTimePickerClock: VTimePickerClock
|
114187
|
-
VTimePickerControls: VTimePickerControls
|
114188
114175
|
VTooltip: VTooltip
|
114189
114176
|
VTreeview: VTreeview
|
114190
114177
|
VTreeviewItem: VTreeviewItem
|
114191
114178
|
VTreeviewGroup: VTreeviewGroup
|
114192
|
-
|
114193
|
-
|
114179
|
+
VTimePicker: VTimePicker
|
114180
|
+
VTimePickerClock: VTimePickerClock
|
114181
|
+
VTimePickerControls: VTimePickerControls
|
114194
114182
|
VWindow: VWindow
|
114195
114183
|
VWindowItem: VWindowItem
|
114196
|
-
VSwitch: VSwitch
|
114197
114184
|
VConfirmEdit: VConfirmEdit
|
114198
114185
|
VDataIterator: VDataIterator
|
114199
114186
|
VDefaultsProvider: VDefaultsProvider
|
114200
114187
|
VForm: VForm
|
114201
|
-
VHover: VHover
|
114202
114188
|
VContainer: VContainer
|
114203
114189
|
VCol: VCol
|
114204
114190
|
VRow: VRow
|
@@ -114208,15 +114194,16 @@ declare module 'vue' {
|
|
114208
114194
|
VLazy: VLazy
|
114209
114195
|
VLocaleProvider: VLocaleProvider
|
114210
114196
|
VNoSsr: VNoSsr
|
114211
|
-
VRadio: VRadio
|
114212
114197
|
VParallax: VParallax
|
114198
|
+
VRadio: VRadio
|
114213
114199
|
VRangeSlider: VRangeSlider
|
114214
114200
|
VResponsive: VResponsive
|
114215
114201
|
VSnackbarQueue: VSnackbarQueue
|
114216
114202
|
VSparkline: VSparkline
|
114217
114203
|
VSpeedDial: VSpeedDial
|
114218
|
-
VValidation: VValidation
|
114219
114204
|
VThemeProvider: VThemeProvider
|
114205
|
+
VValidation: VValidation
|
114206
|
+
VVirtualScroll: VVirtualScroll
|
114220
114207
|
VFabTransition: VFabTransition
|
114221
114208
|
VDialogBottomTransition: VDialogBottomTransition
|
114222
114209
|
VDialogTopTransition: VDialogTopTransition
|
@@ -114233,8 +114220,13 @@ declare module 'vue' {
|
|
114233
114220
|
VExpandTransition: VExpandTransition
|
114234
114221
|
VExpandXTransition: VExpandXTransition
|
114235
114222
|
VDialogTransition: VDialogTransition
|
114236
|
-
|
114223
|
+
VToolbar: VToolbar
|
114224
|
+
VToolbarTitle: VToolbarTitle
|
114225
|
+
VToolbarItems: VToolbarItems
|
114226
|
+
VHover: VHover
|
114237
114227
|
VColorInput: VColorInput
|
114228
|
+
VFileUpload: VFileUpload
|
114229
|
+
VFileUploadItem: VFileUploadItem
|
114238
114230
|
VCalendar: VCalendar
|
114239
114231
|
VCalendarDay: VCalendarDay
|
114240
114232
|
VCalendarHeader: VCalendarHeader
|
@@ -114243,16 +114235,14 @@ declare module 'vue' {
|
|
114243
114235
|
VCalendarMonthDay: VCalendarMonthDay
|
114244
114236
|
VPicker: VPicker
|
114245
114237
|
VPickerTitle: VPickerTitle
|
114238
|
+
VIconBtn: VIconBtn
|
114246
114239
|
VStepperVertical: VStepperVertical
|
114247
114240
|
VStepperVerticalItem: VStepperVerticalItem
|
114248
114241
|
VStepperVerticalActions: VStepperVerticalActions
|
114249
|
-
VIconBtn: VIconBtn
|
114250
114242
|
VHotkey: VHotkey
|
114251
114243
|
VDateInput: VDateInput
|
114252
114244
|
VMaskInput: VMaskInput
|
114253
114245
|
VPullToRefresh: VPullToRefresh
|
114254
|
-
VFileUpload: VFileUpload
|
114255
|
-
VFileUploadItem: VFileUploadItem
|
114256
114246
|
}
|
114257
114247
|
export interface GlobalDirectives {
|
114258
114248
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|