@dillingerstaffing/strand-svelte 0.8.0 → 0.9.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.
@@ -500,6 +500,7 @@
500
500
 
501
501
  /* ── Variants ── */
502
502
  .strand-card--elevated {
503
+ border: 1px solid var(--strand-border-subtle);
503
504
  box-shadow: var(--strand-elevation-1);
504
505
  }
505
506
 
@@ -509,6 +510,7 @@
509
510
  }
510
511
 
511
512
  .strand-card--interactive {
513
+ border: 1px solid var(--strand-border-subtle);
512
514
  box-shadow: var(--strand-elevation-1);
513
515
  cursor: pointer;
514
516
  transition:
@@ -988,11 +990,16 @@
988
990
  min-width: 0;
989
991
  }
990
992
 
991
- /* ── Column utilities ── */
993
+ /* ── Fixed column utilities ── */
992
994
  .strand-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
993
995
  .strand-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
994
996
  .strand-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
995
997
 
998
+ /* ── Responsive auto-fit (columns adjust to available width) ── */
999
+ .strand-grid--auto-sm { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
1000
+ .strand-grid--auto-md { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
1001
+ .strand-grid--auto-lg { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
1002
+
996
1003
  /* ── Gap utilities ── */
997
1004
  .strand-grid--gap-1 { gap: var(--strand-space-1); }
998
1005
  .strand-grid--gap-2 { gap: var(--strand-space-2); }
@@ -2715,3 +2722,14 @@
2715
2722
  line-height: var(--strand-leading-relaxed);
2716
2723
  }
2717
2724
 
2725
+ /* ── Secondary text (caption/description, DL Part III.8 Color Roles) ── */
2726
+ .strand-text-secondary {
2727
+ font-size: var(--strand-text-sm);
2728
+ color: var(--strand-gray-500);
2729
+ line-height: var(--strand-leading-relaxed);
2730
+ }
2731
+
2732
+ .strand-text-secondary--xs {
2733
+ font-size: var(--strand-text-xs);
2734
+ }
2735
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dillingerstaffing/strand-svelte",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Strand UI - Svelte component library built on the Strand Design Language",
5
5
  "author": "Dillinger Staffing <engineering@dillingerstaffing.com> (https://dillingerstaffing.com)",
6
6
  "license": "MIT",
@@ -55,7 +55,7 @@
55
55
  "svelte": "^4.0.0 || ^5.0.0"
56
56
  },
57
57
  "dependencies": {
58
- "@dillingerstaffing/strand": "^0.8.0"
58
+ "@dillingerstaffing/strand": "^0.9.0"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@sveltejs/vite-plugin-svelte": "^5.0.0",