anentrypoint-design 0.0.251 → 0.0.253

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/dist/247420.css CHANGED
@@ -7826,6 +7826,64 @@
7826
7826
  white-space: normal;
7827
7827
  text-align: center;
7828
7828
  }
7829
+ /* JsonViewer syntax tokens (mode:'highlight'/'tree') — semantic theme tokens
7830
+ only (retuned per-theme in colors_and_type.css); fallbacks chain to
7831
+ coarser tokens, never a raw literal, so standalone kits stay themed. */
7832
+ .ds-247420 .ds-ep-json-k { color: var(--sky, var(--accent)); }
7833
+ .ds-247420 .ds-ep-json-s { color: var(--green-2, var(--green)); }
7834
+ .ds-247420 .ds-ep-json-n { color: var(--flame, var(--warn)); }
7835
+ .ds-247420 .ds-ep-json-b { color: var(--purple-2, var(--purple)); }
7836
+ .ds-247420 .ds-ep-json-z { color: var(--panel-text-3, var(--fg-3)); font-style: italic; }
7837
+ /* Collapsible tree mode — native details/summary, indent guides on children. */
7838
+ .ds-247420 .ds-ep-json-tree { white-space: normal; }
7839
+ .ds-247420 .ds-ep-json-kids {
7840
+ padding-left: var(--space-3-5, 14px);
7841
+ margin-left: var(--space-1, 4px);
7842
+ border-left: 1px solid var(--rule);
7843
+ }
7844
+ .ds-247420 .ds-ep-json-sum {
7845
+ cursor: pointer; user-select: none;
7846
+ list-style: none;
7847
+ border-radius: var(--r-1, 4px);
7848
+ }
7849
+ .ds-247420 .ds-ep-json-sum::-webkit-details-marker { display: none; }
7850
+ .ds-247420 .ds-ep-json-sum::before {
7851
+ content: '+';
7852
+ display: inline-block; width: var(--space-3, 12px);
7853
+ color: var(--panel-text-3, var(--fg-3));
7854
+ }
7855
+ .ds-247420 .ds-ep-json-node[open] > .ds-ep-json-sum::before { content: '-'; }
7856
+ .ds-247420 .ds-ep-json-sum:hover { background: color-mix(in oklab, var(--accent) 8%, transparent); }
7857
+ .ds-247420 .ds-ep-json-sum:focus-visible {
7858
+ outline: 2px solid var(--accent-ink);
7859
+ outline-offset: -2px;
7860
+ }
7861
+ .ds-247420 .ds-ep-json-tag {
7862
+ margin-left: var(--space-1, 4px);
7863
+ font-size: var(--fs-micro, 11px);
7864
+ color: var(--panel-text-3, var(--fg-3));
7865
+ }
7866
+ .ds-247420 .ds-ep-json-leaf { padding-left: var(--space-3, 12px); word-break: break-all; }
7867
+ /* Copy affordance (copyable:true) — floats over the viewer's top-right. */
7868
+ .ds-247420 .ds-ep-json-wrap { position: relative; }
7869
+ .ds-247420 .ds-ep-json-copy {
7870
+ position: absolute; top: var(--space-1-75, 6px); right: var(--space-1-75, 6px); z-index: 1;
7871
+ appearance: none; cursor: pointer;
7872
+ background: var(--panel-1, var(--bg-1));
7873
+ border: 1px solid var(--rule);
7874
+ color: var(--panel-text-2, var(--fg-2));
7875
+ font: var(--fs-micro, 11px)/1 var(--ff-mono, monospace);
7876
+ padding: var(--space-half, 3px) var(--space-2, 8px);
7877
+ border-radius: var(--r-1, 4px);
7878
+ opacity: 0.75;
7879
+ }
7880
+ .ds-247420 .ds-ep-json-copy:hover { opacity: 1; border-color: var(--accent); }
7881
+ .ds-247420 .ds-ep-json-copy.copied { color: var(--green-2, var(--green)); border-color: var(--green-2, var(--green)); opacity: 1; }
7882
+ .ds-247420 .ds-ep-json-copy:focus-visible {
7883
+ outline: 2px solid var(--accent-ink);
7884
+ outline-offset: 2px;
7885
+ opacity: 1;
7886
+ }
7829
7887
 
7830
7888
  /* Dock — 3x3 grid for in-engine overlay (canvas pass-through center) */
7831
7889
  .ds-247420 .ds-ep-dock {