anentrypoint-design 0.0.150 → 0.0.151
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 +21 -0
- package/dist/247420.css +21 -0
- package/dist/247420.js +12 -12
- package/package.json +1 -1
- package/src/components/community.js +9 -8
- package/src/components/shell.js +27 -1
- package/src/components/voice.js +9 -8
- package/src/components.js +1 -1
package/app-shell.css
CHANGED
|
@@ -541,6 +541,27 @@ a.row { text-decoration: none; }
|
|
|
541
541
|
}
|
|
542
542
|
.cli .copy:hover { background: #6A6A70; }
|
|
543
543
|
|
|
544
|
+
/* Multi-line CLI block: when .cli holds .cli-line / .cli-cmt children
|
|
545
|
+
(quickstart scripts, multi-command snippets) it stacks as a column
|
|
546
|
+
instead of the single-line install row. */
|
|
547
|
+
.cli:has(.cli-line),
|
|
548
|
+
.cli:has(.cli-cmt) {
|
|
549
|
+
flex-direction: column; align-items: stretch; gap: 0;
|
|
550
|
+
font-size: var(--fs-sm); line-height: 1.6;
|
|
551
|
+
}
|
|
552
|
+
.cli-line {
|
|
553
|
+
display: flex; gap: 10px;
|
|
554
|
+
font-family: var(--ff-mono); font-size: 13px; line-height: 1.6;
|
|
555
|
+
padding: 3px 0;
|
|
556
|
+
}
|
|
557
|
+
.cli-line .prompt { color: var(--green-2); flex: 0 0 auto; user-select: none; }
|
|
558
|
+
.cli-line .cmd { flex: 1 1 auto; white-space: pre-wrap; word-break: break-word; color: var(--paper); }
|
|
559
|
+
.cli-cmt {
|
|
560
|
+
color: var(--fg-3);
|
|
561
|
+
font-family: var(--ff-mono); font-size: 11.5px; line-height: 1.6;
|
|
562
|
+
padding: 3px 0; white-space: pre-wrap; word-break: break-word;
|
|
563
|
+
}
|
|
564
|
+
|
|
544
565
|
/* ============================================================
|
|
545
566
|
Receipt — key/value table
|
|
546
567
|
============================================================ */
|
package/dist/247420.css
CHANGED
|
@@ -863,6 +863,27 @@
|
|
|
863
863
|
}
|
|
864
864
|
.ds-247420 .cli .copy:hover { background: #6A6A70; }
|
|
865
865
|
|
|
866
|
+
/* Multi-line CLI block: when .cli holds .cli-line / .cli-cmt children
|
|
867
|
+
(quickstart scripts, multi-command snippets) it stacks as a column
|
|
868
|
+
instead of the single-line install row. */
|
|
869
|
+
.ds-247420 .cli:has(.cli-line),
|
|
870
|
+
.ds-247420 .cli:has(.cli-cmt) {
|
|
871
|
+
flex-direction: column; align-items: stretch; gap: 0;
|
|
872
|
+
font-size: var(--fs-sm); line-height: 1.6;
|
|
873
|
+
}
|
|
874
|
+
.ds-247420 .cli-line {
|
|
875
|
+
display: flex; gap: 10px;
|
|
876
|
+
font-family: var(--ff-mono); font-size: 13px; line-height: 1.6;
|
|
877
|
+
padding: 3px 0;
|
|
878
|
+
}
|
|
879
|
+
.ds-247420 .cli-line .prompt { color: var(--green-2); flex: 0 0 auto; user-select: none; }
|
|
880
|
+
.ds-247420 .cli-line .cmd { flex: 1 1 auto; white-space: pre-wrap; word-break: break-word; color: var(--paper); }
|
|
881
|
+
.ds-247420 .cli-cmt {
|
|
882
|
+
color: var(--fg-3);
|
|
883
|
+
font-family: var(--ff-mono); font-size: 11.5px; line-height: 1.6;
|
|
884
|
+
padding: 3px 0; white-space: pre-wrap; word-break: break-word;
|
|
885
|
+
}
|
|
886
|
+
|
|
866
887
|
/* ============================================================
|
|
867
888
|
Receipt — key/value table
|
|
868
889
|
============================================================ */
|