@amityco/ui-kit-open-source 3.8.0 → 3.9.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/dist/esm/index.css +1 -1
- package/dist/esm/index.js +942 -936
- package/dist/index.css +1 -1
- package/dist/index.d.mts +302 -56
- package/dist/index.d.ts +302 -56
- package/dist/index.js +1011 -986
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +12 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amityco/ui-kit-open-source",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=16",
|
|
6
6
|
"pnpm": ">=8"
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@amityco/ts-sdk": "^6.27.0",
|
|
48
|
+
"@eslint/js": "^9.4.0",
|
|
48
49
|
"@storybook/addon-a11y": "^7.6.7",
|
|
49
50
|
"@storybook/addon-actions": "^7.6.7",
|
|
50
51
|
"@storybook/addon-backgrounds": "^7.6.7",
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
"@storybook/react": "^7.6.7",
|
|
58
59
|
"@storybook/react-vite": "^7.6.7",
|
|
59
60
|
"@storybook/theming": "^7.6.7",
|
|
61
|
+
"@types/eslint__js": "^8.42.3",
|
|
60
62
|
"@types/jest": "^29.5.11",
|
|
61
63
|
"@types/lodash": "^4.14.202",
|
|
62
64
|
"@types/prop-types": "^15.7.11",
|
|
@@ -74,16 +76,16 @@
|
|
|
74
76
|
"autoprefixer": "^10.4.19",
|
|
75
77
|
"browserslist": "^4.23.0",
|
|
76
78
|
"esbuild-plugin-replace": "^1.4.0",
|
|
77
|
-
"eslint": "^
|
|
79
|
+
"eslint": "^9.4.0",
|
|
78
80
|
"eslint-config-prettier": "^9.1.0",
|
|
79
|
-
"eslint-import-resolver-typescript": "^3.6.1",
|
|
80
|
-
"eslint-plugin-import": "^2.29.1",
|
|
81
81
|
"eslint-plugin-jest": "^27.6.1",
|
|
82
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
83
|
+
"globals": "^15.4.0",
|
|
82
84
|
"husky": "^8.0.3",
|
|
83
85
|
"jest": "^29.7.0",
|
|
84
86
|
"lint-staged": "^13.3.0",
|
|
85
87
|
"postcss": "^8.4.38",
|
|
86
|
-
"prettier": "
|
|
88
|
+
"prettier": "3.3.1",
|
|
87
89
|
"react": "^18.2.0",
|
|
88
90
|
"react-dom": "^18.2.0",
|
|
89
91
|
"react-router-dom": "^6.21.1",
|
|
@@ -97,6 +99,7 @@
|
|
|
97
99
|
"ts-jest": "^29.1.1",
|
|
98
100
|
"tsup": "^7.3.0",
|
|
99
101
|
"typescript": "^4.9.5",
|
|
102
|
+
"typescript-eslint": "^7.12.0",
|
|
100
103
|
"typescript-plugin-css-modules": "^5.1.0",
|
|
101
104
|
"vite": "^4.5.1",
|
|
102
105
|
"vite-tsconfig-paths": "^4.2.3"
|
|
@@ -140,13 +143,14 @@
|
|
|
140
143
|
"react-truncate-markup": "^5.1.2",
|
|
141
144
|
"react-use": "^17.4.2",
|
|
142
145
|
"stylis": "^4.3.1",
|
|
146
|
+
"typescript-eslint": "^7.17.0",
|
|
143
147
|
"uuid": "^8.3.2",
|
|
144
148
|
"vaul": "^0.9.1",
|
|
145
149
|
"zod": "^3.22.4"
|
|
146
150
|
},
|
|
147
151
|
"lint-staged": {
|
|
148
152
|
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
|
|
149
|
-
"*.{json,
|
|
153
|
+
"*.{json,css}": "prettier --write",
|
|
150
154
|
"*.{css}": "stylelint --fix"
|
|
151
155
|
},
|
|
152
156
|
"postcss": {
|
|
@@ -154,5 +158,6 @@
|
|
|
154
158
|
"autoprefixer": {}
|
|
155
159
|
}
|
|
156
160
|
},
|
|
157
|
-
"license": "LGPL-2.1-only"
|
|
161
|
+
"license": "LGPL-2.1-only",
|
|
162
|
+
"packageManager": "pnpm@9.5.0"
|
|
158
163
|
}
|