@uniai-fe/uds-templates 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 +4 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -8,10 +8,13 @@ Next.js 서비스에서 primitives와 동일한 방식으로 **Raw TypeScript**
|
|
|
8
8
|
|
|
9
9
|
## Peer Dependencies
|
|
10
10
|
|
|
11
|
-
- `@uniai-fe/uds-foundation` (CSS 토큰 + reset)
|
|
11
|
+
- `@uniai-fe/uds-foundation@^0.0.1` (CSS 토큰 + reset)
|
|
12
|
+
- `@uniai-fe/uds-primitives@^0.0.2` (템플릿 내부 UI 컴포넌트)
|
|
12
13
|
- `react` `>= 19`, `react-dom` `>= 19`
|
|
13
14
|
- Storybook/로컬 개발용으로는 `@uniai-fe/uds-foundation/css`를 앱 루트에서 한 번만 import 해야 합니다.
|
|
14
15
|
|
|
16
|
+
> 템플릿은 primitives 위에서 동작하므로, `@uniai-fe/uds-primitives`가 설치되어 있지 않으면 빌드 타임에 peer dependency 경고가 발생합니다.
|
|
17
|
+
|
|
15
18
|
## 특징
|
|
16
19
|
|
|
17
20
|
- 화면 단위 템플릿:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-templates",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "UNIAI Design System; UI Templates Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -44,17 +44,18 @@
|
|
|
44
44
|
"design-templates:dev": "pnpm run dev"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@uniai-fe/uds-foundation": "
|
|
47
|
+
"@uniai-fe/uds-foundation": "^0.0.1",
|
|
48
|
+
"@uniai-fe/uds-primitives": "^0.0.2",
|
|
48
49
|
"react": ">= 19",
|
|
49
50
|
"react-dom": ">= 19"
|
|
50
51
|
},
|
|
51
52
|
"dependencies": {
|
|
52
|
-
"@uniai-fe/uds-primitives": "workspace:*",
|
|
53
53
|
"clsx": "^2.1.1",
|
|
54
54
|
"dayjs": "^1.11.19"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@uniai-fe/uds-foundation": "workspace:*",
|
|
58
|
+
"@uniai-fe/uds-primitives": "workspace:*",
|
|
58
59
|
"@svgr/webpack": "^8.1.0",
|
|
59
60
|
"@types/node": "^24.10.2",
|
|
60
61
|
"@types/react": "^19.2.7",
|