react-addsearch-ui 0.2.11 → 0.2.13
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/dist/index.es.js +3066 -3013
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +141 -141
- package/dist/index.umd.js.map +1 -1
- package/package.json +115 -106
package/package.json
CHANGED
|
@@ -1,111 +1,120 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
},
|
|
42
|
-
"./dist/style.css": "./dist/style.css"
|
|
43
|
-
},
|
|
44
|
-
"main": "./dist/index.umd.js",
|
|
45
|
-
"module": "./dist/index.es.js",
|
|
46
|
-
"types": "./dist/index.d.ts",
|
|
47
|
-
"files": [
|
|
48
|
-
"dist"
|
|
49
|
-
],
|
|
50
|
-
"scripts": {
|
|
51
|
-
"build": "tsc && vite build",
|
|
52
|
-
"build-storybook": "storybook build",
|
|
53
|
-
"build:demo": "vite build --config vite.config.demo.ts",
|
|
54
|
-
"deploy-demo": "npm run build:demo && gh-pages -d dist-demo -t true",
|
|
55
|
-
"deploy-storybook": "npm run build-storybook && gh-pages -d storybook-static",
|
|
56
|
-
"dev:demo": "vite --config vite.config.demo.ts",
|
|
57
|
-
"lint": "eslint lib --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
58
|
-
"storybook": "storybook dev"
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"addsearch-js-client": "1.1.3",
|
|
62
|
-
"addsearch-search-ui": "0.9.2"
|
|
2
|
+
"name": "react-addsearch-ui",
|
|
3
|
+
"version": "0.2.13",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "AddSearch UI for React",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"addsearch",
|
|
8
|
+
"search",
|
|
9
|
+
"search ui",
|
|
10
|
+
"autocomplete",
|
|
11
|
+
"instant search",
|
|
12
|
+
"predictive search",
|
|
13
|
+
"search suggestions",
|
|
14
|
+
"react"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://www.addsearch.com/",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/AddSearch/react-addsearch-ui/issues"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/AddSearch/react-addsearch-ui"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"author": {
|
|
26
|
+
"name": "AddSearch",
|
|
27
|
+
"url": "https://www.addsearch.com"
|
|
28
|
+
},
|
|
29
|
+
"contributors": [
|
|
30
|
+
{
|
|
31
|
+
"name": "AddSearch Developers <developers@addsearch.com>",
|
|
32
|
+
"url": "https://www.addsearch.com"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"type": "module",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"import": "./dist/index.es.js",
|
|
40
|
+
"require": "./dist/index.umd.js"
|
|
63
41
|
},
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
42
|
+
"./dist/style.css": "./dist/style.css"
|
|
43
|
+
},
|
|
44
|
+
"main": "./dist/index.umd.js",
|
|
45
|
+
"module": "./dist/index.es.js",
|
|
46
|
+
"types": "./dist/index.d.ts",
|
|
47
|
+
"files": [
|
|
48
|
+
"dist"
|
|
49
|
+
],
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsc && vite build",
|
|
52
|
+
"build-storybook": "storybook build",
|
|
53
|
+
"build:demo": "vite build --config vite.config.demo.ts",
|
|
54
|
+
"deploy-demo": "npm run build:demo && gh-pages -d dist-demo -t true",
|
|
55
|
+
"deploy-storybook": "npm run build-storybook && gh-pages -d storybook-static",
|
|
56
|
+
"dev:demo": "vite --config vite.config.demo.ts",
|
|
57
|
+
"lint": "eslint lib --report-unused-disable-directives --max-warnings 0",
|
|
58
|
+
"storybook": "storybook dev"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"addsearch-js-client": "1.1.3",
|
|
62
|
+
"addsearch-search-ui": "0.9.2"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@storybook/addon-actions": "^7.6.20",
|
|
66
|
+
"@storybook/addon-controls": "^7.6.20",
|
|
67
|
+
"@storybook/addon-docs": "^7.6.20",
|
|
68
|
+
"@storybook/addon-essentials": "^7.6.20",
|
|
69
|
+
"@storybook/addon-links": "^7.6.20",
|
|
70
|
+
"@storybook/addon-styling": "^1.3.7",
|
|
71
|
+
"@storybook/cli": "^7.6.20",
|
|
72
|
+
"@storybook/react": "^7.6.20",
|
|
73
|
+
"@storybook/react-vite": "^7.6.20",
|
|
74
|
+
"@types/react": "^18.2.48",
|
|
75
|
+
"@types/react-dom": "^18.2.18",
|
|
76
|
+
"@eslint/js": "^9.0.0",
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
78
|
+
"@typescript-eslint/parser": "^8.56.0",
|
|
79
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
80
|
+
"autoprefixer": "10.4.17",
|
|
81
|
+
"eslint": "^9.39.2",
|
|
82
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
83
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
84
|
+
"eslint-plugin-react-refresh": "^0.5.0",
|
|
85
|
+
"eslint-plugin-storybook": "^0.6.15",
|
|
86
|
+
"globals": "^15.0.0",
|
|
87
|
+
"gh-pages": "^6.1.1",
|
|
88
|
+
"postcss": "^8.4.33",
|
|
89
|
+
"prettier": "^3.2.4",
|
|
90
|
+
"react": "^18.2.0",
|
|
91
|
+
"react-dom": "^18.2.0",
|
|
92
|
+
"storybook": "^7.6.20",
|
|
93
|
+
"tailwindcss": "^3.4.1",
|
|
94
|
+
"typescript": "4.9.5",
|
|
95
|
+
"typescript-eslint": "^8.56.0",
|
|
96
|
+
"vite": "^5.4.21",
|
|
97
|
+
"vite-plugin-dts": "^4.5.4"
|
|
98
|
+
},
|
|
99
|
+
"peerDependencies": {
|
|
100
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
101
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
102
|
+
},
|
|
103
|
+
"overrides": {
|
|
104
|
+
"esbuild": "0.25.0",
|
|
105
|
+
"tar-fs": "^2.1.4",
|
|
106
|
+
"sucrase": {
|
|
107
|
+
"glob": "^11.0.4"
|
|
95
108
|
},
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
109
|
+
"@storybook/core-common": {
|
|
110
|
+
"glob": "^11.0.4"
|
|
99
111
|
},
|
|
100
|
-
"
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
},
|
|
109
|
-
"tar": "7.5.4"
|
|
110
|
-
}
|
|
112
|
+
"tar": "^7.5.10",
|
|
113
|
+
"qs": "6.15.0",
|
|
114
|
+
"minimatch": "^10.2.2",
|
|
115
|
+
"ajv": "^8.18.0",
|
|
116
|
+
"serialize-javascript": "^7.0.3",
|
|
117
|
+
"yauzl": "^3.2.1",
|
|
118
|
+
"defu": ">=6.1.5"
|
|
119
|
+
}
|
|
111
120
|
}
|