@keenmate/web-multiselect 1.12.0-rc08 → 2.0.0-rc02
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 +72 -6
- package/custom-elements.json +6583 -0
- package/dist/index.d.ts +191 -298
- package/dist/multiselect.js +2446 -2149
- package/dist/multiselect.umd.js +23 -20
- package/docs/examples.md +2 -2
- package/docs/usage.md +396 -339
- package/package.json +16 -4
- package/vscode.css-custom-data.json +1615 -0
- package/vscode.html-custom-data.json +443 -0
- package/web-types.json +2113 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/web-multiselect",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-rc02",
|
|
4
4
|
"description": "Lightweight multiselect web component with typeahead search, rich content support, and excellent keyboard navigation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/multiselect.umd.js",
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
"./manifest": "./component-variables.manifest.json",
|
|
23
23
|
"./component-variables.manifest.json": "./component-variables.manifest.json"
|
|
24
24
|
},
|
|
25
|
+
"customElements": "custom-elements.json",
|
|
26
|
+
"web-types": "web-types.json",
|
|
25
27
|
"sideEffects": [
|
|
26
28
|
"./dist/multiselect.js",
|
|
27
29
|
"./dist/multiselect.umd.js",
|
|
@@ -34,11 +36,16 @@
|
|
|
34
36
|
"docs/theming.md",
|
|
35
37
|
"docs/examples.md",
|
|
36
38
|
"docs/accessibility.md",
|
|
37
|
-
"component-variables.manifest.json"
|
|
39
|
+
"component-variables.manifest.json",
|
|
40
|
+
"custom-elements.json",
|
|
41
|
+
"web-types.json",
|
|
42
|
+
"vscode.html-custom-data.json",
|
|
43
|
+
"vscode.css-custom-data.json"
|
|
38
44
|
],
|
|
39
45
|
"scripts": {
|
|
40
46
|
"dev": "vite --port 12200",
|
|
41
|
-
"
|
|
47
|
+
"analyze": "cem analyze",
|
|
48
|
+
"build": "npm run clean:dist && npm run analyze && vite build",
|
|
42
49
|
"build:types": "tsc",
|
|
43
50
|
"build:full": "npm run build",
|
|
44
51
|
"preview": "vite preview",
|
|
@@ -61,7 +68,9 @@
|
|
|
61
68
|
"typeahead",
|
|
62
69
|
"autocomplete",
|
|
63
70
|
"web-component",
|
|
71
|
+
"web-components",
|
|
64
72
|
"custom-element",
|
|
73
|
+
"custom-elements",
|
|
65
74
|
"search",
|
|
66
75
|
"filter",
|
|
67
76
|
"keenmate"
|
|
@@ -77,7 +86,10 @@
|
|
|
77
86
|
"url": "https://github.com/keenmate/web-multiselect/issues"
|
|
78
87
|
},
|
|
79
88
|
"devDependencies": {
|
|
89
|
+
"@custom-elements-manifest/analyzer": "^0.11.0",
|
|
80
90
|
"@playwright/test": "^1.60.0",
|
|
91
|
+
"custom-element-jet-brains-integration": "^1.7.0",
|
|
92
|
+
"custom-element-vs-code-integration": "^1.5.0",
|
|
81
93
|
"flexsearch": "^0.8.212",
|
|
82
94
|
"happy-dom": "^15.11.7",
|
|
83
95
|
"rimraf": "^5.0.5",
|
|
@@ -87,6 +99,6 @@
|
|
|
87
99
|
"vitest": "^2.1.9"
|
|
88
100
|
},
|
|
89
101
|
"dependencies": {
|
|
90
|
-
"@
|
|
102
|
+
"@keenmate/web-components-core": "1.0.0-rc02"
|
|
91
103
|
}
|
|
92
104
|
}
|