@bcgov-sso/common-react-components 1.21.0 → 1.22.0
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/cjs/index.js +9 -17
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Tabs/Tabs.d.ts +4 -3
- package/dist/cjs/types/components/Tabs/index.d.ts +1 -1
- package/dist/esm/index.js +9 -17
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Tabs/Tabs.d.ts +4 -3
- package/dist/esm/types/components/Tabs/index.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -23306,25 +23306,17 @@ function Tabs(_ref, ref) {
|
|
|
23306
23306
|
var ForwardTabs = /*#__PURE__*/React__namespace.forwardRef(Tabs);
|
|
23307
23307
|
ForwardTabs.TabPane = TabPane;
|
|
23308
23308
|
|
|
23309
|
-
const
|
|
23310
|
-
|
|
23311
|
-
|
|
23312
|
-
|
|
23313
|
-
|
|
23314
|
-
|
|
23315
|
-
|
|
23316
|
-
|
|
23317
|
-
border-top: unset !important;
|
|
23318
|
-
border-left: unset !important;
|
|
23319
|
-
border-right: unset !important;
|
|
23320
|
-
|
|
23321
|
-
&:active {
|
|
23322
|
-
background-color: unset !important;
|
|
23309
|
+
const StyledTabs = qe(ForwardTabs) `
|
|
23310
|
+
.rc-tabs-tab {
|
|
23311
|
+
display: inline-block;
|
|
23312
|
+
height: 30px;
|
|
23313
|
+
font-size: 18px;
|
|
23314
|
+
}
|
|
23315
|
+
|
|
23316
|
+
.rc-tabs-tab-active {
|
|
23323
23317
|
border-bottom: 3px solid orange;
|
|
23324
23318
|
font-weight: 600;
|
|
23325
23319
|
}
|
|
23326
|
-
}
|
|
23327
|
-
|
|
23328
23320
|
`;
|
|
23329
23321
|
|
|
23330
23322
|
exports.Accordion = Accordion;
|
|
@@ -23332,5 +23324,5 @@ exports.Alert = Alert;
|
|
|
23332
23324
|
exports.Button = Button;
|
|
23333
23325
|
exports.NumberedContents = NumberedContents;
|
|
23334
23326
|
exports.Table = Table;
|
|
23335
|
-
exports.Tabs =
|
|
23327
|
+
exports.Tabs = StyledTabs;
|
|
23336
23328
|
//# sourceMappingURL=index.js.map
|