@kubit-ui-web/react-components 2.0.0-beta.39 → 2.0.0-beta.40
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 +3 -0
- package/package.json +41 -7
package/README.md
CHANGED
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
[](https://reactjs.org/)
|
|
21
21
|
[](https://storybook.js.org/)
|
|
22
22
|
|
|
23
|
+
[](CONTRIBUTING.md)
|
|
24
|
+
[](https://codecov.io/gh/kubit-ui/kubit-react-components)
|
|
25
|
+
|
|
23
26
|
</div>
|
|
24
27
|
|
|
25
28
|
<br />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubit-ui-web/react-components",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.40",
|
|
4
4
|
"description": "Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kubit",
|
|
@@ -18,12 +18,17 @@
|
|
|
18
18
|
"private": false,
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/kubit-ui/kubit-react-components.git"
|
|
21
|
+
"url": "git+https://github.com/kubit-ui/kubit-react-components.git",
|
|
22
|
+
"directory": "."
|
|
22
23
|
},
|
|
23
24
|
"license": "Apache-2.0",
|
|
24
25
|
"engines": {
|
|
25
26
|
"node": "22.x"
|
|
26
27
|
},
|
|
28
|
+
"funding": {
|
|
29
|
+
"type": "opencollective",
|
|
30
|
+
"url": "https://opencollective.com/kubit-ui"
|
|
31
|
+
},
|
|
27
32
|
"contributors": [
|
|
28
33
|
{
|
|
29
34
|
"name": "Kubit Community",
|
|
@@ -39,10 +44,23 @@
|
|
|
39
44
|
"accessibility",
|
|
40
45
|
"a11y",
|
|
41
46
|
"wcag",
|
|
47
|
+
"wcag-2.1",
|
|
42
48
|
"storybook",
|
|
43
49
|
"typescript",
|
|
44
50
|
"kubit",
|
|
45
|
-
"kubit-ui"
|
|
51
|
+
"kubit-ui",
|
|
52
|
+
"ui-library",
|
|
53
|
+
"frontend",
|
|
54
|
+
"web-components",
|
|
55
|
+
"atomic-design",
|
|
56
|
+
"composable",
|
|
57
|
+
"customizable",
|
|
58
|
+
"themeable",
|
|
59
|
+
"ssr",
|
|
60
|
+
"server-side-rendering",
|
|
61
|
+
"tree-shakeable",
|
|
62
|
+
"esm",
|
|
63
|
+
"commonjs"
|
|
46
64
|
],
|
|
47
65
|
"main": "dist/cjs/index.js",
|
|
48
66
|
"module": "dist/esm/index.js",
|
|
@@ -116,7 +134,12 @@
|
|
|
116
134
|
"types": "./dist/types/index.d.ts",
|
|
117
135
|
"import": "./dist/esm/lib/provider/*/index.js",
|
|
118
136
|
"require": "./dist/cjs/lib/provider/*/index.js"
|
|
119
|
-
}
|
|
137
|
+
},
|
|
138
|
+
"./styles/*": {
|
|
139
|
+
"import": "./dist/styles/*.css",
|
|
140
|
+
"require": "./dist/styles/*.css"
|
|
141
|
+
},
|
|
142
|
+
"./package.json": "./package.json"
|
|
120
143
|
},
|
|
121
144
|
"typesVersions": {
|
|
122
145
|
"*": {
|
|
@@ -145,7 +168,7 @@
|
|
|
145
168
|
"@storybook/react-vite": "^10.1.11",
|
|
146
169
|
"@testing-library/dom": "^10.4.1",
|
|
147
170
|
"@testing-library/jest-dom": "^6.9.1",
|
|
148
|
-
"@testing-library/react": "^16.3.
|
|
171
|
+
"@testing-library/react": "^16.3.2",
|
|
149
172
|
"@testing-library/user-event": "^14.6.1",
|
|
150
173
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
151
174
|
"@types/node": "^25.0.9",
|
|
@@ -187,9 +210,11 @@
|
|
|
187
210
|
"provenance": true
|
|
188
211
|
},
|
|
189
212
|
"bugs": {
|
|
190
|
-
"url": "https://github.com/kubit-ui/kubit-react-components/issues"
|
|
213
|
+
"url": "https://github.com/kubit-ui/kubit-react-components/issues",
|
|
214
|
+
"email": "kubit.lab.dev@gmail.com"
|
|
191
215
|
},
|
|
192
216
|
"homepage": "https://www.kubit-ui.com/",
|
|
217
|
+
"documentation": "https://www.kubit-ui.com",
|
|
193
218
|
"scripts": {
|
|
194
219
|
"start": "pnpm storybook",
|
|
195
220
|
"storybook": "storybook dev -c .storybook -p 6006",
|
|
@@ -209,15 +234,24 @@
|
|
|
209
234
|
"test": "pnpm lint && pnpm typecheck && vitest --coverage.enabled=true --silent --run",
|
|
210
235
|
"test:ci": "vitest --ui --coverage.enabled=true",
|
|
211
236
|
"test:watch": "vitest --watch",
|
|
237
|
+
"test:unit": "vitest --run",
|
|
212
238
|
"test:coverage": "vitest --coverage.enabled=true --run",
|
|
239
|
+
"test:coverage:ui": "vitest --coverage.enabled=true --ui",
|
|
213
240
|
"typecheck": "tsc --noEmit",
|
|
214
241
|
"validate": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm dist",
|
|
242
|
+
"validate:quick": "pnpm lint && pnpm typecheck",
|
|
215
243
|
"publish-figma": "npx figma connect publish",
|
|
216
244
|
"pack:check": "pnpm pack --dry-run",
|
|
217
245
|
"pack:size": "pnpm pack --dry-run 2>&1 | tail -1",
|
|
218
246
|
"pack:analyze": "pnpm pack && tar -tzf *.tgz | head -50 && rm *.tgz",
|
|
247
|
+
"pack:verify": "pnpm pack:check && pnpm pack:size",
|
|
248
|
+
"prerelease": "pnpm validate && pnpm test",
|
|
219
249
|
"clean": "rm -rf dist node_modules .pnpm-store",
|
|
250
|
+
"clean:build": "rm -rf dist",
|
|
220
251
|
"postinstall": "echo 'postinstall'",
|
|
221
|
-
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN_COMPONENTS"
|
|
252
|
+
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN_COMPONENTS",
|
|
253
|
+
"size": "pnpm pack:size",
|
|
254
|
+
"size-limit": "size-limit",
|
|
255
|
+
"analyze": "pnpm pack:analyze"
|
|
222
256
|
}
|
|
223
257
|
}
|