@galaxy-ds/core 1.1.45 → 1.1.46
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/Tabs/Tabs.d.ts +2 -2
- package/dist/Tabs/Tabs.types.d.ts +2 -3
- package/dist/Tooltip/Tooltip.types.d.ts +2 -11
- package/dist/index.esm.js +9 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +9 -8
- package/dist/index.js.map +1 -1
- package/dist/package.json +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -34509,22 +34509,22 @@ var useStyles$e = makeStyles(createStyles({
|
|
|
34509
34509
|
root: {
|
|
34510
34510
|
flexGrow: 1,
|
|
34511
34511
|
backgroundColor: common.brand.background.tabs,
|
|
34512
|
-
|
|
34512
|
+
"& .Mui-selected": {
|
|
34513
34513
|
// backgroundColor: common.brand.primary.contrastText,
|
|
34514
34514
|
},
|
|
34515
34515
|
},
|
|
34516
34516
|
tabsRoot: {
|
|
34517
34517
|
borderBottom: "1px solid " + common.brand.utility.border,
|
|
34518
|
-
|
|
34519
|
-
borderBottom:
|
|
34518
|
+
"&.MuiTabs-vertical": {
|
|
34519
|
+
borderBottom: "none",
|
|
34520
34520
|
},
|
|
34521
34521
|
},
|
|
34522
34522
|
indicator: {
|
|
34523
|
-
display:
|
|
34523
|
+
display: "none",
|
|
34524
34524
|
},
|
|
34525
34525
|
}));
|
|
34526
34526
|
var Tabs = function (_a) {
|
|
34527
|
-
var children = _a.children, _b = _a.orientation, orientation = _b === void 0 ?
|
|
34527
|
+
var children = _a.children, _b = _a.orientation, orientation = _b === void 0 ? "horizontal" : _b, props = __rest(_a, ["children", "orientation"]);
|
|
34528
34528
|
var classes = useStyles$e();
|
|
34529
34529
|
return (React__default["default"].createElement("div", { className: classes.root },
|
|
34530
34530
|
React__default["default"].createElement(MuiTabs, __assign$1({ orientation: orientation }, props, { classes: { root: classes.tabsRoot, indicator: classes.indicator }, indicatorColor: "secondary" }), children)));
|
|
@@ -34711,9 +34711,10 @@ var Toolbar = function (props) {
|
|
|
34711
34711
|
React__default["default"].createElement(Toolbar$2, null, props.children)));
|
|
34712
34712
|
};
|
|
34713
34713
|
|
|
34714
|
-
var Tooltip = function (props) {
|
|
34715
|
-
|
|
34716
|
-
};
|
|
34714
|
+
var Tooltip = React__default["default"].forwardRef(function (props, ref) {
|
|
34715
|
+
var children = props.children, TransitionProps = props.TransitionProps, defaultProps = __rest(props, ["children", "TransitionProps"]);
|
|
34716
|
+
return (React__default["default"].createElement(Tooltip$2, __assign$1({ arrow: true, TransitionProps: __assign$1(__assign$1({}, TransitionProps), { timeout: 0 }), ref: ref }, defaultProps), children));
|
|
34717
|
+
});
|
|
34717
34718
|
|
|
34718
34719
|
function DocTypeAppointment$2(props) {
|
|
34719
34720
|
return (React__default["default"].createElement(SvgIcon$1, __assign$1({}, props, { viewBox: "0 0 48 48" }),
|