hds-web 1.13.7 → 1.13.9

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.9",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -187,7 +187,7 @@ export default function PricingTableB(props) {
187
187
 
188
188
  {TABLE_HEADER && TABLE_HEADER[0] && TABLE_HEADER[0]['title'] && (
189
189
  <Typography
190
- textStyle='h3'
190
+ textStyle='h4'
191
191
  className={`pb-10 pl-8 pt-[72px] ${HDSColor(title_color)}`}
192
192
  >
193
193
  {TABLE_HEADER[0]['title']}
@@ -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
  )}
@@ -2271,6 +2271,10 @@ select{
2271
2271
  gap: 1.5rem;
2272
2272
  }
2273
2273
 
2274
+ .gap-\[11px\]{
2275
+ gap: 11px;
2276
+ }
2277
+
2274
2278
  .gap-\[14rem\]{
2275
2279
  gap: 14rem;
2276
2280
  }