vuetify 3.10.10 → 3.10.11
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 +1376 -1416
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +168 -168
- package/dist/json/tags.json +0 -10
- package/dist/json/web-types.json +2412 -2512
- package/dist/vuetify-labs.cjs +6 -6
- package/dist/vuetify-labs.css +4280 -4274
- package/dist/vuetify-labs.d.ts +460 -648
- package/dist/vuetify-labs.esm.js +6 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +6 -6
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2933 -2927
- package/dist/vuetify.d.ts +334 -462
- package/dist/vuetify.esm.js +6 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -6
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +63 -94
- package/lib/components/VCombobox/VCombobox.d.ts +63 -94
- package/lib/components/VField/VField.css +6 -1
- package/lib/components/VField/VField.d.ts +8 -13
- package/lib/components/VField/VField.js +1 -1
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VField/VField.sass +5 -0
- package/lib/components/VFileInput/VFileInput.d.ts +0 -13
- package/lib/components/VNumberInput/VNumberInput.d.ts +63 -89
- package/lib/components/VSelect/VSelect.d.ts +63 -94
- package/lib/components/VTabs/VTab.css +3 -2
- package/lib/components/VTabs/VTab.sass +2 -1
- package/lib/components/VTextField/VTextField.d.ts +18 -31
- package/lib/components/VTextarea/VTextarea.d.ts +0 -13
- package/lib/components/VWindow/VWindow.js +2 -2
- package/lib/components/VWindow/VWindow.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +56 -56
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +0 -13
- package/lib/labs/VDateInput/VDateInput.d.ts +63 -94
- package/lib/labs/VMaskInput/VMaskInput.d.ts +63 -94
- package/package.json +1 -1
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.10.
|
|
2
|
+
* Vuetify v3.10.11
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -12654,7 +12654,6 @@ const makeVFieldProps = propsFactory({
|
|
|
12654
12654
|
},
|
|
12655
12655
|
color: String,
|
|
12656
12656
|
baseColor: String,
|
|
12657
|
-
details: Boolean,
|
|
12658
12657
|
dirty: Boolean,
|
|
12659
12658
|
disabled: {
|
|
12660
12659
|
type: Boolean,
|
|
@@ -12687,6 +12686,7 @@ const VField = genericComponent()({
|
|
|
12687
12686
|
inheritAttrs: false,
|
|
12688
12687
|
props: {
|
|
12689
12688
|
id: String,
|
|
12689
|
+
details: Boolean,
|
|
12690
12690
|
...makeFocusProps(),
|
|
12691
12691
|
...makeVFieldProps()
|
|
12692
12692
|
},
|
|
@@ -16109,9 +16109,9 @@ const VWindow = genericComponent()({
|
|
|
16109
16109
|
if (itemsLength <= 2) {
|
|
16110
16110
|
isReversed.value = newVal < oldVal;
|
|
16111
16111
|
} else if (newVal === lastIndex && oldVal === 0) {
|
|
16112
|
-
isReversed.value = true;
|
|
16113
|
-
} else if (newVal === 0 && oldVal === lastIndex) {
|
|
16114
16112
|
isReversed.value = false;
|
|
16113
|
+
} else if (newVal === 0 && oldVal === lastIndex) {
|
|
16114
|
+
isReversed.value = true;
|
|
16115
16115
|
} else {
|
|
16116
16116
|
isReversed.value = newVal < oldVal;
|
|
16117
16117
|
}
|
|
@@ -32552,7 +32552,7 @@ function createVuetify$1() {
|
|
|
32552
32552
|
};
|
|
32553
32553
|
});
|
|
32554
32554
|
}
|
|
32555
|
-
const version$1 = "3.10.
|
|
32555
|
+
const version$1 = "3.10.11";
|
|
32556
32556
|
createVuetify$1.version = version$1;
|
|
32557
32557
|
|
|
32558
32558
|
// Vue's inject() can only be used in setup
|
|
@@ -32577,7 +32577,7 @@ const createVuetify = function () {
|
|
|
32577
32577
|
...options
|
|
32578
32578
|
});
|
|
32579
32579
|
};
|
|
32580
|
-
const version = "3.10.
|
|
32580
|
+
const version = "3.10.11";
|
|
32581
32581
|
createVuetify.version = version;
|
|
32582
32582
|
|
|
32583
32583
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version };
|