anentrypoint-design 0.0.305 → 0.0.306

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/app-shell.css CHANGED
@@ -4088,6 +4088,10 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
4088
4088
  .ds-stat-val.err-rate { font-size: clamp(24px, 7cqi, 32px); color: var(--warn); }
4089
4089
  .ds-stat-lbl { font-size: var(--fs-micro); color: var(--fg-3); margin-top: 2px; }
4090
4090
 
4091
+ /* Inline row — flex row with centered items and a small gap, for demo/kit
4092
+ markup that needs to lay siblings out horizontally without an inline style. */
4093
+ .ds-inline-row { display: flex; align-items: center; gap: var(--space-2, 8px); }
4094
+
4091
4095
  /* SubGrid */
4092
4096
  .ds-sub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 6px; margin-top: 8px; }
4093
4097
  .ds-sub-grid-empty { padding: var(--space-3); color: var(--fg-3); font-size: var(--fs-tiny); }
package/dist/247420.css CHANGED
@@ -4612,6 +4612,10 @@
4612
4612
  .ds-247420 .ds-stat-val.err-rate { font-size: clamp(24px, 7cqi, 32px); color: var(--warn); }
4613
4613
  .ds-247420 .ds-stat-lbl { font-size: var(--fs-micro); color: var(--fg-3); margin-top: 2px; }
4614
4614
 
4615
+ /* Inline row — flex row with centered items and a small gap, for demo/kit
4616
+ markup that needs to lay siblings out horizontally without an inline style. */
4617
+ .ds-247420 .ds-inline-row { display: flex; align-items: center; gap: var(--space-2, 8px); }
4618
+
4615
4619
  /* SubGrid */
4616
4620
  .ds-247420 .ds-sub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 6px; margin-top: 8px; }
4617
4621
  .ds-247420 .ds-sub-grid-empty { padding: var(--space-3); color: var(--fg-3); font-size: var(--fs-tiny); }
@@ -8130,6 +8134,76 @@
8130
8134
  .ds-247420 .ds-ep-pager-btn:disabled { opacity: 0.4; cursor: default; }
8131
8135
  .ds-247420 .ds-ep-pager-label { white-space: nowrap; }
8132
8136
 
8137
+ .ds-247420 .ds-ep-pager-numbered { flex-wrap: wrap; }
8138
+ .ds-247420 .ds-ep-pager-num {
8139
+ appearance: none; cursor: pointer;
8140
+ background: var(--panel-2, var(--bg-2));
8141
+ border: 1px solid var(--rule);
8142
+ color: var(--panel-text, var(--fg));
8143
+ min-width: 1.75em;
8144
+ padding: var(--space-half, 3px) var(--space-1, 5px);
8145
+ border-radius: var(--r-1, 4px);
8146
+ font: inherit;
8147
+ text-align: center;
8148
+ }
8149
+ .ds-247420 .ds-ep-pager-num:hover { background: color-mix(in oklab, var(--accent) 10%, transparent); }
8150
+ .ds-247420 .ds-ep-pager-num.is-current {
8151
+ background: var(--accent);
8152
+ color: var(--accent-ink);
8153
+ border-color: var(--accent);
8154
+ }
8155
+ .ds-247420 .ds-ep-pager-ellipsis { padding: 0 var(--space-hair, 2px); opacity: 0.6; }
8156
+ .ds-247420 .ds-ep-pager-total { white-space: nowrap; margin-left: auto; }
8157
+
8158
+ /* Grid / GridItem — 24-column responsive layout. GridItem's flex-basis is
8159
+ set per-tier via --xs-basis/--sm-basis/--md-basis/--lg-basis/--xl-basis
8160
+ custom properties (computed in JS from a 1-24 span); each @media tier
8161
+ below picks up whichever property is set for that breakpoint, cascading
8162
+ down from xs as the mobile-first default. Mirrors BP_SM/MD/LG/XL. */
8163
+ .ds-247420 .ds-ep-grid {
8164
+ display: flex; flex-wrap: wrap;
8165
+ gap: var(--space-2, 8px);
8166
+ }
8167
+ .ds-247420 .ds-ep-grid-item {
8168
+ box-sizing: border-box;
8169
+ flex-grow: var(--xs-grow, 1);
8170
+ flex-basis: var(--xs-basis, 100%);
8171
+ max-width: var(--xs-basis, 100%);
8172
+ display: var(--xs-display, inherit);
8173
+ }
8174
+ @media (min-width: 480px) {
8175
+ .ds-247420 .ds-ep-grid-item[style*="--sm-basis"] {
8176
+ flex-grow: var(--sm-grow, 1);
8177
+ flex-basis: var(--sm-basis, 100%);
8178
+ max-width: var(--sm-basis, 100%);
8179
+ display: var(--sm-display, inherit);
8180
+ }
8181
+ }
8182
+ @media (min-width: 768px) {
8183
+ .ds-247420 .ds-ep-grid-item[style*="--md-basis"] {
8184
+ flex-grow: var(--md-grow, 1);
8185
+ flex-basis: var(--md-basis, 100%);
8186
+ max-width: var(--md-basis, 100%);
8187
+ display: var(--md-display, inherit);
8188
+ }
8189
+ }
8190
+ @media (min-width: 1024px) {
8191
+ .ds-247420 .ds-ep-grid-item[style*="--lg-basis"] {
8192
+ flex-grow: var(--lg-grow, 1);
8193
+ flex-basis: var(--lg-basis, 100%);
8194
+ max-width: var(--lg-basis, 100%);
8195
+ display: var(--lg-display, inherit);
8196
+ }
8197
+ }
8198
+ @media (min-width: 1440px) {
8199
+ .ds-247420 .ds-ep-grid-item[style*="--xl-basis"] {
8200
+ flex-grow: var(--xl-grow, 1);
8201
+ flex-basis: var(--xl-basis, 100%);
8202
+ max-width: var(--xl-basis, 100%);
8203
+ display: var(--xl-display, inherit);
8204
+ }
8205
+ }
8206
+
8133
8207
  /* JsonViewer */
