@vuetify/nightly 3.6.5-master.2024-05-11 → 3.6.5-master.2024-05-13
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 +12 -2
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +152 -152
- package/dist/json/web-types.json +3 -3
- package/dist/vuetify-labs.css +1536 -1796
- package/dist/vuetify-labs.d.ts +1 -1
- package/dist/vuetify-labs.esm.js +19 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -9
- package/dist/vuetify-labs.min.css +3 -3
- package/dist/vuetify.css +1020 -1280
- package/dist/vuetify.d.ts +46 -46
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +3 -3
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/labs/VNumberInput/VNumberInput.mjs +16 -6
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/index.d.mts +1 -1
- package/lib/labs/components.d.mts +1 -1
- package/lib/styles/generic/_colors.scss +0 -1
- package/lib/styles/main.css +0 -260
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -76076,7 +76076,7 @@ declare const VDateInput: {
|
|
76076
76076
|
type VDateInput = InstanceType<typeof VDateInput>;
|
76077
76077
|
|
76078
76078
|
type ControlSlot = {
|
76079
|
-
click: () => void;
|
76079
|
+
click: (e: MouseEvent) => void;
|
76080
76080
|
};
|
76081
76081
|
type ControlVariant = 'default' | 'stacked' | 'split';
|
76082
76082
|
declare const VNumberInput: {
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.5-master.2024-05-
|
2
|
+
* Vuetify v3.6.5-master.2024-05-13
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -27965,10 +27965,12 @@ const VNumberInput = genericComponent()({
|
|
27965
27965
|
if (canDecrease.value) model.value = +(model.value - props.step).toFixed(decimals);
|
27966
27966
|
}
|
27967
27967
|
}
|
27968
|
-
function onClickUp() {
|
27968
|
+
function onClickUp(e) {
|
27969
|
+
e.stopPropagation();
|
27969
27970
|
toggleUpDown();
|
27970
27971
|
}
|
27971
|
-
function onClickDown() {
|
27972
|
+
function onClickDown(e) {
|
27973
|
+
e.stopPropagation();
|
27972
27974
|
toggleUpDown(false);
|
27973
27975
|
}
|
27974
27976
|
function onKeydown(e) {
|
@@ -27992,6 +27994,9 @@ const VNumberInput = genericComponent()({
|
|
27992
27994
|
function onModelUpdate(v) {
|
27993
27995
|
model.value = v ? +v : undefined;
|
27994
27996
|
}
|
27997
|
+
function onControlMousedown(e) {
|
27998
|
+
e.stopPropagation();
|
27999
|
+
}
|
27995
28000
|
useRender(() => {
|
27996
28001
|
const {
|
27997
28002
|
modelValue: _,
|
@@ -28010,7 +28015,8 @@ const VNumberInput = genericComponent()({
|
|
28010
28015
|
"icon": "$expand",
|
28011
28016
|
"size": "small",
|
28012
28017
|
"tabindex": "-1",
|
28013
|
-
"onClick": onClickDown
|
28018
|
+
"onClick": onClickDown,
|
28019
|
+
"onMousedown": onControlMousedown
|
28014
28020
|
}, null) : createVNode(VDefaultsProvider, {
|
28015
28021
|
"key": "decrement-defaults",
|
28016
28022
|
"defaults": {
|
@@ -28034,6 +28040,7 @@ const VNumberInput = genericComponent()({
|
|
28034
28040
|
"name": "increment-btn",
|
28035
28041
|
"icon": "$collapse",
|
28036
28042
|
"onClick": onClickUp,
|
28043
|
+
"onMousedown": onControlMousedown,
|
28037
28044
|
"size": "small",
|
28038
28045
|
"tabindex": "-1"
|
28039
28046
|
}, null) : createVNode(VDefaultsProvider, {
|
@@ -28066,7 +28073,8 @@ const VNumberInput = genericComponent()({
|
|
28066
28073
|
"icon": "$plus",
|
28067
28074
|
"tile": true,
|
28068
28075
|
"tabindex": "-1",
|
28069
|
-
"onClick": onClickUp
|
28076
|
+
"onClick": onClickUp,
|
28077
|
+
"onMousedown": onControlMousedown
|
28070
28078
|
}, null)]) : !props.reverse ? createVNode(Fragment, null, [dividerNode(), controlNode()]) : undefined;
|
28071
28079
|
const hasAppendInner = slots['append-inner'] || appendInnerControl;
|
28072
28080
|
const prependInnerControl = controlVariant.value === 'split' ? createVNode("div", {
|
@@ -28077,7 +28085,8 @@ const VNumberInput = genericComponent()({
|
|
28077
28085
|
"icon": "$minus",
|
28078
28086
|
"tile": true,
|
28079
28087
|
"tabindex": "-1",
|
28080
|
-
"onClick": onClickDown
|
28088
|
+
"onClick": onClickDown,
|
28089
|
+
"onMousedown": onControlMousedown
|
28081
28090
|
}, null), createVNode(VDivider, {
|
28082
28091
|
"vertical": true
|
28083
28092
|
}, null)]) : props.reverse ? createVNode(Fragment, null, [controlNode(), dividerNode()]) : undefined;
|
@@ -28095,7 +28104,8 @@ const VNumberInput = genericComponent()({
|
|
28095
28104
|
'v-number-input--stacked': controlVariant.value === 'stacked'
|
28096
28105
|
}, props.class]
|
28097
28106
|
}, textFieldProps, {
|
28098
|
-
"style": props.style
|
28107
|
+
"style": props.style,
|
28108
|
+
"inputmode": "decimal"
|
28099
28109
|
}), {
|
28100
28110
|
...slots,
|
28101
28111
|
'append-inner': hasAppendInner ? function () {
|
@@ -30072,7 +30082,7 @@ function createVuetify$1() {
|
|
30072
30082
|
goTo
|
30073
30083
|
};
|
30074
30084
|
}
|
30075
|
-
const version$1 = "3.6.5-master.2024-05-
|
30085
|
+
const version$1 = "3.6.5-master.2024-05-13";
|
30076
30086
|
createVuetify$1.version = version$1;
|
30077
30087
|
|
30078
30088
|
// Vue's inject() can only be used in setup
|
@@ -30325,7 +30335,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30325
30335
|
|
30326
30336
|
/* eslint-disable local-rules/sort-imports */
|
30327
30337
|
|
30328
|
-
const version = "3.6.5-master.2024-05-
|
30338
|
+
const version = "3.6.5-master.2024-05-13";
|
30329
30339
|
|
30330
30340
|
/* eslint-disable local-rules/sort-imports */
|
30331
30341
|
|