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/dist/index.css +1 -1
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Tables/tableD.js +8 -4
- package/src/styles/tailwind.css +4 -0
package/package.json
CHANGED
@@ -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='
|
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 ${
|
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
|
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-
|
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
|
)}
|