@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.
- package/CHANGELOG.md +45 -0
- package/COMPONENT_CATALOG.md +644 -123
- package/README.md +35 -7
- package/dist/core/index.cjs +4 -4
- package/dist/core/index.d.cts +2 -2
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +2 -2
- package/dist/docs/02-components/01-core.md +261 -58
- package/dist/docs/02-components/02-visuals.md +1 -1
- package/dist/docs/02-components/03-shells.md +391 -65
- package/dist/docs/02-components/04-surfaces.md +1 -1
- package/dist/docs/02-components/index.md +4 -4
- package/dist/id-registry.cjs +32 -0
- package/dist/id-registry.js +32 -0
- package/dist/id-registry.json +68 -0
- package/dist/index.cjs +1196 -427
- package/dist/index.d.cts +208 -19
- package/dist/index.d.ts +208 -19
- package/dist/index.js +1050 -295
- package/dist/{key-pad-menu-DMmbQ1jF.js → key-pad-menu-BCOeYvsH.js} +59 -67
- package/dist/{key-pad-menu-BOVu97bj.d.cts → key-pad-menu-CaIsTHB2.d.cts} +22 -9
- package/dist/{key-pad-menu-0KWOnELe.cjs → key-pad-menu-Jaqxhx9P.cjs} +57 -77
- package/dist/{key-pad-menu-NlZ9zNF8.d.ts → key-pad-menu-odAEycIX.d.ts} +22 -9
- package/dist/meta.cjs +877 -26
- package/dist/meta.js +877 -26
- package/dist/{field-sidebar-CRdToHRO.js → replay-player-layout-BVUNsUS1.js} +904 -203
- package/dist/{field-sidebar-CxxSK4JO.cjs → replay-player-layout-Cmzptq89.cjs} +944 -201
- package/dist/{field-sidebar-D-rwuN_w.d.cts → replay-player-layout-DpqdfdQ6.d.ts} +246 -3
- package/dist/{field-sidebar-Dz7J4ett.d.ts → replay-player-layout-DuZW-gFF.d.cts} +246 -3
- package/dist/shells/index.cjs +58 -52
- package/dist/shells/index.d.cts +2 -2
- package/dist/shells/index.d.ts +2 -2
- package/dist/shells/index.js +2 -2
- package/dist/{text-truncate-Bd-0WkSP.js → text-truncate-B-8nJgnu.js} +200 -101
- package/dist/{text-truncate-eMzvU_7k.d.cts → text-truncate-DOxUijpB.d.cts} +3 -30
- package/dist/{text-truncate-eMzvU_7k.d.ts → text-truncate-DOxUijpB.d.ts} +3 -30
- package/dist/{text-truncate-BeYW6XZu.cjs → text-truncate-gQhpMy-Z.cjs} +214 -97
- package/dist/theme/server.d.cts +2 -2
- package/dist/theme/server.d.ts +2 -2
- package/package.json +2 -2
package/dist/theme/server.d.cts
CHANGED
|
@@ -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
|
-
*
|
|
15
|
-
*
|
|
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/dist/theme/server.d.ts
CHANGED
|
@@ -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
|
-
*
|
|
15
|
-
*
|
|
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.
|
|
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.
|
|
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",
|