@uniai-fe/uds-templates 0.0.13 → 0.1.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-templates",
3
- "version": "0.0.13",
3
+ "version": "0.1.0",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -1,5 +1,4 @@
1
- @use "@uniai-fe/uds-foundation/css";
2
-
1
+ /* foundation CSS는 루트에서 이미 import되므로 여기서는 토큰만 사용한다. */
3
2
  .auth-password-set {
4
3
  display: flex;
5
4
  flex-direction: column;
package/src/index.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /* templates styles는 foundation/primitives 순으로 import된 이후를 가정한다. */
2
- @use "@uniai-fe/uds-primitives/styles";
2
+ // @use "@uniai-fe/uds-primitives/styles";
3
3
 
4
4
  /* 템플릿 레벨 스타일을 통합해 서비스 앱이 단일 엔트리만 import하도록 구성한다. */
5
5
  @use "./page-frame/container/index.scss" as *;
@@ -1,5 +1,4 @@
1
- @use "@uniai-fe/uds-foundation/css";
2
-
1
+ /* foundation CSS는 소비 앱 루트에서 한 번만 로드된다는 전제하에 토큰만 참조한다. */
3
2
  :where(.radix-themes, .theme-root, :root) {
4
3
  --uds-modal-overlay-bg: var(--dialog-overlay-bg, rgba(5, 6, 12, 0.55));
5
4
  --uds-modal-surface-bg: var(--color-bg-surface-static-white);