@mythicalos/ui-core 0.3.0 → 0.3.1
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": "@mythicalos/ui-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "mythicalOS framework-agnostic UI core — the pure logic (class derivation, poll scheduling, dialog/toast/gauge helpers), the token-driven component stylesheet, and the <mythical-select> form-associated web component. Zero framework runtime; the Preact and React bindings derive identical output from this package. Apache-2.0.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -225,8 +225,9 @@ button:focus-visible{outline:2px solid var(--my-accent,#0F6B66);outline-offset:2
|
|
|
225
225
|
.car{flex:none;color:var(--my-muted,#5A5F6A);transition:transform var(--my-t-fast,120ms ease)}
|
|
226
226
|
:host([data-open]) .car{transform:rotate(180deg)}
|
|
227
227
|
/* Pinned to BOTH edges with border-box sizing: under the old
|
|
228
|
-
|
|
229
|
-
OUTSIDE the 100%, so the popup rendered 14px wider than its own control.
|
|
228
|
+
min-width:100% + content-box, the 6px padding and 1px border were added
|
|
229
|
+
OUTSIDE the 100%, so the popup rendered 14px wider than its own control.
|
|
230
|
+
(No backticks in this comment — the whole sheet is a JS template literal.) */
|
|
230
231
|
#pop{position:absolute;top:calc(100% + 6px);left:0;right:0;z-index:30;width:100%;
|
|
231
232
|
box-sizing:border-box;max-height:280px;
|
|
232
233
|
overflow:auto;overscroll-behavior:contain;padding:6px;background:var(--my-surface,#fff);
|