react-lookup-select 1.0.4 → 1.1.0
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/LICENSE +21 -21
- package/dist/index.cjs +200 -122
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -16
- package/dist/index.d.ts +3 -16
- package/dist/index.js +207 -129
- package/dist/index.js.map +1 -1
- package/dist/styles.css +957 -862
- package/package.json +83 -79
- package/readme.md +440 -440
package/package.json
CHANGED
|
@@ -1,79 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "react-lookup-select",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"dist/styles.css"
|
|
8
|
-
],
|
|
9
|
-
"main": "dist/index.cjs",
|
|
10
|
-
"module": "dist/index.mjs",
|
|
11
|
-
"types": "dist/index.d.ts",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": "./dist/index.mjs",
|
|
16
|
-
"require": "./dist/index.cjs"
|
|
17
|
-
},
|
|
18
|
-
"./styles.css": "./dist/styles.css"
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist"
|
|
22
|
-
],
|
|
23
|
-
"peerDependencies": {
|
|
24
|
-
"react": ">=18",
|
|
25
|
-
"react-dom": ">=18"
|
|
26
|
-
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "tsup src/index.ts --dts --format cjs,esm --sourcemap",
|
|
29
|
-
"dev": "tsup src/index.ts --dts --format cjs,esm --sourcemap --watch",
|
|
30
|
-
"lint": "eslint .",
|
|
31
|
-
"test": "vitest",
|
|
32
|
-
"prepare": "husky install",
|
|
33
|
-
"storybook": "storybook dev -p 6006",
|
|
34
|
-
"build-storybook": "storybook build"
|
|
35
|
-
},
|
|
36
|
-
"publishConfig": {
|
|
37
|
-
"access": "public"
|
|
38
|
-
},
|
|
39
|
-
"repository": {
|
|
40
|
-
"type": "git",
|
|
41
|
-
"url": "git+https://github.com/Onurlulardan/react-lookup-select.git"
|
|
42
|
-
},
|
|
43
|
-
"homepage": "https://react-lookup-select.vercel.app",
|
|
44
|
-
"bugs": {
|
|
45
|
-
"url": "https://github.com/Onurlulardan/react-lookup-select/issues"
|
|
46
|
-
},
|
|
47
|
-
"keywords": [
|
|
48
|
-
"react",
|
|
49
|
-
"select",
|
|
50
|
-
"lookup",
|
|
51
|
-
"modal",
|
|
52
|
-
"grid",
|
|
53
|
-
"combobox",
|
|
54
|
-
"picker",
|
|
55
|
-
"headless",
|
|
56
|
-
"a11y"
|
|
57
|
-
],
|
|
58
|
-
"description": "A headless, customizable React lookup select component with modal and grid support",
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"@
|
|
61
|
-
"@storybook/
|
|
62
|
-
"@
|
|
63
|
-
"@testing-library/
|
|
64
|
-
"@testing-library/
|
|
65
|
-
"@
|
|
66
|
-
"@
|
|
67
|
-
"@
|
|
68
|
-
"@
|
|
69
|
-
"
|
|
70
|
-
"eslint-plugin
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "react-lookup-select",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"dist/styles.css"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/index.cjs",
|
|
10
|
+
"module": "dist/index.mjs",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.mjs",
|
|
16
|
+
"require": "./dist/index.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./styles.css": "./dist/styles.css"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"react": ">=18",
|
|
25
|
+
"react-dom": ">=18"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsup src/index.ts --dts --format cjs,esm --sourcemap",
|
|
29
|
+
"dev": "tsup src/index.ts --dts --format cjs,esm --sourcemap --watch",
|
|
30
|
+
"lint": "eslint .",
|
|
31
|
+
"test": "vitest",
|
|
32
|
+
"prepare": "husky install",
|
|
33
|
+
"storybook": "storybook dev -p 6006",
|
|
34
|
+
"build-storybook": "storybook build"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/Onurlulardan/react-lookup-select.git"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://react-lookup-select.vercel.app",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/Onurlulardan/react-lookup-select/issues"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"react",
|
|
49
|
+
"select",
|
|
50
|
+
"lookup",
|
|
51
|
+
"modal",
|
|
52
|
+
"grid",
|
|
53
|
+
"combobox",
|
|
54
|
+
"picker",
|
|
55
|
+
"headless",
|
|
56
|
+
"a11y"
|
|
57
|
+
],
|
|
58
|
+
"description": "A headless, customizable React lookup select component with modal and grid support",
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@eslint/js": "^9.39.4",
|
|
61
|
+
"@storybook/addon-docs": "^9.1.7",
|
|
62
|
+
"@storybook/react-vite": "^9.1.7",
|
|
63
|
+
"@testing-library/dom": "^10.4.1",
|
|
64
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
65
|
+
"@testing-library/react": "^16.3.0",
|
|
66
|
+
"@testing-library/user-event": "^14.6.1",
|
|
67
|
+
"@types/node": "^25.6.0",
|
|
68
|
+
"@types/react": "^19.1.13",
|
|
69
|
+
"@types/react-dom": "^19.1.9",
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "^8.44.0",
|
|
71
|
+
"@typescript-eslint/parser": "^8.44.0",
|
|
72
|
+
"eslint": "^9.35.0",
|
|
73
|
+
"eslint-plugin-storybook": "^9.1.7",
|
|
74
|
+
"husky": "^9.1.7",
|
|
75
|
+
"jsdom": "^25.0.1",
|
|
76
|
+
"prettier": "^3.6.2",
|
|
77
|
+
"storybook": "^9.1.7",
|
|
78
|
+
"tsup": "^8.5.0",
|
|
79
|
+
"typescript": "^5.9.2",
|
|
80
|
+
"typescript-eslint": "^8.58.1",
|
|
81
|
+
"vitest": "^3.2.4"
|
|
82
|
+
}
|
|
83
|
+
}
|