@vuetify/nightly 3.0.2 → 3.0.4-next-20221130.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 +7 -2
- package/dist/json/importMap.json +86 -86
- package/dist/vuetify.css +118 -124
- package/dist/vuetify.d.ts +391 -200
- package/dist/vuetify.esm.js +45 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +45 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +11 -11
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -1
- package/lib/components/VAppBar/VAppBar.mjs +2 -2
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +275 -62
- package/lib/components/VAutocomplete/index.d.ts +22 -22
- package/lib/components/VChip/index.d.ts +1 -1
- package/lib/components/VChipGroup/index.d.ts +1 -1
- package/lib/components/VCombobox/index.d.ts +22 -22
- package/lib/components/VExpansionPanel/index.d.ts +1 -1
- package/lib/components/VField/index.d.ts +6 -6
- package/lib/components/VFileInput/index.d.ts +2 -2
- package/lib/components/VFooter/VFooter.mjs +1 -1
- package/lib/components/VFooter/VFooter.mjs.map +1 -1
- package/lib/components/VLazy/VLazy.mjs +2 -1
- package/lib/components/VLazy/VLazy.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VOverlay/locationStrategies.mjs +3 -1
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VPagination/index.d.ts +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +1 -1
- package/lib/components/VProgressLinear/_variables.scss +1 -1
- package/lib/components/VSelect/index.d.ts +22 -22
- package/lib/components/VSelectionControl/index.d.ts +6 -6
- package/lib/components/VSnackbar/index.d.ts +4 -4
- package/lib/components/VTabs/VTab.css +1 -3
- package/lib/components/VTabs/VTab.sass +1 -4
- package/lib/components/VTabs/VTabs.css +0 -4
- package/lib/components/VTabs/VTabs.sass +0 -5
- package/lib/components/VTextField/index.d.ts +18 -18
- package/lib/components/VTextarea/index.d.ts +1 -1
- package/lib/components/VToolbar/VToolbar.mjs +32 -22
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VToolbar/index.d.ts +9 -8
- package/lib/components/index.d.ts +368 -177
- package/lib/components/transitions/dialog-transition.mjs +2 -2
- package/lib/components/transitions/dialog-transition.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 +23 -23
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@ $progress-linear-stripe-gradient: linear-gradient(
|
|
|
18
18
|
transparent 0,
|
|
19
19
|
transparent
|
|
20
20
|
) !default;
|
|
21
|
-
$progress-linear-
|
|
21
|
+
$progress-linear-indeterminate-animation-duration: 2.2s !default;
|
|
22
22
|
$progress-linear-stream-animation: stream .25s infinite linear !default;
|
|
23
23
|
$progress-linear-striped-animation: progress-linear-stripes 1s infinite linear !default;
|
|
24
24
|
$progress-linear-striped-size: var(--v-progress-linear-height) !default;
|
|
@@ -220,15 +220,15 @@ declare const VSelect: {
|
|
|
220
220
|
default: string;
|
|
221
221
|
validator: (v: any) => boolean;
|
|
222
222
|
};
|
|
223
|
+
modelValue: {
|
|
224
|
+
type: PropType<any>;
|
|
225
|
+
default: any;
|
|
226
|
+
};
|
|
223
227
|
variant: {
|
|
224
228
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
225
229
|
default: string;
|
|
226
230
|
validator: (v: any) => boolean;
|
|
227
231
|
};
|
|
228
|
-
modelValue: {
|
|
229
|
-
type: PropType<any>;
|
|
230
|
-
default: any;
|
|
231
|
-
};
|
|
232
232
|
bgColor: StringConstructor;
|
|
233
233
|
prependIcon: PropType<IconValue>;
|
|
234
234
|
appendIcon: PropType<IconValue>;
|
|
@@ -486,7 +486,7 @@ declare const VSelect: {
|
|
|
486
486
|
default: string;
|
|
487
487
|
};
|
|
488
488
|
openOnClear: BooleanConstructor;
|
|
489
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
489
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
490
490
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
491
491
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
|
|
492
492
|
$attrs: {
|
|
@@ -562,15 +562,15 @@ declare const VSelect: {
|
|
|
562
562
|
default: string;
|
|
563
563
|
validator: (v: any) => boolean;
|
|
564
564
|
};
|
|
565
|
+
modelValue: {
|
|
566
|
+
type: PropType<any>;
|
|
567
|
+
default: any;
|
|
568
|
+
};
|
|
565
569
|
variant: {
|
|
566
570
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
567
571
|
default: string;
|
|
568
572
|
validator: (v: any) => boolean;
|
|
569
573
|
};
|
|
570
|
-
modelValue: {
|
|
571
|
-
type: PropType<any>;
|
|
572
|
-
default: any;
|
|
573
|
-
};
|
|
574
574
|
bgColor: StringConstructor;
|
|
575
575
|
prependIcon: PropType<IconValue>;
|
|
576
576
|
appendIcon: PropType<IconValue>;
|
|
@@ -828,7 +828,7 @@ declare const VSelect: {
|
|
|
828
828
|
default: string;
|
|
829
829
|
};
|
|
830
830
|
openOnClear: BooleanConstructor;
|
|
831
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
831
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
832
832
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
833
833
|
}, {
|
|
834
834
|
menu: vue.Ref<boolean> & {
|
|
@@ -838,7 +838,7 @@ declare const VSelect: {
|
|
|
838
838
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
839
839
|
'update:modelValue': (val: any) => boolean;
|
|
840
840
|
'update:menu': (val: boolean) => boolean;
|
|
841
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
841
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
842
842
|
reverse: boolean;
|
|
843
843
|
type: string;
|
|
844
844
|
error: boolean;
|
|
@@ -964,15 +964,15 @@ declare const VSelect: {
|
|
|
964
964
|
default: string;
|
|
965
965
|
validator: (v: any) => boolean;
|
|
966
966
|
};
|
|
967
|
+
modelValue: {
|
|
968
|
+
type: PropType<any>;
|
|
969
|
+
default: any;
|
|
970
|
+
};
|
|
967
971
|
variant: {
|
|
968
972
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
969
973
|
default: string;
|
|
970
974
|
validator: (v: any) => boolean;
|
|
971
975
|
};
|
|
972
|
-
modelValue: {
|
|
973
|
-
type: PropType<any>;
|
|
974
|
-
default: any;
|
|
975
|
-
};
|
|
976
976
|
bgColor: StringConstructor;
|
|
977
977
|
prependIcon: PropType<IconValue>;
|
|
978
978
|
appendIcon: PropType<IconValue>;
|
|
@@ -1230,7 +1230,7 @@ declare const VSelect: {
|
|
|
1230
1230
|
default: string;
|
|
1231
1231
|
};
|
|
1232
1232
|
openOnClear: BooleanConstructor;
|
|
1233
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
1233
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
1234
1234
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
1235
1235
|
} & vue.ShallowUnwrapRef<{
|
|
1236
1236
|
menu: vue.Ref<boolean> & {
|
|
@@ -1301,15 +1301,15 @@ declare const VSelect: {
|
|
|
1301
1301
|
default: string;
|
|
1302
1302
|
validator: (v: any) => boolean;
|
|
1303
1303
|
};
|
|
1304
|
+
modelValue: {
|
|
1305
|
+
type: PropType<any>;
|
|
1306
|
+
default: any;
|
|
1307
|
+
};
|
|
1304
1308
|
variant: {
|
|
1305
1309
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
1306
1310
|
default: string;
|
|
1307
1311
|
validator: (v: any) => boolean;
|
|
1308
1312
|
};
|
|
1309
|
-
modelValue: {
|
|
1310
|
-
type: PropType<any>;
|
|
1311
|
-
default: any;
|
|
1312
|
-
};
|
|
1313
1313
|
bgColor: StringConstructor;
|
|
1314
1314
|
prependIcon: PropType<IconValue>;
|
|
1315
1315
|
appendIcon: PropType<IconValue>;
|
|
@@ -1567,7 +1567,7 @@ declare const VSelect: {
|
|
|
1567
1567
|
default: string;
|
|
1568
1568
|
};
|
|
1569
1569
|
openOnClear: BooleanConstructor;
|
|
1570
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
1570
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
1571
1571
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
1572
1572
|
}, {
|
|
1573
1573
|
menu: vue.Ref<boolean> & {
|
|
@@ -1577,7 +1577,7 @@ declare const VSelect: {
|
|
|
1577
1577
|
} & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
1578
1578
|
'update:modelValue': (val: any) => boolean;
|
|
1579
1579
|
'update:menu': (val: boolean) => boolean;
|
|
1580
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "
|
|
1580
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "update:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
1581
1581
|
reverse: boolean;
|
|
1582
1582
|
type: string;
|
|
1583
1583
|
error: boolean;
|
|
@@ -65,7 +65,7 @@ declare const VSelectionControl: {
|
|
|
65
65
|
trueValue: null;
|
|
66
66
|
falseValue: null;
|
|
67
67
|
value: null;
|
|
68
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
68
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "inline" | "error" | "disabled" | "multiple" | "readonly" | "density" | "ripple" | "valueComparator">;
|
|
69
69
|
$attrs: {
|
|
70
70
|
[x: string]: unknown;
|
|
71
71
|
};
|
|
@@ -113,12 +113,12 @@ declare const VSelectionControl: {
|
|
|
113
113
|
trueValue: null;
|
|
114
114
|
falseValue: null;
|
|
115
115
|
value: null;
|
|
116
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
116
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
117
117
|
isFocused: Ref<boolean>;
|
|
118
118
|
input: Ref<HTMLInputElement | undefined>;
|
|
119
119
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
120
120
|
'update:modelValue': (val: any) => boolean;
|
|
121
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
121
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
122
122
|
inline: boolean;
|
|
123
123
|
error: boolean;
|
|
124
124
|
disabled: boolean;
|
|
@@ -181,7 +181,7 @@ declare const VSelectionControl: {
|
|
|
181
181
|
trueValue: null;
|
|
182
182
|
falseValue: null;
|
|
183
183
|
value: null;
|
|
184
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
184
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>> & vue.ShallowUnwrapRef<{
|
|
185
185
|
isFocused: Ref<boolean>;
|
|
186
186
|
input: Ref<HTMLInputElement | undefined>;
|
|
187
187
|
}> & {} & vue.ComponentCustomProperties;
|
|
@@ -222,12 +222,12 @@ declare const VSelectionControl: {
|
|
|
222
222
|
trueValue: null;
|
|
223
223
|
falseValue: null;
|
|
224
224
|
value: null;
|
|
225
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
225
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:input">>>, {
|
|
226
226
|
isFocused: Ref<boolean>;
|
|
227
227
|
input: Ref<HTMLInputElement | undefined>;
|
|
228
228
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
229
229
|
'update:modelValue': (val: any) => boolean;
|
|
230
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
230
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:input">, string, {
|
|
231
231
|
inline: boolean;
|
|
232
232
|
error: boolean;
|
|
233
233
|
disabled: boolean;
|
|
@@ -89,8 +89,8 @@ declare const VSnackbar: {
|
|
|
89
89
|
timeout: string | number;
|
|
90
90
|
vertical: boolean;
|
|
91
91
|
rounded: string | number | boolean;
|
|
92
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
93
92
|
modelValue: boolean;
|
|
93
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
94
94
|
activatorProps: Record<string, any>;
|
|
95
95
|
openOnClick: boolean;
|
|
96
96
|
openOnHover: boolean;
|
|
@@ -195,7 +195,7 @@ declare const VSnackbar: {
|
|
|
195
195
|
vertical: BooleanConstructor;
|
|
196
196
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
|
|
197
197
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
198
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "
|
|
198
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "modelValue" | "variant" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "closeOnBack" | "contained" | "multiLine">;
|
|
199
199
|
$attrs: {
|
|
200
200
|
[x: string]: unknown;
|
|
201
201
|
};
|
|
@@ -688,8 +688,8 @@ declare const VSnackbar: {
|
|
|
688
688
|
timeout: string | number;
|
|
689
689
|
vertical: boolean;
|
|
690
690
|
rounded: string | number | boolean;
|
|
691
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
692
691
|
modelValue: boolean;
|
|
692
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
693
693
|
activatorProps: Record<string, any>;
|
|
694
694
|
openOnClick: boolean;
|
|
695
695
|
openOnHover: boolean;
|
|
@@ -1668,8 +1668,8 @@ declare const VSnackbar: {
|
|
|
1668
1668
|
timeout: string | number;
|
|
1669
1669
|
vertical: boolean;
|
|
1670
1670
|
rounded: string | number | boolean;
|
|
1671
|
-
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
1672
1671
|
modelValue: boolean;
|
|
1672
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
1673
1673
|
activatorProps: Record<string, any>;
|
|
1674
1674
|
openOnClick: boolean;
|
|
1675
1675
|
openOnHover: boolean;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
.v-tab {
|
|
2
|
+
--v-btn-height: var(--v-tabs-height);
|
|
2
3
|
position: relative;
|
|
3
4
|
min-width: 90px;
|
|
4
5
|
}
|
|
5
6
|
.v-slide-group--horizontal .v-tab {
|
|
6
7
|
max-width: 360px;
|
|
7
8
|
}
|
|
8
|
-
.v-tab.v-tab.v-tab {
|
|
9
|
-
height: var(--v-tabs-height);
|
|
10
|
-
}
|
|
11
9
|
.v-slide-group--vertical .v-tab {
|
|
12
10
|
justify-content: start;
|
|
13
11
|
}
|
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
@use './variables' as *
|
|
2
2
|
|
|
3
3
|
.v-tab
|
|
4
|
+
--v-btn-height: var(--v-tabs-height)
|
|
4
5
|
position: relative
|
|
5
6
|
min-width: $tab-min-width
|
|
6
7
|
|
|
7
8
|
.v-slide-group--horizontal &
|
|
8
9
|
max-width: $tab-max-width
|
|
9
10
|
|
|
10
|
-
// override density specificity
|
|
11
|
-
&.v-tab.v-tab
|
|
12
|
-
height: var(--v-tabs-height)
|
|
13
|
-
|
|
14
11
|
.v-slide-group--vertical &
|
|
15
12
|
justify-content: start
|
|
16
13
|
|
|
@@ -504,7 +504,7 @@ declare const VTextField: {
|
|
|
504
504
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
505
505
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
506
506
|
};
|
|
507
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
507
|
+
}, "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}`> & Omit<Omit<{
|
|
508
508
|
$: vue.ComponentInternalInstance;
|
|
509
509
|
$data: {};
|
|
510
510
|
$props: Partial<{
|
|
@@ -550,7 +550,7 @@ declare const VTextField: {
|
|
|
550
550
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
551
551
|
focused: BooleanConstructor;
|
|
552
552
|
id: StringConstructor;
|
|
553
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
553
|
+
}, "$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">>> & {
|
|
554
554
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
555
555
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
556
556
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -597,7 +597,7 @@ declare const VTextField: {
|
|
|
597
597
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
598
598
|
focused: BooleanConstructor;
|
|
599
599
|
id: StringConstructor;
|
|
600
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
600
|
+
}, "$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">>> & {
|
|
601
601
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
602
602
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
603
603
|
}, {
|
|
@@ -606,7 +606,7 @@ declare const VTextField: {
|
|
|
606
606
|
'click:control': (e: MouseEvent) => boolean;
|
|
607
607
|
'update:focused': (focused: boolean) => boolean;
|
|
608
608
|
'update:modelValue': (val: any) => boolean;
|
|
609
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
609
|
+
}, "$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, {
|
|
610
610
|
reverse: boolean;
|
|
611
611
|
error: boolean;
|
|
612
612
|
active: boolean;
|
|
@@ -669,7 +669,7 @@ declare const VTextField: {
|
|
|
669
669
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
670
670
|
focused: BooleanConstructor;
|
|
671
671
|
id: StringConstructor;
|
|
672
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
672
|
+
}, "$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">>> & {
|
|
673
673
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
674
674
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
675
675
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -703,7 +703,7 @@ declare const VTextField: {
|
|
|
703
703
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
704
704
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
705
705
|
};
|
|
706
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
706
|
+
}, "id" | "color" | "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" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
707
707
|
'click:control': (e: MouseEvent) => boolean;
|
|
708
708
|
'click:input': (e: MouseEvent) => boolean;
|
|
709
709
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -1059,7 +1059,7 @@ declare const VTextField: {
|
|
|
1059
1059
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
1060
1060
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
1061
1061
|
};
|
|
1062
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
1062
|
+
}, "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}`> & Omit<Omit<{
|
|
1063
1063
|
$: vue.ComponentInternalInstance;
|
|
1064
1064
|
$data: {};
|
|
1065
1065
|
$props: Partial<{
|
|
@@ -1105,7 +1105,7 @@ declare const VTextField: {
|
|
|
1105
1105
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1106
1106
|
focused: BooleanConstructor;
|
|
1107
1107
|
id: StringConstructor;
|
|
1108
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1108
|
+
}, "$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">>> & {
|
|
1109
1109
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1110
1110
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1111
1111
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -1152,7 +1152,7 @@ declare const VTextField: {
|
|
|
1152
1152
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1153
1153
|
focused: BooleanConstructor;
|
|
1154
1154
|
id: StringConstructor;
|
|
1155
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1155
|
+
}, "$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">>> & {
|
|
1156
1156
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1157
1157
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1158
1158
|
}, {
|
|
@@ -1161,7 +1161,7 @@ declare const VTextField: {
|
|
|
1161
1161
|
'click:control': (e: MouseEvent) => boolean;
|
|
1162
1162
|
'update:focused': (focused: boolean) => boolean;
|
|
1163
1163
|
'update:modelValue': (val: any) => boolean;
|
|
1164
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1164
|
+
}, "$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, {
|
|
1165
1165
|
reverse: boolean;
|
|
1166
1166
|
error: boolean;
|
|
1167
1167
|
active: boolean;
|
|
@@ -1224,7 +1224,7 @@ declare const VTextField: {
|
|
|
1224
1224
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1225
1225
|
focused: BooleanConstructor;
|
|
1226
1226
|
id: StringConstructor;
|
|
1227
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1227
|
+
}, "$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">>> & {
|
|
1228
1228
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1229
1229
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1230
1230
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -1258,7 +1258,7 @@ declare const VTextField: {
|
|
|
1258
1258
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
1259
1259
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
1260
1260
|
};
|
|
1261
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
1261
|
+
}, "id" | "color" | "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" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
1262
1262
|
__isFragment?: undefined;
|
|
1263
1263
|
__isTeleport?: undefined;
|
|
1264
1264
|
__isSuspense?: undefined;
|
|
@@ -1568,7 +1568,7 @@ declare const VTextField: {
|
|
|
1568
1568
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
1569
1569
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
1570
1570
|
};
|
|
1571
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
1571
|
+
}, "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}`> & Omit<Omit<{
|
|
1572
1572
|
$: vue.ComponentInternalInstance;
|
|
1573
1573
|
$data: {};
|
|
1574
1574
|
$props: Partial<{
|
|
@@ -1614,7 +1614,7 @@ declare const VTextField: {
|
|
|
1614
1614
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1615
1615
|
focused: BooleanConstructor;
|
|
1616
1616
|
id: StringConstructor;
|
|
1617
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1617
|
+
}, "$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">>> & {
|
|
1618
1618
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1619
1619
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1620
1620
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -1661,7 +1661,7 @@ declare const VTextField: {
|
|
|
1661
1661
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1662
1662
|
focused: BooleanConstructor;
|
|
1663
1663
|
id: StringConstructor;
|
|
1664
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1664
|
+
}, "$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">>> & {
|
|
1665
1665
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1666
1666
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1667
1667
|
}, {
|
|
@@ -1670,7 +1670,7 @@ declare const VTextField: {
|
|
|
1670
1670
|
'click:control': (e: MouseEvent) => boolean;
|
|
1671
1671
|
'update:focused': (focused: boolean) => boolean;
|
|
1672
1672
|
'update:modelValue': (val: any) => boolean;
|
|
1673
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1673
|
+
}, "$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, {
|
|
1674
1674
|
reverse: boolean;
|
|
1675
1675
|
error: boolean;
|
|
1676
1676
|
active: boolean;
|
|
@@ -1733,7 +1733,7 @@ declare const VTextField: {
|
|
|
1733
1733
|
'onClick:prependInner': PropType<EventProp<(...args: any[]) => any>>;
|
|
1734
1734
|
focused: BooleanConstructor;
|
|
1735
1735
|
id: StringConstructor;
|
|
1736
|
-
}, "$children" | "v-slots" | "v-slot:default" | "
|
|
1736
|
+
}, "$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">>> & {
|
|
1737
1737
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1738
1738
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1739
1739
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -1767,7 +1767,7 @@ declare const VTextField: {
|
|
|
1767
1767
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
1768
1768
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
1769
1769
|
};
|
|
1770
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "
|
|
1770
|
+
}, "id" | "color" | "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" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
1771
1771
|
'click:control': (e: MouseEvent) => boolean;
|
|
1772
1772
|
'click:input': (e: MouseEvent) => boolean;
|
|
1773
1773
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -333,7 +333,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
333
333
|
"v-slot:append"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
334
334
|
"v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
|
|
335
335
|
};
|
|
336
|
-
}, "id" | "name" | "label" | "$children" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "
|
|
336
|
+
}, "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, {
|
|
337
337
|
'click:control': (e: MouseEvent) => true;
|
|
338
338
|
'update:focused': (focused: boolean) => true;
|
|
339
339
|
'update:modelValue': (val: string) => true;
|
|
@@ -12,7 +12,6 @@ import { makeElevationProps, useElevation } from "../../composables/elevation.mj
|
|
|
12
12
|
import { makeRoundedProps, useRounded } from "../../composables/rounded.mjs";
|
|
13
13
|
import { makeTagProps } from "../../composables/tag.mjs";
|
|
14
14
|
import { makeThemeProps, provideTheme } from "../../composables/theme.mjs";
|
|
15
|
-
import { provideDefaults } from "../../composables/defaults.mjs";
|
|
16
15
|
import { useBackgroundColor } from "../../composables/color.mjs"; // Utilities
|
|
17
16
|
import { computed, ref, toRef } from 'vue';
|
|
18
17
|
import { convertToUnit, genericComponent, pick, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
|
@@ -74,11 +73,6 @@ export const VToolbar = genericComponent()({
|
|
|
74
73
|
const isExtended = ref(!!(props.extended || (_slots$extension = slots.extension) != null && _slots$extension.call(slots)));
|
|
75
74
|
const contentHeight = computed(() => parseInt(Number(props.height) + (props.density === 'prominent' ? Number(props.height) : 0) - (props.density === 'comfortable' ? 8 : 0) - (props.density === 'compact' ? 16 : 0), 10));
|
|
76
75
|
const extensionHeight = computed(() => isExtended.value ? parseInt(Number(props.extensionHeight) + (props.density === 'prominent' ? Number(props.extensionHeight) : 0) - (props.density === 'comfortable' ? 4 : 0) - (props.density === 'compact' ? 8 : 0), 10) : 0);
|
|
77
|
-
provideDefaults({
|
|
78
|
-
VBtn: {
|
|
79
|
-
variant: 'text'
|
|
80
|
-
}
|
|
81
|
-
});
|
|
82
76
|
useRender(() => {
|
|
83
77
|
var _slots$extension2, _slots$image, _slots$prepend, _slots$default, _slots$append;
|
|
84
78
|
const hasTitle = !!(props.title || slots.title);
|
|
@@ -107,27 +101,43 @@ export const VToolbar = genericComponent()({
|
|
|
107
101
|
}
|
|
108
102
|
}, {
|
|
109
103
|
default: () => [slots.image ? (_slots$image = slots.image) == null ? void 0 : _slots$image.call(slots) : _createVNode(VImg, null, null)]
|
|
110
|
-
})]), _createVNode(
|
|
111
|
-
"
|
|
112
|
-
|
|
113
|
-
|
|
104
|
+
})]), _createVNode(VDefaultsProvider, {
|
|
105
|
+
"defaults": {
|
|
106
|
+
VTabs: {
|
|
107
|
+
height: convertToUnit(contentHeight.value)
|
|
108
|
+
}
|
|
114
109
|
}
|
|
115
|
-
}, [slots.prepend && _createVNode("div", {
|
|
116
|
-
"class": "v-toolbar__prepend"
|
|
117
|
-
}, [(_slots$prepend = slots.prepend) == null ? void 0 : _slots$prepend.call(slots)]), hasTitle && _createVNode(VToolbarTitle, {
|
|
118
|
-
"key": "title",
|
|
119
|
-
"text": props.title
|
|
120
110
|
}, {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
"class": "v-toolbar__append"
|
|
124
|
-
}, [(_slots$append = slots.append) == null ? void 0 : _slots$append.call(slots)])]), _createVNode(VExpandTransition, null, {
|
|
125
|
-
default: () => [isExtended.value && _createVNode("div", {
|
|
126
|
-
"class": "v-toolbar__extension",
|
|
111
|
+
default: () => [_createVNode("div", {
|
|
112
|
+
"class": "v-toolbar__content",
|
|
127
113
|
"style": {
|
|
114
|
+
height: convertToUnit(contentHeight.value)
|
|
115
|
+
}
|
|
116
|
+
}, [slots.prepend && _createVNode("div", {
|
|
117
|
+
"class": "v-toolbar__prepend"
|
|
118
|
+
}, [(_slots$prepend = slots.prepend) == null ? void 0 : _slots$prepend.call(slots)]), hasTitle && _createVNode(VToolbarTitle, {
|
|
119
|
+
"key": "title",
|
|
120
|
+
"text": props.title
|
|
121
|
+
}, {
|
|
122
|
+
text: slots.title
|
|
123
|
+
}), (_slots$default = slots.default) == null ? void 0 : _slots$default.call(slots), slots.append && _createVNode("div", {
|
|
124
|
+
"class": "v-toolbar__append"
|
|
125
|
+
}, [(_slots$append = slots.append) == null ? void 0 : _slots$append.call(slots)])])]
|
|
126
|
+
}), _createVNode(VDefaultsProvider, {
|
|
127
|
+
"defaults": {
|
|
128
|
+
VTabs: {
|
|
128
129
|
height: convertToUnit(extensionHeight.value)
|
|
129
130
|
}
|
|
130
|
-
}
|
|
131
|
+
}
|
|
132
|
+
}, {
|
|
133
|
+
default: () => [_createVNode(VExpandTransition, null, {
|
|
134
|
+
default: () => [isExtended.value && _createVNode("div", {
|
|
135
|
+
"class": "v-toolbar__extension",
|
|
136
|
+
"style": {
|
|
137
|
+
height: convertToUnit(extensionHeight.value)
|
|
138
|
+
}
|
|
139
|
+
}, [extension])]
|
|
140
|
+
})]
|
|
131
141
|
})]
|
|
132
142
|
});
|
|
133
143
|
});
|