hds-web 1.17.2 → 1.17.4

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.
@@ -770,12 +770,10 @@ const HDSColors = {
770
770
  };
771
771
 
772
772
  export default function HDSColor(color = '') {
773
- const modifiedColor = color.replace(/_/g, '-');
774
-
775
- if (!HDSColors[modifiedColor]) {
776
- HDSColors[modifiedColor] = modifiedColor;
773
+ if (!HDSColors[color]) {
774
+ HDSColors[color] = color;
777
775
  }
778
- return HDSColors[modifiedColor];
776
+ return HDSColors[color];
779
777
  }
780
778
 
781
779
 
@@ -1492,6 +1492,10 @@ select{
1492
1492
  margin-top: 70px;
1493
1493
  }
1494
1494
 
1495
+ .mr-\[34px\]{
1496
+ margin-right: 34px;
1497
+ }
1498
+
1495
1499
  .line-clamp-3{
1496
1500
  overflow: hidden;
1497
1501
  display: -webkit-box;
@@ -1905,6 +1909,10 @@ select{
1905
1909
  width: 100vw;
1906
1910
  }
1907
1911
 
1912
+ .\!w-full{
1913
+ width: 100% !important;
1914
+ }
1915
+
1908
1916
  .min-w-\[11\.5rem\]{
1909
1917
  min-width: 11.5rem;
1910
1918
  }
@@ -2596,6 +2604,10 @@ select{
2596
2604
  overflow-x: scroll;
2597
2605
  }
2598
2606
 
2607
+ .overflow-y-scroll{
2608
+ overflow-y: scroll;
2609
+ }
2610
+
2599
2611
  .whitespace-nowrap{
2600
2612
  white-space: nowrap;
2601
2613
  }
@@ -9737,6 +9749,10 @@ select{
9737
9749
  right: 1rem;
9738
9750
  }
9739
9751
 
9752
+ .tb\:right-0{
9753
+ right: 0px;
9754
+ }
9755
+
9740
9756
  .tb\:mb-16{
9741
9757
  margin-bottom: 4rem;
9742
9758
  }
@@ -9769,6 +9785,14 @@ select{
9769
9785
  margin-top: -4px;
9770
9786
  }
9771
9787
 
9788
+ .tb\:mr-4{
9789
+ margin-right: 1rem;
9790
+ }
9791
+
9792
+ .tb\:mr-\[16px\]{
9793
+ margin-right: 16px;
9794
+ }
9795
+
9772
9796
  .tb\:block{
9773
9797
  display: block;
9774
9798
  }
@@ -10136,6 +10160,10 @@ select{
10136
10160
  padding-top: 2.875rem;
10137
10161
  }
10138
10162
 
10163
+ .tb\:pr-4{
10164
+ padding-right: 1rem;
10165
+ }
10166
+
10139
10167
  .tb\:text-left{
10140
10168
  text-align: left;
10141
10169
  }
@@ -10732,6 +10760,10 @@ select{
10732
10760
  gap: 9rem;
10733
10761
  }
10734
10762
 
10763
+ .tb-l\:gap-2{
10764
+ gap: 0.5rem;
10765
+ }
10766
+
10735
10767
  .tb-l\:space-x-6 > :not([hidden]) ~ :not([hidden]){
10736
10768
  --tw-space-x-reverse: 0;
10737
10769
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
@@ -10776,6 +10808,11 @@ select{
10776
10808
  border-right-color: rgb(229 231 235 / var(--tw-border-opacity));
10777
10809
  }
10778
10810
 
10811
+ .tb-l\:bg-neutral-150{
10812
+ --tw-bg-opacity: 1;
10813
+ background-color: rgb(236 237 240 / var(--tw-bg-opacity));
10814
+ }
10815
+
10779
10816
  .tb-l\:bg-gradient-to-r{
10780
10817
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
10781
10818
  }