anentrypoint-design 0.0.48 → 0.0.50

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": "anentrypoint-design",
3
- "version": "0.0.48",
3
+ "version": "0.0.50",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -81,16 +81,21 @@ html, body {
81
81
  .os-btn .ic svg { width: 16px; height: 16px; display: block; fill: none; stroke: currentColor; }
82
82
 
83
83
  .os-menu {
84
+ position: absolute;
84
85
  background: var(--os-bg-1);
85
86
  border: 1px solid var(--os-bg-3);
86
87
  border-radius: var(--os-radius);
87
- box-shadow: none;
88
88
  padding: 6px;
89
89
  min-width: 220px;
90
90
  top: calc(var(--os-bar-h) + 4px);
91
91
  left: 8px;
92
92
  z-index: 9500;
93
+ display: none;
94
+ flex-direction: column;
95
+ gap: 2px;
96
+ pointer-events: auto;
93
97
  }
98
+ .os-menu.open { display: flex; }
94
99
  .os-menu .os-btn {
95
100
  width: 100%;
96
101
  text-align: left;
@@ -119,6 +124,9 @@ html, body {
119
124
  max-width: 200px;
120
125
  cursor: pointer;
121
126
  outline: none;
127
+ white-space: nowrap;
128
+ overflow: hidden;
129
+ text-overflow: ellipsis;
122
130
  }
123
131
  .os-task:hover { background: var(--os-bg-3); }
124
132
  .os-task.focused {
@@ -272,6 +280,7 @@ html, body {
272
280
  .os-menubar [data-role="home"] { display: none; }
273
281
  .os-root { position: fixed; inset: 0; display: flex; flex-direction: column; pointer-events: none; z-index: 8000; }
274
282
  .os-menubar, .os-taskbar { pointer-events: auto; flex: 0 0 auto; }
283
+ .os-taskbar { margin-top: auto; }
275
284
  .wm-root { top: var(--os-bar-h) !important; bottom: var(--os-bar-h) !important; inset: var(--os-bar-h) 0 var(--os-bar-h) 0 !important; }
276
285
 
277
286
  .app-pane { padding: 14px; font: 13px var(--os-font); color: var(--os-fg); line-height: 1.55; overflow: auto; height: 100%; box-sizing: border-box; }