@amityco/ui-kit-open-source 3.2.3 → 3.5.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/README.md +120 -16
- package/dist/esm/index.js +906 -845
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +931 -870
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +7 -4
- package/readme.md +0 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amityco/ui-kit-open-source",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=16",
|
|
6
6
|
"pnpm": ">=8"
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"tsc": "tsc"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@amityco/ts-sdk": "~6.
|
|
37
|
+
"@amityco/ts-sdk": "~6.21.0",
|
|
38
38
|
"react": ">=17.0.2",
|
|
39
39
|
"react-dom": ">=17.0.2"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@amityco/ts-sdk": "
|
|
42
|
+
"@amityco/ts-sdk": "^6.23.0",
|
|
43
43
|
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
|
44
44
|
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
|
45
45
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"ts-jest": "^29.1.1",
|
|
91
91
|
"tsup": "^7.3.0",
|
|
92
92
|
"typescript": "^4.9.5",
|
|
93
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
93
94
|
"vite": "^4.5.1",
|
|
94
95
|
"vite-tsconfig-paths": "^4.2.3"
|
|
95
96
|
},
|
|
@@ -99,14 +100,16 @@
|
|
|
99
100
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
100
101
|
"@hookform/error-message": "^2.0.1",
|
|
101
102
|
"@hookform/resolvers": "^3.3.4",
|
|
103
|
+
"@tanstack/react-query": "^5.28.14",
|
|
102
104
|
"clsx": "^2.1.0",
|
|
105
|
+
"extract-colors": "^4.0.2",
|
|
103
106
|
"filesize": "^9.0.11",
|
|
104
107
|
"hls.js": "^1.4.14",
|
|
105
108
|
"linkify-react": "^4.1.3",
|
|
106
109
|
"linkifyjs": "^4.1.3",
|
|
107
110
|
"lodash": "^4.17.21",
|
|
108
111
|
"millify": "^6.1.0",
|
|
109
|
-
"polished": "^4.
|
|
112
|
+
"polished": "^4.3.1",
|
|
110
113
|
"react-hook-form": "^7.49.2",
|
|
111
114
|
"react-infinite-scroll-component": "^6.1.0",
|
|
112
115
|
"react-intl": "^6.5.5",
|
package/readme.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Amity Ui-Kit for Web (open-source)
|
|
2
|
-
|
|
3
|
-
## Getting started
|
|
4
|
-
|
|
5
|
-
### Installation
|
|
6
|
-
|
|
7
|
-
Here are the steps to install ui-kit together with another project.
|
|
8
|
-
|
|
9
|
-
1. git clone git@github.com:AmityCo/Amity-Social-Cloud-UIKit-Web-OpenSource.git
|
|
10
|
-
2. cd ./Amity-Social-Cloud-UIKit-Web-OpenSource
|
|
11
|
-
3. npm ci
|
|
12
|
-
4. npm link
|
|
13
|
-
5. npm link ./`<path-to-your-app>`/node_modules/react ./`<path-to-your-app>`/node_modules/react-dom
|
|
14
|
-
6. npm run build
|
|
15
|
-
7. cd ./`<path-to-your-app>`
|
|
16
|
-
8. npm link @amityco/ui-kit-open-source --save
|
|
17
|
-
|
|
18
|
-
** We need to link react module to react module in destination project so that react is the same instance otherwise we will encounter [issues with react hook](https://medium.com/bbc-product-technology/solving-the-problem-with-npm-link-and-react-hooks-266c832dd019).
|
|
19
|
-
|
|
20
|
-
### Documentation
|
|
21
|
-
|
|
22
|
-
Please refer to our online documentation at https://docs.amity.co or contact a Ui-Kit representative at **developers@amity.co** for support.
|
|
23
|
-
|
|
24
|
-
## Contributing
|
|
25
|
-
|
|
26
|
-
See [our contributing guide](https://github.com/EkoCommunications/AmityUiKitWeb/blob/develop/CONTRIBUTING.md)
|