@vuetify/nightly 3.3.17-master.2023-09-21 → 3.3.17-master.2023-09-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 +10 -2
- package/dist/json/attributes.json +16 -0
- package/dist/json/importMap-labs.json +44 -44
- package/dist/json/tags.json +5 -1
- package/dist/json/web-types.json +37 -1
- package/dist/vuetify-labs.css +425 -425
- package/dist/vuetify-labs.d.ts +57 -0
- package/dist/vuetify-labs.esm.js +19 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +6 -6
- package/dist/vuetify.d.ts +11 -11
- package/dist/vuetify.esm.js +11 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +3 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +3 -2
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +2 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +11 -11
- package/lib/labs/VDataIterator/index.d.mts +16 -0
- package/lib/labs/VDataTable/composables/select.mjs +8 -2
- package/lib/labs/VDataTable/composables/select.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.mts +44 -0
- package/lib/labs/VOtpInput/VOtpInput.mjs +1 -1
- package/lib/labs/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/labs/components.d.mts +58 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.3.17-master.2023-09-
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.3.17-master.2023-09-25...v) (2023-09-25)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
## [3.3.17-master.2023-09-
|
|
5
|
+
## [3.3.17-master.2023-09-25](https://github.com/vuetifyjs/vuetify/compare/v3.3.17...v3.3.17-master.2023-09-25) (2023-09-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **VCombobox:** prevent removing disabled items with backspace ([#18300](https://github.com/vuetifyjs/vuetify/issues/18300)) ([d49184b](https://github.com/vuetifyjs/vuetify/commit/d49184b36dccc984814ad87f184d5b0b54ccc628)), closes [#18298](https://github.com/vuetifyjs/vuetify/issues/18298)
|
|
11
|
+
* **VDataTable:** deep compare selected values ([305a211](https://github.com/vuetifyjs/vuetify/commit/305a2114e35f508dcce840f64864e275a4fd93f4)), closes [#18151](https://github.com/vuetifyjs/vuetify/issues/18151) [#18322](https://github.com/vuetifyjs/vuetify/issues/18322)
|
|
12
|
+
* **VOtpInput:** cast length prop to number ([#18329](https://github.com/vuetifyjs/vuetify/issues/18329)) ([92c1fe2](https://github.com/vuetifyjs/vuetify/commit/92c1fe21a4600e2508f26fbc5f6e571f85685c3c)), closes [#18327](https://github.com/vuetifyjs/vuetify/issues/18327)
|
|
13
|
+
* ignore disable props in v-select/v-autocomplete/v-combobox ([#18299](https://github.com/vuetifyjs/vuetify/issues/18299)) ([00c9fc0](https://github.com/vuetifyjs/vuetify/commit/00c9fc00f8705dfe0cf00d403355143f3cb3a381)), closes [#18293](https://github.com/vuetifyjs/vuetify/issues/18293)
|
|
6
14
|
|
|
7
15
|
|
|
8
16
|
|
|
@@ -2771,6 +2771,10 @@
|
|
|
2771
2771
|
"type": "boolean\n",
|
|
2772
2772
|
"description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
|
|
2773
2773
|
},
|
|
2774
|
+
"v-data-iterator/value-comparator": {
|
|
2775
|
+
"type": "(a: any, b: any) => boolean\n",
|
|
2776
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
2777
|
+
},
|
|
2774
2778
|
"v-data-iterator/item-selectable": {
|
|
2775
2779
|
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L72-L76\" target=\"_blank\">SelectItemKey</a>\n",
|
|
2776
2780
|
"description": "Property on supplied `items` that contains the boolean value indicating if the item is selectable."
|
|
@@ -2903,6 +2907,10 @@
|
|
|
2903
2907
|
"type": "boolean\n",
|
|
2904
2908
|
"description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
|
|
2905
2909
|
},
|
|
2910
|
+
"v-data-table/value-comparator": {
|
|
2911
|
+
"type": "(a: any, b: any) => boolean\n",
|
|
2912
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
2913
|
+
},
|
|
2906
2914
|
"v-data-table/hover": {
|
|
2907
2915
|
"type": "boolean\n",
|
|
2908
2916
|
"description": "Adds a hover effects to a table rows."
|
|
@@ -3127,6 +3135,10 @@
|
|
|
3127
3135
|
"type": "boolean\n",
|
|
3128
3136
|
"description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
|
|
3129
3137
|
},
|
|
3138
|
+
"v-data-table-server/value-comparator": {
|
|
3139
|
+
"type": "(a: any, b: any) => boolean\n",
|
|
3140
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3141
|
+
},
|
|
3130
3142
|
"v-data-table-server/hover": {
|
|
3131
3143
|
"type": "boolean\n",
|
|
3132
3144
|
"description": "Will add a hover effect to a table's row when the mouse is over it."
|
|
@@ -3343,6 +3355,10 @@
|
|
|
3343
3355
|
"type": "boolean\n",
|
|
3344
3356
|
"description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
|
|
3345
3357
|
},
|
|
3358
|
+
"v-data-table-virtual/value-comparator": {
|
|
3359
|
+
"type": "(a: any, b: any) => boolean\n",
|
|
3360
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3361
|
+
},
|
|
3346
3362
|
"v-data-table-virtual/hover": {
|
|
3347
3363
|
"type": "boolean\n",
|
|
3348
3364
|
"description": "Will add a hover effect to a table's row when the mouse is over it."
|
|
@@ -4,50 +4,6 @@
|
|
|
4
4
|
"from": "labs/VBottomSheet/index.mjs",
|
|
5
5
|
"styles": []
|
|
6
6
|
},
|
|
7
|
-
"VInfiniteScroll": {
|
|
8
|
-
"from": "labs/VInfiniteScroll/index.mjs",
|
|
9
|
-
"styles": []
|
|
10
|
-
},
|
|
11
|
-
"VOtpInput": {
|
|
12
|
-
"from": "labs/VOtpInput/index.mjs",
|
|
13
|
-
"styles": []
|
|
14
|
-
},
|
|
15
|
-
"VPicker": {
|
|
16
|
-
"from": "labs/VPicker/index.mjs",
|
|
17
|
-
"styles": []
|
|
18
|
-
},
|
|
19
|
-
"VPickerTitle": {
|
|
20
|
-
"from": "labs/VPicker/index.mjs",
|
|
21
|
-
"styles": []
|
|
22
|
-
},
|
|
23
|
-
"VSkeletonLoader": {
|
|
24
|
-
"from": "labs/VSkeletonLoader/index.mjs",
|
|
25
|
-
"styles": []
|
|
26
|
-
},
|
|
27
|
-
"VStepper": {
|
|
28
|
-
"from": "labs/VStepper/index.mjs",
|
|
29
|
-
"styles": []
|
|
30
|
-
},
|
|
31
|
-
"VStepperActions": {
|
|
32
|
-
"from": "labs/VStepper/index.mjs",
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VStepperHeader": {
|
|
36
|
-
"from": "labs/VStepper/index.mjs",
|
|
37
|
-
"styles": []
|
|
38
|
-
},
|
|
39
|
-
"VStepperItem": {
|
|
40
|
-
"from": "labs/VStepper/index.mjs",
|
|
41
|
-
"styles": []
|
|
42
|
-
},
|
|
43
|
-
"VStepperWindow": {
|
|
44
|
-
"from": "labs/VStepper/index.mjs",
|
|
45
|
-
"styles": []
|
|
46
|
-
},
|
|
47
|
-
"VStepperWindowItem": {
|
|
48
|
-
"from": "labs/VStepper/index.mjs",
|
|
49
|
-
"styles": []
|
|
50
|
-
},
|
|
51
7
|
"VDataTable": {
|
|
52
8
|
"from": "labs/VDataTable/index.mjs",
|
|
53
9
|
"styles": []
|
|
@@ -96,6 +52,50 @@
|
|
|
96
52
|
"from": "labs/VDatePicker/index.mjs",
|
|
97
53
|
"styles": []
|
|
98
54
|
},
|
|
55
|
+
"VInfiniteScroll": {
|
|
56
|
+
"from": "labs/VInfiniteScroll/index.mjs",
|
|
57
|
+
"styles": []
|
|
58
|
+
},
|
|
59
|
+
"VOtpInput": {
|
|
60
|
+
"from": "labs/VOtpInput/index.mjs",
|
|
61
|
+
"styles": []
|
|
62
|
+
},
|
|
63
|
+
"VPicker": {
|
|
64
|
+
"from": "labs/VPicker/index.mjs",
|
|
65
|
+
"styles": []
|
|
66
|
+
},
|
|
67
|
+
"VPickerTitle": {
|
|
68
|
+
"from": "labs/VPicker/index.mjs",
|
|
69
|
+
"styles": []
|
|
70
|
+
},
|
|
71
|
+
"VSkeletonLoader": {
|
|
72
|
+
"from": "labs/VSkeletonLoader/index.mjs",
|
|
73
|
+
"styles": []
|
|
74
|
+
},
|
|
75
|
+
"VStepper": {
|
|
76
|
+
"from": "labs/VStepper/index.mjs",
|
|
77
|
+
"styles": []
|
|
78
|
+
},
|
|
79
|
+
"VStepperActions": {
|
|
80
|
+
"from": "labs/VStepper/index.mjs",
|
|
81
|
+
"styles": []
|
|
82
|
+
},
|
|
83
|
+
"VStepperHeader": {
|
|
84
|
+
"from": "labs/VStepper/index.mjs",
|
|
85
|
+
"styles": []
|
|
86
|
+
},
|
|
87
|
+
"VStepperItem": {
|
|
88
|
+
"from": "labs/VStepper/index.mjs",
|
|
89
|
+
"styles": []
|
|
90
|
+
},
|
|
91
|
+
"VStepperWindow": {
|
|
92
|
+
"from": "labs/VStepper/index.mjs",
|
|
93
|
+
"styles": []
|
|
94
|
+
},
|
|
95
|
+
"VStepperWindowItem": {
|
|
96
|
+
"from": "labs/VStepper/index.mjs",
|
|
97
|
+
"styles": []
|
|
98
|
+
},
|
|
99
99
|
"VDataIterator": {
|
|
100
100
|
"from": "labs/VDataIterator/index.mjs",
|
|
101
101
|
"styles": []
|
package/dist/json/tags.json
CHANGED
|
@@ -905,7 +905,8 @@
|
|
|
905
905
|
"show-expand",
|
|
906
906
|
"show-select",
|
|
907
907
|
"sort-by",
|
|
908
|
-
"tag"
|
|
908
|
+
"tag",
|
|
909
|
+
"value-comparator"
|
|
909
910
|
],
|
|
910
911
|
"description": ""
|
|
911
912
|
},
|
|
@@ -963,6 +964,7 @@
|
|
|
963
964
|
"sticky",
|
|
964
965
|
"tag",
|
|
965
966
|
"theme",
|
|
967
|
+
"value-comparator",
|
|
966
968
|
"width"
|
|
967
969
|
],
|
|
968
970
|
"description": ""
|
|
@@ -1039,6 +1041,7 @@
|
|
|
1039
1041
|
"sticky",
|
|
1040
1042
|
"tag",
|
|
1041
1043
|
"theme",
|
|
1044
|
+
"value-comparator",
|
|
1042
1045
|
"width"
|
|
1043
1046
|
],
|
|
1044
1047
|
"description": ""
|
|
@@ -1084,6 +1087,7 @@
|
|
|
1084
1087
|
"sticky",
|
|
1085
1088
|
"tag",
|
|
1086
1089
|
"theme",
|
|
1090
|
+
"value-comparator",
|
|
1087
1091
|
"width"
|
|
1088
1092
|
],
|
|
1089
1093
|
"description": ""
|
package/dist/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "vuetify",
|
|
5
|
-
"version": "3.3.17-master.2023-09-
|
|
5
|
+
"version": "3.3.17-master.2023-09-25",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -9347,6 +9347,15 @@
|
|
|
9347
9347
|
"type": "boolean\n"
|
|
9348
9348
|
}
|
|
9349
9349
|
},
|
|
9350
|
+
{
|
|
9351
|
+
"name": "valueComparator",
|
|
9352
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop.",
|
|
9353
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-iterator#props",
|
|
9354
|
+
"value": {
|
|
9355
|
+
"kind": "expression",
|
|
9356
|
+
"type": "(a: any, b: any) => boolean\n"
|
|
9357
|
+
}
|
|
9358
|
+
},
|
|
9350
9359
|
{
|
|
9351
9360
|
"name": "itemSelectable",
|
|
9352
9361
|
"description": "Property on supplied `items` that contains the boolean value indicating if the item is selectable.",
|
|
@@ -10018,6 +10027,15 @@
|
|
|
10018
10027
|
"type": "boolean\n"
|
|
10019
10028
|
}
|
|
10020
10029
|
},
|
|
10030
|
+
{
|
|
10031
|
+
"name": "valueComparator",
|
|
10032
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop.",
|
|
10033
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table#props",
|
|
10034
|
+
"value": {
|
|
10035
|
+
"kind": "expression",
|
|
10036
|
+
"type": "(a: any, b: any) => boolean\n"
|
|
10037
|
+
}
|
|
10038
|
+
},
|
|
10021
10039
|
{
|
|
10022
10040
|
"name": "hover",
|
|
10023
10041
|
"description": "Adds a hover effects to a table rows.",
|
|
@@ -12092,6 +12110,15 @@
|
|
|
12092
12110
|
"type": "boolean\n"
|
|
12093
12111
|
}
|
|
12094
12112
|
},
|
|
12113
|
+
{
|
|
12114
|
+
"name": "valueComparator",
|
|
12115
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop.",
|
|
12116
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-server#props",
|
|
12117
|
+
"value": {
|
|
12118
|
+
"kind": "expression",
|
|
12119
|
+
"type": "(a: any, b: any) => boolean\n"
|
|
12120
|
+
}
|
|
12121
|
+
},
|
|
12095
12122
|
{
|
|
12096
12123
|
"name": "hover",
|
|
12097
12124
|
"description": "Will add a hover effect to a table's row when the mouse is over it.",
|
|
@@ -13836,6 +13863,15 @@
|
|
|
13836
13863
|
"type": "boolean\n"
|
|
13837
13864
|
}
|
|
13838
13865
|
},
|
|
13866
|
+
{
|
|
13867
|
+
"name": "valueComparator",
|
|
13868
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop.",
|
|
13869
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#props",
|
|
13870
|
+
"value": {
|
|
13871
|
+
"kind": "expression",
|
|
13872
|
+
"type": "(a: any, b: any) => boolean\n"
|
|
13873
|
+
}
|
|
13874
|
+
},
|
|
13839
13875
|
{
|
|
13840
13876
|
"name": "hover",
|
|
13841
13877
|
"description": "Will add a hover effect to a table's row when the mouse is over it.",
|