hds-web 1.13.7 → 1.13.8

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.13.7",
3
+ "version": "1.13.8",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -205,18 +205,21 @@ export default function PricingTableB(props) {
205
205
  {keyIndex2 !== null && (
206
206
  <th
207
207
  ref={stickyRef}
208
- className={`first:rounded-l-full last:rounded-r-full px-8 z-[100] sticky ${isSticky ? ' bg-neutral-100' : ''
208
+ className={`first:rounded-l-full last:rounded-r-full px-8 z-[100] sticky ${(index === 0) ? 'bg-neutral-0' : 'bg-neutral-100'
209
209
  }`}
210
210
  >
211
+ <div className={`flex flex-col py-3.5 gap-[11px]`}>
212
+
213
+
211
214
  <Typography
212
215
  textStyle='h5'
213
- className='text-neutral-900 py-3.5 text-left whitespace-nowrap'
216
+ className='text-neutral-900 text-left whitespace-nowrap'
214
217
  >
215
218
  {keyIndex2}
216
219
 
217
220
 
218
221
  </Typography>
219
- {section[keyIndex][0][keyIndex2]['btn'] && section[keyIndex][0][keyIndex2]['btn_cta'] && <div className={`flex -mt-5`}>
222
+ {section[keyIndex][0][keyIndex2]['btn'] && section[keyIndex][0][keyIndex2]['btn_cta'] && <div className={`flex -mt-4`}>
220
223
  <a href={section[keyIndex][0][keyIndex2]['btn_cta']}>
221
224
  <HDSButton
222
225
  label={section[keyIndex][0][keyIndex2]['btn']}
@@ -234,6 +237,7 @@ export default function PricingTableB(props) {
234
237
  />
235
238
  </a>
236
239
  </div>}
240
+ </div>
237
241
 
238
242
  </th>
239
243
  )}
@@ -2283,6 +2283,14 @@ select{
2283
2283
  gap: 25rem;
2284
2284
  }
2285
2285
 
2286
+ .gap-\[10px\]{
2287
+ gap: 10px;
2288
+ }
2289
+
2290
+ .gap-\[11px\]{
2291
+ gap: 11px;
2292
+ }
2293
+
2286
2294
  .gap-x-1{
2287
2295
  -webkit-column-gap: 0.25rem;
2288
2296
  column-gap: 0.25rem;