@amityco/ulta-ui-kit 1.0.0-alpha.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 +504 -0
- package/dist/Inter-Black-PFV6RWF7.woff2 +0 -0
- package/dist/Inter-BlackItalic-OUXR4CVK.woff2 +0 -0
- package/dist/Inter-Bold-K6PA7FOK.woff2 +0 -0
- package/dist/Inter-BoldItalic-QKFESTQE.woff2 +0 -0
- package/dist/Inter-ExtraBold-2ZPQFALF.woff2 +0 -0
- package/dist/Inter-ExtraBoldItalic-RR7KYXHD.woff2 +0 -0
- package/dist/Inter-ExtraLight-NASBO7I6.woff2 +0 -0
- package/dist/Inter-ExtraLightItalic-AUJY3XPT.woff2 +0 -0
- package/dist/Inter-Italic-2WJ2RX3Z.woff2 +0 -0
- package/dist/Inter-Light-E4ED7JRX.woff2 +0 -0
- package/dist/Inter-LightItalic-BJ4DXCNT.woff2 +0 -0
- package/dist/Inter-Medium-3R4SWUEO.woff2 +0 -0
- package/dist/Inter-MediumItalic-QTJUSOU7.woff2 +0 -0
- package/dist/Inter-Regular-6HYMGWZS.woff2 +0 -0
- package/dist/Inter-SemiBold-7SYQBR3A.woff2 +0 -0
- package/dist/Inter-SemiBoldItalic-3EHSSXIM.woff2 +0 -0
- package/dist/Inter-Thin-3L5KITMZ.woff2 +0 -0
- package/dist/Inter-ThinItalic-J7DGFM6P.woff2 +0 -0
- package/dist/Inter-italic.var-SWFAXF2C.woff2 +0 -0
- package/dist/Inter-roman.var-WIJJYAE4.woff2 +0 -0
- package/dist/Inter.var-OMHIC2JW.woff2 +0 -0
- package/dist/esm/Inter-Black-PFV6RWF7.woff2 +0 -0
- package/dist/esm/Inter-BlackItalic-OUXR4CVK.woff2 +0 -0
- package/dist/esm/Inter-Bold-K6PA7FOK.woff2 +0 -0
- package/dist/esm/Inter-BoldItalic-QKFESTQE.woff2 +0 -0
- package/dist/esm/Inter-ExtraBold-2ZPQFALF.woff2 +0 -0
- package/dist/esm/Inter-ExtraBoldItalic-RR7KYXHD.woff2 +0 -0
- package/dist/esm/Inter-ExtraLight-NASBO7I6.woff2 +0 -0
- package/dist/esm/Inter-ExtraLightItalic-AUJY3XPT.woff2 +0 -0
- package/dist/esm/Inter-Italic-2WJ2RX3Z.woff2 +0 -0
- package/dist/esm/Inter-Light-E4ED7JRX.woff2 +0 -0
- package/dist/esm/Inter-LightItalic-BJ4DXCNT.woff2 +0 -0
- package/dist/esm/Inter-Medium-3R4SWUEO.woff2 +0 -0
- package/dist/esm/Inter-MediumItalic-QTJUSOU7.woff2 +0 -0
- package/dist/esm/Inter-Regular-6HYMGWZS.woff2 +0 -0
- package/dist/esm/Inter-SemiBold-7SYQBR3A.woff2 +0 -0
- package/dist/esm/Inter-SemiBoldItalic-3EHSSXIM.woff2 +0 -0
- package/dist/esm/Inter-Thin-3L5KITMZ.woff2 +0 -0
- package/dist/esm/Inter-ThinItalic-J7DGFM6P.woff2 +0 -0
- package/dist/esm/Inter-italic.var-SWFAXF2C.woff2 +0 -0
- package/dist/esm/Inter-roman.var-WIJJYAE4.woff2 +0 -0
- package/dist/esm/Inter.var-OMHIC2JW.woff2 +0 -0
- package/dist/esm/index.css +6 -0
- package/dist/esm/index.js +4333 -0
- package/dist/index.css +6 -0
- package/dist/index.d.mts +698 -0
- package/dist/index.d.ts +698 -0
- package/dist/index.js +4430 -0
- package/dist/metafile-cjs.json +1 -0
- package/dist/metafile-esm.json +1 -0
- package/package.json +160 -0
- package/readme.md +21 -0
package/package.json
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@amityco/ulta-ui-kit",
|
|
3
|
+
"version": "1.0.0-alpha.0",
|
|
4
|
+
"engines": {
|
|
5
|
+
"node": ">=20",
|
|
6
|
+
"pnpm": "9"
|
|
7
|
+
},
|
|
8
|
+
"module": "dist/esm/index.js",
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json",
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/esm/index.js",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./dist/index.css": {
|
|
18
|
+
"import": "./dist/esm/index.css",
|
|
19
|
+
"default": "./dist/index.css"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist/"
|
|
24
|
+
],
|
|
25
|
+
"types": "dist/index.d.ts",
|
|
26
|
+
"description": "React Ui-Kit for Amity Social Cloud",
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@amityco/ts-sdk": "6.29.2-f2c55ab.0",
|
|
29
|
+
"react": ">=17.0.2",
|
|
30
|
+
"react-dom": ">=17.0.2"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@amityco/ts-sdk": "6.29.2-f2c55ab.0",
|
|
34
|
+
"@eslint/js": "^9.4.0",
|
|
35
|
+
"@storybook/addon-a11y": "^7.6.7",
|
|
36
|
+
"@storybook/addon-actions": "^7.6.7",
|
|
37
|
+
"@storybook/addon-backgrounds": "^7.6.7",
|
|
38
|
+
"@storybook/addon-controls": "^7.6.7",
|
|
39
|
+
"@storybook/addon-essentials": "^7.6.7",
|
|
40
|
+
"@storybook/addon-toolbars": "^7.6.7",
|
|
41
|
+
"@storybook/addon-viewport": "^7.6.7",
|
|
42
|
+
"@storybook/client-api": "^7.6.7",
|
|
43
|
+
"@storybook/preview-api": "^7.6.7",
|
|
44
|
+
"@storybook/react": "^7.6.7",
|
|
45
|
+
"@storybook/react-vite": "^7.6.7",
|
|
46
|
+
"@storybook/theming": "^7.6.7",
|
|
47
|
+
"@types/eslint__js": "^8.42.3",
|
|
48
|
+
"@types/jest": "^29.5.11",
|
|
49
|
+
"@types/lodash": "^4.14.202",
|
|
50
|
+
"@types/prop-types": "^15.7.11",
|
|
51
|
+
"@types/react": "^17.0.74",
|
|
52
|
+
"@types/react-dom": "^18.3.0",
|
|
53
|
+
"@types/react-helmet": "^6.1.11",
|
|
54
|
+
"@types/react-infinite-scroller": "^1.2.5",
|
|
55
|
+
"@types/react-mentions": "^4.1.13",
|
|
56
|
+
"@types/react-timeago": "^4.1.7",
|
|
57
|
+
"@types/styled-components": "^5.1.34",
|
|
58
|
+
"@types/uuid": "^9.0.7",
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^6.18.0",
|
|
60
|
+
"@typescript-eslint/parser": "^6.18.0",
|
|
61
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
62
|
+
"autoprefixer": "^10.4.19",
|
|
63
|
+
"browserslist": "^4.23.0",
|
|
64
|
+
"esbuild-plugin-replace": "^1.4.0",
|
|
65
|
+
"eslint": "^9.4.0",
|
|
66
|
+
"eslint-config-prettier": "^9.1.0",
|
|
67
|
+
"eslint-plugin-jest": "^27.6.1",
|
|
68
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
69
|
+
"globals": "^15.4.0",
|
|
70
|
+
"husky": "^8.0.3",
|
|
71
|
+
"jest": "^29.7.0",
|
|
72
|
+
"lint-staged": "^13.3.0",
|
|
73
|
+
"postcss": "^8.4.38",
|
|
74
|
+
"prettier": "3.3.1",
|
|
75
|
+
"react": "^18.2.0",
|
|
76
|
+
"react-dom": "^18.2.0",
|
|
77
|
+
"react-router-dom": "^6.21.1",
|
|
78
|
+
"standard-version": "^9.5.0",
|
|
79
|
+
"storybook": "^7.6.7",
|
|
80
|
+
"styled-components": "^6.1.6",
|
|
81
|
+
"stylelint": "^16.6.1",
|
|
82
|
+
"stylelint-config-standard": "^36.0.0",
|
|
83
|
+
"stylelint-no-unsupported-browser-features": "^8.0.1",
|
|
84
|
+
"svg-url-loader": "^7.1.1",
|
|
85
|
+
"ts-jest": "^29.1.1",
|
|
86
|
+
"tsup": "^7.3.0",
|
|
87
|
+
"typescript": "^4.9.5",
|
|
88
|
+
"typescript-eslint": "^7.12.0",
|
|
89
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
90
|
+
"vite": "^4.5.1",
|
|
91
|
+
"vite-tsconfig-paths": "^4.2.3"
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
|
95
|
+
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
|
96
|
+
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
97
|
+
"@hookform/error-message": "^2.0.1",
|
|
98
|
+
"@hookform/resolvers": "^3.3.4",
|
|
99
|
+
"@lexical/link": "^0.16.1",
|
|
100
|
+
"@lexical/react": "^0.16.1",
|
|
101
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
102
|
+
"@tanstack/react-query": "^5.28.14",
|
|
103
|
+
"clsx": "^2.1.0",
|
|
104
|
+
"colorthief": "^2.4.0",
|
|
105
|
+
"dayjs": "^1.11.11",
|
|
106
|
+
"filesize": "^9.0.11",
|
|
107
|
+
"framer-motion": "^11.1.7",
|
|
108
|
+
"hls.js": "^1.4.14",
|
|
109
|
+
"lexical": "^0.16.1",
|
|
110
|
+
"linkify-react": "^4.1.3",
|
|
111
|
+
"linkifyjs": "^4.1.3",
|
|
112
|
+
"lodash": "^4.17.21",
|
|
113
|
+
"millify": "^6.1.0",
|
|
114
|
+
"modern-normalize": "^2.0.0",
|
|
115
|
+
"polished": "^4.3.1",
|
|
116
|
+
"react-aria": "^3.33.1",
|
|
117
|
+
"react-aria-components": "^1.2.1",
|
|
118
|
+
"react-hook-form": "^7.49.2",
|
|
119
|
+
"react-infinite-scroll-component": "^6.1.0",
|
|
120
|
+
"react-insta-stories": "^2.6.2",
|
|
121
|
+
"react-intl": "^6.5.5",
|
|
122
|
+
"react-loading-skeleton": "^3.3.1",
|
|
123
|
+
"react-mentions": "^4.4.10",
|
|
124
|
+
"react-modal-sheet": "^2.2.0",
|
|
125
|
+
"react-sizeme": "^3.0.2",
|
|
126
|
+
"react-textarea-autosize": "^8.5.3",
|
|
127
|
+
"react-timeago": "^7.2.0",
|
|
128
|
+
"react-tiny-popover": "^7.2.4",
|
|
129
|
+
"react-truncate-markup": "^5.1.2",
|
|
130
|
+
"react-use": "^17.4.2",
|
|
131
|
+
"stylis": "^4.3.1",
|
|
132
|
+
"uuid": "^8.3.2",
|
|
133
|
+
"vaul": "^0.9.1",
|
|
134
|
+
"zod": "^3.22.4"
|
|
135
|
+
},
|
|
136
|
+
"lint-staged": {
|
|
137
|
+
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
|
|
138
|
+
"*.{json,css}": "prettier --write",
|
|
139
|
+
"*.{css}": "stylelint --fix"
|
|
140
|
+
},
|
|
141
|
+
"postcss": {
|
|
142
|
+
"plugins": {
|
|
143
|
+
"autoprefixer": {}
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"license": "LGPL-2.1-only",
|
|
147
|
+
"scripts": {
|
|
148
|
+
"build": "tsup --minify",
|
|
149
|
+
"build:dev": "tsup --sourcemap --metafile",
|
|
150
|
+
"build:prod:analyze": "pnpm build --metafile",
|
|
151
|
+
"test": "jest",
|
|
152
|
+
"test:watch": "jest --watch",
|
|
153
|
+
"storybook": "storybook dev -p 6006",
|
|
154
|
+
"storybook:build": "storybook build --output-dir ./storybook-build",
|
|
155
|
+
"lint": "eslint . && stylelint \"**/*.css\"",
|
|
156
|
+
"stylelint": "stylelint",
|
|
157
|
+
"lint:fix": "eslint . --fix && stylelint \"**/*.css\" --fix",
|
|
158
|
+
"tsc": "tsc"
|
|
159
|
+
}
|
|
160
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Amity Ui-Kit for Web
|
|
2
|
+
|
|
3
|
+
## Getting started
|
|
4
|
+
|
|
5
|
+
Before starting to work, please read the following instructions.
|
|
6
|
+
https://ekoapp.atlassian.net/wiki/spaces/UP/pages/2443706407/ASC+Web+UIKit+V4+Governance
|
|
7
|
+
|
|
8
|
+
If you have any questions, please ask / discuss with the team.
|
|
9
|
+
|
|
10
|
+
### Installation
|
|
11
|
+
|
|
12
|
+
1. `npm install --save @amityco/ui-kit`
|
|
13
|
+
2. `yarn add @amityco/ui-kit`
|
|
14
|
+
|
|
15
|
+
### Documentation
|
|
16
|
+
|
|
17
|
+
Please refer to our online documentation at https://docs.amity.co or contact a Ui-Kit representative at \* \*developers@amity.co** for support.
|
|
18
|
+
|
|
19
|
+
## Contributing
|
|
20
|
+
|
|
21
|
+
See [our contributing guide](https://github.com/EkoCommunications/AmityUiKitWeb/blob/develop/CONTRIBUTING.md)
|