@dillingerstaffing/strand-vue 0.7.1 → 0.8.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.
@@ -688,7 +688,7 @@
688
688
  line-height: var(--strand-leading-relaxed);
689
689
  color: var(--strand-blue-midnight);
690
690
  background: var(--strand-surface-recessed);
691
- box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.06); /* strand-blue-abyss at 6% opacity */
691
+ box-shadow: var(--strand-shadow-inset);
692
692
  border-radius: var(--strand-radius-lg);
693
693
  padding: var(--strand-space-3) var(--strand-space-4);
694
694
  overflow-x: auto;
@@ -2671,8 +2671,47 @@
2671
2671
 
2672
2672
  .strand-viewport {
2673
2673
  background: var(--strand-surface-recessed);
2674
- box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.06);
2674
+ box-shadow: var(--strand-shadow-inset);
2675
2675
  border-radius: var(--strand-radius-lg);
2676
2676
  padding: var(--strand-space-6);
2677
2677
  }
2678
2678
 
2679
+ /* ── Overline (specimen label pattern, DL Part IV.5) ── */
2680
+ .strand-overline {
2681
+ font-family: var(--strand-font-mono);
2682
+ font-size: var(--strand-text-xs);
2683
+ font-weight: var(--strand-weight-medium);
2684
+ letter-spacing: var(--strand-tracking-ultra);
2685
+ text-transform: uppercase;
2686
+ color: var(--strand-gray-500);
2687
+ line-height: var(--strand-leading-normal);
2688
+ }
2689
+
2690
+ /* ── Headline (display heading, DL Part IV.5) ── */
2691
+ .strand-headline {
2692
+ font-family: var(--strand-font-mono);
2693
+ font-weight: var(--strand-weight-light);
2694
+ letter-spacing: var(--strand-tracking-widest);
2695
+ text-transform: uppercase;
2696
+ color: var(--strand-blue-midnight);
2697
+ line-height: var(--strand-leading-tight);
2698
+ }
2699
+
2700
+ .strand-headline--xl {
2701
+ font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
2702
+ letter-spacing: 0.35em;
2703
+ }
2704
+
2705
+ .strand-headline--lg {
2706
+ font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
2707
+ letter-spacing: var(--strand-tracking-tighter);
2708
+ }
2709
+
2710
+ /* ── Lead (intro paragraph, DL Part IV.6) ── */
2711
+ .strand-lead {
2712
+ font-size: var(--strand-text-lg);
2713
+ color: var(--strand-gray-500);
2714
+ max-width: 50ch;
2715
+ line-height: var(--strand-leading-relaxed);
2716
+ }
2717
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dillingerstaffing/strand-vue",
3
- "version": "0.7.1",
3
+ "version": "0.8.0",
4
4
  "description": "Strand UI - Vue 3 component library built on the Strand Design Language",
5
5
  "author": "Dillinger Staffing <engineering@dillingerstaffing.com> (https://dillingerstaffing.com)",
6
6
  "license": "MIT",
@@ -52,7 +52,7 @@
52
52
  "vue": "^3.4.0"
53
53
  },
54
54
  "dependencies": {
55
- "@dillingerstaffing/strand": "^0.7.1"
55
+ "@dillingerstaffing/strand": "^0.8.0"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@testing-library/jest-dom": "^6.6.0",