vuetify 3.1.11 → 3.1.12
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 +8 -12
- package/dist/json/importMap.json +84 -84
- package/dist/json/tags.json +0 -1
- package/dist/json/web-types.json +19 -25
- package/dist/vuetify-labs.css +129 -135
- package/dist/vuetify-labs.d.ts +73 -66
- package/dist/vuetify-labs.esm.js +65 -36
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +64 -35
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +53 -59
- package/dist/vuetify.d.ts +66 -75
- package/dist/vuetify.esm.js +44 -30
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +44 -30
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +326 -325
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.css +1 -0
- package/lib/components/VBadge/VBadge.sass +1 -0
- package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/index.d.ts +41 -50
- package/lib/components/VCombobox/VCombobox.mjs +9 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.css +11 -18
- package/lib/components/VDialog/VDialog.mjs +2 -2
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.sass +8 -15
- package/lib/components/VField/VField.mjs +5 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VGrid/VCol.mjs +2 -2
- package/lib/components/VGrid/VCol.mjs.map +1 -1
- package/lib/components/VGrid/VRow.mjs +2 -2
- package/lib/components/VGrid/VRow.mjs.map +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/VOverlay.sass +1 -1
- package/lib/components/VTextField/VTextField.mjs +11 -6
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/index.d.ts +41 -50
- package/lib/composables/forwardRefs.mjs +12 -15
- package/lib/composables/forwardRefs.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +25 -25
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableRow.mjs +5 -4
- package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs +3 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/items.mjs +14 -1
- package/lib/labs/VDataTable/composables/items.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.ts +32 -16
- package/lib/labs/components.d.ts +32 -16
- package/lib/util/globals.mjs +1 -1
- package/lib/util/globals.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.12
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -16217,6 +16217,7 @@ html.overflow-y-hidden {
|
|
|
16217
16217
|
|
|
16218
16218
|
.v-badge__badge {
|
|
16219
16219
|
align-items: center;
|
|
16220
|
+
display: inline-flex;
|
|
16220
16221
|
border-radius: 10px;
|
|
16221
16222
|
font-size: 0.75rem;
|
|
16222
16223
|
font-weight: 500;
|
|
@@ -16952,6 +16953,8 @@ html.overflow-y-hidden {
|
|
|
16952
16953
|
|
|
16953
16954
|
.v-snackbar-actions .v-btn {
|
|
16954
16955
|
padding: 0 8px;
|
|
16956
|
+
}.v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
|
|
16957
|
+
opacity: var(--v-activated-opacity);
|
|
16955
16958
|
}/** if false, disabled buttons will be greyed out */
|
|
16956
16959
|
.v-btn-group {
|
|
16957
16960
|
display: inline-flex;
|
|
@@ -17009,8 +17012,6 @@ html.overflow-y-hidden {
|
|
|
17009
17012
|
}
|
|
17010
17013
|
.v-btn-group--tile {
|
|
17011
17014
|
border-radius: 0;
|
|
17012
|
-
}.v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
|
|
17013
|
-
opacity: var(--v-activated-opacity);
|
|
17014
17015
|
}.v-card {
|
|
17015
17016
|
display: block;
|
|
17016
17017
|
overflow: hidden;
|
|
@@ -17301,6 +17302,8 @@ html.overflow-y-hidden {
|
|
|
17301
17302
|
pointer-events: none;
|
|
17302
17303
|
opacity: 0;
|
|
17303
17304
|
transition: opacity 0.2s ease-in-out;
|
|
17305
|
+
}.v-checkbox .v-selection-control {
|
|
17306
|
+
min-height: var(--v-input-control-height);
|
|
17304
17307
|
}.v-carousel {
|
|
17305
17308
|
overflow: hidden;
|
|
17306
17309
|
position: relative;
|
|
@@ -17363,8 +17366,6 @@ html.overflow-y-hidden {
|
|
|
17363
17366
|
flex-direction: column;
|
|
17364
17367
|
height: 100% !important;
|
|
17365
17368
|
width: 50px;
|
|
17366
|
-
}.v-checkbox .v-selection-control {
|
|
17367
|
-
min-height: var(--v-input-control-height);
|
|
17368
17369
|
}.v-chip {
|
|
17369
17370
|
align-items: center;
|
|
17370
17371
|
cursor: default;
|
|
@@ -18777,21 +18778,17 @@ html.overflow-y-hidden {
|
|
|
18777
18778
|
font-size: 12px;
|
|
18778
18779
|
transition-duration: 150ms;
|
|
18779
18780
|
}.v-dialog {
|
|
18780
|
-
|
|
18781
|
-
|
|
18782
|
-
|
|
18783
|
-
.v-dialog.v-overlay--scroll-blocked {
|
|
18784
|
-
margin-inline-end: calc(24px + var(--v-scrollbar-offset));
|
|
18781
|
+
align-items: center;
|
|
18782
|
+
justify-content: center;
|
|
18783
|
+
margin: auto;
|
|
18785
18784
|
}
|
|
18786
18785
|
.v-dialog > .v-overlay__content {
|
|
18787
|
-
max-height: 100
|
|
18788
|
-
width: 100
|
|
18789
|
-
max-width: 100
|
|
18786
|
+
max-height: calc(100% - 48px);
|
|
18787
|
+
width: calc(100% - 48px);
|
|
18788
|
+
max-width: calc(100% - 48px);
|
|
18789
|
+
margin: 24px;
|
|
18790
18790
|
display: flex;
|
|
18791
18791
|
flex-direction: column;
|
|
18792
|
-
top: 50%;
|
|
18793
|
-
left: 50%;
|
|
18794
|
-
transform: translate(-50%, -50%);
|
|
18795
18792
|
}
|
|
18796
18793
|
.v-dialog > .v-overlay__content > .v-card,
|
|
18797
18794
|
.v-dialog > .v-overlay__content > .v-sheet {
|
|
@@ -18817,12 +18814,10 @@ html.overflow-y-hidden {
|
|
|
18817
18814
|
padding: 16px 24px 10px;
|
|
18818
18815
|
}
|
|
18819
18816
|
|
|
18820
|
-
.v-dialog
|
|
18821
|
-
margin: 0;
|
|
18822
|
-
margin-inline-end: 0;
|
|
18817
|
+
.v-dialog--fullscreen {
|
|
18823
18818
|
--v-scrollbar-offset: 0px;
|
|
18824
18819
|
}
|
|
18825
|
-
.v-dialog
|
|
18820
|
+
.v-dialog--fullscreen > .v-overlay__content {
|
|
18826
18821
|
border-radius: 0;
|
|
18827
18822
|
margin: 0;
|
|
18828
18823
|
padding: 0;
|
|
@@ -18833,10 +18828,9 @@ html.overflow-y-hidden {
|
|
|
18833
18828
|
overflow-y: auto;
|
|
18834
18829
|
top: 0;
|
|
18835
18830
|
left: 0;
|
|
18836
|
-
transform: none;
|
|
18837
18831
|
}
|
|
18838
|
-
.v-dialog
|
|
18839
|
-
.v-dialog
|
|
18832
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
|
18833
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-sheet {
|
|
18840
18834
|
min-height: 100%;
|
|
18841
18835
|
min-width: 100%;
|
|
18842
18836
|
border-radius: 0;
|
|
@@ -19615,39 +19609,6 @@ textarea.v-field__input::placeholder {
|
|
|
19615
19609
|
|
|
19616
19610
|
.v-icon--end {
|
|
19617
19611
|
margin-inline-start: 8px;
|
|
19618
|
-
}.v-img {
|
|
19619
|
-
--v-theme-overlay-multiplier: 3;
|
|
19620
|
-
z-index: 0;
|
|
19621
|
-
}
|
|
19622
|
-
.v-img--booting .v-responsive__sizer {
|
|
19623
|
-
transition: none;
|
|
19624
|
-
}
|
|
19625
|
-
|
|
19626
|
-
.v-img__img,
|
|
19627
|
-
.v-img__picture,
|
|
19628
|
-
.v-img__gradient,
|
|
19629
|
-
.v-img__placeholder,
|
|
19630
|
-
.v-img__error {
|
|
19631
|
-
z-index: -1;
|
|
19632
|
-
position: absolute;
|
|
19633
|
-
top: 0;
|
|
19634
|
-
left: 0;
|
|
19635
|
-
width: 100%;
|
|
19636
|
-
height: 100%;
|
|
19637
|
-
}
|
|
19638
|
-
|
|
19639
|
-
.v-img__img--preload {
|
|
19640
|
-
filter: blur(4px);
|
|
19641
|
-
}
|
|
19642
|
-
.v-img__img--contain {
|
|
19643
|
-
object-fit: contain;
|
|
19644
|
-
}
|
|
19645
|
-
.v-img__img--cover {
|
|
19646
|
-
object-fit: cover;
|
|
19647
|
-
}
|
|
19648
|
-
|
|
19649
|
-
.v-img__gradient {
|
|
19650
|
-
background-repeat: no-repeat;
|
|
19651
19612
|
}.v-input {
|
|
19652
19613
|
display: grid;
|
|
19653
19614
|
flex: 1 1 auto;
|
|
@@ -19765,6 +19726,39 @@ textarea.v-field__input::placeholder {
|
|
|
19765
19726
|
max-width: 100%;
|
|
19766
19727
|
position: relative;
|
|
19767
19728
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19729
|
+
}.v-img {
|
|
19730
|
+
--v-theme-overlay-multiplier: 3;
|
|
19731
|
+
z-index: 0;
|
|
19732
|
+
}
|
|
19733
|
+
.v-img--booting .v-responsive__sizer {
|
|
19734
|
+
transition: none;
|
|
19735
|
+
}
|
|
19736
|
+
|
|
19737
|
+
.v-img__img,
|
|
19738
|
+
.v-img__picture,
|
|
19739
|
+
.v-img__gradient,
|
|
19740
|
+
.v-img__placeholder,
|
|
19741
|
+
.v-img__error {
|
|
19742
|
+
z-index: -1;
|
|
19743
|
+
position: absolute;
|
|
19744
|
+
top: 0;
|
|
19745
|
+
left: 0;
|
|
19746
|
+
width: 100%;
|
|
19747
|
+
height: 100%;
|
|
19748
|
+
}
|
|
19749
|
+
|
|
19750
|
+
.v-img__img--preload {
|
|
19751
|
+
filter: blur(4px);
|
|
19752
|
+
}
|
|
19753
|
+
.v-img__img--contain {
|
|
19754
|
+
object-fit: contain;
|
|
19755
|
+
}
|
|
19756
|
+
.v-img__img--cover {
|
|
19757
|
+
object-fit: cover;
|
|
19758
|
+
}
|
|
19759
|
+
|
|
19760
|
+
.v-img__gradient {
|
|
19761
|
+
background-repeat: no-repeat;
|
|
19768
19762
|
}.v-label {
|
|
19769
19763
|
align-items: center;
|
|
19770
19764
|
display: inline-flex;
|
|
@@ -19794,6 +19788,8 @@ textarea.v-field__input::placeholder {
|
|
|
19794
19788
|
|
|
19795
19789
|
.v-layout-item--absolute {
|
|
19796
19790
|
position: absolute;
|
|
19791
|
+
}.v-locale-provider {
|
|
19792
|
+
display: contents;
|
|
19797
19793
|
}.v-list {
|
|
19798
19794
|
overflow: auto;
|
|
19799
19795
|
padding: 8px 0;
|
|
@@ -20277,8 +20273,6 @@ textarea.v-field__input::placeholder {
|
|
|
20277
20273
|
|
|
20278
20274
|
.v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
|
|
20279
20275
|
opacity: 0;
|
|
20280
|
-
}.v-locale-provider {
|
|
20281
|
-
display: contents;
|
|
20282
20276
|
}.v-main {
|
|
20283
20277
|
flex: 1 0 auto;
|
|
20284
20278
|
max-width: 100%;
|
|
@@ -20487,7 +20481,7 @@ html.v-overlay-scroll-blocked {
|
|
|
20487
20481
|
}
|
|
20488
20482
|
|
|
20489
20483
|
.v-overlay--scroll-blocked {
|
|
20490
|
-
|
|
20484
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
20491
20485
|
}.v-pagination__list {
|
|
20492
20486
|
display: inline-flex;
|
|
20493
20487
|
list-style-type: none;
|
package/dist/vuetify.d.ts
CHANGED
|
@@ -12133,7 +12133,6 @@ declare const VCheckbox: {
|
|
|
12133
12133
|
$: vue.ComponentInternalInstance;
|
|
12134
12134
|
$data: {};
|
|
12135
12135
|
$props: Partial<{
|
|
12136
|
-
inline: boolean;
|
|
12137
12136
|
error: boolean;
|
|
12138
12137
|
direction: "horizontal" | "vertical";
|
|
12139
12138
|
disabled: boolean;
|
|
@@ -12152,7 +12151,6 @@ declare const VCheckbox: {
|
|
|
12152
12151
|
valueComparator: typeof deepEqual;
|
|
12153
12152
|
indeterminateIcon: IconValue;
|
|
12154
12153
|
}> & Omit<{
|
|
12155
|
-
inline: boolean;
|
|
12156
12154
|
error: boolean;
|
|
12157
12155
|
direction: "horizontal" | "vertical";
|
|
12158
12156
|
disabled: boolean;
|
|
@@ -12234,7 +12232,7 @@ declare const VCheckbox: {
|
|
|
12234
12232
|
"v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
12235
12233
|
} & {
|
|
12236
12234
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
12237
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "
|
|
12235
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "falseIcon" | "trueIcon" | "valueComparator" | "indeterminateIcon">;
|
|
12238
12236
|
$attrs: {
|
|
12239
12237
|
[x: string]: unknown;
|
|
12240
12238
|
};
|
|
@@ -12249,7 +12247,6 @@ declare const VCheckbox: {
|
|
|
12249
12247
|
$emit: (event: "update:focused", focused: boolean) => void;
|
|
12250
12248
|
$el: any;
|
|
12251
12249
|
$options: vue.ComponentOptionsBase<{
|
|
12252
|
-
inline: boolean;
|
|
12253
12250
|
error: boolean;
|
|
12254
12251
|
direction: "horizontal" | "vertical";
|
|
12255
12252
|
disabled: boolean;
|
|
@@ -12334,7 +12331,6 @@ declare const VCheckbox: {
|
|
|
12334
12331
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
12335
12332
|
'update:focused': (focused: boolean) => boolean;
|
|
12336
12333
|
}, string, {
|
|
12337
|
-
inline: boolean;
|
|
12338
12334
|
error: boolean;
|
|
12339
12335
|
direction: "horizontal" | "vertical";
|
|
12340
12336
|
disabled: boolean;
|
|
@@ -12373,7 +12369,6 @@ declare const VCheckbox: {
|
|
|
12373
12369
|
$nextTick: typeof vue.nextTick;
|
|
12374
12370
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
12375
12371
|
} & {
|
|
12376
|
-
inline: boolean;
|
|
12377
12372
|
error: boolean;
|
|
12378
12373
|
direction: "horizontal" | "vertical";
|
|
12379
12374
|
disabled: boolean;
|
|
@@ -12460,7 +12455,6 @@ declare const VCheckbox: {
|
|
|
12460
12455
|
__isTeleport?: undefined;
|
|
12461
12456
|
__isSuspense?: undefined;
|
|
12462
12457
|
} & vue.ComponentOptionsBase<{
|
|
12463
|
-
inline: boolean;
|
|
12464
12458
|
error: boolean;
|
|
12465
12459
|
direction: "horizontal" | "vertical";
|
|
12466
12460
|
disabled: boolean;
|
|
@@ -12545,7 +12539,6 @@ declare const VCheckbox: {
|
|
|
12545
12539
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
12546
12540
|
'update:focused': (focused: boolean) => boolean;
|
|
12547
12541
|
}, string, {
|
|
12548
|
-
inline: boolean;
|
|
12549
12542
|
error: boolean;
|
|
12550
12543
|
direction: "horizontal" | "vertical";
|
|
12551
12544
|
disabled: boolean;
|
|
@@ -12564,17 +12557,31 @@ declare const VCheckbox: {
|
|
|
12564
12557
|
valueComparator: typeof deepEqual;
|
|
12565
12558
|
indeterminateIcon: IconValue;
|
|
12566
12559
|
}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
12560
|
+
type: StringConstructor;
|
|
12561
|
+
error: BooleanConstructor;
|
|
12562
|
+
id: StringConstructor;
|
|
12563
|
+
name: StringConstructor;
|
|
12564
|
+
color: StringConstructor;
|
|
12565
|
+
value: null;
|
|
12566
|
+
label: StringConstructor;
|
|
12567
|
+
disabled: BooleanConstructor;
|
|
12568
|
+
multiple: {
|
|
12569
|
+
type: vue.PropType<boolean | null>;
|
|
12570
|
+
default: null;
|
|
12571
|
+
};
|
|
12572
|
+
readonly: BooleanConstructor;
|
|
12573
|
+
indeterminate: BooleanConstructor;
|
|
12574
|
+
theme: StringConstructor;
|
|
12567
12575
|
density: {
|
|
12568
12576
|
type: vue.PropType<Density>;
|
|
12569
12577
|
default: string;
|
|
12570
12578
|
validator: (v: any) => boolean;
|
|
12571
12579
|
};
|
|
12572
|
-
|
|
12573
|
-
|
|
12574
|
-
|
|
12575
|
-
|
|
12576
|
-
|
|
12577
|
-
inline: BooleanConstructor;
|
|
12580
|
+
modelValue: null;
|
|
12581
|
+
ripple: {
|
|
12582
|
+
type: BooleanConstructor;
|
|
12583
|
+
default: boolean;
|
|
12584
|
+
};
|
|
12578
12585
|
falseIcon: {
|
|
12579
12586
|
type: vue.PropType<NonNullable<IconValue>>;
|
|
12580
12587
|
default: NonNullable<IconValue>;
|
|
@@ -12583,27 +12590,12 @@ declare const VCheckbox: {
|
|
|
12583
12590
|
type: vue.PropType<NonNullable<IconValue>>;
|
|
12584
12591
|
default: NonNullable<IconValue>;
|
|
12585
12592
|
};
|
|
12586
|
-
ripple: {
|
|
12587
|
-
type: BooleanConstructor;
|
|
12588
|
-
default: boolean;
|
|
12589
|
-
};
|
|
12590
|
-
multiple: {
|
|
12591
|
-
type: vue.PropType<boolean | null>;
|
|
12592
|
-
default: null;
|
|
12593
|
-
};
|
|
12594
|
-
name: StringConstructor;
|
|
12595
|
-
readonly: BooleanConstructor;
|
|
12596
|
-
modelValue: null;
|
|
12597
|
-
type: StringConstructor;
|
|
12598
12593
|
valueComparator: {
|
|
12599
12594
|
type: vue.PropType<typeof deepEqual>;
|
|
12600
12595
|
default: typeof deepEqual;
|
|
12601
12596
|
};
|
|
12602
|
-
label: StringConstructor;
|
|
12603
12597
|
trueValue: null;
|
|
12604
12598
|
falseValue: null;
|
|
12605
|
-
value: null;
|
|
12606
|
-
indeterminate: BooleanConstructor;
|
|
12607
12599
|
indeterminateIcon: {
|
|
12608
12600
|
type: vue.PropType<IconValue>;
|
|
12609
12601
|
default: string;
|
|
@@ -12638,17 +12630,31 @@ declare const VCheckbox: {
|
|
|
12638
12630
|
'onClick:prepend': vue.PropType<EventProp<(...args: any[]) => any>>;
|
|
12639
12631
|
'onClick:append': vue.PropType<EventProp<(...args: any[]) => any>>;
|
|
12640
12632
|
}, vue.ExtractPropTypes<{
|
|
12633
|
+
type: StringConstructor;
|
|
12634
|
+
error: BooleanConstructor;
|
|
12635
|
+
id: StringConstructor;
|
|
12636
|
+
name: StringConstructor;
|
|
12637
|
+
color: StringConstructor;
|
|
12638
|
+
value: null;
|
|
12639
|
+
label: StringConstructor;
|
|
12640
|
+
disabled: BooleanConstructor;
|
|
12641
|
+
multiple: {
|
|
12642
|
+
type: vue.PropType<boolean | null>;
|
|
12643
|
+
default: null;
|
|
12644
|
+
};
|
|
12645
|
+
readonly: BooleanConstructor;
|
|
12646
|
+
indeterminate: BooleanConstructor;
|
|
12647
|
+
theme: StringConstructor;
|
|
12641
12648
|
density: {
|
|
12642
12649
|
type: vue.PropType<Density>;
|
|
12643
12650
|
default: string;
|
|
12644
12651
|
validator: (v: any) => boolean;
|
|
12645
12652
|
};
|
|
12646
|
-
|
|
12647
|
-
|
|
12648
|
-
|
|
12649
|
-
|
|
12650
|
-
|
|
12651
|
-
inline: BooleanConstructor;
|
|
12653
|
+
modelValue: null;
|
|
12654
|
+
ripple: {
|
|
12655
|
+
type: BooleanConstructor;
|
|
12656
|
+
default: boolean;
|
|
12657
|
+
};
|
|
12652
12658
|
falseIcon: {
|
|
12653
12659
|
type: vue.PropType<NonNullable<IconValue>>;
|
|
12654
12660
|
default: NonNullable<IconValue>;
|
|
@@ -12657,27 +12663,12 @@ declare const VCheckbox: {
|
|
|
12657
12663
|
type: vue.PropType<NonNullable<IconValue>>;
|
|
12658
12664
|
default: NonNullable<IconValue>;
|
|
12659
12665
|
};
|
|
12660
|
-
ripple: {
|
|
12661
|
-
type: BooleanConstructor;
|
|
12662
|
-
default: boolean;
|
|
12663
|
-
};
|
|
12664
|
-
multiple: {
|
|
12665
|
-
type: vue.PropType<boolean | null>;
|
|
12666
|
-
default: null;
|
|
12667
|
-
};
|
|
12668
|
-
name: StringConstructor;
|
|
12669
|
-
readonly: BooleanConstructor;
|
|
12670
|
-
modelValue: null;
|
|
12671
|
-
type: StringConstructor;
|
|
12672
12666
|
valueComparator: {
|
|
12673
12667
|
type: vue.PropType<typeof deepEqual>;
|
|
12674
12668
|
default: typeof deepEqual;
|
|
12675
12669
|
};
|
|
12676
|
-
label: StringConstructor;
|
|
12677
12670
|
trueValue: null;
|
|
12678
12671
|
falseValue: null;
|
|
12679
|
-
value: null;
|
|
12680
|
-
indeterminate: BooleanConstructor;
|
|
12681
12672
|
indeterminateIcon: {
|
|
12682
12673
|
type: vue.PropType<IconValue>;
|
|
12683
12674
|
default: string;
|
|
@@ -59505,29 +59496,23 @@ declare module '@vue/runtime-core' {
|
|
|
59505
59496
|
|
|
59506
59497
|
export interface GlobalComponents {
|
|
59507
59498
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
59508
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
59509
59499
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
59510
59500
|
VCol: typeof import('vuetify/components')['VCol']
|
|
59511
59501
|
VRow: typeof import('vuetify/components')['VRow']
|
|
59512
59502
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
59513
59503
|
VHover: typeof import('vuetify/components')['VHover']
|
|
59514
|
-
|
|
59504
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
59515
59505
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
59516
59506
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
59507
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
59517
59508
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
59518
59509
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
59519
|
-
|
|
59510
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
59520
59511
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
59512
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
59521
59513
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
59522
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
59523
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
59524
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
59525
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
59526
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
59527
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
59528
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
59529
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
59530
59514
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
59515
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
59531
59516
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
59532
59517
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
59533
59518
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -59544,13 +59529,22 @@ declare module '@vue/runtime-core' {
|
|
|
59544
59529
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
59545
59530
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
59546
59531
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
59532
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
59533
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
59534
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
59535
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
59536
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
59537
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
59538
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
59547
59539
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
59548
59540
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
59549
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
59550
59541
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
59551
59542
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
59552
59543
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
59553
59544
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
59545
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
59546
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
59547
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
59554
59548
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
59555
59549
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
59556
59550
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
@@ -59562,9 +59556,6 @@ declare module '@vue/runtime-core' {
|
|
|
59562
59556
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
59563
59557
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
59564
59558
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
59565
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
59566
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
59567
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
59568
59559
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
59569
59560
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
59570
59561
|
VChip: typeof import('vuetify/components')['VChip']
|
|
@@ -59573,7 +59564,6 @@ declare module '@vue/runtime-core' {
|
|
|
59573
59564
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
59574
59565
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
59575
59566
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
59576
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
59577
59567
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
59578
59568
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
59579
59569
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
@@ -59604,37 +59594,38 @@ declare module '@vue/runtime-core' {
|
|
|
59604
59594
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
59605
59595
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
59606
59596
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
59607
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
59608
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
59609
59597
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
59598
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
59599
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
59610
59600
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
59611
59601
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
59612
59602
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
59613
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
59614
59603
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
59604
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
59615
59605
|
VRating: typeof import('vuetify/components')['VRating']
|
|
59616
59606
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
59617
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
59618
59607
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
59608
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
59619
59609
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
59620
59610
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
59621
59611
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
59622
59612
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
59623
59613
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
59624
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
59625
59614
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
59626
|
-
|
|
59627
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
59615
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
59628
59616
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
59629
59617
|
VTab: typeof import('vuetify/components')['VTab']
|
|
59618
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
59619
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
59620
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
59621
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
59630
59622
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
59631
59623
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
59632
59624
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
59633
59625
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
59634
59626
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
59635
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
59636
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
59637
59627
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
59638
59628
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
59629
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
59639
59630
|
}
|
|
59640
59631
|
}
|