odaptos_design_system 2.0.56 → 2.0.58
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/odaptos_design_system.cjs.development.js +13 -10
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +13 -10
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Atoms/Typography/TextWithLink.tsx +3 -11
- package/src/Molecules/Tabs/TabsUnderLine.tsx +10 -1
|
@@ -15601,7 +15601,13 @@ const TabsUnderline = ({
|
|
|
15601
15601
|
if (item.disabled) {
|
|
15602
15602
|
renderTab = /*#__PURE__*/React__default.createElement("div", {
|
|
15603
15603
|
className: `${styles$S.tab_label_disabled}`,
|
|
15604
|
-
id: item.id
|
|
15604
|
+
id: item.id,
|
|
15605
|
+
style: {
|
|
15606
|
+
width: 'fit-content',
|
|
15607
|
+
display: 'flex',
|
|
15608
|
+
alignItems: 'center',
|
|
15609
|
+
justifyContent: 'center'
|
|
15610
|
+
}
|
|
15605
15611
|
}, /*#__PURE__*/React__default.createElement(Title, {
|
|
15606
15612
|
key: `tab#${index}`,
|
|
15607
15613
|
className: `${!isArrowIconDisplay ? styles$S.tab_label_replacement : styles$S.tab_label_replacement_icon} ${styles$S.disabled}`,
|
|
@@ -16920,18 +16926,15 @@ const TextWithLink = ({
|
|
|
16920
16926
|
const getTextDecoration = () => {
|
|
16921
16927
|
if (textDecoration === 'underline') return styles$13.text_with_link_underline;else if (textDecoration === 'line-through') return styles$13.text_with_link_line_through;else return '';
|
|
16922
16928
|
};
|
|
16923
|
-
return /*#__PURE__*/React__default.createElement("
|
|
16929
|
+
return /*#__PURE__*/React__default.createElement("div", Object.assign({}, props, {
|
|
16924
16930
|
style: {
|
|
16925
16931
|
color: color
|
|
16926
16932
|
},
|
|
16927
|
-
className: `${styles$13.text_with_link} ${italic && styles$13.text_with_link_italic} ${getTextWeight()} ${getTextDecoration()} ${className} ${getTextSize()}
|
|
16928
|
-
|
|
16929
|
-
|
|
16930
|
-
|
|
16931
|
-
|
|
16932
|
-
}, textLink) : /*#__PURE__*/React__default.createElement("a", {
|
|
16933
|
-
href: link
|
|
16934
|
-
}, textLink));
|
|
16933
|
+
className: `${styles$13.text_with_link} ${italic && styles$13.text_with_link_italic} ${getTextWeight()} ${getTextDecoration()} ${className} ${getTextSize()}`,
|
|
16934
|
+
dangerouslySetInnerHTML: {
|
|
16935
|
+
__html: text
|
|
16936
|
+
}
|
|
16937
|
+
}));
|
|
16935
16938
|
};
|
|
16936
16939
|
|
|
16937
16940
|
var css_248z$14 = ".UserIndicator-module_user_indicator__hOQbF{align-items:center;background:var(--color-gradients-003,linear-gradient(135deg,#07f 0,#9024f6 100%));border-radius:.5rem;display:flex;height:2.75rem;justify-content:center;padding:.625rem .5625rem;width:2.75rem}.UserIndicator-module_user_indicator__hOQbF p{padding:0}";
|