@vuetify/nightly 3.1.13 → 3.1.14-master-20230407.0
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 +11 -2
- package/dist/json/attributes.json +24 -4
- package/dist/json/importMap.json +40 -40
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +83 -38
- package/dist/vuetify-labs.css +15 -10
- package/dist/vuetify-labs.d.ts +140 -84
- package/dist/vuetify-labs.esm.js +29 -24
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +29 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +415 -410
- package/dist/vuetify.d.ts +41 -11
- package/dist/vuetify.esm.js +13 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.ts +6 -0
- package/lib/components/VCombobox/index.d.ts +6 -0
- package/lib/components/VProgressCircular/VProgressCircular.css +3 -1
- package/lib/components/VProgressCircular/VProgressCircular.sass +3 -1
- package/lib/components/VProgressCircular/_variables.scss +1 -0
- package/lib/components/VProgressLinear/VProgressLinear.css +5 -2
- package/lib/components/VProgressLinear/VProgressLinear.sass +3 -0
- package/lib/components/VProgressLinear/_variables.scss +1 -1
- package/lib/components/VSelect/index.d.ts +6 -0
- package/lib/components/VTextField/VTextField.mjs +2 -1
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextField/index.d.ts +6 -0
- package/lib/components/VTextarea/VTextarea.mjs +8 -5
- package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
- package/lib/components/VTextarea/index.d.ts +6 -0
- package/lib/components/index.d.ts +30 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +11 -11
- package/lib/labs/VDataTable/VDataTable.mjs +4 -4
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableRows.mjs +5 -7
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +4 -2
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.ts +110 -84
- package/lib/labs/components.d.ts +110 -84
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -3520,6 +3520,7 @@ declare const VAutocomplete: {
|
|
|
3520
3520
|
persistentCounter: BooleanConstructor;
|
|
3521
3521
|
suffix: StringConstructor;
|
|
3522
3522
|
counterValue: vue.PropType<(value: any) => number>;
|
|
3523
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
|
3523
3524
|
items: {
|
|
3524
3525
|
type: vue.PropType<any[]>;
|
|
3525
3526
|
default: () => never[];
|
|
@@ -4002,6 +4003,7 @@ declare const VAutocomplete: {
|
|
|
4002
4003
|
persistentCounter: BooleanConstructor;
|
|
4003
4004
|
suffix: StringConstructor;
|
|
4004
4005
|
counterValue: vue.PropType<(value: any) => number>;
|
|
4006
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
|
4005
4007
|
items: {
|
|
4006
4008
|
type: vue.PropType<any[]>;
|
|
4007
4009
|
default: () => never[];
|
|
@@ -4546,6 +4548,7 @@ declare const VAutocomplete: {
|
|
|
4546
4548
|
persistentCounter: BooleanConstructor;
|
|
4547
4549
|
suffix: StringConstructor;
|
|
4548
4550
|
counterValue: vue.PropType<(value: any) => number>;
|
|
4551
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
|
4549
4552
|
items: {
|
|
4550
4553
|
type: vue.PropType<any[]>;
|
|
4551
4554
|
default: () => never[];
|
|
@@ -5027,6 +5030,7 @@ declare const VAutocomplete: {
|
|
|
5027
5030
|
persistentCounter: BooleanConstructor;
|
|
5028
5031
|
suffix: StringConstructor;
|
|
5029
5032
|
counterValue: vue.PropType<(value: any) => number>;
|
|
5033
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
|
5030
5034
|
items: {
|
|
5031
5035
|
type: vue.PropType<any[]>;
|
|
5032
5036
|
default: () => never[];
|
|
@@ -5667,6 +5671,7 @@ declare const VAutocomplete: {
|
|
|
5667
5671
|
persistentCounter: BooleanConstructor;
|
|
5668
5672
|
suffix: StringConstructor;
|
|
5669
5673
|
counterValue: vue.PropType<(value: any) => number>;
|
|
5674
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
|
5670
5675
|
items: {
|
|
5671
5676
|
type: vue.PropType<any[]>;
|
|
5672
5677
|
default: () => never[];
|
|
@@ -6132,6 +6137,7 @@ declare const VAutocomplete: {
|
|
|
6132
6137
|
persistentCounter: BooleanConstructor;
|
|
6133
6138
|
suffix: StringConstructor;
|
|
6134
6139
|
counterValue: vue.PropType<(value: any) => number>;
|
|
6140
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
|
6135
6141
|
items: {
|
|
6136
6142
|
type: vue.PropType<any[]>;
|
|
6137
6143
|
default: () => never[];
|
|
@@ -14816,6 +14822,7 @@ declare const VCombobox: {
|
|
|
14816
14822
|
persistentCounter: BooleanConstructor;
|
|
14817
14823
|
suffix: StringConstructor;
|
|
14818
14824
|
counterValue: PropType<(value: any) => number>;
|
|
14825
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
14819
14826
|
items: {
|
|
14820
14827
|
type: PropType<any[]>;
|
|
14821
14828
|
default: () => never[];
|
|
@@ -15304,6 +15311,7 @@ declare const VCombobox: {
|
|
|
15304
15311
|
persistentCounter: BooleanConstructor;
|
|
15305
15312
|
suffix: StringConstructor;
|
|
15306
15313
|
counterValue: PropType<(value: any) => number>;
|
|
15314
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
15307
15315
|
items: {
|
|
15308
15316
|
type: PropType<any[]>;
|
|
15309
15317
|
default: () => never[];
|
|
@@ -15853,6 +15861,7 @@ declare const VCombobox: {
|
|
|
15853
15861
|
persistentCounter: BooleanConstructor;
|
|
15854
15862
|
suffix: StringConstructor;
|
|
15855
15863
|
counterValue: PropType<(value: any) => number>;
|
|
15864
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
15856
15865
|
items: {
|
|
15857
15866
|
type: PropType<any[]>;
|
|
15858
15867
|
default: () => never[];
|
|
@@ -16339,6 +16348,7 @@ declare const VCombobox: {
|
|
|
16339
16348
|
persistentCounter: BooleanConstructor;
|
|
16340
16349
|
suffix: StringConstructor;
|
|
16341
16350
|
counterValue: PropType<(value: any) => number>;
|
|
16351
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
16342
16352
|
items: {
|
|
16343
16353
|
type: PropType<any[]>;
|
|
16344
16354
|
default: () => never[];
|
|
@@ -16984,6 +16994,7 @@ declare const VCombobox: {
|
|
|
16984
16994
|
persistentCounter: BooleanConstructor;
|
|
16985
16995
|
suffix: StringConstructor;
|
|
16986
16996
|
counterValue: PropType<(value: any) => number>;
|
|
16997
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
16987
16998
|
items: {
|
|
16988
16999
|
type: PropType<any[]>;
|
|
16989
17000
|
default: () => never[];
|
|
@@ -17455,6 +17466,7 @@ declare const VCombobox: {
|
|
|
17455
17466
|
persistentCounter: BooleanConstructor;
|
|
17456
17467
|
suffix: StringConstructor;
|
|
17457
17468
|
counterValue: PropType<(value: any) => number>;
|
|
17469
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
17458
17470
|
items: {
|
|
17459
17471
|
type: PropType<any[]>;
|
|
17460
17472
|
default: () => never[];
|
|
@@ -41156,6 +41168,7 @@ declare const VSelect: {
|
|
|
41156
41168
|
persistentCounter: BooleanConstructor;
|
|
41157
41169
|
suffix: StringConstructor;
|
|
41158
41170
|
counterValue: PropType<(value: any) => number>;
|
|
41171
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
41159
41172
|
items: {
|
|
41160
41173
|
type: PropType<any[]>;
|
|
41161
41174
|
default: () => never[];
|
|
@@ -41833,6 +41846,7 @@ declare const VSelect: {
|
|
|
41833
41846
|
persistentCounter: BooleanConstructor;
|
|
41834
41847
|
suffix: StringConstructor;
|
|
41835
41848
|
counterValue: PropType<(value: any) => number>;
|
|
41849
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
41836
41850
|
items: {
|
|
41837
41851
|
type: PropType<any[]>;
|
|
41838
41852
|
default: () => never[];
|
|
@@ -42666,6 +42680,7 @@ declare const VSelect: {
|
|
|
42666
42680
|
persistentCounter: BooleanConstructor;
|
|
42667
42681
|
suffix: StringConstructor;
|
|
42668
42682
|
counterValue: PropType<(value: any) => number>;
|
|
42683
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
42669
42684
|
items: {
|
|
42670
42685
|
type: PropType<any[]>;
|
|
42671
42686
|
default: () => never[];
|
|
@@ -43336,6 +43351,7 @@ declare const VSelect: {
|
|
|
43336
43351
|
persistentCounter: BooleanConstructor;
|
|
43337
43352
|
suffix: StringConstructor;
|
|
43338
43353
|
counterValue: PropType<(value: any) => number>;
|
|
43354
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
43339
43355
|
items: {
|
|
43340
43356
|
type: PropType<any[]>;
|
|
43341
43357
|
default: () => never[];
|
|
@@ -44265,6 +44281,7 @@ declare const VSelect: {
|
|
|
44265
44281
|
persistentCounter: BooleanConstructor;
|
|
44266
44282
|
suffix: StringConstructor;
|
|
44267
44283
|
counterValue: PropType<(value: any) => number>;
|
|
44284
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
44268
44285
|
items: {
|
|
44269
44286
|
type: PropType<any[]>;
|
|
44270
44287
|
default: () => never[];
|
|
@@ -44926,6 +44943,7 @@ declare const VSelect: {
|
|
|
44926
44943
|
persistentCounter: BooleanConstructor;
|
|
44927
44944
|
suffix: StringConstructor;
|
|
44928
44945
|
counterValue: PropType<(value: any) => number>;
|
|
44946
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
44929
44947
|
items: {
|
|
44930
44948
|
type: PropType<any[]>;
|
|
44931
44949
|
default: () => never[];
|
|
@@ -50310,6 +50328,7 @@ declare const VTextarea: {
|
|
|
50310
50328
|
hint?: string | undefined;
|
|
50311
50329
|
suffix?: string | undefined;
|
|
50312
50330
|
counterValue?: ((value: any) => number) | undefined;
|
|
50331
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
50313
50332
|
maxRows?: string | number | undefined;
|
|
50314
50333
|
} & {
|
|
50315
50334
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -50423,6 +50442,7 @@ declare const VTextarea: {
|
|
|
50423
50442
|
hint?: string | undefined;
|
|
50424
50443
|
suffix?: string | undefined;
|
|
50425
50444
|
counterValue?: ((value: any) => number) | undefined;
|
|
50445
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
50426
50446
|
maxRows?: string | number | undefined;
|
|
50427
50447
|
} & {
|
|
50428
50448
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -50789,6 +50809,7 @@ declare const VTextarea: {
|
|
|
50789
50809
|
hint?: string | undefined;
|
|
50790
50810
|
suffix?: string | undefined;
|
|
50791
50811
|
counterValue?: ((value: any) => number) | undefined;
|
|
50812
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
50792
50813
|
maxRows?: string | number | undefined;
|
|
50793
50814
|
} & {
|
|
50794
50815
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -51108,6 +51129,7 @@ declare const VTextarea: {
|
|
|
51108
51129
|
hint?: string | undefined;
|
|
51109
51130
|
suffix?: string | undefined;
|
|
51110
51131
|
counterValue?: ((value: any) => number) | undefined;
|
|
51132
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
51111
51133
|
maxRows?: string | number | undefined;
|
|
51112
51134
|
} & {
|
|
51113
51135
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -51488,6 +51510,7 @@ declare const VTextarea: {
|
|
|
51488
51510
|
validator: (v: any) => boolean;
|
|
51489
51511
|
};
|
|
51490
51512
|
suffix: StringConstructor;
|
|
51513
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
51491
51514
|
}, vue.ExtractPropTypes<{
|
|
51492
51515
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
51493
51516
|
theme: StringConstructor;
|
|
@@ -51575,6 +51598,7 @@ declare const VTextarea: {
|
|
|
51575
51598
|
validator: (v: any) => boolean;
|
|
51576
51599
|
};
|
|
51577
51600
|
suffix: StringConstructor;
|
|
51601
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
51578
51602
|
}>>;
|
|
51579
51603
|
type VTextarea = InstanceType<typeof VTextarea>;
|
|
51580
51604
|
|
|
@@ -51657,6 +51681,7 @@ declare const VTextField: {
|
|
|
51657
51681
|
hint?: string | undefined;
|
|
51658
51682
|
suffix?: string | undefined;
|
|
51659
51683
|
counterValue?: ((value: any) => number) | undefined;
|
|
51684
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
51660
51685
|
} & {
|
|
51661
51686
|
$children?: {} | vue.VNodeChild | {
|
|
51662
51687
|
clear?: (() => vue.VNodeChild) | undefined;
|
|
@@ -51771,6 +51796,7 @@ declare const VTextField: {
|
|
|
51771
51796
|
hint?: string | undefined;
|
|
51772
51797
|
suffix?: string | undefined;
|
|
51773
51798
|
counterValue?: ((value: any) => number) | undefined;
|
|
51799
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
51774
51800
|
} & {
|
|
51775
51801
|
$children?: {} | vue.VNodeChild | {
|
|
51776
51802
|
clear?: (() => vue.VNodeChild) | undefined;
|
|
@@ -52337,6 +52363,7 @@ declare const VTextField: {
|
|
|
52337
52363
|
hint?: string | undefined;
|
|
52338
52364
|
suffix?: string | undefined;
|
|
52339
52365
|
counterValue?: ((value: any) => number) | undefined;
|
|
52366
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
52340
52367
|
} & {
|
|
52341
52368
|
$children?: {} | vue.VNodeChild | {
|
|
52342
52369
|
clear?: (() => vue.VNodeChild) | undefined;
|
|
@@ -52858,6 +52885,7 @@ declare const VTextField: {
|
|
|
52858
52885
|
hint?: string | undefined;
|
|
52859
52886
|
suffix?: string | undefined;
|
|
52860
52887
|
counterValue?: ((value: any) => number) | undefined;
|
|
52888
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
52861
52889
|
} & {
|
|
52862
52890
|
$children?: {} | vue.VNodeChild | {
|
|
52863
52891
|
clear?: (() => vue.VNodeChild) | undefined;
|
|
@@ -53433,6 +53461,7 @@ declare const VTextField: {
|
|
|
53433
53461
|
type: StringConstructor;
|
|
53434
53462
|
default: string;
|
|
53435
53463
|
};
|
|
53464
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
53436
53465
|
}, vue.ExtractPropTypes<{
|
|
53437
53466
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
53438
53467
|
theme: StringConstructor;
|
|
@@ -53513,6 +53542,7 @@ declare const VTextField: {
|
|
|
53513
53542
|
type: StringConstructor;
|
|
53514
53543
|
default: string;
|
|
53515
53544
|
};
|
|
53545
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
|
53516
53546
|
}>>;
|
|
53517
53547
|
type VTextField = InstanceType<typeof VTextField>;
|
|
53518
53548
|
|
|
@@ -59744,6 +59774,9 @@ declare const VDataTableRows: {
|
|
|
59744
59774
|
} & {
|
|
59745
59775
|
loading?: string | boolean | undefined;
|
|
59746
59776
|
rowHeight?: number | undefined;
|
|
59777
|
+
'onClick:row'?: ((e: Event, value: {
|
|
59778
|
+
item: DataTableItem;
|
|
59779
|
+
}) => void) | undefined;
|
|
59747
59780
|
} & {
|
|
59748
59781
|
$children?: {} | vue.VNodeChild | {
|
|
59749
59782
|
[x: `item.${string}`]: ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -59788,10 +59821,6 @@ declare const VDataTableRows: {
|
|
|
59788
59821
|
"v-slot:expanded-row"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59789
59822
|
"v-slot:item.data-table-select"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59790
59823
|
"v-slot:item.data-table-expand"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59791
|
-
} & {
|
|
59792
|
-
"onClick:row"?: ((event: Event, value: {
|
|
59793
|
-
item: DataTableItem;
|
|
59794
|
-
}) => any) | undefined;
|
|
59795
59824
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "noDataText" | "loadingText" | "items" | "hideNoData">;
|
|
59796
59825
|
$attrs: {
|
|
59797
59826
|
[x: string]: unknown;
|
|
@@ -59804,9 +59833,7 @@ declare const VDataTableRows: {
|
|
|
59804
59833
|
}>;
|
|
59805
59834
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
59806
59835
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
59807
|
-
$emit: (event:
|
|
59808
|
-
item: DataTableItem;
|
|
59809
|
-
}) => void;
|
|
59836
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
59810
59837
|
$el: any;
|
|
59811
59838
|
$options: vue.ComponentOptionsBase<{
|
|
59812
59839
|
noDataText: string;
|
|
@@ -59816,6 +59843,9 @@ declare const VDataTableRows: {
|
|
|
59816
59843
|
} & {
|
|
59817
59844
|
loading?: string | boolean | undefined;
|
|
59818
59845
|
rowHeight?: number | undefined;
|
|
59846
|
+
'onClick:row'?: ((e: Event, value: {
|
|
59847
|
+
item: DataTableItem;
|
|
59848
|
+
}) => void) | undefined;
|
|
59819
59849
|
} & {
|
|
59820
59850
|
$children?: {} | vue.VNodeChild | {
|
|
59821
59851
|
[x: `item.${string}`]: ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -59860,15 +59890,7 @@ declare const VDataTableRows: {
|
|
|
59860
59890
|
"v-slot:expanded-row"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59861
59891
|
"v-slot:item.data-table-select"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59862
59892
|
"v-slot:item.data-table-expand"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59863
|
-
}
|
|
59864
|
-
"onClick:row"?: ((event: Event, value: {
|
|
59865
|
-
item: DataTableItem;
|
|
59866
|
-
}) => any) | undefined;
|
|
59867
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
59868
|
-
'click:row': (event: Event, value: {
|
|
59869
|
-
item: DataTableItem;
|
|
59870
|
-
}) => true;
|
|
59871
|
-
}, string, {
|
|
59893
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
59872
59894
|
noDataText: string;
|
|
59873
59895
|
loadingText: string;
|
|
59874
59896
|
items: InternalDataTableItem[];
|
|
@@ -59901,6 +59923,9 @@ declare const VDataTableRows: {
|
|
|
59901
59923
|
} & {
|
|
59902
59924
|
loading?: string | boolean | undefined;
|
|
59903
59925
|
rowHeight?: number | undefined;
|
|
59926
|
+
'onClick:row'?: ((e: Event, value: {
|
|
59927
|
+
item: DataTableItem;
|
|
59928
|
+
}) => void) | undefined;
|
|
59904
59929
|
} & {
|
|
59905
59930
|
$children?: {} | vue.VNodeChild | {
|
|
59906
59931
|
[x: `item.${string}`]: ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -59945,10 +59970,6 @@ declare const VDataTableRows: {
|
|
|
59945
59970
|
"v-slot:expanded-row"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59946
59971
|
"v-slot:item.data-table-select"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59947
59972
|
"v-slot:item.data-table-expand"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
59948
|
-
} & {
|
|
59949
|
-
"onClick:row"?: ((event: Event, value: {
|
|
59950
|
-
item: DataTableItem;
|
|
59951
|
-
}) => any) | undefined;
|
|
59952
59973
|
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
59953
59974
|
__isFragment?: undefined;
|
|
59954
59975
|
__isTeleport?: undefined;
|
|
@@ -59961,6 +59982,9 @@ declare const VDataTableRows: {
|
|
|
59961
59982
|
} & {
|
|
59962
59983
|
loading?: string | boolean | undefined;
|
|
59963
59984
|
rowHeight?: number | undefined;
|
|
59985
|
+
'onClick:row'?: ((e: Event, value: {
|
|
59986
|
+
item: DataTableItem;
|
|
59987
|
+
}) => void) | undefined;
|
|
59964
59988
|
} & {
|
|
59965
59989
|
$children?: {} | vue.VNodeChild | {
|
|
59966
59990
|
[x: `item.${string}`]: ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
@@ -60005,15 +60029,7 @@ declare const VDataTableRows: {
|
|
|
60005
60029
|
"v-slot:expanded-row"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
60006
60030
|
"v-slot:item.data-table-select"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
60007
60031
|
"v-slot:item.data-table-expand"?: false | ((args_0: ItemSlot) => vue.VNodeChild) | undefined;
|
|
60008
|
-
}
|
|
60009
|
-
"onClick:row"?: ((event: Event, value: {
|
|
60010
|
-
item: DataTableItem;
|
|
60011
|
-
}) => any) | undefined;
|
|
60012
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
60013
|
-
'click:row': (event: Event, value: {
|
|
60014
|
-
item: DataTableItem;
|
|
60015
|
-
}) => true;
|
|
60016
|
-
}, string, {
|
|
60032
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
60017
60033
|
noDataText: string;
|
|
60018
60034
|
loadingText: string;
|
|
60019
60035
|
items: InternalDataTableItem[];
|
|
@@ -60034,6 +60050,9 @@ declare const VDataTableRows: {
|
|
|
60034
60050
|
default: string;
|
|
60035
60051
|
};
|
|
60036
60052
|
rowHeight: NumberConstructor;
|
|
60053
|
+
'onClick:row': PropType<(e: Event, value: {
|
|
60054
|
+
item: DataTableItem;
|
|
60055
|
+
}) => void>;
|
|
60037
60056
|
}, vue.ExtractPropTypes<{
|
|
60038
60057
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
60039
60058
|
loadingText: {
|
|
@@ -60050,6 +60069,9 @@ declare const VDataTableRows: {
|
|
|
60050
60069
|
default: string;
|
|
60051
60070
|
};
|
|
60052
60071
|
rowHeight: NumberConstructor;
|
|
60072
|
+
'onClick:row': PropType<(e: Event, value: {
|
|
60073
|
+
item: DataTableItem;
|
|
60074
|
+
}) => void>;
|
|
60053
60075
|
}>>;
|
|
60054
60076
|
type VDataTableRows = InstanceType<typeof VDataTableRows>;
|
|
60055
60077
|
|
|
@@ -60116,6 +60138,9 @@ declare const VDataTable: {
|
|
|
60116
60138
|
customFilter?: FilterFunction | undefined;
|
|
60117
60139
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
60118
60140
|
filterKeys?: FilterKeys | undefined;
|
|
60141
|
+
'onClick:row'?: ((e: Event, value: {
|
|
60142
|
+
item: DataTableItem;
|
|
60143
|
+
}) => void) | undefined;
|
|
60119
60144
|
} & {
|
|
60120
60145
|
$children?: {} | vue.VNodeChild | {
|
|
60121
60146
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -60401,9 +60426,6 @@ declare const VDataTable: {
|
|
|
60401
60426
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
60402
60427
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
60403
60428
|
"onUpdate:expanded"?: ((value: any) => any) | undefined;
|
|
60404
|
-
"onClick:row"?: ((event: Event, value: {
|
|
60405
|
-
item: DataTableItem;
|
|
60406
|
-
}) => any) | undefined;
|
|
60407
60429
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
60408
60430
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
60409
60431
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
@@ -60419,9 +60441,7 @@ declare const VDataTable: {
|
|
|
60419
60441
|
}>;
|
|
60420
60442
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
60421
60443
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
60422
|
-
$emit: ((event: "update:modelValue", value: any[]) => void) & ((event: "
|
|
60423
|
-
item: DataTableItem;
|
|
60424
|
-
}) => void) & ((event: "update:options", value: any) => void) & ((event: "update:page", value: number) => void) & ((event: "update:itemsPerPage", value: number) => void) & ((event: "update:sortBy", value: any) => void) & ((event: "update:groupBy", value: any) => void) & ((event: "update:expanded", value: any) => void);
|
|
60444
|
+
$emit: ((event: "update:modelValue", value: any[]) => void) & ((event: "update:options", value: any) => void) & ((event: "update:page", value: number) => void) & ((event: "update:itemsPerPage", value: number) => void) & ((event: "update:sortBy", value: any) => void) & ((event: "update:groupBy", value: any) => void) & ((event: "update:expanded", value: any) => void);
|
|
60425
60445
|
$el: any;
|
|
60426
60446
|
$options: vue.ComponentOptionsBase<{
|
|
60427
60447
|
expanded: string[];
|
|
@@ -60456,6 +60476,9 @@ declare const VDataTable: {
|
|
|
60456
60476
|
customFilter?: FilterFunction | undefined;
|
|
60457
60477
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
60458
60478
|
filterKeys?: FilterKeys | undefined;
|
|
60479
|
+
'onClick:row'?: ((e: Event, value: {
|
|
60480
|
+
item: DataTableItem;
|
|
60481
|
+
}) => void) | undefined;
|
|
60459
60482
|
} & {
|
|
60460
60483
|
$children?: {} | vue.VNodeChild | {
|
|
60461
60484
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -60741,9 +60764,6 @@ declare const VDataTable: {
|
|
|
60741
60764
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
60742
60765
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
60743
60766
|
"onUpdate:expanded"?: ((value: any) => any) | undefined;
|
|
60744
|
-
"onClick:row"?: ((event: Event, value: {
|
|
60745
|
-
item: DataTableItem;
|
|
60746
|
-
}) => any) | undefined;
|
|
60747
60767
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
60748
60768
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
60749
60769
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
@@ -60755,9 +60775,6 @@ declare const VDataTable: {
|
|
|
60755
60775
|
'update:options': (value: any) => true;
|
|
60756
60776
|
'update:groupBy': (value: any) => true;
|
|
60757
60777
|
'update:expanded': (value: any) => true;
|
|
60758
|
-
'click:row': (event: Event, value: {
|
|
60759
|
-
item: DataTableItem;
|
|
60760
|
-
}) => true;
|
|
60761
60778
|
}, string, {
|
|
60762
60779
|
expanded: string[];
|
|
60763
60780
|
page: string | number;
|
|
@@ -60837,6 +60854,9 @@ declare const VDataTable: {
|
|
|
60837
60854
|
customFilter?: FilterFunction | undefined;
|
|
60838
60855
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
60839
60856
|
filterKeys?: FilterKeys | undefined;
|
|
60857
|
+
'onClick:row'?: ((e: Event, value: {
|
|
60858
|
+
item: DataTableItem;
|
|
60859
|
+
}) => void) | undefined;
|
|
60840
60860
|
} & {
|
|
60841
60861
|
$children?: {} | vue.VNodeChild | {
|
|
60842
60862
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -61122,9 +61142,6 @@ declare const VDataTable: {
|
|
|
61122
61142
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
61123
61143
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
61124
61144
|
"onUpdate:expanded"?: ((value: any) => any) | undefined;
|
|
61125
|
-
"onClick:row"?: ((event: Event, value: {
|
|
61126
|
-
item: DataTableItem;
|
|
61127
|
-
}) => any) | undefined;
|
|
61128
61145
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
61129
61146
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
61130
61147
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
@@ -61165,6 +61182,9 @@ declare const VDataTable: {
|
|
|
61165
61182
|
customFilter?: FilterFunction | undefined;
|
|
61166
61183
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
61167
61184
|
filterKeys?: FilterKeys | undefined;
|
|
61185
|
+
'onClick:row'?: ((e: Event, value: {
|
|
61186
|
+
item: DataTableItem;
|
|
61187
|
+
}) => void) | undefined;
|
|
61168
61188
|
} & {
|
|
61169
61189
|
$children?: {} | vue.VNodeChild | {
|
|
61170
61190
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -61450,9 +61470,6 @@ declare const VDataTable: {
|
|
|
61450
61470
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
61451
61471
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
61452
61472
|
"onUpdate:expanded"?: ((value: any) => any) | undefined;
|
|
61453
|
-
"onClick:row"?: ((event: Event, value: {
|
|
61454
|
-
item: DataTableItem;
|
|
61455
|
-
}) => any) | undefined;
|
|
61456
61473
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
61457
61474
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
61458
61475
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
@@ -61464,9 +61481,6 @@ declare const VDataTable: {
|
|
|
61464
61481
|
'update:options': (value: any) => true;
|
|
61465
61482
|
'update:groupBy': (value: any) => true;
|
|
61466
61483
|
'update:expanded': (value: any) => true;
|
|
61467
|
-
'click:row': (event: Event, value: {
|
|
61468
|
-
item: DataTableItem;
|
|
61469
|
-
}) => true;
|
|
61470
61484
|
}, string, {
|
|
61471
61485
|
expanded: string[];
|
|
61472
61486
|
page: string | number;
|
|
@@ -61494,11 +61508,11 @@ declare const VDataTable: {
|
|
|
61494
61508
|
showExpand: boolean;
|
|
61495
61509
|
itemsPerPage: string | number;
|
|
61496
61510
|
}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
61497
|
-
customFilter:
|
|
61498
|
-
customKeyFilter:
|
|
61499
|
-
filterKeys:
|
|
61511
|
+
customFilter: PropType<FilterFunction>;
|
|
61512
|
+
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
61513
|
+
filterKeys: PropType<FilterKeys>;
|
|
61500
61514
|
filterMode: {
|
|
61501
|
-
type:
|
|
61515
|
+
type: PropType<FilterMode>;
|
|
61502
61516
|
default: string;
|
|
61503
61517
|
};
|
|
61504
61518
|
noFilter: BooleanConstructor;
|
|
@@ -61511,24 +61525,24 @@ declare const VDataTable: {
|
|
|
61511
61525
|
default: number;
|
|
61512
61526
|
};
|
|
61513
61527
|
sortBy: {
|
|
61514
|
-
type:
|
|
61528
|
+
type: PropType<SortItem[]>;
|
|
61515
61529
|
default: () => never[];
|
|
61516
61530
|
};
|
|
61517
61531
|
multiSort: BooleanConstructor;
|
|
61518
61532
|
mustSort: BooleanConstructor;
|
|
61519
61533
|
showSelect: BooleanConstructor;
|
|
61520
61534
|
modelValue: {
|
|
61521
|
-
type:
|
|
61535
|
+
type: PropType<any[]>;
|
|
61522
61536
|
default: () => never[];
|
|
61523
61537
|
};
|
|
61524
61538
|
groupBy: {
|
|
61525
|
-
type:
|
|
61539
|
+
type: PropType<SortItem[]>;
|
|
61526
61540
|
default: () => never[];
|
|
61527
61541
|
};
|
|
61528
61542
|
expandOnClick: BooleanConstructor;
|
|
61529
61543
|
showExpand: BooleanConstructor;
|
|
61530
61544
|
expanded: {
|
|
61531
|
-
type:
|
|
61545
|
+
type: PropType<string[]>;
|
|
61532
61546
|
default: () => never[];
|
|
61533
61547
|
};
|
|
61534
61548
|
hideNoData: BooleanConstructor;
|
|
@@ -61541,41 +61555,44 @@ declare const VDataTable: {
|
|
|
61541
61555
|
width: (StringConstructor | NumberConstructor)[];
|
|
61542
61556
|
fixedHeader: BooleanConstructor;
|
|
61543
61557
|
fixedFooter: BooleanConstructor;
|
|
61558
|
+
'onClick:row': PropType<(e: Event, value: {
|
|
61559
|
+
item: DataTableItem;
|
|
61560
|
+
}) => void>;
|
|
61544
61561
|
headers: {
|
|
61545
|
-
type:
|
|
61562
|
+
type: PropType<DataTableHeader[] | DataTableHeader[][]>;
|
|
61546
61563
|
default: () => never[];
|
|
61547
61564
|
};
|
|
61548
61565
|
items: {
|
|
61549
|
-
type:
|
|
61566
|
+
type: PropType<any[]>;
|
|
61550
61567
|
default: () => never[];
|
|
61551
61568
|
};
|
|
61552
61569
|
itemTitle: {
|
|
61553
|
-
type:
|
|
61570
|
+
type: PropType<SelectItemKey>;
|
|
61554
61571
|
default: string;
|
|
61555
61572
|
};
|
|
61556
61573
|
itemValue: Omit<{
|
|
61557
|
-
type:
|
|
61574
|
+
type: PropType<SelectItemKey>;
|
|
61558
61575
|
default: string;
|
|
61559
61576
|
}, "type" | "default"> & {
|
|
61560
|
-
type:
|
|
61577
|
+
type: PropType<NonNullable<SelectItemKey>>;
|
|
61561
61578
|
default: NonNullable<SelectItemKey>;
|
|
61562
61579
|
};
|
|
61563
61580
|
itemChildren: {
|
|
61564
|
-
type:
|
|
61581
|
+
type: PropType<SelectItemKey>;
|
|
61565
61582
|
default: string;
|
|
61566
61583
|
};
|
|
61567
61584
|
itemProps: {
|
|
61568
|
-
type:
|
|
61585
|
+
type: PropType<SelectItemKey>;
|
|
61569
61586
|
default: string;
|
|
61570
61587
|
};
|
|
61571
61588
|
returnObject: BooleanConstructor;
|
|
61572
61589
|
search: StringConstructor;
|
|
61573
61590
|
}, vue.ExtractPropTypes<{
|
|
61574
|
-
customFilter:
|
|
61575
|
-
customKeyFilter:
|
|
61576
|
-
filterKeys:
|
|
61591
|
+
customFilter: PropType<FilterFunction>;
|
|
61592
|
+
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
61593
|
+
filterKeys: PropType<FilterKeys>;
|
|
61577
61594
|
filterMode: {
|
|
61578
|
-
type:
|
|
61595
|
+
type: PropType<FilterMode>;
|
|
61579
61596
|
default: string;
|
|
61580
61597
|
};
|
|
61581
61598
|
noFilter: BooleanConstructor;
|
|
@@ -61588,24 +61605,24 @@ declare const VDataTable: {
|
|
|
61588
61605
|
default: number;
|
|
61589
61606
|
};
|
|
61590
61607
|
sortBy: {
|
|
61591
|
-
type:
|
|
61608
|
+
type: PropType<SortItem[]>;
|
|
61592
61609
|
default: () => never[];
|
|
61593
61610
|
};
|
|
61594
61611
|
multiSort: BooleanConstructor;
|
|
61595
61612
|
mustSort: BooleanConstructor;
|
|
61596
61613
|
showSelect: BooleanConstructor;
|
|
61597
61614
|
modelValue: {
|
|
61598
|
-
type:
|
|
61615
|
+
type: PropType<any[]>;
|
|
61599
61616
|
default: () => never[];
|
|
61600
61617
|
};
|
|
61601
61618
|
groupBy: {
|
|
61602
|
-
type:
|
|
61619
|
+
type: PropType<SortItem[]>;
|
|
61603
61620
|
default: () => never[];
|
|
61604
61621
|
};
|
|
61605
61622
|
expandOnClick: BooleanConstructor;
|
|
61606
61623
|
showExpand: BooleanConstructor;
|
|
61607
61624
|
expanded: {
|
|
61608
|
-
type:
|
|
61625
|
+
type: PropType<string[]>;
|
|
61609
61626
|
default: () => never[];
|
|
61610
61627
|
};
|
|
61611
61628
|
hideNoData: BooleanConstructor;
|
|
@@ -61618,31 +61635,34 @@ declare const VDataTable: {
|
|
|
61618
61635
|
width: (StringConstructor | NumberConstructor)[];
|
|
61619
61636
|
fixedHeader: BooleanConstructor;
|
|
61620
61637
|
fixedFooter: BooleanConstructor;
|
|
61638
|
+
'onClick:row': PropType<(e: Event, value: {
|
|
61639
|
+
item: DataTableItem;
|
|
61640
|
+
}) => void>;
|
|
61621
61641
|
headers: {
|
|
61622
|
-
type:
|
|
61642
|
+
type: PropType<DataTableHeader[] | DataTableHeader[][]>;
|
|
61623
61643
|
default: () => never[];
|
|
61624
61644
|
};
|
|
61625
61645
|
items: {
|
|
61626
|
-
type:
|
|
61646
|
+
type: PropType<any[]>;
|
|
61627
61647
|
default: () => never[];
|
|
61628
61648
|
};
|
|
61629
61649
|
itemTitle: {
|
|
61630
|
-
type:
|
|
61650
|
+
type: PropType<SelectItemKey>;
|
|
61631
61651
|
default: string;
|
|
61632
61652
|
};
|
|
61633
61653
|
itemValue: Omit<{
|
|
61634
|
-
type:
|
|
61654
|
+
type: PropType<SelectItemKey>;
|
|
61635
61655
|
default: string;
|
|
61636
61656
|
}, "type" | "default"> & {
|
|
61637
|
-
type:
|
|
61657
|
+
type: PropType<NonNullable<SelectItemKey>>;
|
|
61638
61658
|
default: NonNullable<SelectItemKey>;
|
|
61639
61659
|
};
|
|
61640
61660
|
itemChildren: {
|
|
61641
|
-
type:
|
|
61661
|
+
type: PropType<SelectItemKey>;
|
|
61642
61662
|
default: string;
|
|
61643
61663
|
};
|
|
61644
61664
|
itemProps: {
|
|
61645
|
-
type:
|
|
61665
|
+
type: PropType<SelectItemKey>;
|
|
61646
61666
|
default: string;
|
|
61647
61667
|
};
|
|
61648
61668
|
returnObject: BooleanConstructor;
|
|
@@ -61782,6 +61802,9 @@ declare const VDataTableVirtual: {
|
|
|
61782
61802
|
customFilter?: FilterFunction | undefined;
|
|
61783
61803
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
61784
61804
|
filterKeys?: FilterKeys | undefined;
|
|
61805
|
+
'onClick:row'?: ((e: Event, value: {
|
|
61806
|
+
item: DataTableItem;
|
|
61807
|
+
}) => void) | undefined;
|
|
61785
61808
|
} & {
|
|
61786
61809
|
$children?: {} | vue.VNodeChild | {
|
|
61787
61810
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -62059,9 +62082,9 @@ declare const VDataTableVirtual: {
|
|
|
62059
62082
|
}>;
|
|
62060
62083
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
62061
62084
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
62062
|
-
$emit: ((event: "update:modelValue", value: any[]) => void) & ((event: "click:row", event: Event, value: {
|
|
62085
|
+
$emit: ((event: "update:modelValue", value: any[]) => void) & ((event: "update:options", value: any) => void) & ((event: "update:sortBy", value: any) => void) & ((event: "update:groupBy", value: any) => void) & ((event: "update:expanded", value: any) => void) & ((event: "click:row", event: Event, value: {
|
|
62063
62086
|
item: DataTableItem;
|
|
62064
|
-
}) => void)
|
|
62087
|
+
}) => void);
|
|
62065
62088
|
$el: any;
|
|
62066
62089
|
$options: vue.ComponentOptionsBase<{
|
|
62067
62090
|
expanded: string[];
|
|
@@ -62096,6 +62119,9 @@ declare const VDataTableVirtual: {
|
|
|
62096
62119
|
customFilter?: FilterFunction | undefined;
|
|
62097
62120
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
62098
62121
|
filterKeys?: FilterKeys | undefined;
|
|
62122
|
+
'onClick:row'?: ((e: Event, value: {
|
|
62123
|
+
item: DataTableItem;
|
|
62124
|
+
}) => void) | undefined;
|
|
62099
62125
|
} & {
|
|
62100
62126
|
$children?: {} | vue.VNodeChild | {
|
|
62101
62127
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -62449,6 +62475,9 @@ declare const VDataTableVirtual: {
|
|
|
62449
62475
|
customFilter?: FilterFunction | undefined;
|
|
62450
62476
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
62451
62477
|
filterKeys?: FilterKeys | undefined;
|
|
62478
|
+
'onClick:row'?: ((e: Event, value: {
|
|
62479
|
+
item: DataTableItem;
|
|
62480
|
+
}) => void) | undefined;
|
|
62452
62481
|
} & {
|
|
62453
62482
|
$children?: {} | vue.VNodeChild | {
|
|
62454
62483
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -62751,6 +62780,9 @@ declare const VDataTableVirtual: {
|
|
|
62751
62780
|
customFilter?: FilterFunction | undefined;
|
|
62752
62781
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
62753
62782
|
filterKeys?: FilterKeys | undefined;
|
|
62783
|
+
'onClick:row'?: ((e: Event, value: {
|
|
62784
|
+
item: DataTableItem;
|
|
62785
|
+
}) => void) | undefined;
|
|
62754
62786
|
} & {
|
|
62755
62787
|
$children?: {} | vue.VNodeChild | {
|
|
62756
62788
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -63127,6 +63159,9 @@ declare const VDataTableVirtual: {
|
|
|
63127
63159
|
width: (StringConstructor | NumberConstructor)[];
|
|
63128
63160
|
fixedHeader: BooleanConstructor;
|
|
63129
63161
|
fixedFooter: BooleanConstructor;
|
|
63162
|
+
'onClick:row': vue.PropType<(e: Event, value: {
|
|
63163
|
+
item: DataTableItem;
|
|
63164
|
+
}) => void>;
|
|
63130
63165
|
search: StringConstructor;
|
|
63131
63166
|
}, vue.ExtractPropTypes<{
|
|
63132
63167
|
customFilter: vue.PropType<FilterFunction>;
|
|
@@ -63204,6 +63239,9 @@ declare const VDataTableVirtual: {
|
|
|
63204
63239
|
width: (StringConstructor | NumberConstructor)[];
|
|
63205
63240
|
fixedHeader: BooleanConstructor;
|
|
63206
63241
|
fixedFooter: BooleanConstructor;
|
|
63242
|
+
'onClick:row': vue.PropType<(e: Event, value: {
|
|
63243
|
+
item: DataTableItem;
|
|
63244
|
+
}) => void>;
|
|
63207
63245
|
search: StringConstructor;
|
|
63208
63246
|
}>>;
|
|
63209
63247
|
type VDataTableVirtual = InstanceType<typeof VDataTableVirtual>;
|
|
@@ -63268,6 +63306,9 @@ declare const VDataTableServer: {
|
|
|
63268
63306
|
width?: string | number | undefined;
|
|
63269
63307
|
color?: string | undefined;
|
|
63270
63308
|
loading?: string | boolean | undefined;
|
|
63309
|
+
'onClick:row'?: ((e: Event, value: {
|
|
63310
|
+
item: DataTableItem;
|
|
63311
|
+
}) => void) | undefined;
|
|
63271
63312
|
} & {
|
|
63272
63313
|
$children?: {} | vue.VNodeChild | {
|
|
63273
63314
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -63571,9 +63612,9 @@ declare const VDataTableServer: {
|
|
|
63571
63612
|
}>;
|
|
63572
63613
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
63573
63614
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
63574
|
-
$emit: ((event: "update:modelValue", value: any[]) => void) & ((event: "click:row", event: Event, value: {
|
|
63615
|
+
$emit: ((event: "update:modelValue", value: any[]) => void) & ((event: "update:options", options: any) => void) & ((event: "update:page", page: number) => void) & ((event: "update:itemsPerPage", page: number) => void) & ((event: "update:sortBy", sortBy: any) => void) & ((event: "update:groupBy", value: any) => void) & ((event: "update:expanded", options: any) => void) & ((event: "click:row", event: Event, value: {
|
|
63575
63616
|
item: DataTableItem;
|
|
63576
|
-
}) => void)
|
|
63617
|
+
}) => void);
|
|
63577
63618
|
$el: any;
|
|
63578
63619
|
$options: vue.ComponentOptionsBase<{
|
|
63579
63620
|
expanded: string[];
|
|
@@ -63606,6 +63647,9 @@ declare const VDataTableServer: {
|
|
|
63606
63647
|
width?: string | number | undefined;
|
|
63607
63648
|
color?: string | undefined;
|
|
63608
63649
|
loading?: string | boolean | undefined;
|
|
63650
|
+
'onClick:row'?: ((e: Event, value: {
|
|
63651
|
+
item: DataTableItem;
|
|
63652
|
+
}) => void) | undefined;
|
|
63609
63653
|
} & {
|
|
63610
63654
|
$children?: {} | vue.VNodeChild | {
|
|
63611
63655
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -63984,6 +64028,9 @@ declare const VDataTableServer: {
|
|
|
63984
64028
|
width?: string | number | undefined;
|
|
63985
64029
|
color?: string | undefined;
|
|
63986
64030
|
loading?: string | boolean | undefined;
|
|
64031
|
+
'onClick:row'?: ((e: Event, value: {
|
|
64032
|
+
item: DataTableItem;
|
|
64033
|
+
}) => void) | undefined;
|
|
63987
64034
|
} & {
|
|
63988
64035
|
$children?: {} | vue.VNodeChild | {
|
|
63989
64036
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -64310,6 +64357,9 @@ declare const VDataTableServer: {
|
|
|
64310
64357
|
width?: string | number | undefined;
|
|
64311
64358
|
color?: string | undefined;
|
|
64312
64359
|
loading?: string | boolean | undefined;
|
|
64360
|
+
'onClick:row'?: ((e: Event, value: {
|
|
64361
|
+
item: DataTableItem;
|
|
64362
|
+
}) => void) | undefined;
|
|
64313
64363
|
} & {
|
|
64314
64364
|
$children?: {} | vue.VNodeChild | {
|
|
64315
64365
|
[x: `item.${string}`]: ((args_0: {
|
|
@@ -64705,6 +64755,9 @@ declare const VDataTableServer: {
|
|
|
64705
64755
|
width: (StringConstructor | NumberConstructor)[];
|
|
64706
64756
|
fixedHeader: BooleanConstructor;
|
|
64707
64757
|
fixedFooter: BooleanConstructor;
|
|
64758
|
+
'onClick:row': vue.PropType<(e: Event, value: {
|
|
64759
|
+
item: DataTableItem;
|
|
64760
|
+
}) => void>;
|
|
64708
64761
|
color: StringConstructor;
|
|
64709
64762
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
64710
64763
|
loadingText: {
|
|
@@ -64783,6 +64836,9 @@ declare const VDataTableServer: {
|
|
|
64783
64836
|
width: (StringConstructor | NumberConstructor)[];
|
|
64784
64837
|
fixedHeader: BooleanConstructor;
|
|
64785
64838
|
fixedFooter: BooleanConstructor;
|
|
64839
|
+
'onClick:row': vue.PropType<(e: Event, value: {
|
|
64840
|
+
item: DataTableItem;
|
|
64841
|
+
}) => void>;
|
|
64786
64842
|
color: StringConstructor;
|
|
64787
64843
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
64788
64844
|
loadingText: {
|