hds-web 1.41.5 → 1.41.7

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": "hds-web",
3
- "version": "1.41.5",
3
+ "version": "1.41.7",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -10,7 +10,7 @@ export default function DropdownA(props) {
10
10
  <div className="tb-l:flex mb-2 tb-l:mb-0 flex w-full tb-l:bg-neutral-150 flex-col tb-l:flex-row max-w-7xl tb-l:gap-2 rounded-2xl ">
11
11
  {props.primaryCard && (
12
12
  <div className="">
13
- <div className={`bg-neutral-0 rounded-2xl h-full w-full ${props.primaryCard.cardDetailsArray ? 'min-w-[505px]' : ' min-w-[250px]'}`}>
13
+ <div className={`bg-neutral-0 rounded-2xl h-full w-full ${props.primaryCard.cardDetailsArray ? 'tb-l:min-w-[505px]' : ' min-w-[250px]'}`}>
14
14
  <FlyoutB {...props.primaryCard} />
15
15
  </div>
16
16
  </div>
@@ -35,7 +35,7 @@ export default function FlyoutB(props) {
35
35
  <div className="flex items-start lg:pt-2">
36
36
  {
37
37
  props.cardDetailsArray ? (
38
- <div className="flex items-start gap-3">
38
+ <div className="tb:flex items-start gap-3">
39
39
  {
40
40
  props.cardDetailsArray.map((card, index) => (
41
41
  <a href={card.btnCTA}>
@@ -2108,10 +2108,6 @@ select{
2108
2108
  min-width: 48px;
2109
2109
  }
2110
2110
 
2111
- .min-w-\[500px\]{
2112
- min-width: 500px;
2113
- }
2114
-
2115
2111
  .min-w-\[56px\]{
2116
2112
  min-width: 56px;
2117
2113
  }
@@ -2138,10 +2134,6 @@ select{
2138
2134
  min-width: 100%;
2139
2135
  }
2140
2136
 
2141
- .min-w-\[505px\]{
2142
- min-width: 505px;
2143
- }
2144
-
2145
2137
  .max-w-2xl{
2146
2138
  max-width: 42rem;
2147
2139
  }
@@ -12131,6 +12123,10 @@ select{
12131
12123
  min-width: 400px;
12132
12124
  }
12133
12125
 
12126
+ .tb-l\:min-w-\[505px\]{
12127
+ min-width: 505px;
12128
+ }
12129
+
12134
12130
  .tb-l\:min-w-\[550px\]{
12135
12131
  min-width: 550px;
12136
12132
  }