@apolitical/component-library 8.7.9 → 8.7.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apolitical/component-library",
3
- "version": "8.7.9",
3
+ "version": "8.7.10",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
@@ -22,7 +22,6 @@
22
22
  "@tanstack/react-query": "5.8.3",
23
23
  "@tanstack/react-query-devtools": "5.8.3",
24
24
  "classnames": "2.3.2",
25
- "focus-trap-react": "10.2.3",
26
25
  "is-hotkey": "0.2.0",
27
26
  "is-url": "1.2.4",
28
27
  "lodash.clonedeep": "4.5.0",
@@ -74,6 +74,10 @@ $font-size-md: 1rem;
74
74
  color: get-map($default-colors, 'n600');
75
75
  }
76
76
 
77
+ .u-white-text {
78
+ color: get-map($default-colors, 'n50');
79
+ }
80
+
77
81
  .u-error-text {
78
82
  color: get-map($default-colors, 'error600');
79
83
  }
@@ -666,6 +670,38 @@ $font-size-md: 1rem;
666
670
  min-height: 0;
667
671
  }
668
672
 
673
+ .u-min-h-1 {
674
+ min-height: 0.25rem; /* 4px */
675
+ }
676
+
677
+ .u-min-h-2 {
678
+ min-height: 0.5rem; /* 8px */
679
+ }
680
+
681
+ .u-min-h-3 {
682
+ min-height: 0.75rem; /* 12px */
683
+ }
684
+
685
+ .u-min-h-4 {
686
+ min-height: 1rem; /* 16px */
687
+ }
688
+
689
+ .u-min-h-5 {
690
+ min-height: 1.25rem; /* 20px */
691
+ }
692
+
693
+ .u-min-h-6 {
694
+ min-height: 1.5rem; /* 24px */
695
+ }
696
+
697
+ .u-min-h-8 {
698
+ min-height: 2rem; /* 32px */
699
+ }
700
+
701
+ .u-min-h-10 {
702
+ min-height: 2.5rem; /* 40px */
703
+ }
704
+
669
705
  .u-min-h-full {
670
706
  min-height: 100%;
671
707
  }