@vuetify/nightly 4.0.0-master-20230206.0 → 4.0.0-master-20230207.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 -2
- package/dist/json/attributes.json +67 -59
- package/dist/json/importMap.json +52 -52
- package/dist/json/tags.json +4 -1
- package/dist/json/web-types.json +83 -63
- package/dist/vuetify-labs.css +1467 -1467
- package/dist/vuetify-labs.d.ts +14 -2
- package/dist/vuetify-labs.esm.js +13 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +34 -34
- package/dist/vuetify.d.ts +28 -16
- package/dist/vuetify.esm.js +13 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +483 -483
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBarTitle.mjs +3 -4
- package/lib/components/VAppBar/VAppBarTitle.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +14 -2
- package/lib/components/VChip/VChip.mjs +6 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbarTitle.mjs +6 -5
- package/lib/components/VToolbar/VToolbarTitle.mjs.map +1 -1
- package/lib/components/index.d.ts +14 -2
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +14 -14
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v4.0.0-master-
|
2
|
+
* Vuetify v4.0.0-master-20230207.0
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -22339,39 +22339,6 @@ textarea.v-field__input::placeholder {
|
|
22339
22339
|
|
22340
22340
|
.v-icon--end {
|
22341
22341
|
margin-inline-start: 8px;
|
22342
|
-
}.v-img {
|
22343
|
-
--v-theme-overlay-multiplier: 3;
|
22344
|
-
z-index: 0;
|
22345
|
-
}
|
22346
|
-
.v-img--booting .v-responsive__sizer {
|
22347
|
-
transition: none;
|
22348
|
-
}
|
22349
|
-
|
22350
|
-
.v-img__img,
|
22351
|
-
.v-img__picture,
|
22352
|
-
.v-img__gradient,
|
22353
|
-
.v-img__placeholder,
|
22354
|
-
.v-img__error {
|
22355
|
-
z-index: -1;
|
22356
|
-
position: absolute;
|
22357
|
-
top: 0;
|
22358
|
-
left: 0;
|
22359
|
-
width: 100%;
|
22360
|
-
height: 100%;
|
22361
|
-
}
|
22362
|
-
|
22363
|
-
.v-img__img--preload {
|
22364
|
-
filter: blur(4px);
|
22365
|
-
}
|
22366
|
-
.v-img__img--contain {
|
22367
|
-
object-fit: contain;
|
22368
|
-
}
|
22369
|
-
.v-img__img--cover {
|
22370
|
-
object-fit: cover;
|
22371
|
-
}
|
22372
|
-
|
22373
|
-
.v-img__gradient {
|
22374
|
-
background-repeat: no-repeat;
|
22375
22342
|
}.v-input {
|
22376
22343
|
display: grid;
|
22377
22344
|
flex: 1 1 auto;
|
@@ -22484,6 +22451,39 @@ textarea.v-field__input::placeholder {
|
|
22484
22451
|
.v-input__control {
|
22485
22452
|
display: flex;
|
22486
22453
|
grid-area: control;
|
22454
|
+
}.v-img {
|
22455
|
+
--v-theme-overlay-multiplier: 3;
|
22456
|
+
z-index: 0;
|
22457
|
+
}
|
22458
|
+
.v-img--booting .v-responsive__sizer {
|
22459
|
+
transition: none;
|
22460
|
+
}
|
22461
|
+
|
22462
|
+
.v-img__img,
|
22463
|
+
.v-img__picture,
|
22464
|
+
.v-img__gradient,
|
22465
|
+
.v-img__placeholder,
|
22466
|
+
.v-img__error {
|
22467
|
+
z-index: -1;
|
22468
|
+
position: absolute;
|
22469
|
+
top: 0;
|
22470
|
+
left: 0;
|
22471
|
+
width: 100%;
|
22472
|
+
height: 100%;
|
22473
|
+
}
|
22474
|
+
|
22475
|
+
.v-img__img--preload {
|
22476
|
+
filter: blur(4px);
|
22477
|
+
}
|
22478
|
+
.v-img__img--contain {
|
22479
|
+
object-fit: contain;
|
22480
|
+
}
|
22481
|
+
.v-img__img--cover {
|
22482
|
+
object-fit: cover;
|
22483
|
+
}
|
22484
|
+
|
22485
|
+
.v-img__gradient {
|
22486
|
+
background-repeat: no-repeat;
|
22487
22487
|
}.v-item-group {
|
22488
22488
|
flex: 0 1 auto;
|
22489
22489
|
max-width: 100%;
|
package/dist/vuetify.d.ts
CHANGED
@@ -1000,8 +1000,20 @@ declare const VAppBarNavIcon: vue.DefineComponent<{
|
|
1000
1000
|
}>;
|
1001
1001
|
declare type VAppBarNavIcon = InstanceType<typeof VAppBarNavIcon>;
|
1002
1002
|
|
1003
|
-
declare const VAppBarTitle: vue.DefineComponent<
|
1004
|
-
|
1003
|
+
declare const VAppBarTitle: vue.DefineComponent<{
|
1004
|
+
tag: {
|
1005
|
+
type: StringConstructor;
|
1006
|
+
default: string;
|
1007
|
+
};
|
1008
|
+
text: StringConstructor;
|
1009
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
1010
|
+
tag: {
|
1011
|
+
type: StringConstructor;
|
1012
|
+
default: string;
|
1013
|
+
};
|
1014
|
+
text: StringConstructor;
|
1015
|
+
}>>, {
|
1016
|
+
tag: string;
|
1005
1017
|
}>;
|
1006
1018
|
declare type VAppBarTitle = InstanceType<typeof VAppBarTitle>;
|
1007
1019
|
|
@@ -26158,23 +26170,22 @@ declare module '@vue/runtime-core' {
|
|
26158
26170
|
|
26159
26171
|
export interface GlobalComponents {
|
26160
26172
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
26173
|
+
VForm: typeof import('vuetify/components')['VForm']
|
26161
26174
|
VContainer: typeof import('vuetify/components')['VContainer']
|
26162
26175
|
VCol: typeof import('vuetify/components')['VCol']
|
26163
26176
|
VRow: typeof import('vuetify/components')['VRow']
|
26164
26177
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
26165
26178
|
VHover: typeof import('vuetify/components')['VHover']
|
26166
|
-
VForm: typeof import('vuetify/components')['VForm']
|
26167
26179
|
VLayout: typeof import('vuetify/components')['VLayout']
|
26168
26180
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
26169
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
26170
26181
|
VLazy: typeof import('vuetify/components')['VLazy']
|
26182
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
26171
26183
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
26172
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
26173
26184
|
VParallax: typeof import('vuetify/components')['VParallax']
|
26185
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
26174
26186
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
26175
26187
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
26176
26188
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
26177
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
26178
26189
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
26179
26190
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
26180
26191
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -26197,16 +26208,18 @@ declare module '@vue/runtime-core' {
|
|
26197
26208
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
26198
26209
|
VAlert: typeof import('vuetify/components')['VAlert']
|
26199
26210
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
26200
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
26201
26211
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
26212
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
26202
26213
|
VBadge: typeof import('vuetify/components')['VBadge']
|
26203
26214
|
VBanner: typeof import('vuetify/components')['VBanner']
|
26204
26215
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
26205
26216
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
26217
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
26206
26218
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
26207
26219
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
26208
26220
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
26209
26221
|
VBtn: typeof import('vuetify/components')['VBtn']
|
26222
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
26210
26223
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
26211
26224
|
VCard: typeof import('vuetify/components')['VCard']
|
26212
26225
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
@@ -26214,18 +26227,17 @@ declare module '@vue/runtime-core' {
|
|
26214
26227
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
26215
26228
|
VCardText: typeof import('vuetify/components')['VCardText']
|
26216
26229
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
26217
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
26218
26230
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
26219
26231
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
26220
26232
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
26221
26233
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
26222
26234
|
VChip: typeof import('vuetify/components')['VChip']
|
26223
|
-
VCode: typeof import('vuetify/components')['VCode']
|
26224
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
26225
26235
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
26236
|
+
VCode: typeof import('vuetify/components')['VCode']
|
26226
26237
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
26227
26238
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
26228
26239
|
VCounter: typeof import('vuetify/components')['VCounter']
|
26240
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
26229
26241
|
VDivider: typeof import('vuetify/components')['VDivider']
|
26230
26242
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
26231
26243
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
@@ -26234,13 +26246,12 @@ declare module '@vue/runtime-core' {
|
|
26234
26246
|
VField: typeof import('vuetify/components')['VField']
|
26235
26247
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
26236
26248
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
26237
|
-
|
26249
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
26238
26250
|
VIcon: typeof import('vuetify/components')['VIcon']
|
26239
26251
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
26240
26252
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
26241
26253
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
26242
26254
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
26243
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
26244
26255
|
VImg: typeof import('vuetify/components')['VImg']
|
26245
26256
|
VInput: typeof import('vuetify/components')['VInput']
|
26246
26257
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
@@ -26261,23 +26272,23 @@ declare module '@vue/runtime-core' {
|
|
26261
26272
|
VMessages: typeof import('vuetify/components')['VMessages']
|
26262
26273
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
26263
26274
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
26264
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
26265
26275
|
VPagination: typeof import('vuetify/components')['VPagination']
|
26266
|
-
|
26276
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
26267
26277
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
26278
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
26268
26279
|
VRating: typeof import('vuetify/components')['VRating']
|
26269
26280
|
VSelect: typeof import('vuetify/components')['VSelect']
|
26270
26281
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
26271
26282
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
26283
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
26272
26284
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
26273
26285
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
26274
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
26275
26286
|
VSlider: typeof import('vuetify/components')['VSlider']
|
26276
26287
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
26277
26288
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
26289
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
26278
26290
|
VTabs: typeof import('vuetify/components')['VTabs']
|
26279
26291
|
VTab: typeof import('vuetify/components')['VTab']
|
26280
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
26281
26292
|
VTable: typeof import('vuetify/components')['VTable']
|
26282
26293
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
26283
26294
|
VTextField: typeof import('vuetify/components')['VTextField']
|
@@ -26289,5 +26300,6 @@ declare module '@vue/runtime-core' {
|
|
26289
26300
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
26290
26301
|
VWindow: typeof import('vuetify/components')['VWindow']
|
26291
26302
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
26303
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
26292
26304
|
}
|
26293
26305
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v4.0.0-master-
|
2
|
+
* Vuetify v4.0.0-master-20230207.0
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -2921,12 +2921,13 @@ const makeTagProps = propsFactory({
|
|
2921
2921
|
|
2922
2922
|
// Types
|
2923
2923
|
|
2924
|
+
const makeVToolbarTitleProps = propsFactory({
|
2925
|
+
text: String,
|
2926
|
+
...makeTagProps()
|
2927
|
+
}, 'v-toolbar-title');
|
2924
2928
|
const VToolbarTitle = genericComponent()({
|
2925
2929
|
name: 'VToolbarTitle',
|
2926
|
-
props:
|
2927
|
-
text: String,
|
2928
|
-
...makeTagProps()
|
2929
|
-
},
|
2930
|
+
props: makeVToolbarTitleProps(),
|
2930
2931
|
setup(props, _ref) {
|
2931
2932
|
let {
|
2932
2933
|
slots
|
@@ -5006,9 +5007,7 @@ const VToolbarItems = defineComponent({
|
|
5006
5007
|
|
5007
5008
|
const VAppBarTitle = defineComponent({
|
5008
5009
|
name: 'VAppBarTitle',
|
5009
|
-
props:
|
5010
|
-
...VToolbarTitle.props
|
5011
|
-
},
|
5010
|
+
props: makeVToolbarTitleProps(),
|
5012
5011
|
setup(props, _ref) {
|
5013
5012
|
let {
|
5014
5013
|
slots
|
@@ -6834,6 +6833,9 @@ const VChip = defineComponent({
|
|
6834
6833
|
emit,
|
6835
6834
|
slots
|
6836
6835
|
} = _ref;
|
6836
|
+
const {
|
6837
|
+
t
|
6838
|
+
} = useLocale();
|
6837
6839
|
const {
|
6838
6840
|
borderClasses
|
6839
6841
|
} = useBorder(props);
|
@@ -6970,6 +6972,7 @@ const VChip = defineComponent({
|
|
6970
6972
|
}, {
|
6971
6973
|
default: () => [createVNode("div", {
|
6972
6974
|
"class": "v-chip__close",
|
6975
|
+
"aria-label": t(props.closeLabel),
|
6973
6976
|
"onClick": onCloseClick
|
6974
6977
|
}, [slots.close ? slots.close() : createVNode(VIcon, null, null)])]
|
6975
6978
|
})]
|
@@ -18455,7 +18458,7 @@ function createVuetify$1() {
|
|
18455
18458
|
locale
|
18456
18459
|
};
|
18457
18460
|
}
|
18458
|
-
const version$1 = "4.0.0-master-
|
18461
|
+
const version$1 = "4.0.0-master-20230207.0";
|
18459
18462
|
createVuetify$1.version = version$1;
|
18460
18463
|
|
18461
18464
|
// Vue's inject() can only be used in setup
|
@@ -18476,7 +18479,7 @@ const createVuetify = function () {
|
|
18476
18479
|
...options
|
18477
18480
|
});
|
18478
18481
|
};
|
18479
|
-
const version = "4.0.0-master-
|
18482
|
+
const version = "4.0.0-master-20230207.0";
|
18480
18483
|
createVuetify.version = version;
|
18481
18484
|
|
18482
18485
|
export { components, createVuetify, directives, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|