@trycourier/courier-react 8.0.15-beta → 8.0.17-beta
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/components/courier-client-component.d.ts +1 -1
- package/dist/components/courier-inbox.d.ts +1 -1
- package/dist/index.js +1 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -5991
- package/dist/index.mjs.map +1 -1
- package/dist/utils/utils.d.ts +1 -1
- package/package.json +16 -7
package/dist/utils/utils.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trycourier/courier-react",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.17-beta",
|
|
4
4
|
"description": "The React components for the Courier web UI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"dev": "vite",
|
|
10
|
-
"build": "tsc && vite build",
|
|
10
|
+
"build": "cross-env NODE_ENV=production tsc && vite build --mode production",
|
|
11
11
|
"watch": "vite build --watch",
|
|
12
12
|
"preview": "vite preview",
|
|
13
13
|
"prepare": "npm run build",
|
|
14
14
|
"test": "echo \"courier-react has no tests\""
|
|
15
15
|
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
16
19
|
"keywords": [
|
|
17
20
|
"courier",
|
|
18
21
|
"ui",
|
|
@@ -22,9 +25,6 @@
|
|
|
22
25
|
],
|
|
23
26
|
"author": "Courier",
|
|
24
27
|
"license": "MIT",
|
|
25
|
-
"files": [
|
|
26
|
-
"dist"
|
|
27
|
-
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@trycourier/courier-js": "2.0.3-beta",
|
|
30
30
|
"@trycourier/courier-ui-core": "1.0.5-beta",
|
|
@@ -39,9 +39,18 @@
|
|
|
39
39
|
"@types/react": "19.1.0",
|
|
40
40
|
"@types/react-dom": "19.1.0",
|
|
41
41
|
"@vitejs/plugin-react": "4.4.1",
|
|
42
|
-
"
|
|
43
|
-
"react
|
|
42
|
+
"cross-env": "^7.0.3",
|
|
43
|
+
"react": "18.2.0",
|
|
44
|
+
"react-dom": "18.2.0",
|
|
44
45
|
"vite": "6.2.6",
|
|
45
46
|
"vite-plugin-dts": "4.5.3"
|
|
47
|
+
},
|
|
48
|
+
"overrides": {
|
|
49
|
+
"react": "18.2.0",
|
|
50
|
+
"react-dom": "18.2.0"
|
|
51
|
+
},
|
|
52
|
+
"resolutions": {
|
|
53
|
+
"react": "18.2.0",
|
|
54
|
+
"react-dom": "18.2.0"
|
|
46
55
|
}
|
|
47
56
|
}
|