@vuetify/nightly 3.6.10-master.2024-06-27 → 3.6.11-master.2024-07-03
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 +3 -3
- package/dist/json/attributes.json +2 -2
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +106 -106
- package/dist/json/web-types.json +3 -3
- package/dist/vuetify-labs.css +6077 -6077
- package/dist/vuetify-labs.esm.js +61 -64
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +61 -64
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1090 -1090
- package/dist/vuetify.d.ts +36 -36
- package/dist/vuetify.esm.js +11 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -14
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +7 -2
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/composables/teleport.mjs +2 -2
- package/lib/composables/teleport.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +36 -36
- package/lib/labs/VNumberInput/VNumberInput.mjs +48 -55
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVertical.mjs +2 -0
- package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.11-master.2024-07-03
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -10604,12 +10604,9 @@
|
|
10604
10604
|
}
|
10605
10605
|
|
10606
10606
|
// Utilities
|
10607
|
-
|
10608
|
-
// Types
|
10609
|
-
|
10610
10607
|
function useTeleport(target) {
|
10611
10608
|
const teleportTarget = vue.computed(() => {
|
10612
|
-
const _target = target
|
10609
|
+
const _target = target();
|
10613
10610
|
if (_target === true || !IN_BROWSER) return undefined;
|
10614
10611
|
const targetElement = _target === false ? document.body : typeof _target === 'string' ? document.querySelector(_target) : _target;
|
10615
10612
|
if (targetElement == null) {
|
@@ -10830,10 +10827,15 @@
|
|
10830
10827
|
isActive,
|
10831
10828
|
isTop: localTop
|
10832
10829
|
});
|
10833
|
-
const potentialShadowDomRoot = vue.computed(() => activatorEl?.value?.getRootNode());
|
10834
10830
|
const {
|
10835
10831
|
teleportTarget
|
10836
|
-
} = useTeleport(
|
10832
|
+
} = useTeleport(() => {
|
10833
|
+
const target = props.attach || props.contained;
|
10834
|
+
if (target) return target;
|
10835
|
+
const rootNode = activatorEl?.value?.getRootNode();
|
10836
|
+
if (rootNode instanceof ShadowRoot) return rootNode;
|
10837
|
+
return false;
|
10838
|
+
});
|
10837
10839
|
const {
|
10838
10840
|
dimensionStyles
|
10839
10841
|
} = useDimension(props);
|
@@ -28055,6 +28057,10 @@
|
|
28055
28057
|
const controlVariant = vue.computed(() => {
|
28056
28058
|
return props.hideInput ? 'stacked' : props.controlVariant;
|
28057
28059
|
});
|
28060
|
+
const incrementIcon = vue.computed(() => controlVariant.value === 'split' ? '$plus' : '$collapse');
|
28061
|
+
const decrementIcon = vue.computed(() => controlVariant.value === 'split' ? '$minus' : '$expand');
|
28062
|
+
const controlNodeSize = vue.computed(() => controlVariant.value === 'split' ? 'default' : 'small');
|
28063
|
+
const controlNodeDefaultHeight = vue.computed(() => controlVariant.value === 'stacked' ? 'auto' : '100%');
|
28058
28064
|
const incrementSlotProps = vue.computed(() => ({
|
28059
28065
|
click: onClickUp
|
28060
28066
|
}));
|
@@ -28112,18 +28118,42 @@
|
|
28112
28118
|
modelValue: _,
|
28113
28119
|
...textFieldProps
|
28114
28120
|
} = VTextField.filterProps(props);
|
28115
|
-
function
|
28116
|
-
|
28117
|
-
|
28118
|
-
"
|
28119
|
-
|
28121
|
+
function incrementControlNode() {
|
28122
|
+
return !slots.increment ? vue.createVNode(VBtn, {
|
28123
|
+
"disabled": !canIncrease.value,
|
28124
|
+
"flat": true,
|
28125
|
+
"key": "increment-btn",
|
28126
|
+
"height": controlNodeDefaultHeight.value,
|
28127
|
+
"name": "increment-btn",
|
28128
|
+
"icon": incrementIcon.value,
|
28129
|
+
"onClick": onClickUp,
|
28130
|
+
"onMousedown": onControlMousedown,
|
28131
|
+
"size": controlNodeSize.value,
|
28132
|
+
"tabindex": "-1"
|
28133
|
+
}, null) : vue.createVNode(VDefaultsProvider, {
|
28134
|
+
"key": "increment-defaults",
|
28135
|
+
"defaults": {
|
28136
|
+
VBtn: {
|
28137
|
+
disabled: !canIncrease.value,
|
28138
|
+
flat: true,
|
28139
|
+
height: controlNodeDefaultHeight.value,
|
28140
|
+
size: controlNodeSize.value,
|
28141
|
+
icon: incrementIcon.value
|
28142
|
+
}
|
28143
|
+
}
|
28144
|
+
}, {
|
28145
|
+
default: () => [slots.increment(incrementSlotProps.value)]
|
28146
|
+
});
|
28147
|
+
}
|
28148
|
+
function decrementControlNode() {
|
28149
|
+
return !slots.decrement ? vue.createVNode(VBtn, {
|
28120
28150
|
"disabled": !canDecrease.value,
|
28121
28151
|
"flat": true,
|
28122
28152
|
"key": "decrement-btn",
|
28123
|
-
"height":
|
28153
|
+
"height": controlNodeDefaultHeight.value,
|
28124
28154
|
"name": "decrement-btn",
|
28125
|
-
"icon":
|
28126
|
-
"size":
|
28155
|
+
"icon": decrementIcon.value,
|
28156
|
+
"size": controlNodeSize.value,
|
28127
28157
|
"tabindex": "-1",
|
28128
28158
|
"onClick": onClickDown,
|
28129
28159
|
"onMousedown": onControlMousedown
|
@@ -28133,40 +28163,21 @@
|
|
28133
28163
|
VBtn: {
|
28134
28164
|
disabled: !canDecrease.value,
|
28135
28165
|
flat: true,
|
28136
|
-
height:
|
28137
|
-
size:
|
28138
|
-
icon:
|
28166
|
+
height: controlNodeDefaultHeight.value,
|
28167
|
+
size: controlNodeSize.value,
|
28168
|
+
icon: decrementIcon.value
|
28139
28169
|
}
|
28140
28170
|
}
|
28141
28171
|
}, {
|
28142
28172
|
default: () => [slots.decrement(decrementSlotProps.value)]
|
28143
|
-
})
|
28173
|
+
});
|
28174
|
+
}
|
28175
|
+
function controlNode() {
|
28176
|
+
return vue.createVNode("div", {
|
28177
|
+
"class": "v-number-input__control"
|
28178
|
+
}, [decrementControlNode(), vue.createVNode(VDivider, {
|
28144
28179
|
"vertical": controlVariant.value !== 'stacked'
|
28145
|
-
}, null),
|
28146
|
-
"disabled": !canIncrease.value,
|
28147
|
-
"flat": true,
|
28148
|
-
"key": "increment-btn",
|
28149
|
-
"height": defaultHeight,
|
28150
|
-
"name": "increment-btn",
|
28151
|
-
"icon": "$collapse",
|
28152
|
-
"onClick": onClickUp,
|
28153
|
-
"onMousedown": onControlMousedown,
|
28154
|
-
"size": "small",
|
28155
|
-
"tabindex": "-1"
|
28156
|
-
}, null) : vue.createVNode(VDefaultsProvider, {
|
28157
|
-
"key": "increment-defaults",
|
28158
|
-
"defaults": {
|
28159
|
-
VBtn: {
|
28160
|
-
disabled: !canIncrease.value,
|
28161
|
-
flat: true,
|
28162
|
-
height: defaultHeight,
|
28163
|
-
size: 'small',
|
28164
|
-
icon: '$collapse'
|
28165
|
-
}
|
28166
|
-
}
|
28167
|
-
}, {
|
28168
|
-
default: () => [slots.increment(incrementSlotProps.value)]
|
28169
|
-
})]);
|
28180
|
+
}, null), incrementControlNode()]);
|
28170
28181
|
}
|
28171
28182
|
function dividerNode() {
|
28172
28183
|
return !props.hideInput && !props.inset ? vue.createVNode(VDivider, {
|
@@ -28177,27 +28188,11 @@
|
|
28177
28188
|
"class": "v-number-input__control"
|
28178
28189
|
}, [vue.createVNode(VDivider, {
|
28179
28190
|
"vertical": true
|
28180
|
-
}, null), vue.createVNode(
|
28181
|
-
"flat": true,
|
28182
|
-
"height": "100%",
|
28183
|
-
"icon": "$plus",
|
28184
|
-
"tile": true,
|
28185
|
-
"tabindex": "-1",
|
28186
|
-
"onClick": onClickUp,
|
28187
|
-
"onMousedown": onControlMousedown
|
28188
|
-
}, null)]) : !props.reverse ? vue.createVNode(vue.Fragment, null, [dividerNode(), controlNode()]) : undefined;
|
28191
|
+
}, null), incrementControlNode()]) : !props.reverse ? vue.createVNode(vue.Fragment, null, [dividerNode(), controlNode()]) : undefined;
|
28189
28192
|
const hasAppendInner = slots['append-inner'] || appendInnerControl;
|
28190
28193
|
const prependInnerControl = controlVariant.value === 'split' ? vue.createVNode("div", {
|
28191
28194
|
"class": "v-number-input__control"
|
28192
|
-
}, [vue.createVNode(
|
28193
|
-
"flat": true,
|
28194
|
-
"height": "100%",
|
28195
|
-
"icon": "$minus",
|
28196
|
-
"tile": true,
|
28197
|
-
"tabindex": "-1",
|
28198
|
-
"onClick": onClickDown,
|
28199
|
-
"onMousedown": onControlMousedown
|
28200
|
-
}, null), vue.createVNode(VDivider, {
|
28195
|
+
}, [decrementControlNode(), vue.createVNode(VDivider, {
|
28201
28196
|
"vertical": true
|
28202
28197
|
}, null)]) : props.reverse ? vue.createVNode(vue.Fragment, null, [controlNode(), dividerNode()]) : undefined;
|
28203
28198
|
const hasPrependInner = slots['prepend-inner'] || prependInnerControl;
|
@@ -28423,6 +28418,7 @@
|
|
28423
28418
|
const vExpansionPanelsRef = vue.ref();
|
28424
28419
|
const {
|
28425
28420
|
color,
|
28421
|
+
eager,
|
28426
28422
|
editable,
|
28427
28423
|
prevText,
|
28428
28424
|
nextText,
|
@@ -28441,6 +28437,7 @@
|
|
28441
28437
|
provideDefaults({
|
28442
28438
|
VStepperVerticalItem: {
|
28443
28439
|
color,
|
28440
|
+
eager,
|
28444
28441
|
editable,
|
28445
28442
|
prevText,
|
28446
28443
|
nextText,
|
@@ -30266,7 +30263,7 @@
|
|
30266
30263
|
goTo
|
30267
30264
|
};
|
30268
30265
|
}
|
30269
|
-
const version$1 = "3.6.
|
30266
|
+
const version$1 = "3.6.11-master.2024-07-03";
|
30270
30267
|
createVuetify$1.version = version$1;
|
30271
30268
|
|
30272
30269
|
// Vue's inject() can only be used in setup
|
@@ -30519,7 +30516,7 @@
|
|
30519
30516
|
|
30520
30517
|
/* eslint-disable local-rules/sort-imports */
|
30521
30518
|
|
30522
|
-
const version = "3.6.
|
30519
|
+
const version = "3.6.11-master.2024-07-03";
|
30523
30520
|
|
30524
30521
|
/* eslint-disable local-rules/sort-imports */
|
30525
30522
|
|