vuetify 3.3.21 → 3.3.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +204 -0
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +60 -60
- package/dist/json/tags.json +57 -3
- package/dist/json/web-types.json +885 -15
- package/dist/vuetify-labs.css +5865 -5859
- package/dist/vuetify-labs.d.ts +205 -19
- package/dist/vuetify-labs.esm.js +41 -18
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +41 -18
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5382 -5379
- package/dist/vuetify.d.ts +17 -17
- package/dist/vuetify.esm.js +8 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +797 -797
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +2 -2
- package/lib/components/VAutocomplete/_variables.scss +1 -0
- package/lib/components/VCard/VCard.css +3 -1
- package/lib/components/VCard/VCard.sass +2 -1
- package/lib/components/VCard/_variables.scss +7 -5
- package/lib/components/VCombobox/VCombobox.mjs +2 -2
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +0 -4
- package/lib/components/VList/VListItem.sass +0 -5
- package/lib/components/VNavigationDrawer/VNavigationDrawer.css +5 -0
- package/lib/components/VNavigationDrawer/VNavigationDrawer.sass +4 -0
- package/lib/components/VToolbar/_variables.scss +6 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +17 -17
- package/lib/labs/VDataTable/VDataTable.css +0 -6
- package/lib/labs/VDataTable/VDataTable.sass +0 -1
- package/lib/labs/VStepper/VStepper.css +9 -0
- package/lib/labs/VStepper/VStepper.mjs +1 -2
- package/lib/labs/VStepper/VStepper.mjs.map +1 -1
- package/lib/labs/VStepper/VStepper.sass +17 -8
- package/lib/labs/VStepper/VStepperActions.mjs +34 -13
- package/lib/labs/VStepper/VStepperActions.mjs.map +1 -1
- package/lib/labs/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/labs/VStepper/VStepperItem.sass +15 -15
- package/lib/labs/VStepper/_variables.scss +24 -1
- package/lib/labs/VStepper/index.d.mts +205 -19
- package/lib/labs/components.d.mts +205 -19
- package/lib/locale/de.mjs +20 -20
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/nl.mjs +22 -22
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/util/helpers.mjs +4 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -60611,6 +60611,18 @@ declare module '@vue/runtime-core' {
|
|
|
60611
60611
|
}
|
|
60612
60612
|
|
|
60613
60613
|
export interface GlobalComponents {
|
|
60614
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
60615
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
60616
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
60617
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
60618
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
60619
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
60620
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
60621
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
60622
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
60623
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
60624
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
60625
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
60614
60626
|
VApp: typeof import('vuetify/components')['VApp']
|
|
60615
60627
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
60616
60628
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
@@ -60620,9 +60632,6 @@ declare module '@vue/runtime-core' {
|
|
|
60620
60632
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
60621
60633
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
60622
60634
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
60623
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
60624
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
60625
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
60626
60635
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
60627
60636
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
60628
60637
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
@@ -60695,20 +60704,12 @@ declare module '@vue/runtime-core' {
|
|
|
60695
60704
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
60696
60705
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
60697
60706
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
60698
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
60699
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
60700
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
60701
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
60702
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
60703
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
60704
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
60705
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
60706
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
60707
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
60708
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
60709
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
60710
60707
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
60711
60708
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
60709
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
60710
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
60711
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
60712
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
60712
60713
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
60713
60714
|
VForm: typeof import('vuetify/components')['VForm']
|
|
60714
60715
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
@@ -60725,7 +60726,6 @@ declare module '@vue/runtime-core' {
|
|
|
60725
60726
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
60726
60727
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
60727
60728
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
60728
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
60729
60729
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
60730
60730
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
60731
60731
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
@@ -60745,7 +60745,6 @@ declare module '@vue/runtime-core' {
|
|
|
60745
60745
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
60746
60746
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
60747
60747
|
VBottomSheet: typeof import('vuetify/labs/components')['VBottomSheet']
|
|
60748
|
-
VDataIterator: typeof import('vuetify/labs/components')['VDataIterator']
|
|
60749
60748
|
VDataTable: typeof import('vuetify/labs/components')['VDataTable']
|
|
60750
60749
|
VDataTableFooter: typeof import('vuetify/labs/components')['VDataTableFooter']
|
|
60751
60750
|
VDataTableRows: typeof import('vuetify/labs/components')['VDataTableRows']
|
|
@@ -60769,5 +60768,6 @@ declare module '@vue/runtime-core' {
|
|
|
60769
60768
|
VStepperItem: typeof import('vuetify/labs/components')['VStepperItem']
|
|
60770
60769
|
VStepperWindow: typeof import('vuetify/labs/components')['VStepperWindow']
|
|
60771
60770
|
VStepperWindowItem: typeof import('vuetify/labs/components')['VStepperWindowItem']
|
|
60771
|
+
VDataIterator: typeof import('vuetify/labs/components')['VDataIterator']
|
|
60772
60772
|
}
|
|
60773
60773
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.3.
|
|
2
|
+
* Vuetify v3.3.22
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -228,6 +228,10 @@ function omit(obj, exclude) {
|
|
|
228
228
|
const onRE = /^on[^a-z]/;
|
|
229
229
|
const isOn = key => onRE.test(key);
|
|
230
230
|
const bubblingEvents = ['onAfterscriptexecute', 'onAnimationcancel', 'onAnimationend', 'onAnimationiteration', 'onAnimationstart', 'onAuxclick', 'onBeforeinput', 'onBeforescriptexecute', 'onChange', 'onClick', 'onCompositionend', 'onCompositionstart', 'onCompositionupdate', 'onContextmenu', 'onCopy', 'onCut', 'onDblclick', 'onFocusin', 'onFocusout', 'onFullscreenchange', 'onFullscreenerror', 'onGesturechange', 'onGestureend', 'onGesturestart', 'onGotpointercapture', 'onInput', 'onKeydown', 'onKeypress', 'onKeyup', 'onLostpointercapture', 'onMousedown', 'onMousemove', 'onMouseout', 'onMouseover', 'onMouseup', 'onMousewheel', 'onPaste', 'onPointercancel', 'onPointerdown', 'onPointerenter', 'onPointerleave', 'onPointermove', 'onPointerout', 'onPointerover', 'onPointerup', 'onReset', 'onSelect', 'onSubmit', 'onTouchcancel', 'onTouchend', 'onTouchmove', 'onTouchstart', 'onTransitioncancel', 'onTransitionend', 'onTransitionrun', 'onTransitionstart', 'onWheel'];
|
|
231
|
+
const compositionIgnoreKeys = ['ArrowUp', 'ArrowDown', 'ArrowRight', 'ArrowLeft', 'Enter', 'Escape', 'Tab', ' '];
|
|
232
|
+
function isComposingIgnoreKey(e) {
|
|
233
|
+
return e.isComposing && compositionIgnoreKeys.includes(e.key);
|
|
234
|
+
}
|
|
231
235
|
|
|
232
236
|
/**
|
|
233
237
|
* Filter attributes that should be applied to
|
|
@@ -14986,7 +14990,7 @@ const VCombobox = genericComponent()({
|
|
|
14986
14990
|
menu.value = !menu.value;
|
|
14987
14991
|
}
|
|
14988
14992
|
function onKeydown(e) {
|
|
14989
|
-
if (props.readonly || form?.isReadonly.value) return;
|
|
14993
|
+
if (isComposingIgnoreKey(e) || props.readonly || form?.isReadonly.value) return;
|
|
14990
14994
|
const selectionStart = vTextFieldRef.value.selectionStart;
|
|
14991
14995
|
const length = model.value.length;
|
|
14992
14996
|
if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
|
|
@@ -20426,7 +20430,7 @@ function createVuetify$1() {
|
|
|
20426
20430
|
date
|
|
20427
20431
|
};
|
|
20428
20432
|
}
|
|
20429
|
-
const version$1 = "3.3.
|
|
20433
|
+
const version$1 = "3.3.22";
|
|
20430
20434
|
createVuetify$1.version = version$1;
|
|
20431
20435
|
|
|
20432
20436
|
// Vue's inject() can only be used in setup
|
|
@@ -20451,7 +20455,7 @@ const createVuetify = function () {
|
|
|
20451
20455
|
...options
|
|
20452
20456
|
});
|
|
20453
20457
|
};
|
|
20454
|
-
const version = "3.3.
|
|
20458
|
+
const version = "3.3.22";
|
|
20455
20459
|
createVuetify.version = version;
|
|
20456
20460
|
|
|
20457
20461
|
export { components, createVuetify, directives, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|