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.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
|
*/
|
|
@@ -232,6 +232,10 @@
|
|
|
232
232
|
const onRE = /^on[^a-z]/;
|
|
233
233
|
const isOn = key => onRE.test(key);
|
|
234
234
|
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'];
|
|
235
|
+
const compositionIgnoreKeys = ['ArrowUp', 'ArrowDown', 'ArrowRight', 'ArrowLeft', 'Enter', 'Escape', 'Tab', ' '];
|
|
236
|
+
function isComposingIgnoreKey(e) {
|
|
237
|
+
return e.isComposing && compositionIgnoreKeys.includes(e.key);
|
|
238
|
+
}
|
|
235
239
|
|
|
236
240
|
/**
|
|
237
241
|
* Filter attributes that should be applied to
|
|
@@ -14990,7 +14994,7 @@
|
|
|
14990
14994
|
menu.value = !menu.value;
|
|
14991
14995
|
}
|
|
14992
14996
|
function onKeydown(e) {
|
|
14993
|
-
if (props.readonly || form?.isReadonly.value) return;
|
|
14997
|
+
if (isComposingIgnoreKey(e) || props.readonly || form?.isReadonly.value) return;
|
|
14994
14998
|
const selectionStart = vTextFieldRef.value.selectionStart;
|
|
14995
14999
|
const length = model.value.length;
|
|
14996
15000
|
if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
|
|
@@ -20430,7 +20434,7 @@
|
|
|
20430
20434
|
date
|
|
20431
20435
|
};
|
|
20432
20436
|
}
|
|
20433
|
-
const version$1 = "3.3.
|
|
20437
|
+
const version$1 = "3.3.22";
|
|
20434
20438
|
createVuetify$1.version = version$1;
|
|
20435
20439
|
|
|
20436
20440
|
// Vue's inject() can only be used in setup
|
|
@@ -20455,7 +20459,7 @@
|
|
|
20455
20459
|
...options
|
|
20456
20460
|
});
|
|
20457
20461
|
};
|
|
20458
|
-
const version = "3.3.
|
|
20462
|
+
const version = "3.3.22";
|
|
20459
20463
|
createVuetify.version = version;
|
|
20460
20464
|
|
|
20461
20465
|
exports.components = components;
|