@vuetify/nightly 3.1.13 → 3.1.14-master-20230406.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 +1141 -1136
- 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 +344 -339
- 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.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
|
|
|
@@ -60146,24 +60176,24 @@ declare module '@vue/runtime-core' {
|
|
|
60146
60176
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
60147
60177
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
60148
60178
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
60149
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
60150
60179
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
60151
60180
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
60152
60181
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
60153
|
-
|
|
60182
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
60154
60183
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
60155
|
-
|
|
60156
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
60157
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
60158
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
60159
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
60184
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
60160
60185
|
VCard: typeof import('vuetify/components')['VCard']
|
|
60161
60186
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
60162
60187
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
60163
60188
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
60164
60189
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
60165
60190
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
60191
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
60192
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
60193
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
60194
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
60166
60195
|
VChip: typeof import('vuetify/components')['VChip']
|
|
60196
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
60167
60197
|
VCode: typeof import('vuetify/components')['VCode']
|
|
60168
60198
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
60169
60199
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
@@ -60199,14 +60229,14 @@ declare module '@vue/runtime-core' {
|
|
|
60199
60229
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
60200
60230
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
60201
60231
|
VMain: typeof import('vuetify/components')['VMain']
|
|
60232
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
60202
60233
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
60203
60234
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
60204
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
60205
60235
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
60206
60236
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
60207
60237
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
60208
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
60209
60238
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
60239
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
60210
60240
|
VRating: typeof import('vuetify/components')['VRating']
|
|
60211
60241
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
60212
60242
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
@@ -60225,10 +60255,10 @@ declare module '@vue/runtime-core' {
|
|
|
60225
60255
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
60226
60256
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
60227
60257
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
60228
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
60229
60258
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
60230
60259
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
60231
60260
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
60261
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
60232
60262
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
60233
60263
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
60234
60264
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
@@ -60244,8 +60274,8 @@ declare module '@vue/runtime-core' {
|
|
|
60244
60274
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
60245
60275
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
60246
60276
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
60247
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
60248
60277
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
60278
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
60249
60279
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
60250
60280
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
60251
60281
|
VValidation: typeof import('vuetify/components')['VValidation']
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.1.
|
|
2
|
+
* Vuetify v3.1.14-master-20230406.0
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -6118,6 +6118,7 @@ const makeVTextFieldProps = propsFactory({
|
|
|
6118
6118
|
type: String,
|
|
6119
6119
|
default: 'text'
|
|
6120
6120
|
},
|
|
6121
|
+
modelModifiers: Object,
|
|
6121
6122
|
...makeVInputProps(),
|
|
6122
6123
|
...makeVFieldProps()
|
|
6123
6124
|
}, 'v-text-field');
|
|
@@ -6192,7 +6193,7 @@ const VTextField = genericComponent()({
|
|
|
6192
6193
|
function onInput(e) {
|
|
6193
6194
|
const el = e.target;
|
|
6194
6195
|
model.value = el.value;
|
|
6195
|
-
if (['text', 'search', 'password', 'tel', 'url'].includes(props.type)) {
|
|
6196
|
+
if (props.modelModifiers?.trim && ['text', 'search', 'password', 'tel', 'url'].includes(props.type)) {
|
|
6196
6197
|
const caretPosition = [el.selectionStart, el.selectionEnd];
|
|
6197
6198
|
nextTick(() => {
|
|
6198
6199
|
el.selectionStart = caretPosition[0];
|
|
@@ -17460,6 +17461,7 @@ const VTextarea = genericComponent()({
|
|
|
17460
17461
|
validator: v => !isNaN(parseFloat(v))
|
|
17461
17462
|
},
|
|
17462
17463
|
suffix: String,
|
|
17464
|
+
modelModifiers: Object,
|
|
17463
17465
|
...makeVInputProps(),
|
|
17464
17466
|
...makeVFieldProps()
|
|
17465
17467
|
},
|
|
@@ -17524,12 +17526,14 @@ const VTextarea = genericComponent()({
|
|
|
17524
17526
|
}
|
|
17525
17527
|
function onInput(e) {
|
|
17526
17528
|
const el = e.target;
|
|
17527
|
-
const caretPosition = [el.selectionStart, el.selectionEnd];
|
|
17528
17529
|
model.value = el.value;
|
|
17529
|
-
|
|
17530
|
-
el.selectionStart
|
|
17531
|
-
|
|
17532
|
-
|
|
17530
|
+
if (props.modelModifiers?.trim) {
|
|
17531
|
+
const caretPosition = [el.selectionStart, el.selectionEnd];
|
|
17532
|
+
nextTick(() => {
|
|
17533
|
+
el.selectionStart = caretPosition[0];
|
|
17534
|
+
el.selectionEnd = caretPosition[1];
|
|
17535
|
+
});
|
|
17536
|
+
}
|
|
17533
17537
|
}
|
|
17534
17538
|
const sizerRef = ref();
|
|
17535
17539
|
function calculateInputHeight() {
|
|
@@ -18362,7 +18366,7 @@ function createVuetify$1() {
|
|
|
18362
18366
|
locale
|
|
18363
18367
|
};
|
|
18364
18368
|
}
|
|
18365
|
-
const version$1 = "3.1.
|
|
18369
|
+
const version$1 = "3.1.14-master-20230406.0";
|
|
18366
18370
|
createVuetify$1.version = version$1;
|
|
18367
18371
|
|
|
18368
18372
|
// Vue's inject() can only be used in setup
|
|
@@ -18382,7 +18386,7 @@ const createVuetify = function () {
|
|
|
18382
18386
|
...options
|
|
18383
18387
|
});
|
|
18384
18388
|
};
|
|
18385
|
-
const version = "3.1.
|
|
18389
|
+
const version = "3.1.14-master-20230406.0";
|
|
18386
18390
|
createVuetify.version = version;
|
|
18387
18391
|
|
|
18388
18392
|
export { components, createVuetify, directives, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|