@aiquants/select-box 0.1.0 → 0.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.
@@ -1 +1 @@
1
- {"version":3,"file":"DropdownList.d.ts","sourceRoot":"","sources":["../../../src/components/DropdownList.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAqC,MAAM,OAAO,CAAA;AAElE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AAGtC,UAAU,iBAAiB;IACvB,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;IAClC,SAAS,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,iBAAiB,CA4E9C,CAAA"}
1
+ {"version":3,"file":"DropdownList.d.ts","sourceRoot":"","sources":["../../../src/components/DropdownList.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAqC,MAAM,OAAO,CAAA;AAElE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AAGtC,UAAU,iBAAiB;IACvB,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;IAClC,SAAS,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,iBAAiB,CA2E9C,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiquants/select-box",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "High-performance select box component for React with virtual scrolling and fuzzy search",
5
5
  "sideEffects": [
6
6
  "**/*.css"
@@ -23,41 +23,14 @@
23
23
  "README.md",
24
24
  "LICENSE"
25
25
  ],
26
- "scripts": {
27
- "build": "vite build && pnpm build:css",
28
- "build:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/select-box.css --minify --drafts custom-properties",
29
- "dev": "vite build --watch",
30
- "watch": "vite build --watch",
31
- "demo:dev": "cd demo && pnpm run dev",
32
- "demo:build": "cd demo && pnpm run build",
33
- "demo:start": "cd demo && pnpm run preview --port 5176",
34
- "typecheck": "tsc --noEmit",
35
- "test": "vitest",
36
- "test:run": "vitest run",
37
- "test:watch": "vitest --watch",
38
- "test:coverage": "vitest --coverage",
39
- "test:e2e": "playwright test",
40
- "test:e2e:ui": "playwright test --ui",
41
- "lint": "biome check src",
42
- "lint:fix": "biome check --write src",
43
- "format": "biome format --write src",
44
- "format:check": "biome format src",
45
- "license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
46
- "license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
47
- "clean": "rimraf dist",
48
- "prepublishOnly": "npm run clean && npm run typecheck && npm run test --if-present && npm run build",
49
- "publish:patch": "npm version patch && npm publish",
50
- "publish:minor": "npm version minor && npm publish",
51
- "publish:major": "npm version major && npm publish"
52
- },
53
26
  "peerDependencies": {
54
27
  "react": "^19.1.1",
55
28
  "react-dom": "^19.1.1"
56
29
  },
57
30
  "dependencies": {
58
- "@aiquants/fuzzy-search": "workspace:*",
59
- "@aiquants/virtualscroll": "workspace:*",
60
- "tailwind-merge": "^3.4.0"
31
+ "tailwind-merge": "^3.4.0",
32
+ "@aiquants/fuzzy-search": "1.5.0",
33
+ "@aiquants/virtualscroll": "1.14.0"
61
34
  },
62
35
  "devDependencies": {
63
36
  "@heroicons/react": "^2.2.0",
@@ -97,5 +70,31 @@
97
70
  "license": "MIT",
98
71
  "publishConfig": {
99
72
  "access": "public"
73
+ },
74
+ "scripts": {
75
+ "build": "vite build && pnpm build:css",
76
+ "build:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/select-box.css --minify --drafts custom-properties",
77
+ "dev": "vite build --watch",
78
+ "watch": "vite build --watch",
79
+ "demo:dev": "cd demo && pnpm run dev",
80
+ "demo:build": "cd demo && pnpm run build",
81
+ "demo:start": "cd demo && pnpm run preview --port 5176",
82
+ "typecheck": "tsc --noEmit",
83
+ "test": "vitest",
84
+ "test:run": "vitest run",
85
+ "test:watch": "vitest --watch",
86
+ "test:coverage": "vitest --coverage",
87
+ "test:e2e": "playwright test",
88
+ "test:e2e:ui": "playwright test --ui",
89
+ "lint": "biome check src",
90
+ "lint:fix": "biome check --write src",
91
+ "format": "biome format --write src",
92
+ "format:check": "biome format src",
93
+ "license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
94
+ "license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
95
+ "clean": "rimraf dist",
96
+ "publish:patch": "npm version patch && pnpm publish --no-git-checks",
97
+ "publish:minor": "npm version minor && pnpm publish --no-git-checks",
98
+ "publish:major": "npm version major && pnpm publish --no-git-checks"
100
99
  }
101
- }
100
+ }