@dillingerstaffing/strand-svelte 0.9.0 → 0.11.0

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.
@@ -783,6 +783,10 @@
783
783
  font-size: var(--strand-text-4xl);
784
784
  }
785
785
 
786
+ .strand-data-readout--xl .strand-data-readout__value {
787
+ font-size: clamp(4.5rem, 10vw, 7rem);
788
+ }
789
+
786
790
 
787
791
  /* Dialog */
788
792
  /*! Strand UI | MIT License | dillingerstaffing.com */
@@ -2714,6 +2718,16 @@
2714
2718
  letter-spacing: var(--strand-tracking-tighter);
2715
2719
  }
2716
2720
 
2721
+ /* ── Title (human voice display, DL Part IV.7) ── */
2722
+ .strand-title {
2723
+ font-family: var(--strand-font-sans);
2724
+ font-weight: var(--strand-weight-light);
2725
+ letter-spacing: var(--strand-tracking-tighter);
2726
+ color: var(--strand-blue-midnight);
2727
+ font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
2728
+ line-height: var(--strand-leading-snug);
2729
+ }
2730
+
2717
2731
  /* ── Lead (intro paragraph, DL Part IV.6) ── */
2718
2732
  .strand-lead {
2719
2733
  font-size: var(--strand-text-lg);
@@ -2733,3 +2747,153 @@
2733
2747
  font-size: var(--strand-text-xs);
2734
2748
  }
2735
2749
 
