@vuetify/nightly 3.1.4 → 3.1.5-master-20230210.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 +4 -210
- package/dist/json/attributes.json +24 -24
- package/dist/json/importMap.json +68 -68
- package/dist/json/web-types.json +49 -38
- package/dist/vuetify-labs.css +194 -194
- package/dist/vuetify-labs.d.ts +18 -32
- package/dist/vuetify-labs.esm.js +36 -27
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +35 -26
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +106 -106
- package/dist/vuetify.d.ts +37 -51
- package/dist/vuetify.esm.js +36 -27
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +35 -26
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +32 -31
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +2 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +2 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.mjs +0 -2
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/index.d.ts +1 -7
- package/lib/components/VFileInput/VFileInput.mjs +6 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.ts +2 -0
- package/lib/components/VSelect/VSelect.mjs +2 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VTextField/VTextField.mjs +9 -7
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextField/index.d.ts +13 -25
- package/lib/components/VTextarea/VTextarea.mjs +6 -1
- package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
- package/lib/components/VTextarea/index.d.ts +2 -0
- package/lib/components/index.d.ts +18 -32
- package/lib/composables/proxiedModel.mjs +6 -5
- package/lib/composables/proxiedModel.mjs.map +1 -1
- 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 +19 -19
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.1.
|
|
2
|
+
* Vuetify v3.1.5-master-20230210.0
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -18455,6 +18455,89 @@ html.overflow-y-hidden {
|
|
|
18455
18455
|
}
|
|
18456
18456
|
.v-app-bar:not(.v-toolbar--absolute) {
|
|
18457
18457
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
18458
|
+
}.v-input--density-default {
|
|
18459
|
+
--autocomplete-chips-margin-bottom: 0px;
|
|
18460
|
+
}
|
|
18461
|
+
|
|
18462
|
+
.v-input--density-comfortable {
|
|
18463
|
+
--autocomplete-chips-margin-bottom: 2px;
|
|
18464
|
+
}
|
|
18465
|
+
|
|
18466
|
+
.v-input--density-compact {
|
|
18467
|
+
--autocomplete-chips-margin-bottom: 4px;
|
|
18468
|
+
}
|
|
18469
|
+
|
|
18470
|
+
.v-autocomplete .v-field .v-text-field__prefix,
|
|
18471
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
18472
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
18473
|
+
cursor: text;
|
|
18474
|
+
}
|
|
18475
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
18476
|
+
align-self: flex-start;
|
|
18477
|
+
flex: 1 1;
|
|
18478
|
+
}
|
|
18479
|
+
.v-autocomplete .v-field .v-field__append-inner > .v-icon {
|
|
18480
|
+
margin-inline-start: 4px;
|
|
18481
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18482
|
+
}
|
|
18483
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
18484
|
+
min-width: 0;
|
|
18485
|
+
}
|
|
18486
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
18487
|
+
margin-inline-end: 2px;
|
|
18488
|
+
}
|
|
18489
|
+
.v-autocomplete .v-field--single-line .v-autocomplete__selection-text {
|
|
18490
|
+
overflow: hidden;
|
|
18491
|
+
text-overflow: ellipsis;
|
|
18492
|
+
white-space: nowrap;
|
|
18493
|
+
}
|
|
18494
|
+
|
|
18495
|
+
.v-autocomplete__content {
|
|
18496
|
+
overflow: hidden;
|
|
18497
|
+
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
18498
|
+
border-radius: 4px;
|
|
18499
|
+
}
|
|
18500
|
+
.v-autocomplete__mask {
|
|
18501
|
+
background: rgb(var(--v-theme-on-surface-variant));
|
|
18502
|
+
}
|
|
18503
|
+
.v-autocomplete__selection {
|
|
18504
|
+
display: inline-flex;
|
|
18505
|
+
letter-spacing: inherit;
|
|
18506
|
+
line-height: inherit;
|
|
18507
|
+
max-width: 100%;
|
|
18508
|
+
}
|
|
18509
|
+
.v-autocomplete--active-menu .v-field__append-inner > .v-icon {
|
|
18510
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
18511
|
+
transform: rotate(180deg);
|
|
18512
|
+
}
|
|
18513
|
+
.v-autocomplete--chips .v-autocomplete__selection {
|
|
18514
|
+
margin-top: 2px;
|
|
18515
|
+
margin-bottom: var(--autocomplete-chips-margin-bottom);
|
|
18516
|
+
}
|
|
18517
|
+
.v-autocomplete--chips .v-autocomplete__selection:first-child {
|
|
18518
|
+
margin-inline-start: 0;
|
|
18519
|
+
}
|
|
18520
|
+
.v-autocomplete--single.v-text-field input {
|
|
18521
|
+
flex: 1 1;
|
|
18522
|
+
position: absolute;
|
|
18523
|
+
left: 0;
|
|
18524
|
+
right: 0;
|
|
18525
|
+
width: 100%;
|
|
18526
|
+
padding-inline-start: inherit;
|
|
18527
|
+
padding-inline-end: inherit;
|
|
18528
|
+
}
|
|
18529
|
+
.v-autocomplete--single .v-field--active input {
|
|
18530
|
+
transition: none;
|
|
18531
|
+
}
|
|
18532
|
+
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
18533
|
+
opacity: 0;
|
|
18534
|
+
}
|
|
18535
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection-text {
|
|
18536
|
+
opacity: 0;
|
|
18537
|
+
}
|
|
18538
|
+
.v-autocomplete--selection-slot.v-text-field input {
|
|
18539
|
+
position: relative;
|
|
18540
|
+
padding-inline-start: 0;
|
|
18458
18541
|
}.v-alert {
|
|
18459
18542
|
display: grid;
|
|
18460
18543
|
flex: 1 1;
|
|
@@ -18665,89 +18748,6 @@ html.overflow-y-hidden {
|
|
|
18665
18748
|
text-transform: none;
|
|
18666
18749
|
word-break: normal;
|
|
18667
18750
|
word-wrap: break-word;
|
|
18668
|
-
}.v-input--density-default {
|
|
18669
|
-
--autocomplete-chips-margin-bottom: 0px;
|
|
18670
|
-
}
|
|
18671
|
-
|
|
18672
|
-
.v-input--density-comfortable {
|
|
18673
|
-
--autocomplete-chips-margin-bottom: 2px;
|
|
18674
|
-
}
|
|
18675
|
-
|
|
18676
|
-
.v-input--density-compact {
|
|
18677
|
-
--autocomplete-chips-margin-bottom: 4px;
|
|
18678
|
-
}
|
|
18679
|
-
|
|
18680
|
-
.v-autocomplete .v-field .v-text-field__prefix,
|
|
18681
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
|
18682
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
18683
|
-
cursor: text;
|
|
18684
|
-
}
|
|
18685
|
-
.v-autocomplete .v-field .v-field__input > input {
|
|
18686
|
-
align-self: flex-start;
|
|
18687
|
-
flex: 1 1;
|
|
18688
|
-
}
|
|
18689
|
-
.v-autocomplete .v-field .v-field__append-inner > .v-icon {
|
|
18690
|
-
margin-inline-start: 4px;
|
|
18691
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18692
|
-
}
|
|
18693
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
18694
|
-
min-width: 0;
|
|
18695
|
-
}
|
|
18696
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
18697
|
-
margin-inline-end: 2px;
|
|
18698
|
-
}
|
|
18699
|
-
.v-autocomplete .v-field--single-line .v-autocomplete__selection-text {
|
|
18700
|
-
overflow: hidden;
|
|
18701
|
-
text-overflow: ellipsis;
|
|
18702
|
-
white-space: nowrap;
|
|
18703
|
-
}
|
|
18704
|
-
|
|
18705
|
-
.v-autocomplete__content {
|
|
18706
|
-
overflow: hidden;
|
|
18707
|
-
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
18708
|
-
border-radius: 4px;
|
|
18709
|
-
}
|
|
18710
|
-
.v-autocomplete__mask {
|
|
18711
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
18712
|
-
}
|
|
18713
|
-
.v-autocomplete__selection {
|
|
18714
|
-
display: inline-flex;
|
|
18715
|
-
letter-spacing: inherit;
|
|
18716
|
-
line-height: inherit;
|
|
18717
|
-
max-width: 100%;
|
|
18718
|
-
}
|
|
18719
|
-
.v-autocomplete--active-menu .v-field__append-inner > .v-icon {
|
|
18720
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
18721
|
-
transform: rotate(180deg);
|
|
18722
|
-
}
|
|
18723
|
-
.v-autocomplete--chips .v-autocomplete__selection {
|
|
18724
|
-
margin-top: 2px;
|
|
18725
|
-
margin-bottom: var(--autocomplete-chips-margin-bottom);
|
|
18726
|
-
}
|
|
18727
|
-
.v-autocomplete--chips .v-autocomplete__selection:first-child {
|
|
18728
|
-
margin-inline-start: 0;
|
|
18729
|
-
}
|
|
18730
|
-
.v-autocomplete--single.v-text-field input {
|
|
18731
|
-
flex: 1 1;
|
|
18732
|
-
position: absolute;
|
|
18733
|
-
left: 0;
|
|
18734
|
-
right: 0;
|
|
18735
|
-
width: 100%;
|
|
18736
|
-
padding-inline-start: inherit;
|
|
18737
|
-
padding-inline-end: inherit;
|
|
18738
|
-
}
|
|
18739
|
-
.v-autocomplete--single .v-field--active input {
|
|
18740
|
-
transition: none;
|
|
18741
|
-
}
|
|
18742
|
-
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
18743
|
-
opacity: 0;
|
|
18744
|
-
}
|
|
18745
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection-text {
|
|
18746
|
-
opacity: 0;
|
|
18747
|
-
}
|
|
18748
|
-
.v-autocomplete--selection-slot.v-text-field input {
|
|
18749
|
-
position: relative;
|
|
18750
|
-
padding-inline-start: 0;
|
|
18751
18751
|
}.v-avatar {
|
|
18752
18752
|
flex: none;
|
|
18753
18753
|
align-items: center;
|
|
@@ -23660,6 +23660,28 @@ html.v-overlay-scroll-blocked {
|
|
|
23660
23660
|
opacity: 0;
|
|
23661
23661
|
position: absolute;
|
|
23662
23662
|
width: 0;
|
|
23663
|
+
}.v-responsive {
|
|
23664
|
+
display: flex;
|
|
23665
|
+
flex: 1 0 auto;
|
|
23666
|
+
max-height: 100%;
|
|
23667
|
+
max-width: 100%;
|
|
23668
|
+
overflow: hidden;
|
|
23669
|
+
position: relative;
|
|
23670
|
+
}
|
|
23671
|
+
|
|
23672
|
+
.v-responsive__content {
|
|
23673
|
+
flex: 1 0 0px;
|
|
23674
|
+
max-width: 100%;
|
|
23675
|
+
}
|
|
23676
|
+
|
|
23677
|
+
.v-responsive__sizer ~ .v-responsive__content {
|
|
23678
|
+
margin-inline-start: -100%;
|
|
23679
|
+
}
|
|
23680
|
+
|
|
23681
|
+
.v-responsive__sizer {
|
|
23682
|
+
flex: 1 0 0px;
|
|
23683
|
+
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23684
|
+
pointer-events: none;
|
|
23663
23685
|
}.v-input--density-default {
|
|
23664
23686
|
--select-chips-margin-bottom: 0px;
|
|
23665
23687
|
}
|
|
@@ -23722,28 +23744,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23722
23744
|
}
|
|
23723
23745
|
.v-select--selected .v-field .v-field__input > input {
|
|
23724
23746
|
opacity: 0;
|
|
23725
|
-
}.v-responsive {
|
|
23726
|
-
display: flex;
|
|
23727
|
-
flex: 1 0 auto;
|
|
23728
|
-
max-height: 100%;
|
|
23729
|
-
max-width: 100%;
|
|
23730
|
-
overflow: hidden;
|
|
23731
|
-
position: relative;
|
|
23732
|
-
}
|
|
23733
|
-
|
|
23734
|
-
.v-responsive__content {
|
|
23735
|
-
flex: 1 0 0px;
|
|
23736
|
-
max-width: 100%;
|
|
23737
|
-
}
|
|
23738
|
-
|
|
23739
|
-
.v-responsive__sizer ~ .v-responsive__content {
|
|
23740
|
-
margin-inline-start: -100%;
|
|
23741
|
-
}
|
|
23742
|
-
|
|
23743
|
-
.v-responsive__sizer {
|
|
23744
|
-
flex: 1 0 0px;
|
|
23745
|
-
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23746
|
-
pointer-events: none;
|
|
23747
23747
|
}.v-selection-control {
|
|
23748
23748
|
align-items: center;
|
|
23749
23749
|
contain: layout;
|
package/dist/vuetify.d.ts
CHANGED
|
@@ -1554,7 +1554,6 @@ declare const VField: {
|
|
|
1554
1554
|
id: StringConstructor;
|
|
1555
1555
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1556
1556
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1557
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1558
1557
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1559
1558
|
$attrs: {
|
|
1560
1559
|
[x: string]: unknown;
|
|
@@ -1567,7 +1566,7 @@ declare const VField: {
|
|
|
1567
1566
|
}>;
|
|
1568
1567
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1569
1568
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1570
|
-
$emit: (
|
|
1569
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
1571
1570
|
$el: any;
|
|
1572
1571
|
$options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
1573
1572
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
@@ -1601,11 +1600,9 @@ declare const VField: {
|
|
|
1601
1600
|
id: StringConstructor;
|
|
1602
1601
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1603
1602
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1604
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1605
1603
|
}, {
|
|
1606
1604
|
controlRef: Ref<HTMLElement | undefined>;
|
|
1607
1605
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
1608
|
-
'click:control': (e: MouseEvent) => boolean;
|
|
1609
1606
|
'update:focused': (focused: boolean) => boolean;
|
|
1610
1607
|
'update:modelValue': (val: any) => boolean;
|
|
1611
1608
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
@@ -1672,7 +1669,6 @@ declare const VField: {
|
|
|
1672
1669
|
id: StringConstructor;
|
|
1673
1670
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1674
1671
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1675
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1676
1672
|
} & vue.ShallowUnwrapRef<{
|
|
1677
1673
|
controlRef: Ref<HTMLElement | undefined>;
|
|
1678
1674
|
}> & {} & vue.ComponentCustomProperties;
|
|
@@ -1711,11 +1707,9 @@ declare const VField: {
|
|
|
1711
1707
|
id: StringConstructor;
|
|
1712
1708
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1713
1709
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1714
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1715
1710
|
}, {
|
|
1716
1711
|
controlRef: Ref<HTMLElement | undefined>;
|
|
1717
1712
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
1718
|
-
'click:control': (e: MouseEvent) => boolean;
|
|
1719
1713
|
'update:focused': (focused: boolean) => boolean;
|
|
1720
1714
|
'update:modelValue': (val: any) => boolean;
|
|
1721
1715
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
@@ -10378,6 +10372,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
10378
10372
|
};
|
|
10379
10373
|
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
10380
10374
|
'click:control': (e: MouseEvent) => true;
|
|
10375
|
+
'mousedown:control': (e: MouseEvent) => true;
|
|
10381
10376
|
'update:modelValue': (files: File[]) => true;
|
|
10382
10377
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
10383
10378
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
@@ -10477,6 +10472,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
10477
10472
|
}>> & {
|
|
10478
10473
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
|
10479
10474
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
10475
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
10480
10476
|
}, {
|
|
10481
10477
|
reverse: boolean;
|
|
10482
10478
|
error: boolean;
|
|
@@ -20989,6 +20985,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20989
20985
|
};
|
|
20990
20986
|
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
20991
20987
|
'click:control': (e: MouseEvent) => true;
|
|
20988
|
+
'mousedown:control': (e: MouseEvent) => true;
|
|
20992
20989
|
'update:focused': (focused: boolean) => true;
|
|
20993
20990
|
'update:modelValue': (val: string) => true;
|
|
20994
20991
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -21082,6 +21079,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
21082
21079
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
21083
21080
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21084
21081
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21082
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21085
21083
|
}, {
|
|
21086
21084
|
reverse: boolean;
|
|
21087
21085
|
error: boolean;
|
|
@@ -21223,7 +21221,7 @@ declare const VTextField: {
|
|
|
21223
21221
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
21224
21222
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21225
21223
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21226
|
-
"
|
|
21224
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21227
21225
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter">;
|
|
21228
21226
|
$attrs: {
|
|
21229
21227
|
[x: string]: unknown;
|
|
@@ -21236,7 +21234,7 @@ declare const VTextField: {
|
|
|
21236
21234
|
}>;
|
|
21237
21235
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
21238
21236
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
21239
|
-
$emit: ((event: "update:modelValue", val: string) => void) & ((event: "
|
|
21237
|
+
$emit: ((event: "update:modelValue", val: string) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void);
|
|
21240
21238
|
$el: any;
|
|
21241
21239
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21242
21240
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
@@ -21322,7 +21320,7 @@ declare const VTextField: {
|
|
|
21322
21320
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
21323
21321
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21324
21322
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21325
|
-
"
|
|
21323
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21326
21324
|
}, Omit<Omit<{
|
|
21327
21325
|
$: vue.ComponentInternalInstance;
|
|
21328
21326
|
$data: {};
|
|
@@ -21591,7 +21589,6 @@ declare const VTextField: {
|
|
|
21591
21589
|
id: StringConstructor;
|
|
21592
21590
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21593
21591
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21594
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21595
21592
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
21596
21593
|
$attrs: {
|
|
21597
21594
|
[x: string]: unknown;
|
|
@@ -21604,7 +21601,7 @@ declare const VTextField: {
|
|
|
21604
21601
|
}>;
|
|
21605
21602
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
21606
21603
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
21607
|
-
$emit: (
|
|
21604
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
21608
21605
|
$el: any;
|
|
21609
21606
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21610
21607
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
@@ -21638,11 +21635,9 @@ declare const VTextField: {
|
|
|
21638
21635
|
id: StringConstructor;
|
|
21639
21636
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21640
21637
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21641
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21642
21638
|
}, {
|
|
21643
21639
|
controlRef: vue.Ref<HTMLElement | undefined>;
|
|
21644
21640
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
21645
|
-
'click:control': (e: MouseEvent) => boolean;
|
|
21646
21641
|
'update:focused': (focused: boolean) => boolean;
|
|
21647
21642
|
'update:modelValue': (val: any) => boolean;
|
|
21648
21643
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
@@ -21709,7 +21704,6 @@ declare const VTextField: {
|
|
|
21709
21704
|
id: StringConstructor;
|
|
21710
21705
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21711
21706
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21712
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21713
21707
|
} & vue.ShallowUnwrapRef<{
|
|
21714
21708
|
controlRef: vue.Ref<HTMLElement | undefined>;
|
|
21715
21709
|
}> & {} & vue.ComponentCustomProperties & {
|
|
@@ -21741,9 +21735,9 @@ declare const VTextField: {
|
|
|
21741
21735
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21742
21736
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21743
21737
|
};
|
|
21744
|
-
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" |
|
|
21738
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
21745
21739
|
'click:control': (e: MouseEvent) => boolean;
|
|
21746
|
-
'
|
|
21740
|
+
'mousedown:control': (e: MouseEvent) => boolean;
|
|
21747
21741
|
'update:focused': (focused: boolean) => boolean;
|
|
21748
21742
|
'update:modelValue': (val: string) => boolean;
|
|
21749
21743
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
@@ -21874,7 +21868,7 @@ declare const VTextField: {
|
|
|
21874
21868
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
21875
21869
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21876
21870
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21877
|
-
"
|
|
21871
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21878
21872
|
} & vue.ShallowUnwrapRef<Omit<Omit<{
|
|
21879
21873
|
$: vue.ComponentInternalInstance;
|
|
21880
21874
|
$data: {};
|
|
@@ -22143,7 +22137,6 @@ declare const VTextField: {
|
|
|
22143
22137
|
id: StringConstructor;
|
|
22144
22138
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22145
22139
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22146
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22147
22140
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
22148
22141
|
$attrs: {
|
|
22149
22142
|
[x: string]: unknown;
|
|
@@ -22156,7 +22149,7 @@ declare const VTextField: {
|
|
|
22156
22149
|
}>;
|
|
22157
22150
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
22158
22151
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
22159
|
-
$emit: (
|
|
22152
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
22160
22153
|
$el: any;
|
|
22161
22154
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
22162
22155
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
@@ -22190,11 +22183,9 @@ declare const VTextField: {
|
|
|
22190
22183
|
id: StringConstructor;
|
|
22191
22184
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22192
22185
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22193
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22194
22186
|
}, {
|
|
22195
22187
|
controlRef: vue.Ref<HTMLElement | undefined>;
|
|
22196
22188
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22197
|
-
'click:control': (e: MouseEvent) => boolean;
|
|
22198
22189
|
'update:focused': (focused: boolean) => boolean;
|
|
22199
22190
|
'update:modelValue': (val: any) => boolean;
|
|
22200
22191
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
@@ -22261,7 +22252,6 @@ declare const VTextField: {
|
|
|
22261
22252
|
id: StringConstructor;
|
|
22262
22253
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22263
22254
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22264
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22265
22255
|
} & vue.ShallowUnwrapRef<{
|
|
22266
22256
|
controlRef: vue.Ref<HTMLElement | undefined>;
|
|
22267
22257
|
}> & {} & vue.ComponentCustomProperties & {
|
|
@@ -22293,7 +22283,7 @@ declare const VTextField: {
|
|
|
22293
22283
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22294
22284
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22295
22285
|
};
|
|
22296
|
-
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" |
|
|
22286
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
22297
22287
|
__isFragment?: undefined;
|
|
22298
22288
|
__isTeleport?: undefined;
|
|
22299
22289
|
__isSuspense?: undefined;
|
|
@@ -22381,7 +22371,7 @@ declare const VTextField: {
|
|
|
22381
22371
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
22382
22372
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22383
22373
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22384
|
-
"
|
|
22374
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22385
22375
|
}, Omit<Omit<{
|
|
22386
22376
|
$: vue.ComponentInternalInstance;
|
|
22387
22377
|
$data: {};
|
|
@@ -22650,7 +22640,6 @@ declare const VTextField: {
|
|
|
22650
22640
|
id: StringConstructor;
|
|
22651
22641
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22652
22642
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22653
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22654
22643
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
22655
22644
|
$attrs: {
|
|
22656
22645
|
[x: string]: unknown;
|
|
@@ -22663,7 +22652,7 @@ declare const VTextField: {
|
|
|
22663
22652
|
}>;
|
|
22664
22653
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
22665
22654
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
22666
|
-
$emit: (
|
|
22655
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
22667
22656
|
$el: any;
|
|
22668
22657
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
22669
22658
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
@@ -22697,11 +22686,9 @@ declare const VTextField: {
|
|
|
22697
22686
|
id: StringConstructor;
|
|
22698
22687
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22699
22688
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22700
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22701
22689
|
}, {
|
|
22702
22690
|
controlRef: vue.Ref<HTMLElement | undefined>;
|
|
22703
22691
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22704
|
-
'click:control': (e: MouseEvent) => boolean;
|
|
22705
22692
|
'update:focused': (focused: boolean) => boolean;
|
|
22706
22693
|
'update:modelValue': (val: any) => boolean;
|
|
22707
22694
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
@@ -22768,7 +22755,6 @@ declare const VTextField: {
|
|
|
22768
22755
|
id: StringConstructor;
|
|
22769
22756
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22770
22757
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22771
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22772
22758
|
} & vue.ShallowUnwrapRef<{
|
|
22773
22759
|
controlRef: vue.Ref<HTMLElement | undefined>;
|
|
22774
22760
|
}> & {} & vue.ComponentCustomProperties & {
|
|
@@ -22800,9 +22786,9 @@ declare const VTextField: {
|
|
|
22800
22786
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22801
22787
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22802
22788
|
};
|
|
22803
|
-
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" |
|
|
22789
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22804
22790
|
'click:control': (e: MouseEvent) => boolean;
|
|
22805
|
-
'
|
|
22791
|
+
'mousedown:control': (e: MouseEvent) => boolean;
|
|
22806
22792
|
'update:focused': (focused: boolean) => boolean;
|
|
22807
22793
|
'update:modelValue': (val: string) => boolean;
|
|
22808
22794
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">, string, {
|
|
@@ -26169,22 +26155,22 @@ declare module '@vue/runtime-core' {
|
|
|
26169
26155
|
}
|
|
26170
26156
|
|
|
26171
26157
|
export interface GlobalComponents {
|
|
26172
|
-
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
26173
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
26174
26158
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
26175
26159
|
VCol: typeof import('vuetify/components')['VCol']
|
|
26176
26160
|
VRow: typeof import('vuetify/components')['VRow']
|
|
26177
26161
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
26178
26162
|
VHover: typeof import('vuetify/components')['VHover']
|
|
26179
|
-
|
|
26180
|
-
|
|
26163
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
26164
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
26181
26165
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
26182
26166
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
26183
26167
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
26168
|
+
VLayout: typeof import('vuetify/components')['VLayout']
|
|
26169
|
+
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
26184
26170
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
26185
26171
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
26186
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
26187
26172
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
26173
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
26188
26174
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
26189
26175
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
26190
26176
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
@@ -26204,21 +26190,21 @@ declare module '@vue/runtime-core' {
|
|
|
26204
26190
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
26205
26191
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
26206
26192
|
VApp: typeof import('vuetify/components')['VApp']
|
|
26207
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
26208
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
26209
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
26210
26193
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
26211
26194
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
26212
26195
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
26196
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
26197
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
26198
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
26213
26199
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
26214
26200
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
26215
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
26216
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
26217
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
26218
26201
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
26219
26202
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
26220
26203
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
26221
26204
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
26205
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
26206
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
26207
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
26222
26208
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
26223
26209
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
26224
26210
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
@@ -26228,15 +26214,15 @@ declare module '@vue/runtime-core' {
|
|
|
26228
26214
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
26229
26215
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
26230
26216
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
26217
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
26231
26218
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
26232
26219
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
26233
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
26234
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
26235
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
26236
26220
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
26237
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
26238
26221
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
26222
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
26223
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
26239
26224
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
26225
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
26240
26226
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
26241
26227
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
26242
26228
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
@@ -26246,8 +26232,8 @@ declare module '@vue/runtime-core' {
|
|
|
26246
26232
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
26247
26233
|
VField: typeof import('vuetify/components')['VField']
|
|
26248
26234
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
26249
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
26250
26235
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
26236
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
26251
26237
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
26252
26238
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
26253
26239
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
@@ -26257,8 +26243,8 @@ declare module '@vue/runtime-core' {
|
|
|
26257
26243
|
VInput: typeof import('vuetify/components')['VInput']
|
|
26258
26244
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
26259
26245
|
VItem: typeof import('vuetify/components')['VItem']
|
|
26260
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
26261
26246
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
26247
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
26262
26248
|
VList: typeof import('vuetify/components')['VList']
|
|
26263
26249
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
26264
26250
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -26282,14 +26268,14 @@ declare module '@vue/runtime-core' {
|
|
|
26282
26268
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
26283
26269
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
26284
26270
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
26271
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
26285
26272
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
26286
26273
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
26287
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
26288
26274
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
26289
26275
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
26290
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26291
26276
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
26292
26277
|
VTab: typeof import('vuetify/components')['VTab']
|
|
26278
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26293
26279
|
VTable: typeof import('vuetify/components')['VTable']
|
|
26294
26280
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
26295
26281
|
VTextField: typeof import('vuetify/components')['VTextField']
|