@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.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. 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`는 아래 peer dependencies 소비자 앱에 설치되어 있어야 합니다.
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
- # @mui/icons-material 기반 컴포넌트 사용 시 추가:
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` | 필수 | MUI Joy 렌더링 기반 |
27
- | `@emotion/styled` | 필수 | MUI Joy 스타일링 기반 |
28
- | `@mui/joy` | 필수 | 디자인 시스템 기반 (ThemeProvider 포함) |
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.1",
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
  },