@stackline/vue-multiselect-dropdown 3.0.3 → 3.1.1
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/README.md +641 -51
- package/dist/index.cjs +651 -55
- package/dist/index.d.cts +153 -1
- package/dist/index.d.ts +153 -1
- package/dist/index.js +645 -54
- package/package.json +17 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackline/vue-multiselect-dropdown",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "Maintained Vue multiselect dropdown with Vue 2 and Vue 3 release lines,
|
|
3
|
+
"version": "3.1.1",
|
|
4
|
+
"description": "Maintained Vue multiselect dropdown with Vue 2 and Vue 3 release lines, accessibility-focused keyboard/ARIA tested behavior, Stackline skins, body overlays, object data, scoped slots, and renderless composables.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
7
7
|
"vue 3",
|
|
@@ -13,7 +13,20 @@
|
|
|
13
13
|
"checkbox-dropdown",
|
|
14
14
|
"stackline",
|
|
15
15
|
"accessibility",
|
|
16
|
-
"
|
|
16
|
+
"accessibility-focused",
|
|
17
|
+
"aria",
|
|
18
|
+
"aria-tested",
|
|
19
|
+
"keyboard-tested",
|
|
20
|
+
"keyboard-aria-tested",
|
|
21
|
+
"keyboard-navigation",
|
|
22
|
+
"a11y",
|
|
23
|
+
"combobox",
|
|
24
|
+
"combobox-contract",
|
|
25
|
+
"headless",
|
|
26
|
+
"slots",
|
|
27
|
+
"object-data",
|
|
28
|
+
"admin-ui",
|
|
29
|
+
"ada-compliant"
|
|
17
30
|
],
|
|
18
31
|
"homepage": "https://alexandro.net/docs/vue/multiselect/vue-3/",
|
|
19
32
|
"bugs": {
|
|
@@ -63,6 +76,6 @@
|
|
|
63
76
|
"devDependencies": {
|
|
64
77
|
"tsup": "8.5.1",
|
|
65
78
|
"typescript": "5.9.3",
|
|
66
|
-
"vue": "3.
|
|
79
|
+
"vue": "3.5.35"
|
|
67
80
|
}
|
|
68
81
|
}
|