vuetify 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +46 -34
- package/dist/json/importMap.json +72 -72
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +80 -37
- package/dist/vuetify-labs.css +136 -130
- package/dist/vuetify-labs.d.ts +52 -5
- package/dist/vuetify-labs.esm.js +193 -113
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +193 -113
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +103 -97
- package/dist/vuetify.d.ts +71 -24
- package/dist/vuetify.esm.js +129 -84
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +129 -84
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +288 -286
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBtn/VBtn.mjs +9 -3
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VCard/VCard.mjs +5 -2
- package/lib/components/VCard/VCard.mjs.map +1 -1
- package/lib/components/VCard/index.d.ts +8 -2
- package/lib/components/VChip/VChip.mjs +18 -4
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VChip/index.d.ts +15 -2
- package/lib/components/VChipGroup/VChipGroup.mjs +1 -0
- package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +2 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VFileInput/VFileInput.css +1 -0
- package/lib/components/VFileInput/VFileInput.sass +1 -0
- package/lib/components/VGrid/VGrid.css +5 -0
- package/lib/components/VGrid/VGrid.sass +5 -0
- package/lib/components/VList/VListItem.css +1 -1
- package/lib/components/VList/VListItem.mjs +5 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/VListItem.sass +1 -1
- package/lib/components/VList/index.d.ts +20 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs +13 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
- package/lib/components/VProgressLinear/index.d.ts +18 -0
- package/lib/components/VSelect/VSelect.mjs +1 -0
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.mjs +5 -1
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/index.d.ts +52 -5
- package/lib/composables/filter.mjs +3 -3
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/teleport.mjs +6 -7
- package/lib/composables/teleport.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +19 -19
- package/lib/labs/VDataTable/VDataTable.mjs +8 -5
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +3 -3
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableRows.mjs +36 -8
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs +4 -4
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +4 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/group.mjs +9 -4
- package/lib/labs/VDataTable/composables/group.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/sort.mjs +3 -5
- package/lib/labs/VDataTable/composables/sort.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.1.
|
|
2
|
+
* Vuetify v3.1.2
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -20524,6 +20524,11 @@ html.overflow-y-hidden {
|
|
|
20524
20524
|
.v-container--fluid {
|
|
20525
20525
|
max-width: 100%;
|
|
20526
20526
|
}
|
|
20527
|
+
.v-container.fill-height {
|
|
20528
|
+
align-items: center;
|
|
20529
|
+
display: flex;
|
|
20530
|
+
flex-wrap: wrap;
|
|
20531
|
+
}
|
|
20527
20532
|
|
|
20528
20533
|
.v-row {
|
|
20529
20534
|
display: flex;
|
|
@@ -22253,6 +22258,7 @@ textarea.v-field__input::placeholder {
|
|
|
22253
22258
|
position: absolute;
|
|
22254
22259
|
top: 0;
|
|
22255
22260
|
width: 100%;
|
|
22261
|
+
z-index: 1;
|
|
22256
22262
|
}
|
|
22257
22263
|
.v-file-input .v-chip {
|
|
22258
22264
|
margin-top: 2px;
|
|
@@ -22936,7 +22942,7 @@ textarea.v-field__input::placeholder {
|
|
|
22936
22942
|
padding-inline-start: 8px;
|
|
22937
22943
|
padding-inline-end: 8px;
|
|
22938
22944
|
}
|
|
22939
|
-
.v-list .v-list-item--nav:not(:
|
|
22945
|
+
.v-list .v-list-item--nav:not(:only-child) {
|
|
22940
22946
|
margin-bottom: 4px;
|
|
22941
22947
|
}
|
|
22942
22948
|
|
|
@@ -24351,6 +24357,48 @@ html.v-overlay-scroll-blocked {
|
|
|
24351
24357
|
border-top: 0px !important;
|
|
24352
24358
|
position: sticky;
|
|
24353
24359
|
bottom: 0;
|
|
24360
|
+
}.v-textarea .v-field {
|
|
24361
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
|
24362
|
+
}
|
|
24363
|
+
.v-textarea .v-field__field {
|
|
24364
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
|
24365
|
+
}
|
|
24366
|
+
.v-textarea .v-field__input {
|
|
24367
|
+
flex: 1 1 auto;
|
|
24368
|
+
outline: none;
|
|
24369
|
+
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24370
|
+
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24371
|
+
}
|
|
24372
|
+
.v-textarea--auto-grow .v-field__input {
|
|
24373
|
+
overflow: hidden;
|
|
24374
|
+
}
|
|
24375
|
+
.v-textarea--no-resize .v-field__input {
|
|
24376
|
+
resize: none;
|
|
24377
|
+
}
|
|
24378
|
+
.v-textarea__sizer {
|
|
24379
|
+
visibility: hidden;
|
|
24380
|
+
position: absolute;
|
|
24381
|
+
top: 0;
|
|
24382
|
+
left: 0;
|
|
24383
|
+
height: 0 !important;
|
|
24384
|
+
min-height: 0 !important;
|
|
24385
|
+
pointer-events: none;
|
|
24386
|
+
}
|
|
24387
|
+
.v-textarea .v-field--no-label textarea,
|
|
24388
|
+
.v-textarea .v-field--active textarea {
|
|
24389
|
+
opacity: 1;
|
|
24390
|
+
}
|
|
24391
|
+
.v-textarea textarea {
|
|
24392
|
+
opacity: 0;
|
|
24393
|
+
flex: 1;
|
|
24394
|
+
min-width: 0;
|
|
24395
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24396
|
+
}
|
|
24397
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
24398
|
+
outline: none;
|
|
24399
|
+
}
|
|
24400
|
+
.v-textarea textarea:invalid {
|
|
24401
|
+
box-shadow: none;
|
|
24354
24402
|
}/* region BLOCK */
|
|
24355
24403
|
.v-text-field input {
|
|
24356
24404
|
color: inherit;
|
|
@@ -24420,49 +24468,7 @@ html.v-overlay-scroll-blocked {
|
|
|
24420
24468
|
padding: 0;
|
|
24421
24469
|
}
|
|
24422
24470
|
|
|
24423
|
-
/* endregion */.v-
|
|
24424
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
|
24425
|
-
}
|
|
24426
|
-
.v-textarea .v-field__field {
|
|
24427
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
|
24428
|
-
}
|
|
24429
|
-
.v-textarea .v-field__input {
|
|
24430
|
-
flex: 1 1 auto;
|
|
24431
|
-
outline: none;
|
|
24432
|
-
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24433
|
-
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24434
|
-
}
|
|
24435
|
-
.v-textarea--auto-grow .v-field__input {
|
|
24436
|
-
overflow: hidden;
|
|
24437
|
-
}
|
|
24438
|
-
.v-textarea--no-resize .v-field__input {
|
|
24439
|
-
resize: none;
|
|
24440
|
-
}
|
|
24441
|
-
.v-textarea__sizer {
|
|
24442
|
-
visibility: hidden;
|
|
24443
|
-
position: absolute;
|
|
24444
|
-
top: 0;
|
|
24445
|
-
left: 0;
|
|
24446
|
-
height: 0 !important;
|
|
24447
|
-
min-height: 0 !important;
|
|
24448
|
-
pointer-events: none;
|
|
24449
|
-
}
|
|
24450
|
-
.v-textarea .v-field--no-label textarea,
|
|
24451
|
-
.v-textarea .v-field--active textarea {
|
|
24452
|
-
opacity: 1;
|
|
24453
|
-
}
|
|
24454
|
-
.v-textarea textarea {
|
|
24455
|
-
opacity: 0;
|
|
24456
|
-
flex: 1;
|
|
24457
|
-
min-width: 0;
|
|
24458
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24459
|
-
}
|
|
24460
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
24461
|
-
outline: none;
|
|
24462
|
-
}
|
|
24463
|
-
.v-textarea textarea:invalid {
|
|
24464
|
-
box-shadow: none;
|
|
24465
|
-
}.v-theme-provider {
|
|
24471
|
+
/* endregion */.v-theme-provider {
|
|
24466
24472
|
background: rgb(var(--v-theme-background));
|
|
24467
24473
|
color: rgb(var(--v-theme-on-background));
|
|
24468
24474
|
}.v-timeline .v-timeline-divider__dot {
|
|
@@ -25129,26 +25135,6 @@ html.v-overlay-scroll-blocked {
|
|
|
25129
25135
|
}
|
|
25130
25136
|
.v-window-y-reverse-transition-leave-to {
|
|
25131
25137
|
transform: translateY(100%);
|
|
25132
|
-
}.v-color-picker-canvas {
|
|
25133
|
-
position: relative;
|
|
25134
|
-
overflow: hidden;
|
|
25135
|
-
contain: strict;
|
|
25136
|
-
}
|
|
25137
|
-
.v-color-picker-canvas__dot {
|
|
25138
|
-
position: absolute;
|
|
25139
|
-
top: 0;
|
|
25140
|
-
left: 0;
|
|
25141
|
-
width: 15px;
|
|
25142
|
-
height: 15px;
|
|
25143
|
-
background: transparent;
|
|
25144
|
-
border-radius: 50%;
|
|
25145
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25146
|
-
}
|
|
25147
|
-
.v-color-picker-canvas__dot--disabled {
|
|
25148
|
-
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25149
|
-
}
|
|
25150
|
-
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
25151
|
-
will-change: transform;
|
|
25152
25138
|
}.v-color-picker-edit {
|
|
25153
25139
|
display: flex;
|
|
25154
25140
|
}
|
|
@@ -25179,41 +25165,26 @@ html.v-overlay-scroll-blocked {
|
|
|
25179
25165
|
}
|
|
25180
25166
|
.v-color-picker-edit__input span {
|
|
25181
25167
|
font-size: 0.75rem;
|
|
25182
|
-
}.v-color-picker-
|
|
25183
|
-
overflow-y: auto;
|
|
25184
|
-
}
|
|
25185
|
-
.v-color-picker-swatches > div {
|
|
25186
|
-
display: flex;
|
|
25187
|
-
flex-wrap: wrap;
|
|
25188
|
-
justify-content: center;
|
|
25189
|
-
padding: 8px;
|
|
25190
|
-
}
|
|
25191
|
-
|
|
25192
|
-
.v-color-picker-swatches__swatch {
|
|
25193
|
-
display: flex;
|
|
25194
|
-
flex-direction: column;
|
|
25195
|
-
margin-bottom: 10px;
|
|
25196
|
-
}
|
|
25197
|
-
|
|
25198
|
-
.v-color-picker-swatches__color {
|
|
25168
|
+
}.v-color-picker-canvas {
|
|
25199
25169
|
position: relative;
|
|
25200
|
-
height: 18px;
|
|
25201
|
-
max-height: 18px;
|
|
25202
|
-
width: 45px;
|
|
25203
|
-
margin: 2px 4px;
|
|
25204
|
-
border-radius: 2px;
|
|
25205
|
-
-webkit-user-select: none;
|
|
25206
|
-
user-select: none;
|
|
25207
25170
|
overflow: hidden;
|
|
25208
|
-
|
|
25209
|
-
cursor: pointer;
|
|
25171
|
+
contain: strict;
|
|
25210
25172
|
}
|
|
25211
|
-
.v-color-picker-
|
|
25212
|
-
|
|
25213
|
-
|
|
25214
|
-
|
|
25215
|
-
width:
|
|
25216
|
-
height:
|
|
25173
|
+
.v-color-picker-canvas__dot {
|
|
25174
|
+
position: absolute;
|
|
25175
|
+
top: 0;
|
|
25176
|
+
left: 0;
|
|
25177
|
+
width: 15px;
|
|
25178
|
+
height: 15px;
|
|
25179
|
+
background: transparent;
|
|
25180
|
+
border-radius: 50%;
|
|
25181
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25182
|
+
}
|
|
25183
|
+
.v-color-picker-canvas__dot--disabled {
|
|
25184
|
+
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25185
|
+
}
|
|
25186
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
25187
|
+
will-change: transform;
|
|
25217
25188
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
25218
25189
|
background-color: transparent !important;
|
|
25219
25190
|
}
|
|
@@ -25280,6 +25251,41 @@ html.v-overlay-scroll-blocked {
|
|
|
25280
25251
|
align-items: center;
|
|
25281
25252
|
display: flex;
|
|
25282
25253
|
margin-bottom: 24px;
|
|
25254
|
+
}.v-color-picker-swatches {
|
|
25255
|
+
overflow-y: auto;
|
|
25256
|
+
}
|
|
25257
|
+
.v-color-picker-swatches > div {
|
|
25258
|
+
display: flex;
|
|
25259
|
+
flex-wrap: wrap;
|
|
25260
|
+
justify-content: center;
|
|
25261
|
+
padding: 8px;
|
|
25262
|
+
}
|
|
25263
|
+
|
|
25264
|
+
.v-color-picker-swatches__swatch {
|
|
25265
|
+
display: flex;
|
|
25266
|
+
flex-direction: column;
|
|
25267
|
+
margin-bottom: 10px;
|
|
25268
|
+
}
|
|
25269
|
+
|
|
25270
|
+
.v-color-picker-swatches__color {
|
|
25271
|
+
position: relative;
|
|
25272
|
+
height: 18px;
|
|
25273
|
+
max-height: 18px;
|
|
25274
|
+
width: 45px;
|
|
25275
|
+
margin: 2px 4px;
|
|
25276
|
+
border-radius: 2px;
|
|
25277
|
+
-webkit-user-select: none;
|
|
25278
|
+
user-select: none;
|
|
25279
|
+
overflow: hidden;
|
|
25280
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
25281
|
+
cursor: pointer;
|
|
25282
|
+
}
|
|
25283
|
+
.v-color-picker-swatches__color > div {
|
|
25284
|
+
display: flex;
|
|
25285
|
+
align-items: center;
|
|
25286
|
+
justify-content: center;
|
|
25287
|
+
width: 100%;
|
|
25288
|
+
height: 100%;
|
|
25283
25289
|
}.v-slider-thumb {
|
|
25284
25290
|
touch-action: none;
|
|
25285
25291
|
color: rgb(var(--v-theme-surface-variant));
|
package/dist/vuetify.d.ts
CHANGED
|
@@ -4633,7 +4633,10 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4633
4633
|
};
|
|
4634
4634
|
prependAvatar: StringConstructor;
|
|
4635
4635
|
prependIcon: vue.PropType<IconValue>;
|
|
4636
|
-
ripple:
|
|
4636
|
+
ripple: {
|
|
4637
|
+
type: BooleanConstructor;
|
|
4638
|
+
default: boolean;
|
|
4639
|
+
};
|
|
4637
4640
|
subtitle: StringConstructor;
|
|
4638
4641
|
text: StringConstructor;
|
|
4639
4642
|
title: StringConstructor;
|
|
@@ -4694,7 +4697,10 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4694
4697
|
};
|
|
4695
4698
|
prependAvatar: StringConstructor;
|
|
4696
4699
|
prependIcon: vue.PropType<IconValue>;
|
|
4697
|
-
ripple:
|
|
4700
|
+
ripple: {
|
|
4701
|
+
type: BooleanConstructor;
|
|
4702
|
+
default: boolean;
|
|
4703
|
+
};
|
|
4698
4704
|
subtitle: StringConstructor;
|
|
4699
4705
|
text: StringConstructor;
|
|
4700
4706
|
title: StringConstructor;
|
|
@@ -5218,7 +5224,10 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5218
5224
|
default: string;
|
|
5219
5225
|
};
|
|
5220
5226
|
label: BooleanConstructor;
|
|
5221
|
-
link:
|
|
5227
|
+
link: {
|
|
5228
|
+
type: BooleanConstructor;
|
|
5229
|
+
default: undefined;
|
|
5230
|
+
};
|
|
5222
5231
|
pill: BooleanConstructor;
|
|
5223
5232
|
prependAvatar: StringConstructor;
|
|
5224
5233
|
prependIcon: vue.PropType<IconValue>;
|
|
@@ -5231,6 +5240,8 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5231
5240
|
type: BooleanConstructor;
|
|
5232
5241
|
default: boolean;
|
|
5233
5242
|
};
|
|
5243
|
+
onClick: vue.PropType<EventProp<(...args: any[]) => any>>;
|
|
5244
|
+
onClickOnce: vue.PropType<EventProp<(...args: any[]) => any>>;
|
|
5234
5245
|
}, () => false | JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
5235
5246
|
'click:close': (e: Event) => true;
|
|
5236
5247
|
'update:modelValue': (value: boolean) => true;
|
|
@@ -5300,7 +5311,10 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5300
5311
|
default: string;
|
|
5301
5312
|
};
|
|
5302
5313
|
label: BooleanConstructor;
|
|
5303
|
-
link:
|
|
5314
|
+
link: {
|
|
5315
|
+
type: BooleanConstructor;
|
|
5316
|
+
default: undefined;
|
|
5317
|
+
};
|
|
5304
5318
|
pill: BooleanConstructor;
|
|
5305
5319
|
prependAvatar: StringConstructor;
|
|
5306
5320
|
prependIcon: vue.PropType<IconValue>;
|
|
@@ -5313,6 +5327,8 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5313
5327
|
type: BooleanConstructor;
|
|
5314
5328
|
default: boolean;
|
|
5315
5329
|
};
|
|
5330
|
+
onClick: vue.PropType<EventProp<(...args: any[]) => any>>;
|
|
5331
|
+
onClickOnce: vue.PropType<EventProp<(...args: any[]) => any>>;
|
|
5316
5332
|
}>> & {
|
|
5317
5333
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
5318
5334
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -11911,6 +11927,7 @@ declare const VListItem: {
|
|
|
11911
11927
|
rounded: string | number | boolean;
|
|
11912
11928
|
density: Density;
|
|
11913
11929
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11930
|
+
ripple: boolean;
|
|
11914
11931
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
11915
11932
|
color: StringConstructor;
|
|
11916
11933
|
variant: Omit<{
|
|
@@ -11967,6 +11984,10 @@ declare const VListItem: {
|
|
|
11967
11984
|
nav: BooleanConstructor;
|
|
11968
11985
|
prependAvatar: StringConstructor;
|
|
11969
11986
|
prependIcon: PropType<IconValue>;
|
|
11987
|
+
ripple: {
|
|
11988
|
+
type: BooleanConstructor;
|
|
11989
|
+
default: boolean;
|
|
11990
|
+
};
|
|
11970
11991
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11971
11992
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11972
11993
|
value: null;
|
|
@@ -11974,7 +11995,7 @@ declare const VListItem: {
|
|
|
11974
11995
|
onClickOnce: PropType<EventProp<(...args: any[]) => any>>;
|
|
11975
11996
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:subtitle">>> & {
|
|
11976
11997
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
11977
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant">;
|
|
11998
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant" | "ripple">;
|
|
11978
11999
|
$attrs: {
|
|
11979
12000
|
[x: string]: unknown;
|
|
11980
12001
|
};
|
|
@@ -12044,6 +12065,10 @@ declare const VListItem: {
|
|
|
12044
12065
|
nav: BooleanConstructor;
|
|
12045
12066
|
prependAvatar: StringConstructor;
|
|
12046
12067
|
prependIcon: PropType<IconValue>;
|
|
12068
|
+
ripple: {
|
|
12069
|
+
type: BooleanConstructor;
|
|
12070
|
+
default: boolean;
|
|
12071
|
+
};
|
|
12047
12072
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12048
12073
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12049
12074
|
value: null;
|
|
@@ -12064,6 +12089,7 @@ declare const VListItem: {
|
|
|
12064
12089
|
rounded: string | number | boolean;
|
|
12065
12090
|
density: Density;
|
|
12066
12091
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
12092
|
+
ripple: boolean;
|
|
12067
12093
|
}> & {
|
|
12068
12094
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
12069
12095
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -12140,6 +12166,10 @@ declare const VListItem: {
|
|
|
12140
12166
|
nav: BooleanConstructor;
|
|
12141
12167
|
prependAvatar: StringConstructor;
|
|
12142
12168
|
prependIcon: PropType<IconValue>;
|
|
12169
|
+
ripple: {
|
|
12170
|
+
type: BooleanConstructor;
|
|
12171
|
+
default: boolean;
|
|
12172
|
+
};
|
|
12143
12173
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12144
12174
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12145
12175
|
value: null;
|
|
@@ -12207,6 +12237,10 @@ declare const VListItem: {
|
|
|
12207
12237
|
nav: BooleanConstructor;
|
|
12208
12238
|
prependAvatar: StringConstructor;
|
|
12209
12239
|
prependIcon: PropType<IconValue>;
|
|
12240
|
+
ripple: {
|
|
12241
|
+
type: BooleanConstructor;
|
|
12242
|
+
default: boolean;
|
|
12243
|
+
};
|
|
12210
12244
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12211
12245
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12212
12246
|
value: null;
|
|
@@ -12227,6 +12261,7 @@ declare const VListItem: {
|
|
|
12227
12261
|
rounded: string | number | boolean;
|
|
12228
12262
|
density: Density;
|
|
12229
12263
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
12264
|
+
ripple: boolean;
|
|
12230
12265
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
12231
12266
|
$props: SlotsToProps<{
|
|
12232
12267
|
prepend: [ListItemSlot];
|
|
@@ -14855,6 +14890,11 @@ declare const VProgressLinear: vue.DefineComponent<{
|
|
|
14855
14890
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14856
14891
|
default: undefined;
|
|
14857
14892
|
};
|
|
14893
|
+
location: {
|
|
14894
|
+
type: vue.PropType<Anchor | (Anchor & {})>;
|
|
14895
|
+
default: Anchor | (Anchor & {});
|
|
14896
|
+
};
|
|
14897
|
+
absolute: BooleanConstructor;
|
|
14858
14898
|
active: {
|
|
14859
14899
|
type: BooleanConstructor;
|
|
14860
14900
|
default: boolean;
|
|
@@ -14896,6 +14936,11 @@ declare const VProgressLinear: vue.DefineComponent<{
|
|
|
14896
14936
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14897
14937
|
default: undefined;
|
|
14898
14938
|
};
|
|
14939
|
+
location: {
|
|
14940
|
+
type: vue.PropType<Anchor | (Anchor & {})>;
|
|
14941
|
+
default: Anchor | (Anchor & {});
|
|
14942
|
+
};
|
|
14943
|
+
absolute: BooleanConstructor;
|
|
14899
14944
|
active: {
|
|
14900
14945
|
type: BooleanConstructor;
|
|
14901
14946
|
default: boolean;
|
|
@@ -14930,6 +14975,8 @@ declare const VProgressLinear: vue.DefineComponent<{
|
|
|
14930
14975
|
}, {
|
|
14931
14976
|
reverse: boolean;
|
|
14932
14977
|
max: string | number;
|
|
14978
|
+
absolute: boolean;
|
|
14979
|
+
location: Anchor | (Anchor & {});
|
|
14933
14980
|
height: string | number;
|
|
14934
14981
|
active: boolean;
|
|
14935
14982
|
tag: string;
|
|
@@ -25972,22 +26019,24 @@ declare module '@vue/runtime-core' {
|
|
|
25972
26019
|
|
|
25973
26020
|
export interface GlobalComponents {
|
|
25974
26021
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
25975
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
25976
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
25977
26022
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
25978
26023
|
VCol: typeof import('vuetify/components')['VCol']
|
|
25979
26024
|
VRow: typeof import('vuetify/components')['VRow']
|
|
25980
26025
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
26026
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
26027
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
25981
26028
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
25982
26029
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
25983
26030
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25984
26031
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
25985
26032
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
25986
26033
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
25987
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
25988
26034
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
26035
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
25989
26036
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
25990
26037
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
26038
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
26039
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
25991
26040
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
25992
26041
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
25993
26042
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -26004,48 +26053,45 @@ declare module '@vue/runtime-core' {
|
|
|
26004
26053
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
26005
26054
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
26006
26055
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
26007
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
26008
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
26009
26056
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
26010
26057
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
26011
26058
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
26012
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
26013
26059
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
26014
26060
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
26061
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
26015
26062
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
26016
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
26017
26063
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
26018
26064
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
26019
26065
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
26066
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
26020
26067
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
26021
26068
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
26022
26069
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
26023
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
26024
26070
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
26025
26071
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
26026
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
26027
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
26028
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
26029
26072
|
VCard: typeof import('vuetify/components')['VCard']
|
|
26030
26073
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
26031
26074
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
26032
26075
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
26033
26076
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
26034
26077
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
26078
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
26079
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
26080
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
26035
26081
|
VChip: typeof import('vuetify/components')['VChip']
|
|
26036
26082
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
26037
26083
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
26038
26084
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
26039
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
26040
26085
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
26041
|
-
|
|
26086
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
26042
26087
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
26088
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
26089
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
26043
26090
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
26044
26091
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
26045
26092
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
26046
26093
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
26047
26094
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
26048
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
26049
26095
|
VField: typeof import('vuetify/components')['VField']
|
|
26050
26096
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
26051
26097
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
@@ -26059,8 +26105,8 @@ declare module '@vue/runtime-core' {
|
|
|
26059
26105
|
VInput: typeof import('vuetify/components')['VInput']
|
|
26060
26106
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
26061
26107
|
VItem: typeof import('vuetify/components')['VItem']
|
|
26062
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
26063
26108
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
26109
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
26064
26110
|
VList: typeof import('vuetify/components')['VList']
|
|
26065
26111
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
26066
26112
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -26071,8 +26117,8 @@ declare module '@vue/runtime-core' {
|
|
|
26071
26117
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
26072
26118
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
26073
26119
|
VMain: typeof import('vuetify/components')['VMain']
|
|
26074
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
26075
26120
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
26121
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
26076
26122
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
26077
26123
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
26078
26124
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
@@ -26083,25 +26129,26 @@ declare module '@vue/runtime-core' {
|
|
|
26083
26129
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
26084
26130
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
26085
26131
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
26132
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
26086
26133
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
26087
26134
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
26088
26135
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
26089
26136
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
26090
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
26091
26137
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
26138
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26092
26139
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
26093
26140
|
VTab: typeof import('vuetify/components')['VTab']
|
|
26094
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26095
26141
|
VTable: typeof import('vuetify/components')['VTable']
|
|
26096
26142
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
26097
26143
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
26098
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
26099
26144
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
26100
26145
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
26146
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
26101
26147
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
26102
26148
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
26103
26149
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
26104
26150
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
26105
26151
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
26152
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
26106
26153
|
}
|
|
26107
26154
|
}
|