@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.d.ts
CHANGED
@@ -812,9 +812,10 @@ type SelectStrategyFunction = (data: {
|
|
812
812
|
selected: Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
813
813
|
children: Map<unknown, unknown[]>;
|
814
814
|
parents: Map<unknown, unknown>;
|
815
|
+
disabled: Set<unknown>;
|
815
816
|
event?: Event;
|
816
817
|
}) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
817
|
-
type SelectStrategyTransformInFunction = (v: readonly unknown[] | undefined, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
818
|
+
type SelectStrategyTransformInFunction = (v: readonly unknown[] | undefined, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>, disabled: Set<unknown>) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
818
819
|
type SelectStrategyTransformOutFunction = (v: Map<unknown, 'on' | 'off' | 'indeterminate'>, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>) => unknown[];
|
819
820
|
type SelectStrategy = {
|
820
821
|
select: SelectStrategyFunction;
|
@@ -933,7 +934,7 @@ type DataTableHeader<T = Record<string, any>> = {
|
|
933
934
|
key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {});
|
934
935
|
value?: SelectItemKey<T>;
|
935
936
|
title?: string;
|
936
|
-
fixed?: boolean;
|
937
|
+
fixed?: boolean | 'start' | 'end';
|
937
938
|
align?: 'start' | 'end' | 'center';
|
938
939
|
width?: number | string;
|
939
940
|
minWidth?: number | string;
|
@@ -952,7 +953,9 @@ type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children
|
|
952
953
|
value: SelectItemKey | null;
|
953
954
|
sortable: boolean;
|
954
955
|
fixedOffset?: number;
|
956
|
+
fixedEndOffset?: number;
|
955
957
|
lastFixed?: boolean;
|
958
|
+
firstFixedEnd?: boolean;
|
956
959
|
nowrap?: boolean;
|
957
960
|
colspan?: number;
|
958
961
|
rowspan?: number;
|
@@ -6579,13 +6582,14 @@ declare const VListItem: {
|
|
6579
6582
|
root: {
|
6580
6583
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
6581
6584
|
parents: vue.Ref<Map<unknown, unknown>>;
|
6585
|
+
disabled: vue.Ref<Set<unknown>>;
|
6582
6586
|
activatable: vue.Ref<boolean>;
|
6583
6587
|
selectable: vue.Ref<boolean>;
|
6584
6588
|
opened: vue.Ref<Set<unknown>>;
|
6585
6589
|
activated: vue.Ref<Set<unknown>>;
|
6586
6590
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
6587
6591
|
selectedValues: vue.Ref<unknown[]>;
|
6588
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
6592
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
6589
6593
|
unregister: (id: unknown) => void;
|
6590
6594
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
6591
6595
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -6712,13 +6716,14 @@ declare const VListItem: {
|
|
6712
6716
|
root: {
|
6713
6717
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
6714
6718
|
parents: vue.Ref<Map<unknown, unknown>>;
|
6719
|
+
disabled: vue.Ref<Set<unknown>>;
|
6715
6720
|
activatable: vue.Ref<boolean>;
|
6716
6721
|
selectable: vue.Ref<boolean>;
|
6717
6722
|
opened: vue.Ref<Set<unknown>>;
|
6718
6723
|
activated: vue.Ref<Set<unknown>>;
|
6719
6724
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
6720
6725
|
selectedValues: vue.Ref<unknown[]>;
|
6721
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
6726
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
6722
6727
|
unregister: (id: unknown) => void;
|
6723
6728
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
6724
6729
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -6834,13 +6839,14 @@ declare const VListItem: {
|
|
6834
6839
|
root: {
|
6835
6840
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
6836
6841
|
parents: vue.Ref<Map<unknown, unknown>>;
|
6842
|
+
disabled: vue.Ref<Set<unknown>>;
|
6837
6843
|
activatable: vue.Ref<boolean>;
|
6838
6844
|
selectable: vue.Ref<boolean>;
|
6839
6845
|
opened: vue.Ref<Set<unknown>>;
|
6840
6846
|
activated: vue.Ref<Set<unknown>>;
|
6841
6847
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
6842
6848
|
selectedValues: vue.Ref<unknown[]>;
|
6843
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
6849
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
6844
6850
|
unregister: (id: unknown) => void;
|
6845
6851
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
6846
6852
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -7647,6 +7653,7 @@ type VList = InstanceType<typeof VList>;
|
|
7647
7653
|
declare const VListGroup: {
|
7648
7654
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
7649
7655
|
style: vue.StyleValue;
|
7656
|
+
disabled: boolean;
|
7650
7657
|
tag: string | JSXComponent;
|
7651
7658
|
subgroup: boolean;
|
7652
7659
|
collapseIcon: IconValue;
|
@@ -7687,6 +7694,7 @@ declare const VListGroup: {
|
|
7687
7694
|
isOpen: vue.ComputedRef<boolean>;
|
7688
7695
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
7689
7696
|
style: vue.StyleValue;
|
7697
|
+
disabled: boolean;
|
7690
7698
|
tag: string | JSXComponent;
|
7691
7699
|
subgroup: boolean;
|
7692
7700
|
collapseIcon: IconValue;
|
@@ -7707,6 +7715,7 @@ declare const VListGroup: {
|
|
7707
7715
|
Defaults: {};
|
7708
7716
|
}, {
|
7709
7717
|
style: vue.StyleValue;
|
7718
|
+
disabled: boolean;
|
7710
7719
|
tag: string | JSXComponent;
|
7711
7720
|
subgroup: boolean;
|
7712
7721
|
collapseIcon: IconValue;
|
@@ -7747,6 +7756,7 @@ declare const VListGroup: {
|
|
7747
7756
|
isOpen: vue.ComputedRef<boolean>;
|
7748
7757
|
}, {}, {}, {}, {
|
7749
7758
|
style: vue.StyleValue;
|
7759
|
+
disabled: boolean;
|
7750
7760
|
tag: string | JSXComponent;
|
7751
7761
|
subgroup: boolean;
|
7752
7762
|
collapseIcon: IconValue;
|
@@ -7758,6 +7768,7 @@ declare const VListGroup: {
|
|
7758
7768
|
__isSuspense?: never;
|
7759
7769
|
} & vue.ComponentOptionsBase<{
|
7760
7770
|
style: vue.StyleValue;
|
7771
|
+
disabled: boolean;
|
7761
7772
|
tag: string | JSXComponent;
|
7762
7773
|
subgroup: boolean;
|
7763
7774
|
collapseIcon: IconValue;
|
@@ -7798,6 +7809,7 @@ declare const VListGroup: {
|
|
7798
7809
|
isOpen: vue.ComputedRef<boolean>;
|
7799
7810
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
7800
7811
|
style: vue.StyleValue;
|
7812
|
+
disabled: boolean;
|
7801
7813
|
tag: string | JSXComponent;
|
7802
7814
|
subgroup: boolean;
|
7803
7815
|
collapseIcon: IconValue;
|
@@ -7826,6 +7838,7 @@ declare const VListGroup: {
|
|
7826
7838
|
type: vue.PropType<IconValue>;
|
7827
7839
|
default: string;
|
7828
7840
|
};
|
7841
|
+
disabled: BooleanConstructor;
|
7829
7842
|
expandIcon: {
|
7830
7843
|
type: vue.PropType<IconValue>;
|
7831
7844
|
default: string;
|
@@ -7854,6 +7867,7 @@ declare const VListGroup: {
|
|
7854
7867
|
type: vue.PropType<IconValue>;
|
7855
7868
|
default: string;
|
7856
7869
|
};
|
7870
|
+
disabled: BooleanConstructor;
|
7857
7871
|
expandIcon: {
|
7858
7872
|
type: vue.PropType<IconValue>;
|
7859
7873
|
default: string;
|
@@ -37334,7 +37348,6 @@ declare const VDataTableHeaders: {
|
|
37334
37348
|
sticky: boolean;
|
37335
37349
|
multiSort: boolean;
|
37336
37350
|
disableSort: boolean;
|
37337
|
-
lastFixed: boolean;
|
37338
37351
|
fixedHeader: boolean;
|
37339
37352
|
sortAscIcon: IconValue;
|
37340
37353
|
sortDescIcon: IconValue;
|
@@ -37369,7 +37382,6 @@ declare const VDataTableHeaders: {
|
|
37369
37382
|
sticky: boolean;
|
37370
37383
|
multiSort: boolean;
|
37371
37384
|
disableSort: boolean;
|
37372
|
-
lastFixed: boolean;
|
37373
37385
|
fixedHeader: boolean;
|
37374
37386
|
sortAscIcon: IconValue;
|
37375
37387
|
sortDescIcon: IconValue;
|
@@ -37391,7 +37403,6 @@ declare const VDataTableHeaders: {
|
|
37391
37403
|
sticky: boolean;
|
37392
37404
|
multiSort: boolean;
|
37393
37405
|
disableSort: boolean;
|
37394
|
-
lastFixed: boolean;
|
37395
37406
|
fixedHeader: boolean;
|
37396
37407
|
sortAscIcon: IconValue;
|
37397
37408
|
sortDescIcon: IconValue;
|
@@ -37426,7 +37437,6 @@ declare const VDataTableHeaders: {
|
|
37426
37437
|
sticky: boolean;
|
37427
37438
|
multiSort: boolean;
|
37428
37439
|
disableSort: boolean;
|
37429
|
-
lastFixed: boolean;
|
37430
37440
|
fixedHeader: boolean;
|
37431
37441
|
sortAscIcon: IconValue;
|
37432
37442
|
sortDescIcon: IconValue;
|
@@ -37439,7 +37449,6 @@ declare const VDataTableHeaders: {
|
|
37439
37449
|
sticky: boolean;
|
37440
37450
|
multiSort: boolean;
|
37441
37451
|
disableSort: boolean;
|
37442
|
-
lastFixed: boolean;
|
37443
37452
|
fixedHeader: boolean;
|
37444
37453
|
sortAscIcon: IconValue;
|
37445
37454
|
sortDescIcon: IconValue;
|
@@ -37474,7 +37483,6 @@ declare const VDataTableHeaders: {
|
|
37474
37483
|
sticky: boolean;
|
37475
37484
|
multiSort: boolean;
|
37476
37485
|
disableSort: boolean;
|
37477
|
-
lastFixed: boolean;
|
37478
37486
|
fixedHeader: boolean;
|
37479
37487
|
sortAscIcon: IconValue;
|
37480
37488
|
sortDescIcon: IconValue;
|
@@ -37494,7 +37502,6 @@ declare const VDataTableHeaders: {
|
|
37494
37502
|
color: StringConstructor;
|
37495
37503
|
disableSort: BooleanConstructor;
|
37496
37504
|
fixedHeader: BooleanConstructor;
|
37497
|
-
lastFixed: BooleanConstructor;
|
37498
37505
|
multiSort: BooleanConstructor;
|
37499
37506
|
sortAscIcon: {
|
37500
37507
|
type: PropType<IconValue>;
|
@@ -37518,7 +37525,6 @@ declare const VDataTableHeaders: {
|
|
37518
37525
|
color: StringConstructor;
|
37519
37526
|
disableSort: BooleanConstructor;
|
37520
37527
|
fixedHeader: BooleanConstructor;
|
37521
|
-
lastFixed: BooleanConstructor;
|
37522
37528
|
multiSort: BooleanConstructor;
|
37523
37529
|
sortAscIcon: {
|
37524
37530
|
type: PropType<IconValue>;
|
@@ -38093,7 +38099,6 @@ declare const VDataTable: {
|
|
38093
38099
|
value: number;
|
38094
38100
|
})[];
|
38095
38101
|
showCurrentPage: boolean;
|
38096
|
-
lastFixed: boolean;
|
38097
38102
|
fixedHeader: boolean;
|
38098
38103
|
sortAscIcon: IconValue;
|
38099
38104
|
sortDescIcon: IconValue;
|
@@ -38174,7 +38179,6 @@ declare const VDataTable: {
|
|
38174
38179
|
value: number;
|
38175
38180
|
})[];
|
38176
38181
|
showCurrentPage: boolean;
|
38177
|
-
lastFixed: boolean;
|
38178
38182
|
fixedHeader: boolean;
|
38179
38183
|
sortAscIcon: IconValue;
|
38180
38184
|
sortDescIcon: IconValue;
|
@@ -38276,7 +38280,6 @@ declare const VDataTable: {
|
|
38276
38280
|
value: number;
|
38277
38281
|
})[];
|
38278
38282
|
showCurrentPage: boolean;
|
38279
|
-
lastFixed: boolean;
|
38280
38283
|
fixedHeader: boolean;
|
38281
38284
|
sortAscIcon: IconValue;
|
38282
38285
|
sortDescIcon: IconValue;
|
@@ -38348,7 +38351,6 @@ declare const VDataTable: {
|
|
38348
38351
|
value: number;
|
38349
38352
|
})[];
|
38350
38353
|
showCurrentPage: boolean;
|
38351
|
-
lastFixed: boolean;
|
38352
38354
|
fixedHeader: boolean;
|
38353
38355
|
sortAscIcon: IconValue;
|
38354
38356
|
sortDescIcon: IconValue;
|
@@ -38402,7 +38404,6 @@ declare const VDataTable: {
|
|
38402
38404
|
value: number;
|
38403
38405
|
})[];
|
38404
38406
|
showCurrentPage: boolean;
|
38405
|
-
lastFixed: boolean;
|
38406
38407
|
fixedHeader: boolean;
|
38407
38408
|
sortAscIcon: IconValue;
|
38408
38409
|
sortDescIcon: IconValue;
|
@@ -38483,7 +38484,6 @@ declare const VDataTable: {
|
|
38483
38484
|
value: number;
|
38484
38485
|
})[];
|
38485
38486
|
showCurrentPage: boolean;
|
38486
|
-
lastFixed: boolean;
|
38487
38487
|
fixedHeader: boolean;
|
38488
38488
|
sortAscIcon: IconValue;
|
38489
38489
|
sortDescIcon: IconValue;
|
@@ -38637,7 +38637,6 @@ declare const VDataTable: {
|
|
38637
38637
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
38638
38638
|
color: StringConstructor;
|
38639
38639
|
disableSort: BooleanConstructor;
|
38640
|
-
lastFixed: BooleanConstructor;
|
38641
38640
|
multiSort: BooleanConstructor;
|
38642
38641
|
sortAscIcon: {
|
38643
38642
|
type: vue.PropType<IconValue>;
|
@@ -38810,7 +38809,6 @@ declare const VDataTable: {
|
|
38810
38809
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
38811
38810
|
color: StringConstructor;
|
38812
38811
|
disableSort: BooleanConstructor;
|
38813
|
-
lastFixed: BooleanConstructor;
|
38814
38812
|
multiSort: BooleanConstructor;
|
38815
38813
|
sortAscIcon: {
|
38816
38814
|
type: vue.PropType<IconValue>;
|
@@ -39184,7 +39182,6 @@ declare const VDataTableVirtual: {
|
|
39184
39182
|
itemKey: SelectItemKey;
|
39185
39183
|
hideNoData: boolean;
|
39186
39184
|
hover: boolean;
|
39187
|
-
lastFixed: boolean;
|
39188
39185
|
fixedHeader: boolean;
|
39189
39186
|
sortAscIcon: IconValue;
|
39190
39187
|
sortDescIcon: IconValue;
|
@@ -39246,7 +39243,6 @@ declare const VDataTableVirtual: {
|
|
39246
39243
|
itemKey: SelectItemKey;
|
39247
39244
|
hideNoData: boolean;
|
39248
39245
|
hover: boolean;
|
39249
|
-
lastFixed: boolean;
|
39250
39246
|
fixedHeader: boolean;
|
39251
39247
|
sortAscIcon: IconValue;
|
39252
39248
|
sortDescIcon: IconValue;
|
@@ -39331,7 +39327,6 @@ declare const VDataTableVirtual: {
|
|
39331
39327
|
itemKey: SelectItemKey;
|
39332
39328
|
hideNoData: boolean;
|
39333
39329
|
hover: boolean;
|
39334
|
-
lastFixed: boolean;
|
39335
39330
|
fixedHeader: boolean;
|
39336
39331
|
sortAscIcon: IconValue;
|
39337
39332
|
sortDescIcon: IconValue;
|
@@ -39387,7 +39382,6 @@ declare const VDataTableVirtual: {
|
|
39387
39382
|
itemKey: SelectItemKey;
|
39388
39383
|
hideNoData: boolean;
|
39389
39384
|
hover: boolean;
|
39390
|
-
lastFixed: boolean;
|
39391
39385
|
fixedHeader: boolean;
|
39392
39386
|
sortAscIcon: IconValue;
|
39393
39387
|
sortDescIcon: IconValue;
|
@@ -39425,7 +39419,6 @@ declare const VDataTableVirtual: {
|
|
39425
39419
|
itemKey: SelectItemKey;
|
39426
39420
|
hideNoData: boolean;
|
39427
39421
|
hover: boolean;
|
39428
|
-
lastFixed: boolean;
|
39429
39422
|
fixedHeader: boolean;
|
39430
39423
|
sortAscIcon: IconValue;
|
39431
39424
|
sortDescIcon: IconValue;
|
@@ -39487,7 +39480,6 @@ declare const VDataTableVirtual: {
|
|
39487
39480
|
itemKey: SelectItemKey;
|
39488
39481
|
hideNoData: boolean;
|
39489
39482
|
hover: boolean;
|
39490
|
-
lastFixed: boolean;
|
39491
39483
|
fixedHeader: boolean;
|
39492
39484
|
sortAscIcon: IconValue;
|
39493
39485
|
sortDescIcon: IconValue;
|
@@ -39655,7 +39647,6 @@ declare const VDataTableVirtual: {
|
|
39655
39647
|
};
|
39656
39648
|
hideNoData: BooleanConstructor;
|
39657
39649
|
hover: BooleanConstructor;
|
39658
|
-
lastFixed: BooleanConstructor;
|
39659
39650
|
fixedHeader: BooleanConstructor;
|
39660
39651
|
sortAscIcon: {
|
39661
39652
|
type: vue.PropType<IconValue>;
|
@@ -39776,7 +39767,6 @@ declare const VDataTableVirtual: {
|
|
39776
39767
|
};
|
39777
39768
|
hideNoData: BooleanConstructor;
|
39778
39769
|
hover: BooleanConstructor;
|
39779
|
-
lastFixed: BooleanConstructor;
|
39780
39770
|
fixedHeader: BooleanConstructor;
|
39781
39771
|
sortAscIcon: {
|
39782
39772
|
type: vue.PropType<IconValue>;
|
@@ -39835,7 +39825,6 @@ declare const VDataTableServer: {
|
|
39835
39825
|
value: number;
|
39836
39826
|
})[];
|
39837
39827
|
showCurrentPage: boolean;
|
39838
|
-
lastFixed: boolean;
|
39839
39828
|
fixedHeader: boolean;
|
39840
39829
|
sortAscIcon: IconValue;
|
39841
39830
|
sortDescIcon: IconValue;
|
@@ -39909,7 +39898,6 @@ declare const VDataTableServer: {
|
|
39909
39898
|
value: number;
|
39910
39899
|
})[];
|
39911
39900
|
showCurrentPage: boolean;
|
39912
|
-
lastFixed: boolean;
|
39913
39901
|
fixedHeader: boolean;
|
39914
39902
|
sortAscIcon: IconValue;
|
39915
39903
|
sortDescIcon: IconValue;
|
@@ -40010,7 +39998,6 @@ declare const VDataTableServer: {
|
|
40010
39998
|
value: number;
|
40011
39999
|
})[];
|
40012
40000
|
showCurrentPage: boolean;
|
40013
|
-
lastFixed: boolean;
|
40014
40001
|
fixedHeader: boolean;
|
40015
40002
|
sortAscIcon: IconValue;
|
40016
40003
|
sortDescIcon: IconValue;
|
@@ -40076,7 +40063,6 @@ declare const VDataTableServer: {
|
|
40076
40063
|
value: number;
|
40077
40064
|
})[];
|
40078
40065
|
showCurrentPage: boolean;
|
40079
|
-
lastFixed: boolean;
|
40080
40066
|
fixedHeader: boolean;
|
40081
40067
|
sortAscIcon: IconValue;
|
40082
40068
|
sortDescIcon: IconValue;
|
@@ -40129,7 +40115,6 @@ declare const VDataTableServer: {
|
|
40129
40115
|
value: number;
|
40130
40116
|
})[];
|
40131
40117
|
showCurrentPage: boolean;
|
40132
|
-
lastFixed: boolean;
|
40133
40118
|
fixedHeader: boolean;
|
40134
40119
|
sortAscIcon: IconValue;
|
40135
40120
|
sortDescIcon: IconValue;
|
@@ -40203,7 +40188,6 @@ declare const VDataTableServer: {
|
|
40203
40188
|
value: number;
|
40204
40189
|
})[];
|
40205
40190
|
showCurrentPage: boolean;
|
40206
|
-
lastFixed: boolean;
|
40207
40191
|
fixedHeader: boolean;
|
40208
40192
|
sortAscIcon: IconValue;
|
40209
40193
|
sortDescIcon: IconValue;
|
@@ -40349,7 +40333,6 @@ declare const VDataTableServer: {
|
|
40349
40333
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
40350
40334
|
color: StringConstructor;
|
40351
40335
|
disableSort: BooleanConstructor;
|
40352
|
-
lastFixed: BooleanConstructor;
|
40353
40336
|
multiSort: BooleanConstructor;
|
40354
40337
|
sortAscIcon: {
|
40355
40338
|
type: vue.PropType<IconValue>;
|
@@ -40518,7 +40501,6 @@ declare const VDataTableServer: {
|
|
40518
40501
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
40519
40502
|
color: StringConstructor;
|
40520
40503
|
disableSort: BooleanConstructor;
|
40521
|
-
lastFixed: BooleanConstructor;
|
40522
40504
|
multiSort: BooleanConstructor;
|
40523
40505
|
sortAscIcon: {
|
40524
40506
|
type: vue.PropType<IconValue>;
|
@@ -88186,7 +88168,6 @@ declare const VTreeview: {
|
|
88186
88168
|
filterMode: FilterMode;
|
88187
88169
|
noFilter: boolean;
|
88188
88170
|
filterKeys: FilterKeys;
|
88189
|
-
modelValue: unknown[];
|
88190
88171
|
itemValue: SelectItemKey;
|
88191
88172
|
returnObject: boolean;
|
88192
88173
|
selectStrategy: SelectStrategyProp;
|
@@ -88222,6 +88203,7 @@ declare const VTreeview: {
|
|
88222
88203
|
elevation?: string | number | undefined;
|
88223
88204
|
customFilter?: FilterFunction | undefined;
|
88224
88205
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
88206
|
+
modelValue?: unknown[] | undefined;
|
88225
88207
|
opened?: any;
|
88226
88208
|
valueComparator?: typeof deepEqual | undefined;
|
88227
88209
|
rounded?: string | number | boolean | undefined;
|
@@ -88286,7 +88268,6 @@ declare const VTreeview: {
|
|
88286
88268
|
filterMode: FilterMode;
|
88287
88269
|
noFilter: boolean;
|
88288
88270
|
filterKeys: FilterKeys;
|
88289
|
-
modelValue: unknown[];
|
88290
88271
|
itemValue: SelectItemKey;
|
88291
88272
|
returnObject: boolean;
|
88292
88273
|
selectStrategy: SelectStrategyProp;
|
@@ -88350,7 +88331,6 @@ declare const VTreeview: {
|
|
88350
88331
|
filterMode: FilterMode;
|
88351
88332
|
noFilter: boolean;
|
88352
88333
|
filterKeys: FilterKeys;
|
88353
|
-
modelValue: unknown[];
|
88354
88334
|
itemValue: SelectItemKey;
|
88355
88335
|
returnObject: boolean;
|
88356
88336
|
selectStrategy: SelectStrategyProp;
|
@@ -88386,6 +88366,7 @@ declare const VTreeview: {
|
|
88386
88366
|
elevation?: string | number | undefined;
|
88387
88367
|
customFilter?: FilterFunction | undefined;
|
88388
88368
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
88369
|
+
modelValue?: unknown[] | undefined;
|
88389
88370
|
opened?: any;
|
88390
88371
|
valueComparator?: typeof deepEqual | undefined;
|
88391
88372
|
rounded?: string | number | boolean | undefined;
|
@@ -88435,7 +88416,6 @@ declare const VTreeview: {
|
|
88435
88416
|
filterMode: FilterMode;
|
88436
88417
|
noFilter: boolean;
|
88437
88418
|
filterKeys: FilterKeys;
|
88438
|
-
modelValue: unknown[];
|
88439
88419
|
itemValue: SelectItemKey;
|
88440
88420
|
returnObject: boolean;
|
88441
88421
|
selectStrategy: SelectStrategyProp;
|
@@ -88470,7 +88450,6 @@ declare const VTreeview: {
|
|
88470
88450
|
filterMode: FilterMode;
|
88471
88451
|
noFilter: boolean;
|
88472
88452
|
filterKeys: FilterKeys;
|
88473
|
-
modelValue: unknown[];
|
88474
88453
|
itemValue: SelectItemKey;
|
88475
88454
|
returnObject: boolean;
|
88476
88455
|
selectStrategy: SelectStrategyProp;
|
@@ -88506,6 +88485,7 @@ declare const VTreeview: {
|
|
88506
88485
|
elevation?: string | number | undefined;
|
88507
88486
|
customFilter?: FilterFunction | undefined;
|
88508
88487
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
88488
|
+
modelValue?: unknown[] | undefined;
|
88509
88489
|
opened?: any;
|
88510
88490
|
valueComparator?: typeof deepEqual | undefined;
|
88511
88491
|
rounded?: string | number | boolean | undefined;
|
@@ -88570,7 +88550,6 @@ declare const VTreeview: {
|
|
88570
88550
|
filterMode: FilterMode;
|
88571
88551
|
noFilter: boolean;
|
88572
88552
|
filterKeys: FilterKeys;
|
88573
|
-
modelValue: unknown[];
|
88574
88553
|
itemValue: SelectItemKey;
|
88575
88554
|
returnObject: boolean;
|
88576
88555
|
selectStrategy: SelectStrategyProp;
|
@@ -88620,10 +88599,7 @@ declare const VTreeview: {
|
|
88620
88599
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
88621
88600
|
items?: T[];
|
88622
88601
|
}, slots: VListChildrenSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
88623
|
-
modelValue:
|
88624
|
-
type: ArrayConstructor;
|
88625
|
-
default: () => never[];
|
88626
|
-
};
|
88602
|
+
modelValue: ArrayConstructor;
|
88627
88603
|
variant: Omit<{
|
88628
88604
|
type: vue.PropType<Variant$2>;
|
88629
88605
|
default: string;
|
@@ -88761,10 +88737,7 @@ declare const VTreeview: {
|
|
88761
88737
|
openAll: BooleanConstructor;
|
88762
88738
|
search: StringConstructor;
|
88763
88739
|
}, vue.ExtractPropTypes<{
|
88764
|
-
modelValue:
|
88765
|
-
type: ArrayConstructor;
|
88766
|
-
default: () => never[];
|
88767
|
-
};
|
88740
|
+
modelValue: ArrayConstructor;
|
88768
88741
|
variant: Omit<{
|
88769
88742
|
type: vue.PropType<Variant$2>;
|
88770
88743
|
default: string;
|
@@ -89162,13 +89135,14 @@ declare const VTreeviewItem: {
|
|
89162
89135
|
root: {
|
89163
89136
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89164
89137
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89138
|
+
disabled: vue.Ref<Set<unknown>>;
|
89165
89139
|
activatable: vue.Ref<boolean>;
|
89166
89140
|
selectable: vue.Ref<boolean>;
|
89167
89141
|
opened: vue.Ref<Set<unknown>>;
|
89168
89142
|
activated: vue.Ref<Set<unknown>>;
|
89169
89143
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89170
89144
|
selectedValues: vue.Ref<unknown[]>;
|
89171
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89145
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89172
89146
|
unregister: (id: unknown) => void;
|
89173
89147
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89174
89148
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -89328,13 +89302,14 @@ declare const VTreeviewItem: {
|
|
89328
89302
|
root: {
|
89329
89303
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89330
89304
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89305
|
+
disabled: vue.Ref<Set<unknown>>;
|
89331
89306
|
activatable: vue.Ref<boolean>;
|
89332
89307
|
selectable: vue.Ref<boolean>;
|
89333
89308
|
opened: vue.Ref<Set<unknown>>;
|
89334
89309
|
activated: vue.Ref<Set<unknown>>;
|
89335
89310
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89336
89311
|
selectedValues: vue.Ref<unknown[]>;
|
89337
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89312
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89338
89313
|
unregister: (id: unknown) => void;
|
89339
89314
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89340
89315
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -89359,13 +89334,14 @@ declare const VTreeviewItem: {
|
|
89359
89334
|
root: {
|
89360
89335
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89361
89336
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89337
|
+
disabled: vue.Ref<Set<unknown>>;
|
89362
89338
|
activatable: vue.Ref<boolean>;
|
89363
89339
|
selectable: vue.Ref<boolean>;
|
89364
89340
|
opened: vue.Ref<Set<unknown>>;
|
89365
89341
|
activated: vue.Ref<Set<unknown>>;
|
89366
89342
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89367
89343
|
selectedValues: vue.Ref<unknown[]>;
|
89368
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89344
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89369
89345
|
unregister: (id: unknown) => void;
|
89370
89346
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89371
89347
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -89669,13 +89645,14 @@ declare const VTreeviewItem: {
|
|
89669
89645
|
root: {
|
89670
89646
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89671
89647
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89648
|
+
disabled: vue.Ref<Set<unknown>>;
|
89672
89649
|
activatable: vue.Ref<boolean>;
|
89673
89650
|
selectable: vue.Ref<boolean>;
|
89674
89651
|
opened: vue.Ref<Set<unknown>>;
|
89675
89652
|
activated: vue.Ref<Set<unknown>>;
|
89676
89653
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89677
89654
|
selectedValues: vue.Ref<unknown[]>;
|
89678
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89655
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89679
89656
|
unregister: (id: unknown) => void;
|
89680
89657
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89681
89658
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -89835,13 +89812,14 @@ declare const VTreeviewItem: {
|
|
89835
89812
|
root: {
|
89836
89813
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89837
89814
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89815
|
+
disabled: vue.Ref<Set<unknown>>;
|
89838
89816
|
activatable: vue.Ref<boolean>;
|
89839
89817
|
selectable: vue.Ref<boolean>;
|
89840
89818
|
opened: vue.Ref<Set<unknown>>;
|
89841
89819
|
activated: vue.Ref<Set<unknown>>;
|
89842
89820
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89843
89821
|
selectedValues: vue.Ref<unknown[]>;
|
89844
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89822
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89845
89823
|
unregister: (id: unknown) => void;
|
89846
89824
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89847
89825
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -89866,13 +89844,14 @@ declare const VTreeviewItem: {
|
|
89866
89844
|
root: {
|
89867
89845
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
89868
89846
|
parents: vue.Ref<Map<unknown, unknown>>;
|
89847
|
+
disabled: vue.Ref<Set<unknown>>;
|
89869
89848
|
activatable: vue.Ref<boolean>;
|
89870
89849
|
selectable: vue.Ref<boolean>;
|
89871
89850
|
opened: vue.Ref<Set<unknown>>;
|
89872
89851
|
activated: vue.Ref<Set<unknown>>;
|
89873
89852
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
89874
89853
|
selectedValues: vue.Ref<unknown[]>;
|
89875
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
89854
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
89876
89855
|
unregister: (id: unknown) => void;
|
89877
89856
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
89878
89857
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90165,13 +90144,14 @@ declare const VTreeviewItem: {
|
|
90165
90144
|
root: {
|
90166
90145
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90167
90146
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90147
|
+
disabled: vue.Ref<Set<unknown>>;
|
90168
90148
|
activatable: vue.Ref<boolean>;
|
90169
90149
|
selectable: vue.Ref<boolean>;
|
90170
90150
|
opened: vue.Ref<Set<unknown>>;
|
90171
90151
|
activated: vue.Ref<Set<unknown>>;
|
90172
90152
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90173
90153
|
selectedValues: vue.Ref<unknown[]>;
|
90174
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90154
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90175
90155
|
unregister: (id: unknown) => void;
|
90176
90156
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90177
90157
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90331,13 +90311,14 @@ declare const VTreeviewItem: {
|
|
90331
90311
|
root: {
|
90332
90312
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90333
90313
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90314
|
+
disabled: vue.Ref<Set<unknown>>;
|
90334
90315
|
activatable: vue.Ref<boolean>;
|
90335
90316
|
selectable: vue.Ref<boolean>;
|
90336
90317
|
opened: vue.Ref<Set<unknown>>;
|
90337
90318
|
activated: vue.Ref<Set<unknown>>;
|
90338
90319
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90339
90320
|
selectedValues: vue.Ref<unknown[]>;
|
90340
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90321
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90341
90322
|
unregister: (id: unknown) => void;
|
90342
90323
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90343
90324
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90362,13 +90343,14 @@ declare const VTreeviewItem: {
|
|
90362
90343
|
root: {
|
90363
90344
|
children: vue.Ref<Map<unknown, unknown[]>>;
|
90364
90345
|
parents: vue.Ref<Map<unknown, unknown>>;
|
90346
|
+
disabled: vue.Ref<Set<unknown>>;
|
90365
90347
|
activatable: vue.Ref<boolean>;
|
90366
90348
|
selectable: vue.Ref<boolean>;
|
90367
90349
|
opened: vue.Ref<Set<unknown>>;
|
90368
90350
|
activated: vue.Ref<Set<unknown>>;
|
90369
90351
|
selected: vue.Ref<Map<unknown, "on" | "off" | "indeterminate">>;
|
90370
90352
|
selectedValues: vue.Ref<unknown[]>;
|
90371
|
-
register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
|
90353
|
+
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean) => void;
|
90372
90354
|
unregister: (id: unknown) => void;
|
90373
90355
|
open: (id: unknown, value: boolean, event?: Event) => void;
|
90374
90356
|
activate: (id: unknown, value: boolean, event?: Event) => void;
|
@@ -90582,6 +90564,7 @@ type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
|
|
90582
90564
|
declare const VTreeviewGroup: {
|
90583
90565
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
90584
90566
|
style: vue.StyleValue;
|
90567
|
+
disabled: boolean;
|
90585
90568
|
tag: string | JSXComponent;
|
90586
90569
|
collapseIcon: IconValue;
|
90587
90570
|
expandIcon: IconValue;
|
@@ -90619,6 +90602,7 @@ declare const VTreeviewGroup: {
|
|
90619
90602
|
}) => vue.VNodeChild) | undefined;
|
90620
90603
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
90621
90604
|
style: vue.StyleValue;
|
90605
|
+
disabled: boolean;
|
90622
90606
|
tag: string | JSXComponent;
|
90623
90607
|
collapseIcon: IconValue;
|
90624
90608
|
expandIcon: IconValue;
|
@@ -90638,6 +90622,7 @@ declare const VTreeviewGroup: {
|
|
90638
90622
|
Defaults: {};
|
90639
90623
|
}, {
|
90640
90624
|
style: vue.StyleValue;
|
90625
|
+
disabled: boolean;
|
90641
90626
|
tag: string | JSXComponent;
|
90642
90627
|
collapseIcon: IconValue;
|
90643
90628
|
expandIcon: IconValue;
|
@@ -90675,6 +90660,7 @@ declare const VTreeviewGroup: {
|
|
90675
90660
|
}) => vue.VNodeChild) | undefined;
|
90676
90661
|
}, {}, {}, {}, {}, {
|
90677
90662
|
style: vue.StyleValue;
|
90663
|
+
disabled: boolean;
|
90678
90664
|
tag: string | JSXComponent;
|
90679
90665
|
collapseIcon: IconValue;
|
90680
90666
|
expandIcon: IconValue;
|
@@ -90685,6 +90671,7 @@ declare const VTreeviewGroup: {
|
|
90685
90671
|
__isSuspense?: never;
|
90686
90672
|
} & vue.ComponentOptionsBase<{
|
90687
90673
|
style: vue.StyleValue;
|
90674
|
+
disabled: boolean;
|
90688
90675
|
tag: string | JSXComponent;
|
90689
90676
|
collapseIcon: IconValue;
|
90690
90677
|
expandIcon: IconValue;
|
@@ -90722,6 +90709,7 @@ declare const VTreeviewGroup: {
|
|
90722
90709
|
}) => vue.VNodeChild) | undefined;
|
90723
90710
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
90724
90711
|
style: vue.StyleValue;
|
90712
|
+
disabled: boolean;
|
90725
90713
|
tag: string | JSXComponent;
|
90726
90714
|
collapseIcon: IconValue;
|
90727
90715
|
expandIcon: IconValue;
|
@@ -90740,6 +90728,7 @@ declare const VTreeviewGroup: {
|
|
90740
90728
|
default: null;
|
90741
90729
|
};
|
90742
90730
|
title: StringConstructor;
|
90731
|
+
disabled: BooleanConstructor;
|
90743
90732
|
class: vue.PropType<ClassValue>;
|
90744
90733
|
tag: {
|
90745
90734
|
type: vue.PropType<string | JSXComponent>;
|
@@ -90773,6 +90762,7 @@ declare const VTreeviewGroup: {
|
|
90773
90762
|
default: null;
|
90774
90763
|
};
|
90775
90764
|
title: StringConstructor;
|
90765
|
+
disabled: BooleanConstructor;
|
90776
90766
|
class: vue.PropType<ClassValue>;
|
90777
90767
|
tag: {
|
90778
90768
|
type: vue.PropType<string | JSXComponent>;
|
@@ -93489,47 +93479,40 @@ declare module 'vue' {
|
|
93489
93479
|
}
|
93490
93480
|
export interface GlobalComponents {
|
93491
93481
|
VApp: VApp
|
93492
|
-
|
93493
|
-
|
93494
|
-
|
93482
|
+
VAppBar: VAppBar
|
93483
|
+
VAppBarNavIcon: VAppBarNavIcon
|
93484
|
+
VAppBarTitle: VAppBarTitle
|
93495
93485
|
VAvatar: VAvatar
|
93496
93486
|
VAutocomplete: VAutocomplete
|
93487
|
+
VBadge: VBadge
|
93488
|
+
VAlert: VAlert
|
93489
|
+
VAlertTitle: VAlertTitle
|
93490
|
+
VBottomSheet: VBottomSheet
|
93497
93491
|
VBanner: VBanner
|
93498
93492
|
VBannerActions: VBannerActions
|
93499
93493
|
VBannerText: VBannerText
|
93494
|
+
VBottomNavigation: VBottomNavigation
|
93495
|
+
VBtn: VBtn
|
93500
93496
|
VBreadcrumbs: VBreadcrumbs
|
93501
93497
|
VBreadcrumbsItem: VBreadcrumbsItem
|
93502
93498
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
93503
|
-
|
93504
|
-
|
93505
|
-
VAppBarNavIcon: VAppBarNavIcon
|
93506
|
-
VAppBarTitle: VAppBarTitle
|
93507
|
-
VBtn: VBtn
|
93508
|
-
VCarousel: VCarousel
|
93509
|
-
VCarouselItem: VCarouselItem
|
93510
|
-
VBottomSheet: VBottomSheet
|
93499
|
+
VBtnGroup: VBtnGroup
|
93500
|
+
VBtnToggle: VBtnToggle
|
93511
93501
|
VCard: VCard
|
93512
93502
|
VCardActions: VCardActions
|
93513
93503
|
VCardItem: VCardItem
|
93514
93504
|
VCardSubtitle: VCardSubtitle
|
93515
93505
|
VCardText: VCardText
|
93516
93506
|
VCardTitle: VCardTitle
|
93517
|
-
VBtnToggle: VBtnToggle
|
93518
|
-
VChipGroup: VChipGroup
|
93519
93507
|
VCheckbox: VCheckbox
|
93520
93508
|
VCheckboxBtn: VCheckboxBtn
|
93521
|
-
|
93522
|
-
|
93523
|
-
VCounter: VCounter
|
93509
|
+
VCarousel: VCarousel
|
93510
|
+
VCarouselItem: VCarouselItem
|
93524
93511
|
VChip: VChip
|
93512
|
+
VCode: VCode
|
93513
|
+
VChipGroup: VChipGroup
|
93525
93514
|
VCombobox: VCombobox
|
93526
93515
|
VColorPicker: VColorPicker
|
93527
|
-
VDatePicker: VDatePicker
|
93528
|
-
VDatePickerControls: VDatePickerControls
|
93529
|
-
VDatePickerHeader: VDatePickerHeader
|
93530
|
-
VDatePickerMonth: VDatePickerMonth
|
93531
|
-
VDatePickerMonths: VDatePickerMonths
|
93532
|
-
VDatePickerYears: VDatePickerYears
|
93533
93516
|
VDataTable: VDataTable
|
93534
93517
|
VDataTableHeaders: VDataTableHeaders
|
93535
93518
|
VDataTableFooter: VDataTableFooter
|
@@ -93537,15 +93520,22 @@ declare module 'vue' {
|
|
93537
93520
|
VDataTableRow: VDataTableRow
|
93538
93521
|
VDataTableVirtual: VDataTableVirtual
|
93539
93522
|
VDataTableServer: VDataTableServer
|
93523
|
+
VCounter: VCounter
|
93524
|
+
VDatePicker: VDatePicker
|
93525
|
+
VDatePickerControls: VDatePickerControls
|
93526
|
+
VDatePickerHeader: VDatePickerHeader
|
93527
|
+
VDatePickerMonth: VDatePickerMonth
|
93528
|
+
VDatePickerMonths: VDatePickerMonths
|
93529
|
+
VDatePickerYears: VDatePickerYears
|
93540
93530
|
VDivider: VDivider
|
93541
93531
|
VDialog: VDialog
|
93542
93532
|
VExpansionPanels: VExpansionPanels
|
93543
93533
|
VExpansionPanel: VExpansionPanel
|
93544
93534
|
VExpansionPanelText: VExpansionPanelText
|
93545
93535
|
VExpansionPanelTitle: VExpansionPanelTitle
|
93546
|
-
VFileInput: VFileInput
|
93547
93536
|
VEmptyState: VEmptyState
|
93548
93537
|
VFab: VFab
|
93538
|
+
VFileInput: VFileInput
|
93549
93539
|
VField: VField
|
93550
93540
|
VFieldLabel: VFieldLabel
|
93551
93541
|
VFooter: VFooter
|
@@ -93556,9 +93546,10 @@ declare module 'vue' {
|
|
93556
93546
|
VLigatureIcon: VLigatureIcon
|
93557
93547
|
VClassIcon: VClassIcon
|
93558
93548
|
VInput: VInput
|
93549
|
+
VInfiniteScroll: VInfiniteScroll
|
93559
93550
|
VItemGroup: VItemGroup
|
93560
93551
|
VItem: VItem
|
93561
|
-
|
93552
|
+
VLabel: VLabel
|
93562
93553
|
VList: VList
|
93563
93554
|
VListGroup: VListGroup
|
93564
93555
|
VListImg: VListImg
|
@@ -93568,63 +93559,58 @@ declare module 'vue' {
|
|
93568
93559
|
VListItemSubtitle: VListItemSubtitle
|
93569
93560
|
VListItemTitle: VListItemTitle
|
93570
93561
|
VListSubheader: VListSubheader
|
93571
|
-
|
93572
|
-
VLabel: VLabel
|
93562
|
+
VKbd: VKbd
|
93573
93563
|
VMessages: VMessages
|
93574
93564
|
VMenu: VMenu
|
93565
|
+
VNavigationDrawer: VNavigationDrawer
|
93575
93566
|
VOtpInput: VOtpInput
|
93576
|
-
|
93577
|
-
VNumberInput: VNumberInput
|
93567
|
+
VMain: VMain
|
93578
93568
|
VPagination: VPagination
|
93579
|
-
|
93580
|
-
VNavigationDrawer: VNavigationDrawer
|
93581
|
-
VProgressLinear: VProgressLinear
|
93582
|
-
VRadioGroup: VRadioGroup
|
93569
|
+
VNumberInput: VNumberInput
|
93583
93570
|
VOverlay: VOverlay
|
93584
|
-
|
93585
|
-
VSelectionControl: VSelectionControl
|
93571
|
+
VProgressLinear: VProgressLinear
|
93586
93572
|
VRating: VRating
|
93573
|
+
VProgressCircular: VProgressCircular
|
93574
|
+
VSelect: VSelect
|
93575
|
+
VRadioGroup: VRadioGroup
|
93576
|
+
VSheet: VSheet
|
93587
93577
|
VSelectionControlGroup: VSelectionControlGroup
|
93588
|
-
VSkeletonLoader: VSkeletonLoader
|
93589
93578
|
VSlideGroup: VSlideGroup
|
93590
93579
|
VSlideGroupItem: VSlideGroupItem
|
93591
|
-
|
93592
|
-
VSnackbar: VSnackbar
|
93593
|
-
VSlider: VSlider
|
93580
|
+
VSelectionControl: VSelectionControl
|
93594
93581
|
VStepper: VStepper
|
93595
93582
|
VStepperActions: VStepperActions
|
93596
93583
|
VStepperHeader: VStepperHeader
|
93597
93584
|
VStepperItem: VStepperItem
|
93598
93585
|
VStepperWindow: VStepperWindow
|
93599
93586
|
VStepperWindowItem: VStepperWindowItem
|
93600
|
-
|
93587
|
+
VSkeletonLoader: VSkeletonLoader
|
93588
|
+
VSnackbar: VSnackbar
|
93589
|
+
VSlider: VSlider
|
93590
|
+
VSwitch: VSwitch
|
93591
|
+
VTable: VTable
|
93601
93592
|
VTab: VTab
|
93602
93593
|
VTabs: VTabs
|
93603
93594
|
VTabsWindow: VTabsWindow
|
93604
93595
|
VTabsWindowItem: VTabsWindowItem
|
93596
|
+
VTimeline: VTimeline
|
93597
|
+
VTimelineItem: VTimelineItem
|
93598
|
+
VSystemBar: VSystemBar
|
93605
93599
|
VTextField: VTextField
|
93606
|
-
VTable: VTable
|
93607
93600
|
VTextarea: VTextarea
|
93608
|
-
VToolbar: VToolbar
|
93609
|
-
VToolbarTitle: VToolbarTitle
|
93610
|
-
VToolbarItems: VToolbarItems
|
93611
|
-
VTimePicker: VTimePicker
|
93612
|
-
VTimePickerClock: VTimePickerClock
|
93613
|
-
VTimePickerControls: VTimePickerControls
|
93614
93601
|
VTooltip: VTooltip
|
93615
93602
|
VTreeview: VTreeview
|
93616
93603
|
VTreeviewItem: VTreeviewItem
|
93617
93604
|
VTreeviewGroup: VTreeviewGroup
|
93618
|
-
|
93619
|
-
|
93605
|
+
VTimePicker: VTimePicker
|
93606
|
+
VTimePickerClock: VTimePickerClock
|
93607
|
+
VTimePickerControls: VTimePickerControls
|
93620
93608
|
VWindow: VWindow
|
93621
93609
|
VWindowItem: VWindowItem
|
93622
|
-
VSwitch: VSwitch
|
93623
93610
|
VConfirmEdit: VConfirmEdit
|
93624
93611
|
VDataIterator: VDataIterator
|
93625
93612
|
VDefaultsProvider: VDefaultsProvider
|
93626
93613
|
VForm: VForm
|
93627
|
-
VHover: VHover
|
93628
93614
|
VContainer: VContainer
|
93629
93615
|
VCol: VCol
|
93630
93616
|
VRow: VRow
|
@@ -93634,15 +93620,16 @@ declare module 'vue' {
|
|
93634
93620
|
VLazy: VLazy
|
93635
93621
|
VLocaleProvider: VLocaleProvider
|
93636
93622
|
VNoSsr: VNoSsr
|
93637
|
-
VRadio: VRadio
|
93638
93623
|
VParallax: VParallax
|
93624
|
+
VRadio: VRadio
|
93639
93625
|
VRangeSlider: VRangeSlider
|
93640
93626
|
VResponsive: VResponsive
|
93641
93627
|
VSnackbarQueue: VSnackbarQueue
|
93642
93628
|
VSparkline: VSparkline
|
93643
93629
|
VSpeedDial: VSpeedDial
|
93644
|
-
VValidation: VValidation
|
93645
93630
|
VThemeProvider: VThemeProvider
|
93631
|
+
VValidation: VValidation
|
93632
|
+
VVirtualScroll: VVirtualScroll
|
93646
93633
|
VFabTransition: VFabTransition
|
93647
93634
|
VDialogBottomTransition: VDialogBottomTransition
|
93648
93635
|
VDialogTopTransition: VDialogTopTransition
|
@@ -93659,8 +93646,13 @@ declare module 'vue' {
|
|
93659
93646
|
VExpandTransition: VExpandTransition
|
93660
93647
|
VExpandXTransition: VExpandXTransition
|
93661
93648
|
VDialogTransition: VDialogTransition
|
93662
|
-
|
93649
|
+
VToolbar: VToolbar
|
93650
|
+
VToolbarTitle: VToolbarTitle
|
93651
|
+
VToolbarItems: VToolbarItems
|
93652
|
+
VHover: VHover
|
93663
93653
|
VColorInput: VColorInput
|
93654
|
+
VFileUpload: VFileUpload
|
93655
|
+
VFileUploadItem: VFileUploadItem
|
93664
93656
|
VCalendar: VCalendar
|
93665
93657
|
VCalendarDay: VCalendarDay
|
93666
93658
|
VCalendarHeader: VCalendarHeader
|
@@ -93669,16 +93661,14 @@ declare module 'vue' {
|
|
93669
93661
|
VCalendarMonthDay: VCalendarMonthDay
|
93670
93662
|
VPicker: VPicker
|
93671
93663
|
VPickerTitle: VPickerTitle
|
93664
|
+
VIconBtn: VIconBtn
|
93672
93665
|
VStepperVertical: VStepperVertical
|
93673
93666
|
VStepperVerticalItem: VStepperVerticalItem
|
93674
93667
|
VStepperVerticalActions: VStepperVerticalActions
|
93675
|
-
VIconBtn: VIconBtn
|
93676
93668
|
VHotkey: VHotkey
|
93677
93669
|
VDateInput: VDateInput
|
93678
93670
|
VMaskInput: VMaskInput
|
93679
93671
|
VPullToRefresh: VPullToRefresh
|
93680
|
-
VFileUpload: VFileUpload
|
93681
|
-
VFileUploadItem: VFileUploadItem
|
93682
93672
|
}
|
93683
93673
|
export interface GlobalDirectives {
|
93684
93674
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|