2750
+ /* ══════════════════════════════════════════════════
2751
+ COMPOSITION MOLECULES (DL Part XI-B Grammar)
2752
+ Named derivations of DL composition primitives.
2753
+ Each molecule is a convenience class for a common
2754
+ derivation chain. See DL 11.10 Productions for the
2755
+ grammar rules; DL 11.12 Derivation for verification.
2756
+ ══════════════════════════════════════════════════ */
2757
+
2758
+ /* ── Card Section ──
2759
+ Derivation: section-boundary production (DL 11.10).
2760
+ OVERLINE + border-bottom + margin-bottom + padding-bottom */
2761
+ .strand-card-section {
2762
+ display: flex;
2763
+ justify-content: space-between;
2764
+ align-items: center;
2765
+ margin-bottom: var(--strand-space-3);
2766
+ padding-bottom: var(--strand-space-2);
2767
+ border-bottom: 1px solid var(--strand-gray-200);
2768
+ }
2769
+
2770
+ /* ── Key-Value Row ──
2771
+ Derivation: inline-pair + ranked-sequence (DL 11.10).
2772
+ identifier(OVERLINE) + quantifier(MONO_VALUE) + RANK_BORDER */
2773
+ .strand-kv {
2774
+ display: flex;
2775
+ justify-content: space-between;
2776
+ align-items: center;
2777
+ padding-block: var(--strand-space-2);
2778
+ }
2779
+
2780
+ .strand-kv + .strand-kv {
2781
+ border-top: 1px solid var(--strand-border-subtle);
2782
+ }
2783
+
2784
+ .strand-kv__label {
2785
+ font-family: var(--strand-font-mono);
2786
+ font-size: var(--strand-text-xs);
2787
+ font-weight: var(--strand-weight-medium);
2788
+ letter-spacing: var(--strand-tracking-wider);
2789
+ text-transform: uppercase;
2790
+ color: var(--strand-gray-500);
2791
+ }
2792
+
2793
+ .strand-kv__value {
2794
+ font-family: var(--strand-font-mono);
2795
+ font-size: var(--strand-text-xs);
2796
+ color: var(--strand-gray-600);
2797
+ font-variant-numeric: tabular-nums;
2798
+ }
2799
+
2800
+ .strand-kv__value--status {
2801
+ color: var(--strand-teal-vital);
2802
+ }
2803
+
2804
+ /* ── Diagnostic Log Entry ──
2805
+ Derivation: inline-sequence + ranked-sequence (DL 11.10).
2806
+ time(OVERLINE) + status(OVERLINE+COLOR_SEMANTIC) + text(SECONDARY) + RANK_BORDER */
2807
+ .strand-log {
2808
+ display: flex;
2809
+ gap: var(--strand-space-3);
2810
+ padding-block: var(--strand-space-2);
2811
+ }
2812
+
2813
+ .strand-log + .strand-log {
2814
+ border-top: 1px solid var(--strand-border-subtle);
2815
+ }
2816
+
2817
+ .strand-log__time {
2818
+ font-family: var(--strand-font-mono);
2819
+ font-size: var(--strand-text-xs);
2820
+ font-weight: var(--strand-weight-medium);
2821
+ letter-spacing: var(--strand-tracking-wider);
2822
+ text-transform: uppercase;
2823
+ color: var(--strand-gray-400);
2824
+ font-variant-numeric: tabular-nums;
2825
+ white-space: nowrap;
2826
+ }
2827
+
2828
+ .strand-log__status {
2829
+ font-family: var(--strand-font-mono);
2830
+ font-size: var(--strand-text-xs);
2831
+ font-weight: var(--strand-weight-semibold);
2832
+ letter-spacing: var(--strand-tracking-wider);
2833
+ text-transform: uppercase;
2834
+ white-space: nowrap;
2835
+ }
2836
+
2837
+ .strand-log__status--complete { color: var(--strand-teal-vital); }
2838
+ .strand-log__status--process { color: var(--strand-blue-primary); }
2839
+ .strand-log__status--warning { color: var(--strand-amber-caution); }
2840
+ .strand-log__status--error { color: var(--strand-red-alert); }
2841
+
2842
+ /* ── Metric Row ──
2843
+ Derivation: centered-group (DL 11.10).
2844
+ self-contained(atom)* with center distribution + responsive gap */
2845
+ .strand-metric-row {
2846
+ display: flex;
2847
+ justify-content: center;
2848
+ gap: clamp(2rem, 5vw, 4rem);
2849
+ text-align: center;
2850
+ }
2851
+
2852
+ /* ── Bar Chart ──
2853
+ Derivation: column-array (DL 11.10).
2854
+ column(amount? + bar + label)* with equal flex + flex-end alignment.
2855
+ Blue Discipline: one color (--strand-blue-indicator). Part XIII viz rules. */
2856
+ .strand-bar-chart {
2857
+ display: flex;
2858
+ gap: var(--strand-space-2);
2859
+ align-items: flex-end;
2860
+ height: var(--strand-space-24);
2861
+ padding: var(--strand-space-5);
2862
+ }
2863
+
2864
+ .strand-bar-chart__col {
2865
+ flex: 1;
2866
+ display: flex;
2867
+ flex-direction: column;
2868
+ align-items: center;
2869
+ gap: var(--strand-space-1);
2870
+ height: 100%;
2871
+ justify-content: flex-end;
2872
+ }
2873
+
2874
+ .strand-bar-chart__bar {
2875
+ width: 100%;
2876
+ background: var(--strand-blue-indicator);
2877
+ border-radius: var(--strand-radius-sm) var(--strand-radius-sm) 0 0;
2878
+ min-height: var(--strand-space-1);
2879
+ }
2880
+
2881
+ .strand-bar-chart__amount {
2882
+ font-family: var(--strand-font-mono);
2883
+ font-size: var(--strand-text-xs);
2884
+ font-weight: var(--strand-weight-medium);
2885
+ letter-spacing: var(--strand-tracking-wider);
2886
+ text-transform: uppercase;
2887
+ color: var(--strand-gray-300);
2888
+ font-variant-numeric: tabular-nums;
2889
+ }
2890
+
2891
+ .strand-bar-chart__label {
2892
+ font-family: var(--strand-font-mono);
2893
+ font-size: var(--strand-text-xs);
2894
+ font-weight: var(--strand-weight-medium);
2895
+ letter-spacing: var(--strand-tracking-wider);
2896
+ text-transform: uppercase;
2897
+ color: var(--strand-gray-400);
2898
+ }
2899
+