@youngonesworks/ui 0.1.111 → 0.1.114
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/components/tabs/TabsWrapper.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/variables.css +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2793,7 +2793,7 @@ const TableHeaderItem = ({ children, smallPadding, className,...props }) => /* @
|
|
|
2793
2793
|
const TableHeaderRow = ({ children,...props }) => /* @__PURE__ */ jsx("div", {
|
|
2794
2794
|
"data-testid": "tableHeaderRow",
|
|
2795
2795
|
"data-component": "tableHeaderRow",
|
|
2796
|
-
className: "table-row xl:border-0 xl:border-b xl:border-solid xl:border-gray-
|
|
2796
|
+
className: "table-row xl:border-0 xl:border-b xl:border-solid xl:border-gray-200",
|
|
2797
2797
|
...props,
|
|
2798
2798
|
children
|
|
2799
2799
|
});
|
|
@@ -2897,7 +2897,7 @@ const TabContent = forwardRef(({ tab, setActiveTab, activeTab }, ref) => /* @__P
|
|
|
2897
2897
|
tabContent: tab.name,
|
|
2898
2898
|
rightSection: tab?.rightSection || undefined,
|
|
2899
2899
|
clickFnc: () => {
|
|
2900
|
-
tab.clickFnc(tab.value);
|
|
2900
|
+
tab.clickFnc && tab.clickFnc(tab.value);
|
|
2901
2901
|
setActiveTab(tab.value);
|
|
2902
2902
|
}
|
|
2903
2903
|
}));
|