@uniai-fe/uds-foundation 0.4.1 → 0.4.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/dist/index.css CHANGED
@@ -205,11 +205,11 @@
205
205
  opacity: 1;
206
206
  color: #959595;
207
207
  }
208
- input:focus::-moz-placeholder:not([readonly], [disabled]), textarea:focus::-moz-placeholder:not([readonly], [disabled]) {
208
+ input:not([readonly], [disabled]):focus::-moz-placeholder, textarea:not([readonly], [disabled]):focus::-moz-placeholder {
209
209
  color: transparent;
210
210
  }
211
- input:focus::placeholder:not([readonly], [disabled]),
212
- textarea:focus::placeholder:not([readonly], [disabled]) {
211
+ input:not([readonly], [disabled]):focus::placeholder,
212
+ textarea:not([readonly], [disabled]):focus::placeholder {
213
213
  color: transparent;
214
214
  }
215
215
  [type=button],
package/dist/index.d.ts CHANGED
@@ -2,6 +2,11 @@ export { NextLocalFontOptions, ThemeFontDefinition, ThemeFontDisplay, ThemeFontS
2
2
  export { pretendardFont, pretendardLocalFont } from './typography/fonts/pretendard.js';
3
3
  export { interFont, interLocalFont } from './typography/fonts/inter.js';
4
4
  export { ThemeProvider, FoundationThemeProviderProps as ThemeProviderProps } from './provider/ThemeProvider.js';
5
+ export { themeTokens } from './data/tokens.js';
6
+ export { color_primitive, color_semantic } from './data/color.js';
7
+ export { spacing_gap, spacing_padding } from './data/spacing.js';
8
+ export { layout_breakpoint, layout_radius, layout_size } from './data/layout.js';
9
+ export { typography_tokens } from './data/typography.js';
5
10
  export { ThemeColorPrimitive, ThemeColorSemanticSection, ThemeLayoutSizes, ThemeSpacingScale, ThemeTokens, ThemeTypographyCategory, ThemeTypographyVariant } from './types/theme-tokens.js';
6
11
  import 'react/jsx-runtime';
7
12
  import 'react';
package/dist/index.js CHANGED
@@ -1,3 +1,8 @@
1
1
  import "./index.scss";
2
2
  export * from "./typography/fonts";
3
3
  export * from "./provider";
4
+ export * from "./data/tokens";
5
+ export * from "./data/color";
6
+ export * from "./data/spacing";
7
+ export * from "./data/layout";
8
+ export * from "./data/typography";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-foundation",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "UNIAI Design System; Design Foundation Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -12,7 +12,7 @@
12
12
  "publishConfig": {
13
13
  "access": "public"
14
14
  },
15
- "packageManager": "pnpm@10.32.1",
15
+ "packageManager": "pnpm@10.33.0",
16
16
  "engines": {
17
17
  "node": ">=24",
18
18
  "pnpm": ">=10"
@@ -105,14 +105,14 @@
105
105
  "devDependencies": {
106
106
  "@types/node": "^24.10.2",
107
107
  "@types/react": "^19.2.14",
108
- "react": "^19.2.4",
108
+ "react": "^19.2.5",
109
109
  "@uniai-fe/tsconfig": "workspace:*",
110
- "autoprefixer": "^10.4.27",
111
- "postcss": "^8.5.8",
110
+ "autoprefixer": "^10.5.0",
111
+ "postcss": "^8.5.10",
112
112
  "postcss-cli": "^11.0.1",
113
- "prettier": "^3.8.1",
114
- "sass": "^1.98.0",
113
+ "prettier": "^3.8.3",
114
+ "sass": "^1.99.0",
115
115
  "tsup": "^8.5.1",
116
- "typescript": "~5.9.3"
116
+ "typescript": "5.9.3"
117
117
  }
118
118
  }
package/src/index.ts CHANGED
@@ -5,4 +5,10 @@ import "./index.scss";
5
5
  */
6
6
  export * from "./typography/fonts";
7
7
  export * from "./provider";
8
+ // 변경: TS const token snapshot도 루트 엔트리에서 직접 소비할 수 있게 공개한다.
9
+ export * from "./data/tokens";
10
+ export * from "./data/color";
11
+ export * from "./data/spacing";
12
+ export * from "./data/layout";
13
+ export * from "./data/typography";
8
14
  export type * from "./types";
@@ -224,11 +224,10 @@
224
224
  color: #959595;
225
225
  }
226
226
 
227
- input:focus::placeholder,
228
- textarea:focus::placeholder {
229
- &:not([readonly], [disabled]) {
230
- color: transparent;
231
- }
227
+ // Turbopack 호환을 위해 상태 selector를 pseudo-element 앞에 고정한다.
228
+ input:not([readonly], [disabled]):focus::placeholder,
229
+ textarea:not([readonly], [disabled]):focus::placeholder {
230
+ color: transparent;
232
231
  }
233
232
 
234
233
  [type="button"],