@cere/cere-design-system 0.0.9 → 0.0.13
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/.specify/memory/agent-factory.md +44 -0
- package/.specify/memory/architecture.md +143 -0
- package/.specify/memory/component-architecture.md +73 -0
- package/.specify/memory/components-reference.md +1353 -0
- package/.specify/memory/constitution.md +295 -0
- package/.specify/memory/design-tokens.md +139 -0
- package/.specify/memory/package-usage-guide.md +99 -0
- package/.specify/memory/toolkits.md +57 -0
- package/.specify/memory/workflow.md +87 -0
- package/README.md +197 -3
- package/dist/HumanSans-Black-C4YJONK7.otf +0 -0
- package/dist/HumanSans-Bold-4EAJ3L3T.otf +0 -0
- package/dist/HumanSans-BoldOblique-4D325T4F.otf +0 -0
- package/dist/HumanSans-ExtraLight-VL7DEKQ4.otf +0 -0
- package/dist/HumanSans-ExtraLightOblique-VK2JTUXF.otf +0 -0
- package/dist/HumanSans-Light-YV7AFKRB.otf +0 -0
- package/dist/HumanSans-LightOblique-VIXV7QA6.otf +0 -0
- package/dist/HumanSans-Medium-UULJ3PIR.otf +0 -0
- package/dist/HumanSans-MediumOblique-M7FHDZRS.otf +0 -0
- package/dist/HumanSans-Regular-QMFEP3F6.otf +0 -0
- package/dist/HumanSans-RegularOblique-YPKQJAAM.otf +0 -0
- package/dist/index.css +79 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +242 -94
- package/dist/index.d.ts +242 -94
- package/dist/index.js +3158 -553
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3020 -456
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cere/cere-design-system",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "Cere Network Design System - UI component library built with Material UI and React",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
".specify/memory"
|
|
17
18
|
],
|
|
18
19
|
"scripts": {
|
|
19
20
|
"build": "tsup",
|
|
@@ -31,13 +32,25 @@
|
|
|
31
32
|
"check-types:ci": "tsc --noEmit",
|
|
32
33
|
"prepublishOnly": "npm run build"
|
|
33
34
|
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"byte-size": "^9.0.0",
|
|
37
|
+
"date-fns": "^3.6.0",
|
|
38
|
+
"github-markdown-css": "^5.6.1",
|
|
39
|
+
"highlight.js": "^11.9.0",
|
|
40
|
+
"lottie-react": "^2.4.0",
|
|
41
|
+
"react-markdown": "^9.0.1",
|
|
42
|
+
"react-qr-code": "^2.0.15",
|
|
43
|
+
"rehype-highlight": "^7.0.0",
|
|
44
|
+
"rehype-raw": "^7.0.0"
|
|
45
|
+
},
|
|
34
46
|
"peerDependencies": {
|
|
35
47
|
"@emotion/react": "^11.14.0",
|
|
36
48
|
"@emotion/styled": "^11.14.0",
|
|
49
|
+
"@monaco-editor/react": "^4.7.0",
|
|
37
50
|
"@mui/icons-material": "^6.4.7",
|
|
38
51
|
"@mui/lab": "^6.0.0-beta.30",
|
|
39
52
|
"@mui/material": "^6.4.7",
|
|
40
|
-
"@
|
|
53
|
+
"@mui/x-charts": "^7.12.0",
|
|
41
54
|
"react": "^18.2.0",
|
|
42
55
|
"react-dom": "^18.2.0",
|
|
43
56
|
"reactflow": "^11.11.4"
|
|
@@ -47,9 +60,11 @@
|
|
|
47
60
|
"@emotion/react": "^11.14.0",
|
|
48
61
|
"@emotion/styled": "^11.14.0",
|
|
49
62
|
"@jest/globals": "^29.7.0",
|
|
63
|
+
"@monaco-editor/react": "^4.7.0",
|
|
50
64
|
"@mui/icons-material": "^6.4.7",
|
|
51
65
|
"@mui/lab": "^6.0.0-beta.30",
|
|
52
66
|
"@mui/material": "^6.4.7",
|
|
67
|
+
"@mui/x-charts": "^7.12.0",
|
|
53
68
|
"@storybook/addon-essentials": "^8.4.7",
|
|
54
69
|
"@storybook/addon-interactions": "^8.4.7",
|
|
55
70
|
"@storybook/addon-links": "^8.4.7",
|
|
@@ -61,6 +76,7 @@
|
|
|
61
76
|
"@testing-library/jest-dom": "^6.4.2",
|
|
62
77
|
"@testing-library/react": "^16.0.1",
|
|
63
78
|
"@testing-library/user-event": "^14.5.2",
|
|
79
|
+
"@types/byte-size": "^8.1.2",
|
|
64
80
|
"@types/jest": "^29.5.14",
|
|
65
81
|
"@types/node": "^22.13.10",
|
|
66
82
|
"@types/react": "^18.2.64",
|
|
@@ -76,7 +92,7 @@
|
|
|
76
92
|
"identity-obj-proxy": "^3.0.0",
|
|
77
93
|
"jest": "^29.7.0",
|
|
78
94
|
"jest-environment-jsdom": "^29.7.0",
|
|
79
|
-
"
|
|
95
|
+
"monaco-editor": "^0.55.1",
|
|
80
96
|
"playwright": "^1.48.0",
|
|
81
97
|
"react": "^18.2.0",
|
|
82
98
|
"react-dom": "^18.2.0",
|