@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-dev.2025-05-14
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 +17 -21
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3625 -3273
- package/dist/json/importMap-labs.json +32 -28
- package/dist/json/importMap.json +180 -180
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +7373 -6147
- package/dist/vuetify-labs.cjs +424 -130
- package/dist/vuetify-labs.css +4754 -4698
- package/dist/vuetify-labs.d.ts +2285 -1171
- package/dist/vuetify-labs.esm.js +425 -131
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +424 -130
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2697 -2644
- package/dist/vuetify.d.ts +568 -511
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +75 -67
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +115 -118
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +2 -1
package/dist/json/tags.json
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
"elevation",
|
12
12
|
"height",
|
13
13
|
"icon",
|
14
|
+
"icon-size",
|
15
|
+
"icon-sizes",
|
14
16
|
"location",
|
15
17
|
"max-height",
|
16
18
|
"max-width",
|
@@ -465,6 +467,7 @@
|
|
465
467
|
"border",
|
466
468
|
"color",
|
467
469
|
"density",
|
470
|
+
"direction",
|
468
471
|
"divided",
|
469
472
|
"elevation",
|
470
473
|
"rounded",
|
@@ -481,6 +484,7 @@
|
|
481
484
|
"border",
|
482
485
|
"color",
|
483
486
|
"density",
|
487
|
+
"direction",
|
484
488
|
"disabled",
|
485
489
|
"divided",
|
486
490
|
"elevation",
|
@@ -913,6 +917,95 @@
|
|
913
917
|
],
|
914
918
|
"description": ""
|
915
919
|
},
|
920
|
+
"VColorInput": {
|
921
|
+
"attributes": [
|
922
|
+
"active",
|
923
|
+
"append-icon",
|
924
|
+
"append-inner-icon",
|
925
|
+
"autofocus",
|
926
|
+
"base-color",
|
927
|
+
"bg-color",
|
928
|
+
"border",
|
929
|
+
"cancel-text",
|
930
|
+
"canvas-height",
|
931
|
+
"center-affix",
|
932
|
+
"clear-icon",
|
933
|
+
"clearable",
|
934
|
+
"color",
|
935
|
+
"counter",
|
936
|
+
"counter-value",
|
937
|
+
"density",
|
938
|
+
"direction",
|
939
|
+
"dirty",
|
940
|
+
"disabled",
|
941
|
+
"divided",
|
942
|
+
"dot-size",
|
943
|
+
"elevation",
|
944
|
+
"error",
|
945
|
+
"error-messages",
|
946
|
+
"flat",
|
947
|
+
"focused",
|
948
|
+
"glow",
|
949
|
+
"height",
|
950
|
+
"hide-actions",
|
951
|
+
"hide-canvas",
|
952
|
+
"hide-details",
|
953
|
+
"hide-header",
|
954
|
+
"hide-inputs",
|
955
|
+
"hide-sliders",
|
956
|
+
"hide-spin-buttons",
|
957
|
+
"hint",
|
958
|
+
"icon-color",
|
959
|
+
"id",
|
960
|
+
"label",
|
961
|
+
"landscape",
|
962
|
+
"loading",
|
963
|
+
"location",
|
964
|
+
"max-errors",
|
965
|
+
"max-height",
|
966
|
+
"max-width",
|
967
|
+
"messages",
|
968
|
+
"min-height",
|
969
|
+
"min-width",
|
970
|
+
"mode",
|
971
|
+
"model-modifiers",
|
972
|
+
"model-value",
|
973
|
+
"modes",
|
974
|
+
"name",
|
975
|
+
"ok-text",
|
976
|
+
"persistent-clear",
|
977
|
+
"persistent-counter",
|
978
|
+
"persistent-hint",
|
979
|
+
"persistent-placeholder",
|
980
|
+
"pip",
|
981
|
+
"pip-icon",
|
982
|
+
"placeholder",
|
983
|
+
"position",
|
984
|
+
"prefix",
|
985
|
+
"prepend-icon",
|
986
|
+
"prepend-inner-icon",
|
987
|
+
"readonly",
|
988
|
+
"reverse",
|
989
|
+
"role",
|
990
|
+
"rounded",
|
991
|
+
"rules",
|
992
|
+
"show-swatches",
|
993
|
+
"single-line",
|
994
|
+
"suffix",
|
995
|
+
"swatches",
|
996
|
+
"swatches-max-height",
|
997
|
+
"tag",
|
998
|
+
"theme",
|
999
|
+
"tile",
|
1000
|
+
"title",
|
1001
|
+
"type",
|
1002
|
+
"validate-on",
|
1003
|
+
"validation-value",
|
1004
|
+
"variant",
|
1005
|
+
"width"
|
1006
|
+
],
|
1007
|
+
"description": ""
|
1008
|
+
},
|
916
1009
|
"VColorPicker": {
|
917
1010
|
"attributes": [
|
918
1011
|
"bg-color",
|