@galaxy-ds/core 1.1.53 → 1.1.57
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/HeaderToolbar/HeaderToolbarProps.types.d.ts +1 -0
- package/dist/index.esm.js +62 -31
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +62 -31
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/dist/AccordionBody/AccordionBody.d.ts +0 -4
- package/dist/AccordionBody/AccordionBodyProps.types.d.ts +0 -5
- package/dist/Icons/ActivityType/ActivityTypeVideoCall.d.ts +0 -3
- package/dist/Icons/ActivityType/index.d.ts +0 -1
- package/dist/Themes/LawConnect/common.d.ts +0 -277
- package/dist/Themes/LawConnect/index.d.ts +0 -1
- package/dist/Themes/LawConnect/pallette.d.ts +0 -228
- package/dist/Themes/LawConnect/theme.d.ts +0 -1
- package/dist/Themes/LawConnect/typography.d.ts +0 -93
package/dist/index.esm.js
CHANGED
|
@@ -35683,6 +35683,9 @@ var useStyles$a = makeStyles(function (theme) {
|
|
|
35683
35683
|
: 'none',
|
|
35684
35684
|
}); },
|
|
35685
35685
|
containerDivider: function (props) { return ({
|
|
35686
|
+
flexShrink: 0,
|
|
35687
|
+
display: 'flex',
|
|
35688
|
+
flexDirection: 'row',
|
|
35686
35689
|
borderLeft: props.divider === undefined
|
|
35687
35690
|
? theme.shape.borderRadius === 0
|
|
35688
35691
|
? "1px solid " + common.brand.utility.border
|
|
@@ -35691,17 +35694,28 @@ var useStyles$a = makeStyles(function (theme) {
|
|
|
35691
35694
|
? "1px solid " + common.brand.utility.border
|
|
35692
35695
|
: 'none',
|
|
35693
35696
|
}); },
|
|
35697
|
+
toolbarContainer: function (props) { return ({
|
|
35698
|
+
paddingRight: '16px',
|
|
35699
|
+
display: 'grid',
|
|
35700
|
+
}); },
|
|
35701
|
+
toolbarWrap: function (props) { return ({
|
|
35702
|
+
width: '100%',
|
|
35703
|
+
overflow: 'hidden',
|
|
35704
|
+
display: "flex",
|
|
35705
|
+
justifyContent: "space-between",
|
|
35706
|
+
alignItems: "flex-end",
|
|
35707
|
+
}); },
|
|
35694
35708
|
});
|
|
35695
35709
|
});
|
|
35696
35710
|
var HeaderToolbar = function (_a) {
|
|
35697
35711
|
var _b;
|
|
35698
|
-
var title = _a.title, titleVisibility = _a.titleVisibility, left = _a.left, right = _a.right, bgColor = _a.bgColor, bgImageURL = _a.bgImageURL, _c = _a.bgPosition, bgPosition = _c === void 0 ? 'center' : _c, bgSize = _a.bgSize, divider = _a.divider; __rest(_a, ["title", "titleVisibility", "left", "right", "bgColor", "bgImageURL", "bgPosition", "bgSize", "divider"]);
|
|
35699
|
-
var classes = useStyles$a({ bgColor: bgColor, bgImageURL: bgImageURL, bgPosition: bgPosition, bgSize: bgSize, titleVisibility: titleVisibility, divider: divider });
|
|
35712
|
+
var title = _a.title, titleVisibility = _a.titleVisibility, left = _a.left, right = _a.right, bgColor = _a.bgColor, bgImageURL = _a.bgImageURL, _c = _a.bgPosition, bgPosition = _c === void 0 ? 'center' : _c, bgSize = _a.bgSize, divider = _a.divider, tooltip = _a.tooltip; __rest(_a, ["title", "titleVisibility", "left", "right", "bgColor", "bgImageURL", "bgPosition", "bgSize", "divider", "tooltip"]);
|
|
35713
|
+
var classes = useStyles$a({ bgColor: bgColor, bgImageURL: bgImageURL, right: right, bgPosition: bgPosition, bgSize: bgSize, titleVisibility: titleVisibility, divider: divider });
|
|
35700
35714
|
return (React__default.createElement(Toolbar$2, { className: clsx('gds-header-toolbar', classes.bgWrapper, (_b = {}, _b['with-title'] = titleVisibility, _b)) },
|
|
35701
|
-
React__default.createElement(Box$2, {
|
|
35702
|
-
React__default.createElement(Box$2, {
|
|
35703
|
-
title && (React__default.createElement(
|
|
35704
|
-
React__default.createElement(Typography, { variant: "h1", color: "primary" }, title))),
|
|
35715
|
+
React__default.createElement(Box$2, { className: clsx(classes.toolbarWrap) },
|
|
35716
|
+
React__default.createElement(Box$2, { className: clsx(classes.toolbarContainer) },
|
|
35717
|
+
title && (tooltip ? (React__default.createElement(Tooltip, { title: title, placement: "bottom-start" },
|
|
35718
|
+
React__default.createElement(Typography, { gutterBottom: true, variant: "h1", noWrap: true, color: "primary" }, title))) : (React__default.createElement(Typography, { gutterBottom: true, variant: "h1", noWrap: true, color: "primary" }, title))),
|
|
35705
35719
|
left),
|
|
35706
35720
|
right && (React__default.createElement(Box$2, { className: clsx("gds-buttons-w-divider", classes.containerDivider) }, right)))));
|
|
35707
35721
|
};
|
|
@@ -36092,9 +36106,9 @@ var TableCell = function (props) {
|
|
|
36092
36106
|
return (React__default.createElement(MuiTableCell, __assign$1({}, rest, { className: clsx(variantProp) })));
|
|
36093
36107
|
};
|
|
36094
36108
|
|
|
36095
|
-
var TableRow = function (props) {
|
|
36096
|
-
return
|
|
36097
|
-
};
|
|
36109
|
+
var TableRow = React__default.forwardRef(function (props, ref) {
|
|
36110
|
+
return React__default.createElement(MuiTableRow, __assign$1({}, props, { ref: ref }));
|
|
36111
|
+
});
|
|
36098
36112
|
|
|
36099
36113
|
var TableFooter = function (props) {
|
|
36100
36114
|
var children = props.children, rest = __rest(props, ["children"]);
|
|
@@ -46979,21 +46993,23 @@ var themeWeb = createTheme({
|
|
|
46979
46993
|
top: 'unset',
|
|
46980
46994
|
left: 'unset',
|
|
46981
46995
|
},
|
|
46982
|
-
'& input
|
|
46983
|
-
borderColor: pallettes$1.brand.primary.main,
|
|
46984
|
-
boxShadow: "0 0 0 0.2rem " + pallettes$1.brand.primary.transparent,
|
|
46985
|
-
},
|
|
46986
|
-
'&$checked input': {
|
|
46987
|
-
backgroundColor: '#fef7f0',
|
|
46988
|
-
},
|
|
46989
|
-
'&$checked input::after': {
|
|
46996
|
+
'& input::after': {
|
|
46990
46997
|
content: '""',
|
|
46991
|
-
display: '
|
|
46998
|
+
display: 'none',
|
|
46992
46999
|
position: 'absolute',
|
|
46993
47000
|
top: -1,
|
|
46994
47001
|
left: -1,
|
|
46995
47002
|
width: 16,
|
|
46996
47003
|
height: 16,
|
|
47004
|
+
backgroundColor: '#fef7f0',
|
|
47005
|
+
border: "1px solid " + pallettes$1.brand.utility.border,
|
|
47006
|
+
},
|
|
47007
|
+
'& input:focus': {
|
|
47008
|
+
borderColor: pallettes$1.brand.primary.main,
|
|
47009
|
+
boxShadow: "0 0 0 0.2rem " + pallettes$1.brand.primary.transparent,
|
|
47010
|
+
},
|
|
47011
|
+
'&$checked input::after': {
|
|
47012
|
+
display: 'block',
|
|
46997
47013
|
backgroundImage: "url(\"data:image/svg+xml;chatset=uft8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolygon fill='%231C365F' points='4 6 7 9 12 4 12 7 7 12 4 9'%3E%3C/polygon%3E%3C/svg%3E\")",
|
|
46998
47014
|
},
|
|
46999
47015
|
'&$disabled': {
|
|
@@ -47003,6 +47019,12 @@ var themeWeb = createTheme({
|
|
|
47003
47019
|
marginLeft: 8,
|
|
47004
47020
|
},
|
|
47005
47021
|
},
|
|
47022
|
+
indeterminate: {
|
|
47023
|
+
'& input::after': {
|
|
47024
|
+
display: 'block',
|
|
47025
|
+
backgroundImage: "url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect fill='%231C365F' x='3' y='7' width='10' height='2'/%3E%3C/svg%3E\")",
|
|
47026
|
+
},
|
|
47027
|
+
},
|
|
47006
47028
|
},
|
|
47007
47029
|
MuiChip: {
|
|
47008
47030
|
root: {
|
|
@@ -47999,7 +48021,7 @@ var themeDesktop = createTheme({
|
|
|
47999
48021
|
},
|
|
48000
48022
|
'&$expanded': {
|
|
48001
48023
|
margin: 0,
|
|
48002
|
-
}
|
|
48024
|
+
},
|
|
48003
48025
|
},
|
|
48004
48026
|
},
|
|
48005
48027
|
MuiAccordionSummary: {
|
|
@@ -48549,14 +48571,17 @@ var themeDesktop = createTheme({
|
|
|
48549
48571
|
'&:hover input': {
|
|
48550
48572
|
borderColor: pallettes.brand.primary.light,
|
|
48551
48573
|
},
|
|
48552
|
-
'
|
|
48574
|
+
'& input::after': {
|
|
48553
48575
|
content: '""',
|
|
48554
|
-
display: '
|
|
48576
|
+
display: 'none',
|
|
48555
48577
|
position: 'absolute',
|
|
48556
48578
|
top: -1,
|
|
48557
48579
|
left: -1,
|
|
48558
48580
|
width: 13,
|
|
48559
48581
|
height: 13,
|
|
48582
|
+
},
|
|
48583
|
+
'&$checked input::after': {
|
|
48584
|
+
display: 'block',
|
|
48560
48585
|
backgroundImage: "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.47177 9.17886L11.323 3.38169L10.677 2.6183L4.52824 7.82113L2.35356 5.64644L1.64645 6.35355L4.47177 9.17886Z' fill='currentColor'/%3E%3C/svg%3E\")",
|
|
48561
48586
|
},
|
|
48562
48587
|
'&$checked:hover input': {
|
|
@@ -48573,6 +48598,12 @@ var themeDesktop = createTheme({
|
|
|
48573
48598
|
marginLeft: 10,
|
|
48574
48599
|
},
|
|
48575
48600
|
},
|
|
48601
|
+
indeterminate: {
|
|
48602
|
+
'& input::after': {
|
|
48603
|
+
display: 'block',
|
|
48604
|
+
backgroundImage: "url(\"data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='6' width='7' height='1' fill='currentColor'/%3E%3C/svg%3E%0A\")",
|
|
48605
|
+
},
|
|
48606
|
+
},
|
|
48576
48607
|
},
|
|
48577
48608
|
MuiFormControlLabel: {
|
|
48578
48609
|
root: {
|
|
@@ -49004,22 +49035,22 @@ var themeDesktop = createTheme({
|
|
|
49004
49035
|
},
|
|
49005
49036
|
MuiTableRow: {
|
|
49006
49037
|
root: {
|
|
49007
|
-
|
|
49008
|
-
backgroundColor:
|
|
49009
|
-
|
|
49010
|
-
backgroundColor:
|
|
49011
|
-
}
|
|
49038
|
+
'&.MuiTableRow-hover': {
|
|
49039
|
+
backgroundColor: 'transparent',
|
|
49040
|
+
'&:hover': {
|
|
49041
|
+
backgroundColor: '#f3f3f3',
|
|
49042
|
+
},
|
|
49012
49043
|
},
|
|
49013
|
-
|
|
49044
|
+
'&.Mui-selected': {
|
|
49014
49045
|
backgroundColor: common.blue[50],
|
|
49015
|
-
|
|
49046
|
+
'&:hover': {
|
|
49016
49047
|
backgroundColor: common.blue[50],
|
|
49017
|
-
}
|
|
49018
|
-
}
|
|
49048
|
+
},
|
|
49049
|
+
},
|
|
49019
49050
|
},
|
|
49020
49051
|
footer: {
|
|
49021
49052
|
borderBottom: 'none',
|
|
49022
|
-
}
|
|
49053
|
+
},
|
|
49023
49054
|
},
|
|
49024
49055
|
MuiToolbar: {
|
|
49025
49056
|
root: {
|