8134
8208
  .ds-247420 .ds-ep-json {
8135
8209
  font-size: var(--fs-tiny, 12px);
@@ -9141,6 +9215,62 @@
9141
9215
  .ds-247420 .ds-ep-dock-left.collapsed { top: 6px; bottom: auto; }
9142
9216
  }
9143
9217
 
9218
+ /* Collapse / CollapseGroup — progressive-disclosure toggle panel. */
9219
+ .ds-247420 .ds-ep-collapse {
9220
+ border: 1px solid var(--rule);
9221
+ border-radius: var(--r-1, 4px);
9222
+ background: var(--panel-2, var(--bg-2));
9223
+ }
9224
+ .ds-247420 .ds-ep-collapse + .ds-ep-collapse { margin-top: var(--space-1, 5px); }
9225
+ .ds-247420 .ds-ep-collapse-head {
9226
+ appearance: none; cursor: pointer; width: 100%;
9227
+ display: flex; align-items: center; gap: var(--space-1-5, 5px);
9228
+ background: transparent; border: none;
9229
+ padding: var(--space-1-5, 5px) var(--space-2, 8px);
9230
+ font: inherit; color: var(--panel-text, var(--fg));
9231
+ text-align: left;
9232
+ }
9233
+ .ds-247420 .ds-ep-collapse-head:hover { background: color-mix(in oklab, var(--accent) 6%, transparent); }
9234
+ .ds-247420 .ds-ep-collapse-chevron {
9235
+ font-family: var(--ff-mono, monospace);
9236
+ width: 1em; flex-shrink: 0;
9237
+ color: var(--panel-text-3, var(--fg-3));
9238
+ }
9239
+ .ds-247420 .ds-ep-collapse-title { flex: 1; font-weight: 600; }
9240
+ .ds-247420 .ds-ep-collapse-body {
9241
+ padding: var(--space-2, 8px);
9242
+ border-top: 1px solid var(--rule);
9243
+ }
9244
+ .ds-247420 .ds-ep-collapse-group { display: flex; flex-direction: column; }
9245
+
9246
+ /* Divider — plain rule / labeled rule / vertical separator. */
9247
+ .ds-247420 .ds-ep-divider {
9248
+ border: none; border-top: 1px solid var(--rule);
9249
+ margin: var(--space-2, 8px) 0;
9250
+ }
9251
+ .ds-247420 .ds-ep-divider-labeled {
9252
+ display: flex; align-items: center; gap: var(--space-1-5, 5px);
9253
+ margin: var(--space-2, 8px) 0;
9254
+ }
9255
+ .ds-247420 .ds-ep-divider-labeled::before,
9256
+ .ds-247420 .ds-ep-divider-labeled::after {
9257
+ content: '';
9258
+ flex: 1;
9259
+ border-top: 1px solid var(--rule);
9260
+ }
9261
+ .ds-247420 .ds-ep-divider-label {
9262
+ font: var(--fs-tiny, 12px)/1 var(--ff-mono, monospace);
9263
+ color: var(--panel-text-3, var(--fg-3));
9264
+ white-space: nowrap;
9265
+ }
9266
+ .ds-247420 .ds-ep-divider-vertical {
9267
+ display: inline-block;
9268
+ align-self: stretch;
9269
+ width: 0;
9270
+ border-left: 1px solid var(--rule);
9271
+ margin: 0 var(--space-1-5, 5px);
9272
+ }
9273
+
9144
9274
  /* community-app.css */
9145
9275
  /* community-app.css — layout glue for mountCommunityApp (the full chat/community
9146
9276
  app GUI). Reuses the canonical app/body/main classes from app-shell.css and