@galaxy-ds/core 1.1.54 → 1.1.55

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/index.esm.js CHANGED
@@ -46979,21 +46979,23 @@ var themeWeb = createTheme({
46979
46979
  top: 'unset',
46980
46980
  left: 'unset',
46981
46981
  },
46982
- '& input:focus': {
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': {
46982
+ '& input::after': {
46990
46983
  content: '""',
46991
- display: 'block',
46984
+ display: 'none',
46992
46985
  position: 'absolute',
46993
46986
  top: -1,
46994
46987
  left: -1,
46995
46988
  width: 16,
46996
46989
  height: 16,
46990
+ backgroundColor: '#fef7f0',
46991
+ border: "1px solid " + pallettes$1.brand.utility.border,
46992
+ },
46993
+ '& input:focus': {
46994
+ borderColor: pallettes$1.brand.primary.main,
46995
+ boxShadow: "0 0 0 0.2rem " + pallettes$1.brand.primary.transparent,
46996
+ },
46997
+ '&$checked input::after': {
46998
+ display: 'block',
46997
46999
  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
47000
  },
46999
47001
  '&$disabled': {
@@ -47003,6 +47005,12 @@ var themeWeb = createTheme({
47003
47005
  marginLeft: 8,
47004
47006
  },
47005
47007
  },
47008
+ indeterminate: {
47009
+ '& input::after': {
47010
+ display: 'block',
47011
+ 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\")",
47012
+ },
47013
+ },
47006
47014
  },
47007
47015
  MuiChip: {
47008
47016
  root: {
@@ -47999,7 +48007,7 @@ var themeDesktop = createTheme({
47999
48007
  },
48000
48008
  '&$expanded': {
48001
48009
  margin: 0,
48002
- }
48010
+ },
48003
48011
  },
48004
48012
  },
48005
48013
  MuiAccordionSummary: {
@@ -48549,14 +48557,17 @@ var themeDesktop = createTheme({
48549
48557
  '&:hover input': {
48550
48558
  borderColor: pallettes.brand.primary.light,
48551
48559
  },
48552
- '&$checked input::after': {
48560
+ '& input::after': {
48553
48561
  content: '""',
48554
- display: 'block',
48562
+ display: 'none',
48555
48563
  position: 'absolute',
48556
48564
  top: -1,
48557
48565
  left: -1,
48558
48566
  width: 13,
48559
48567
  height: 13,
48568
+ },
48569
+ '&$checked input::after': {
48570
+ display: 'block',
48560
48571
  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
48572
  },
48562
48573
  '&$checked:hover input': {
@@ -48573,6 +48584,12 @@ var themeDesktop = createTheme({
48573
48584
  marginLeft: 10,
48574
48585
  },
48575
48586
  },
48587
+ indeterminate: {
48588
+ '& input::after': {
48589
+ display: 'block',
48590
+ 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\")",
48591
+ },
48592
+ },
48576
48593
  },
48577
48594
  MuiFormControlLabel: {
48578
48595
  root: {
@@ -49004,22 +49021,22 @@ var themeDesktop = createTheme({
49004
49021
  },
49005
49022
  MuiTableRow: {
49006
49023
  root: {
49007
- "&.MuiTableRow-hover": {
49008
- backgroundColor: "transparent",
49009
- "&:hover": {
49010
- backgroundColor: "#f3f3f3",
49011
- }
49024
+ '&.MuiTableRow-hover': {
49025
+ backgroundColor: 'transparent',
49026
+ '&:hover': {
49027
+ backgroundColor: '#f3f3f3',
49028
+ },
49012
49029
  },
49013
- "&.Mui-selected": {
49030
+ '&.Mui-selected': {
49014
49031
  backgroundColor: common.blue[50],
49015
- "&:hover": {
49032
+ '&:hover': {
49016
49033
  backgroundColor: common.blue[50],
49017
- }
49018
- }
49034
+ },
49035
+ },
49019
49036
  },
49020
49037
  footer: {
49021
49038
  borderBottom: 'none',
49022
- }
49039
+ },
49023
49040
  },
49024
49041
  MuiToolbar: {
49025
49042
  root: {