@reopt-ai/opt-ui 1.13.0 → 1.15.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/COMPONENT_CATALOG.md +644 -123
  3. package/README.md +35 -7
  4. package/dist/core/index.cjs +4 -4
  5. package/dist/core/index.d.cts +2 -2
  6. package/dist/core/index.d.ts +2 -2
  7. package/dist/core/index.js +2 -2
  8. package/dist/docs/02-components/01-core.md +261 -58
  9. package/dist/docs/02-components/02-visuals.md +1 -1
  10. package/dist/docs/02-components/03-shells.md +391 -65
  11. package/dist/docs/02-components/04-surfaces.md +1 -1
  12. package/dist/docs/02-components/index.md +4 -4
  13. package/dist/id-registry.cjs +32 -0
  14. package/dist/id-registry.js +32 -0
  15. package/dist/id-registry.json +68 -0
  16. package/dist/index.cjs +1196 -427
  17. package/dist/index.d.cts +208 -19
  18. package/dist/index.d.ts +208 -19
  19. package/dist/index.js +1050 -295
  20. package/dist/{key-pad-menu-DMmbQ1jF.js → key-pad-menu-BCOeYvsH.js} +59 -67
  21. package/dist/{key-pad-menu-BOVu97bj.d.cts → key-pad-menu-CaIsTHB2.d.cts} +22 -9
  22. package/dist/{key-pad-menu-0KWOnELe.cjs → key-pad-menu-Jaqxhx9P.cjs} +57 -77
  23. package/dist/{key-pad-menu-NlZ9zNF8.d.ts → key-pad-menu-odAEycIX.d.ts} +22 -9
  24. package/dist/meta.cjs +877 -26
  25. package/dist/meta.js +877 -26
  26. package/dist/{field-sidebar-CRdToHRO.js → replay-player-layout-BVUNsUS1.js} +904 -203
  27. package/dist/{field-sidebar-CxxSK4JO.cjs → replay-player-layout-Cmzptq89.cjs} +944 -201
  28. package/dist/{field-sidebar-D-rwuN_w.d.cts → replay-player-layout-DpqdfdQ6.d.ts} +246 -3
  29. package/dist/{field-sidebar-Dz7J4ett.d.ts → replay-player-layout-DuZW-gFF.d.cts} +246 -3
  30. package/dist/shells/index.cjs +58 -52
  31. package/dist/shells/index.d.cts +2 -2
  32. package/dist/shells/index.d.ts +2 -2
  33. package/dist/shells/index.js +2 -2
  34. package/dist/{text-truncate-Bd-0WkSP.js → text-truncate-B-8nJgnu.js} +200 -101
  35. package/dist/{text-truncate-eMzvU_7k.d.cts → text-truncate-DOxUijpB.d.cts} +3 -30
  36. package/dist/{text-truncate-eMzvU_7k.d.ts → text-truncate-DOxUijpB.d.ts} +3 -30
  37. package/dist/{text-truncate-BeYW6XZu.cjs → text-truncate-gQhpMy-Z.cjs} +214 -97
  38. package/dist/theme/server.d.cts +2 -2
  39. package/dist/theme/server.d.ts +2 -2
  40. package/package.json +2 -2
@@ -11,8 +11,8 @@ interface ThemeDescriptor {
11
11
  * Optional engine input that approximates this preset. Used by
12
12
  * ThemeSwitcher to derive swatches when `switcherSwatches` is omitted, and
13
13
  * as the starting point when a user clones a preset into a custom palette.
14
- * Codegen does NOT consume this in the current phase — the static `*.css`
15
- * file remains the source of token values.
14
+ * `gen-theme-css.ts` does not consume this field — the emitted token values
15
+ * come from `PRESET_TOKENS` in `tokens.ts`.
16
16
  */
17
17
  readonly palette?: PaletteConfig;
18
18
  /**
@@ -11,8 +11,8 @@ interface ThemeDescriptor {
11
11
  * Optional engine input that approximates this preset. Used by
12
12
  * ThemeSwitcher to derive swatches when `switcherSwatches` is omitted, and
13
13
  * as the starting point when a user clones a preset into a custom palette.
14
- * Codegen does NOT consume this in the current phase — the static `*.css`
15
- * file remains the source of token values.
14
+ * `gen-theme-css.ts` does not consume this field — the emitted token values
15
+ * come from `PRESET_TOKENS` in `tokens.ts`.
16
16
  */
17
17
  readonly palette?: PaletteConfig;
18
18
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reopt-ai/opt-ui",
3
- "version": "1.13.0",
3
+ "version": "1.15.0",
4
4
  "description": "접근성 우선 UI 컴포넌트 라이브러리. opt-ui-primitives Core, 비즈니스 Shells, 페이지 Surfaces.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -148,7 +148,7 @@
148
148
  "registry": "https://registry.npmjs.org"
149
149
  },
150
150
  "dependencies": {
151
- "@reopt-ai/opt-charts": "^1.5.0",
151
+ "@reopt-ai/opt-charts": "^1.7.0",
152
152
  "@reopt-ai/opt-meta": "^0.1.0",
153
153
  "@reopt-ai/opt-palette": "^1.0.0",
154
154
  "@reopt-ai/opt-ui-primitives": "^1.5.2",