@aiquants/select-box 0.2.0 → 0.2.2
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 +2 -2
- package/dist/index.cjs +6 -6
- package/dist/index.js +997 -348
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiquants/select-box",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "High-performance select box component for React with virtual scrolling and fuzzy search",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"**/*.css"
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
],
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": "^19.2.7",
|
|
28
|
-
"react-dom": "^19.2.7"
|
|
28
|
+
"react-dom": "^19.2.7",
|
|
29
|
+
"@aiquants/fuzzy-search": "^2.0.0",
|
|
30
|
+
"@aiquants/virtualscroll": "^1.18.3"
|
|
29
31
|
},
|
|
30
32
|
"dependencies": {
|
|
31
|
-
"tailwind-merge": "^3.4.0"
|
|
32
|
-
"@aiquants/fuzzy-search": "1.6.0",
|
|
33
|
-
"@aiquants/virtualscroll": "1.17.0"
|
|
33
|
+
"tailwind-merge": "^3.4.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@heroicons/react": "^2.2.0",
|
|
@@ -52,7 +52,9 @@
|
|
|
52
52
|
"typescript": "^5.9.3",
|
|
53
53
|
"vite": "^7.3.0",
|
|
54
54
|
"vite-plugin-dts": "^4.5.4",
|
|
55
|
-
"vitest": "^3.2.4"
|
|
55
|
+
"vitest": "^3.2.4",
|
|
56
|
+
"@aiquants/fuzzy-search": "2.0.0",
|
|
57
|
+
"@aiquants/virtualscroll": "1.18.3"
|
|
56
58
|
},
|
|
57
59
|
"keywords": [
|
|
58
60
|
"react",
|
|
@@ -93,8 +95,8 @@
|
|
|
93
95
|
"license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
|
|
94
96
|
"license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
|
|
95
97
|
"clean": "rimraf dist",
|
|
96
|
-
"publish:patch": "
|
|
97
|
-
"publish:minor": "
|
|
98
|
-
"publish:major": "
|
|
98
|
+
"publish:patch": "pnpm version patch --no-git-checks && pnpm publish --no-git-checks",
|
|
99
|
+
"publish:minor": "pnpm version minor --no-git-checks && pnpm publish --no-git-checks",
|
|
100
|
+
"publish:major": "pnpm version major --no-git-checks && pnpm publish --no-git-checks"
|
|
99
101
|
}
|
|
100
102
|
}
|