@ceed/cds 1.24.1-next.1 → 1.24.1-next.2
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 +9 -9
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -12,22 +12,22 @@ yarn add @ceed/cds
|
|
|
12
12
|
|
|
13
13
|
### Peer Dependencies
|
|
14
14
|
|
|
15
|
-
`@ceed/cds
|
|
16
|
-
|
|
15
|
+
`@ceed/cds` requires the following peer dependencies to be installed in your app.
|
|
16
|
+
You can skip any packages that are already installed.
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
npm install @emotion/react @emotion/styled @mui/joy framer-motion
|
|
20
|
-
#
|
|
20
|
+
# If using icon components:
|
|
21
21
|
npm install @mui/icons-material
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
|
|
|
24
|
+
| Package | Required | Note |
|
|
25
25
|
|---|---|---|
|
|
26
|
-
| `@emotion/react` |
|
|
27
|
-
| `@emotion/styled` |
|
|
28
|
-
| `@mui/joy` |
|
|
29
|
-
| `framer-motion` |
|
|
30
|
-
| `@mui/icons-material` |
|
|
26
|
+
| `@emotion/react` | Yes | MUI Joy rendering engine |
|
|
27
|
+
| `@emotion/styled` | Yes | MUI Joy styling engine |
|
|
28
|
+
| `@mui/joy` | Yes | Design system foundation (includes ThemeProvider) |
|
|
29
|
+
| `framer-motion` | Yes | Animation components |
|
|
30
|
+
| `@mui/icons-material` | Optional | Only needed for icon-based components |
|
|
31
31
|
|
|
32
32
|
## Usage
|
|
33
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceed/cds",
|
|
3
|
-
"version": "1.24.1-next.
|
|
3
|
+
"version": "1.24.1-next.2",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
],
|
|
30
30
|
"exports": {
|
|
31
31
|
".": {
|
|
32
|
-
"browser": "./dist/index.browser.js",
|
|
33
32
|
"import": "./dist/index.js",
|
|
34
33
|
"require": "./dist/index.cjs"
|
|
35
34
|
},
|