@vuetify/nightly 4.0.0-dev-20230513.0 → 4.0.0-dev-20230515.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 +5 -2
- package/dist/json/importMap.json +4 -4
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +188 -188
- package/dist/vuetify-labs.esm.js +52 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +52 -9
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +222 -222
- package/dist/vuetify.d.ts +1 -1
- package/dist/vuetify.esm.js +52 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +52 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +716 -713
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +8 -8
- package/lib/components/VAutocomplete/VAutocomplete.mjs +20 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +8 -11
- package/lib/components/VColorPicker/VColorPicker.mjs +1 -1
- package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +8 -8
- package/lib/components/VCombobox/VCombobox.mjs +20 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +8 -11
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.css +8 -8
- package/lib/components/VSelect/VSelect.mjs +10 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.sass +7 -11
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +1 -1
- package/lib/util/helpers.mjs +1 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v4.0.0-dev-
|
2
|
+
* Vuetify v4.0.0-dev-20230515.0
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -389,6 +389,7 @@
|
|
389
389
|
if (_el) _el.focus();else focusChild(el, location === 'next' ? 'first' : 'last');
|
390
390
|
}
|
391
391
|
}
|
392
|
+
function noop() {}
|
392
393
|
|
393
394
|
const block = ['top', 'bottom'];
|
394
395
|
const inline = ['start', 'end', 'left', 'right'];
|
@@ -10358,7 +10359,6 @@
|
|
10358
10359
|
'v-select--selected': model.value.length
|
10359
10360
|
}, props.class],
|
10360
10361
|
"style": props.style,
|
10361
|
-
"appendInnerIcon": props.menuIcon,
|
10362
10362
|
"readonly": true,
|
10363
10363
|
"placeholder": placeholder,
|
10364
10364
|
"onClick:clear": onClear,
|
@@ -10465,7 +10465,16 @@
|
|
10465
10465
|
}, [item.title, props.multiple && index < selections.value.length - 1 && vue.createVNode("span", {
|
10466
10466
|
"class": "v-select__selection-comma"
|
10467
10467
|
}, [vue.createTextVNode(",")])])]);
|
10468
|
-
})])
|
10468
|
+
})]),
|
10469
|
+
'append-inner': function () {
|
10470
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
10471
|
+
args[_key] = arguments[_key];
|
10472
|
+
}
|
10473
|
+
return vue.createVNode(vue.Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? vue.createVNode(VIcon, {
|
10474
|
+
"class": "v-select__menu-icon",
|
10475
|
+
"icon": props.menuIcon
|
10476
|
+
}, null) : undefined]);
|
10477
|
+
}
|
10469
10478
|
});
|
10470
10479
|
});
|
10471
10480
|
return forwardRefs({
|
@@ -10680,6 +10689,13 @@
|
|
10680
10689
|
if (props.hideNoData && !items.value.length || props.readonly || form?.isReadonly.value) return;
|
10681
10690
|
menu.value = true;
|
10682
10691
|
}
|
10692
|
+
function onMousedownMenuIcon(e) {
|
10693
|
+
if (isFocused.value) {
|
10694
|
+
e.preventDefault();
|
10695
|
+
e.stopPropagation();
|
10696
|
+
}
|
10697
|
+
menu.value = !menu.value;
|
10698
|
+
}
|
10683
10699
|
function onKeydown(e) {
|
10684
10700
|
if (props.readonly || form?.isReadonly.value) return;
|
10685
10701
|
const selectionStart = vTextFieldRef.value.selectionStart;
|
@@ -10807,7 +10823,6 @@
|
|
10807
10823
|
'v-autocomplete--selecting-index': selectionIndex.value > -1
|
10808
10824
|
}, props.class],
|
10809
10825
|
"style": props.style,
|
10810
|
-
"appendInnerIcon": props.menuIcon,
|
10811
10826
|
"readonly": props.readonly,
|
10812
10827
|
"placeholder": isDirty ? undefined : props.placeholder,
|
10813
10828
|
"onClick:clear": onClear,
|
@@ -10912,7 +10927,18 @@
|
|
10912
10927
|
}, [item.title, props.multiple && index < selections.value.length - 1 && vue.createVNode("span", {
|
10913
10928
|
"class": "v-autocomplete__selection-comma"
|
10914
10929
|
}, [vue.createTextVNode(",")])])]);
|
10915
|
-
})])
|
10930
|
+
})]),
|
10931
|
+
'append-inner': function () {
|
10932
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
10933
|
+
args[_key] = arguments[_key];
|
10934
|
+
}
|
10935
|
+
return vue.createVNode(vue.Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? vue.createVNode(VIcon, {
|
10936
|
+
"class": "v-autocomplete__menu-icon",
|
10937
|
+
"icon": props.menuIcon,
|
10938
|
+
"onMousedown": onMousedownMenuIcon,
|
10939
|
+
"onClick": noop
|
10940
|
+
}, null) : undefined]);
|
10941
|
+
}
|
10916
10942
|
});
|
10917
10943
|
});
|
10918
10944
|
return forwardRefs({
|
@@ -14146,6 +14172,13 @@
|
|
14146
14172
|
if (props.hideNoData && !items.value.length || props.readonly || form?.isReadonly.value) return;
|
14147
14173
|
menu.value = true;
|
14148
14174
|
}
|
14175
|
+
function onMousedownMenuIcon(e) {
|
14176
|
+
if (isFocused.value) {
|
14177
|
+
e.preventDefault();
|
14178
|
+
e.stopPropagation();
|
14179
|
+
}
|
14180
|
+
menu.value = !menu.value;
|
14181
|
+
}
|
14149
14182
|
function onKeydown(e) {
|
14150
14183
|
if (props.readonly || form?.isReadonly.value) return;
|
14151
14184
|
const selectionStart = vTextFieldRef.value.selectionStart;
|
@@ -14269,7 +14302,6 @@
|
|
14269
14302
|
[`v-combobox--${props.multiple ? 'multiple' : 'single'}`]: true
|
14270
14303
|
}, props.class],
|
14271
14304
|
"style": props.style,
|
14272
|
-
"appendInnerIcon": props.items.length ? props.menuIcon : undefined,
|
14273
14305
|
"readonly": props.readonly,
|
14274
14306
|
"placeholder": isDirty ? undefined : props.placeholder,
|
14275
14307
|
"onClick:clear": onClear,
|
@@ -14374,7 +14406,18 @@
|
|
14374
14406
|
}, [item.title, props.multiple && index < selections.value.length - 1 && vue.createVNode("span", {
|
14375
14407
|
"class": "v-combobox__selection-comma"
|
14376
14408
|
}, [vue.createTextVNode(",")])])]);
|
14377
|
-
})])
|
14409
|
+
})]),
|
14410
|
+
'append-inner': function () {
|
14411
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
14412
|
+
args[_key] = arguments[_key];
|
14413
|
+
}
|
14414
|
+
return vue.createVNode(vue.Fragment, null, [slots['append-inner']?.(...args), (!props.hideNoData || props.items.length) && props.menuIcon ? vue.createVNode(VIcon, {
|
14415
|
+
"class": "v-combobox__menu-icon",
|
14416
|
+
"icon": props.menuIcon,
|
14417
|
+
"onMousedown": onMousedownMenuIcon,
|
14418
|
+
"onClick": noop
|
14419
|
+
}, null) : undefined]);
|
14420
|
+
}
|
14378
14421
|
});
|
14379
14422
|
});
|
14380
14423
|
return forwardRefs({
|
@@ -21672,7 +21715,7 @@
|
|
21672
21715
|
date
|
21673
21716
|
};
|
21674
21717
|
}
|
21675
|
-
const version$1 = "4.0.0-dev-
|
21718
|
+
const version$1 = "4.0.0-dev-20230515.0";
|
21676
21719
|
createVuetify$1.version = version$1;
|
21677
21720
|
|
21678
21721
|
// Vue's inject() can only be used in setup
|
@@ -21684,7 +21727,7 @@
|
|
21684
21727
|
}
|
21685
21728
|
}
|
21686
21729
|
|
21687
|
-
const version = "4.0.0-dev-
|
21730
|
+
const version = "4.0.0-dev-20230515.0";
|
21688
21731
|
|
21689
21732
|
const createVuetify = function () {
|
21690
21733
|
let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|