@uniai-fe/uds-primitives 0.0.1 → 0.0.3
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 +12 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -5,9 +5,20 @@
|
|
|
5
5
|
## 설치
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pnpm add @uniai-fe/uds-foundation @uniai-fe/uds-primitives
|
|
8
|
+
pnpm add @uniai-fe/uds-foundation @uniai-fe/util-functions @uniai-fe/uds-primitives
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## Peer Dependencies
|
|
12
|
+
|
|
13
|
+
`@uniai-fe/uds-primitives`는 디자인 토큰과 유틸리티 로직을 공유하기 위해 다음 패키지를 **같이 설치**해야 합니다.
|
|
14
|
+
|
|
15
|
+
- `@uniai-fe/uds-foundation@^0.0.1`
|
|
16
|
+
- `@uniai-fe/util-functions@^0.2.3`
|
|
17
|
+
- `react@>=19`, `react-dom@>=19`
|
|
18
|
+
- `react-hook-form@>=7`
|
|
19
|
+
|
|
20
|
+
peer dependency가 빠져 있을 경우 앱 번들 시점에 에러가 발생하니, 위 목록을 프로젝트 `package.json`에 명시해 주세요.
|
|
21
|
+
|
|
11
22
|
```ts
|
|
12
23
|
// next.config.ts
|
|
13
24
|
const nextConfig = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-primitives",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "UNIAI Design System; Primitives Components Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"design-primitives:dev": "pnpm run dev"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@uniai-fe/uds-foundation": "
|
|
45
|
+
"@uniai-fe/uds-foundation": "^0.0.1",
|
|
46
|
+
"@uniai-fe/util-functions": "^0.2.3",
|
|
46
47
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
47
48
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
48
49
|
"@radix-ui/react-visually-hidden": "^1.2.4",
|
|
@@ -61,7 +62,6 @@
|
|
|
61
62
|
"@radix-ui/react-radio-group": "^1.3.8",
|
|
62
63
|
"@radix-ui/react-slot": "^1.2.4",
|
|
63
64
|
"@radix-ui/themes": "^3.2.1",
|
|
64
|
-
"@uniai-fe/util-functions": "workspace:*",
|
|
65
65
|
"clsx": "^2.1.1",
|
|
66
66
|
"dayjs": "^1.11.19"
|
|
67
67
|
},
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"@uniai-fe/eslint-config": "workspace:*",
|
|
77
77
|
"@uniai-fe/next-devkit": "workspace:*",
|
|
78
78
|
"@uniai-fe/tsconfig": "workspace:*",
|
|
79
|
+
"@uniai-fe/util-functions": "workspace:*",
|
|
79
80
|
"eslint": "^9.39.1",
|
|
80
81
|
"prettier": "^3.7.4",
|
|
81
82
|
"react-hook-form": "^7.68.0",
|