@bcgov-sso/common-react-components 1.28.0 → 1.28.3
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
CHANGED
|
@@ -23333,26 +23333,39 @@ const StyledTabs = qe(ForwardTabs) `
|
|
|
23333
23333
|
font-size: 18px;
|
|
23334
23334
|
}
|
|
23335
23335
|
|
|
23336
|
+
.rc-tabs-nav-list {
|
|
23337
|
+
border-bottom: 1px solid #dee2e6;
|
|
23338
|
+
}
|
|
23339
|
+
|
|
23340
|
+
.rc-tabs-nav-list:hover {
|
|
23341
|
+
cursor: pointer;
|
|
23342
|
+
}
|
|
23343
|
+
|
|
23336
23344
|
.rc-tabs-tab-active {
|
|
23337
23345
|
border-bottom: 3px solid orange;
|
|
23338
23346
|
font-weight: 600;
|
|
23339
23347
|
}
|
|
23348
|
+
|
|
23349
|
+
.rc-tabs-nav-operations {
|
|
23350
|
+
display: none;
|
|
23351
|
+
}
|
|
23340
23352
|
`;
|
|
23353
|
+
const Tab = TabPane;
|
|
23341
23354
|
|
|
23342
23355
|
const Wrapper = qe.div `
|
|
23343
23356
|
width: 100%;
|
|
23344
|
-
|
|
23357
|
+
position: relative;
|
|
23345
23358
|
`;
|
|
23346
23359
|
const Icon$1 = qe.i `
|
|
23347
|
-
position:
|
|
23348
|
-
right:
|
|
23360
|
+
position: absolute;
|
|
23361
|
+
right: 0.5em;
|
|
23362
|
+
top: 0.5em;
|
|
23349
23363
|
color: grey;
|
|
23350
|
-
top: 2px;
|
|
23351
23364
|
`;
|
|
23352
23365
|
const Input = qe.input `
|
|
23353
|
-
width:
|
|
23354
|
-
border: 2px solid
|
|
23355
|
-
padding: 0.
|
|
23366
|
+
width: 100%;
|
|
23367
|
+
border: 2px solid #606060;
|
|
23368
|
+
padding: 0.3em 0.5em;
|
|
23356
23369
|
border-radius: 0.25em;
|
|
23357
23370
|
`;
|
|
23358
23371
|
function SearchBar(props) {
|
|
@@ -23566,6 +23579,7 @@ exports.InfoText = InfoText;
|
|
|
23566
23579
|
exports.LastSavedMessage = LastSavedMessage;
|
|
23567
23580
|
exports.NumberedContents = NumberedContents;
|
|
23568
23581
|
exports.SearchBar = SearchBar;
|
|
23582
|
+
exports.Tab = Tab;
|
|
23569
23583
|
exports.Table = Table;
|
|
23570
23584
|
exports.Tabs = StyledTabs;
|
|
23571
23585
|
//# sourceMappingURL=index.js.map
|