@vuetify/nightly 3.6.7-master.2024-05-24 → 3.6.7-master.2024-05-25
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 -2
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +126 -126
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2677 -2677
- package/dist/vuetify-labs.esm.js +7 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +491 -491
- package/dist/vuetify.d.ts +45 -45
- package/dist/vuetify.esm.js +7 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VSlider/VSlider.mjs +2 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.mjs +2 -0
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +45 -45
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.7-master.2024-05-
|
2
|
+
* Vuetify v3.6.7-master.2024-05-25
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -15760,6 +15760,7 @@
|
|
15760
15760
|
type: [Boolean, Object],
|
15761
15761
|
default: true
|
15762
15762
|
},
|
15763
|
+
name: String,
|
15763
15764
|
...makeComponentProps()
|
15764
15765
|
}, 'VSliderThumb');
|
15765
15766
|
const VSliderThumb = genericComponent()({
|
@@ -15856,6 +15857,7 @@
|
|
15856
15857
|
}, props.style],
|
15857
15858
|
"role": "slider",
|
15858
15859
|
"tabindex": disabled.value ? -1 : 0,
|
15860
|
+
"aria-label": props.name,
|
15859
15861
|
"aria-valuemin": props.min,
|
15860
15862
|
"aria-valuemax": props.max,
|
15861
15863
|
"aria-valuenow": props.modelValue,
|
@@ -16132,7 +16134,8 @@
|
|
16132
16134
|
"elevation": props.elevation,
|
16133
16135
|
"onFocus": focus,
|
16134
16136
|
"onBlur": blur,
|
16135
|
-
"ripple": props.ripple
|
16137
|
+
"ripple": props.ripple,
|
16138
|
+
"name": props.name
|
16136
16139
|
}, {
|
16137
16140
|
'thumb-label': slots['thumb-label']
|
16138
16141
|
})]);
|
@@ -28040,7 +28043,7 @@
|
|
28040
28043
|
goTo
|
28041
28044
|
};
|
28042
28045
|
}
|
28043
|
-
const version$1 = "3.6.7-master.2024-05-
|
28046
|
+
const version$1 = "3.6.7-master.2024-05-25";
|
28044
28047
|
createVuetify$1.version = version$1;
|
28045
28048
|
|
28046
28049
|
// Vue's inject() can only be used in setup
|
@@ -28065,7 +28068,7 @@
|
|
28065
28068
|
...options
|
28066
28069
|
});
|
28067
28070
|
};
|
28068
|
-
const version = "3.6.7-master.2024-05-
|
28071
|
+
const version = "3.6.7-master.2024-05-25";
|
28069
28072
|
createVuetify.version = version;
|
28070
28073
|
|
28071
28074
|
exports.blueprints = index;
|