@cfast/ui 0.0.1
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 +21 -0
- package/README.md +727 -0
- package/dist/chunk-755IRYDN.js +941 -0
- package/dist/chunk-7SNK37GF.js +418 -0
- package/dist/chunk-ASMYTWTR.js +356 -0
- package/dist/chunk-B2XXH5V4.js +66 -0
- package/dist/chunk-BQMXYYEV.js +348 -0
- package/dist/chunk-DTKBXCTU.js +211 -0
- package/dist/chunk-EYIBATYR.js +33 -0
- package/dist/chunk-FPZAQ2YQ.js +474 -0
- package/dist/chunk-G2OU4BYC.js +205 -0
- package/dist/chunk-JEGEIQ3R.js +925 -0
- package/dist/chunk-JUNLQJ6H.js +1013 -0
- package/dist/chunk-NRGMW3JA.js +906 -0
- package/dist/chunk-Q6FPL2OJ.js +1086 -0
- package/dist/chunk-QHWAGKNW.js +456 -0
- package/dist/chunk-QZT62CGJ.js +924 -0
- package/dist/chunk-RDTUEOLK.js +486 -0
- package/dist/chunk-RESL4IJJ.js +112 -0
- package/dist/chunk-UDCWQUTR.js +221 -0
- package/dist/chunk-UE7PZOIJ.js +11 -0
- package/dist/chunk-UTZTHGNE.js +84 -0
- package/dist/chunk-UVRXMOX5.js +439 -0
- package/dist/chunk-XFD3N2D4.js +161 -0
- package/dist/client-CXIHCQtA.d.ts +274 -0
- package/dist/client.d.ts +617 -0
- package/dist/client.js +54 -0
- package/dist/index.d.ts +415 -0
- package/dist/index.js +296 -0
- package/dist/joy.d.ts +199 -0
- package/dist/joy.js +1150 -0
- package/dist/permission-gate-DVmY42oz.d.ts +1269 -0
- package/dist/permission-gate-apt9T9Mu.d.ts +1256 -0
- package/dist/types-1bAiH2uK.d.ts +392 -0
- package/dist/types-BX6u5sAd.d.ts +403 -0
- package/dist/types-BpdY7w5l.d.ts +403 -0
- package/dist/types-BrepeVp8.d.ts +403 -0
- package/dist/types-BvAqMZhn.d.ts +403 -0
- package/dist/types-C74nSscq.d.ts +403 -0
- package/dist/types-DD1Cpx8F.d.ts +403 -0
- package/dist/types-DHUhQwJn.d.ts +403 -0
- package/dist/types-DZSJNt_M.d.ts +392 -0
- package/dist/types-DaaJiIjW.d.ts +391 -0
- package/dist/types-LUpWJwps.d.ts +403 -0
- package/dist/types-a7zVU6WE.d.ts +394 -0
- package/dist/types-biJTHMcH.d.ts +403 -0
- package/dist/types-ow_qSEYJ.d.ts +392 -0
- package/dist/types-wnLasZaB.d.ts +1234 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cfast/ui",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Permission-aware React components with UI library plugins",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/DanielMSchmidt/cfast.git",
|
|
9
|
+
"directory": "packages/ui"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "dist/index.js",
|
|
13
|
+
"types": "dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./joy": {
|
|
20
|
+
"import": "./dist/joy.js",
|
|
21
|
+
"types": "./dist/joy.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"./client": {
|
|
24
|
+
"import": "./dist/client.js",
|
|
25
|
+
"types": "./dist/client.d.ts"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"sideEffects": false,
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"@mui/joy": ">=5.0.0-beta.0",
|
|
37
|
+
"react": ">=19",
|
|
38
|
+
"react-dom": ">=19",
|
|
39
|
+
"react-router": ">=7",
|
|
40
|
+
"sonner": ">=2"
|
|
41
|
+
},
|
|
42
|
+
"peerDependenciesMeta": {
|
|
43
|
+
"@mui/joy": {
|
|
44
|
+
"optional": true
|
|
45
|
+
},
|
|
46
|
+
"sonner": {
|
|
47
|
+
"optional": true
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@cfast/actions": "0.0.1",
|
|
52
|
+
"@cfast/db": "0.0.1",
|
|
53
|
+
"@cfast/permissions": "0.0.1",
|
|
54
|
+
"@cfast/auth": "0.0.1",
|
|
55
|
+
"@cfast/storage": "0.0.1",
|
|
56
|
+
"@cfast/pagination": "0.0.1"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@emotion/react": "^11.14.0",
|
|
60
|
+
"@emotion/styled": "^11.14.1",
|
|
61
|
+
"@mui/joy": "^5.0.0-beta.52",
|
|
62
|
+
"@mui/material": "^6.5.0",
|
|
63
|
+
"@storybook/react": "^8.6.14",
|
|
64
|
+
"@storybook/react-vite": "^8.6.14",
|
|
65
|
+
"@testing-library/react": "^16.3.0",
|
|
66
|
+
"@types/react": "^19.1.6",
|
|
67
|
+
"@types/react-dom": "^19.1.6",
|
|
68
|
+
"drizzle-orm": "^0.45.1",
|
|
69
|
+
"jsdom": "^26.1.0",
|
|
70
|
+
"react": "^19.1.0",
|
|
71
|
+
"react-dom": "^19.1.0",
|
|
72
|
+
"react-router": "^7.12.0",
|
|
73
|
+
"sonner": "^2.0.3",
|
|
74
|
+
"storybook": "^8.6.14",
|
|
75
|
+
"tsup": "^8",
|
|
76
|
+
"typescript": "^5.7",
|
|
77
|
+
"vitest": "^4.1.0"
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "tsup src/index.ts src/joy.ts src/client.ts --format esm --dts",
|
|
81
|
+
"dev": "tsup src/index.ts src/joy.ts src/client.ts --format esm --dts --watch",
|
|
82
|
+
"typecheck": "tsc --noEmit",
|
|
83
|
+
"lint": "eslint src/",
|
|
84
|
+
"test": "vitest run",
|
|
85
|
+
"storybook": "storybook dev -p 6006",
|
|
86
|
+
"build-storybook": "storybook build"
|
|
87
|
+
}
|
|
88
|
+
}
|