@taikai/rocket-kit 2.0.0 → 2.0.1

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.
@@ -1246,6 +1246,7 @@ const {
1246
1246
  normal: normal$6,
1247
1247
  light: light$9,
1248
1248
  grey: grey$d,
1249
+ lightGrey: lightGrey$8,
1249
1250
  purple: purple$5,
1250
1251
  lightPurple
1251
1252
  } = colors;
@@ -1362,55 +1363,83 @@ const SelectWrapper = _styled.div`
1362
1363
  transition-duration: 0.3s;
1363
1364
  }
1364
1365
  }
1365
- `;
1366
1366
 
1367
- const SelectInteractive = props => {
1368
- const {
1369
- name,
1370
- multi = false,
1371
- search = true,
1372
- placeholder,
1373
- options,
1374
- value,
1375
- clear = true,
1376
- onChange = () => {},
1377
- onInputChange = () => {},
1378
- error,
1379
- disabled = false,
1380
- dataTestId
1381
- } = props;
1382
- const {
1383
- Option
1384
- } = components;
1385
-
1386
- const CustomSelectOption = (props, commonProps) => /*#__PURE__*/React.createElement(Option, Object.assign({}, props, commonProps), props.data.icon ? /*#__PURE__*/React.createElement(Icon, {
1387
- icon: props.data.icon
1388
- }) : props.data.customImage ? props.data.customImage : null, props.data.label);
1367
+ .select__option--is-disabled {
1368
+ pointer-events: none;
1369
+ }
1370
+ `;
1371
+ const SelectGroupLabel = _styled.span`
1372
+ font-size: ${/*#__PURE__*/rem('12px')};
1373
+ color: ${lightGrey$8};
1389
1374
 
1390
- const CustomSelectValue = props => /*#__PURE__*/React.createElement("div", null, props.data.icon ? /*#__PURE__*/React.createElement(Icon, {
1391
- icon: props.data.icon
1392
- }) : props.data.customImage ? props.data.customImage : null, props.data.label);
1375
+ + .tag {
1376
+ border-color: ${lightGrey$8};
1377
+ background-color: ${lightGrey$8};
1378
+ color: ${grey$d};
1379
+ }
1380
+ `;
1393
1381
 
1394
- return /*#__PURE__*/React.createElement(SelectWrapper, {
1395
- "data-testid": dataTestId
1396
- }, /*#__PURE__*/React.createElement(Select$1, {
1397
- className: "select-interactive",
1398
- classNamePrefix: "select",
1382
+ const {
1383
+ Option
1384
+ } = components;
1385
+ const FormatGroupLabel = ({
1386
+ label,
1387
+ options
1388
+ }) => {
1389
+ return /*#__PURE__*/React.createElement("div", {
1390
+ style: {
1391
+ display: 'flex',
1392
+ alignItems: 'center',
1393
+ justifyContent: 'space-between'
1394
+ }
1395
+ }, /*#__PURE__*/React.createElement(SelectGroupLabel, {
1396
+ className: "selective-options-group-label"
1397
+ }, label), /*#__PURE__*/React.createElement(Tag, {
1398
+ value: `${options == null ? void 0 : options.length}`
1399
+ }));
1400
+ };
1401
+ const CustomSelectOption = (props, commonProps) => /*#__PURE__*/React.createElement(Option, Object.assign({}, props, commonProps), props.data.icon ? /*#__PURE__*/React.createElement(Icon, {
1402
+ icon: props.data.icon
1403
+ }) : props.data.customImage ? props.data.customImage : null, props.data.label);
1404
+ const CustomSelectValue = props => /*#__PURE__*/React.createElement("div", null, props.data.icon ? /*#__PURE__*/React.createElement(Icon, {
1405
+ icon: props.data.icon
1406
+ }) : props.data.customImage ? props.data.customImage : null, props.data.label);
1407
+
1408
+ const SelectInteractive = ({
1409
+ name,
1410
+ multi = false,
1411
+ search = true,
1412
+ placeholder,
1413
+ options,
1414
+ value,
1415
+ clear = true,
1416
+ error,
1417
+ disabled = false,
1418
+ formatGroupLabel = true,
1419
+ onChange = () => {},
1420
+ onInputChange = () => {},
1421
+ ...rest
1422
+ }) => {
1423
+ return /*#__PURE__*/React.createElement(SelectWrapper, Object.assign({}, rest), /*#__PURE__*/React.createElement(Select$1, {
1399
1424
  name: name,
1425
+ value: value,
1400
1426
  isMulti: multi,
1401
- isSearchable: search,
1402
- isDisabled: disabled,
1403
- placeholder: placeholder,
1404
1427
  options: options,
1405
- value: value,
1406
1428
  isClearable: clear,
1407
- onChange: onChange,
1429
+ isDisabled: disabled,
1430
+ isSearchable: search,
1431
+ classNamePrefix: "select",
1432
+ placeholder: placeholder,
1433
+ className: "select-interactive",
1434
+ // @ts-ignore
1435
+ onChange: e => onChange(e != null ? e : []),
1408
1436
  defaultMenuIsOpen: false,
1409
1437
  onInputChange: onInputChange,
1410
1438
  components: {
1411
1439
  Option: CustomSelectOption,
1412
1440
  SingleValue: CustomSelectValue
1413
- }
1441
+ },
1442
+ formatGroupLabel: s => formatGroupLabel ? FormatGroupLabel == null ? void 0 : FormatGroupLabel(s) : undefined
1414
1443
  }), error ? /*#__PURE__*/React.createElement(ErrorField, {
1415
1444
  error: error
1416
1445
  }) : null);
@@ -1419,7 +1448,7 @@ const SelectInteractive = props => {
1419
1448
  const {
1420
1449
  normal: normal$7,
1421
1450
  grey: grey$e,
1422
- lightGrey: lightGrey$8,
1451
+ lightGrey: lightGrey$9,
1423
1452
  red: red$8,
1424
1453
  lightRed
1425
1454
  } = colors;
@@ -1445,7 +1474,7 @@ const Appendix = _styled.div`
1445
1474
  border-width: ${props => props.position === 'left' ? `0 ${rem('1px')} 0 0` : `0 0 0 ${rem('1px')}`};
1446
1475
  border-style: solid;
1447
1476
  border-color: ${props => props.error ? red$8 : grey$e};
1448
- background-color: ${props => props.error ? lightRed : lightGrey$8};
1477
+ background-color: ${props => props.error ? lightRed : lightGrey$9};
1449
1478
  padding: 0 ${/*#__PURE__*/rem('15px')};
1450
1479
  color: ${props => props.error ? red$8 : grey$e};
1451
1480
  line-height: ${/*#__PURE__*/rem('48px')};
@@ -1946,7 +1975,7 @@ const VideoPlayer = props => {
1946
1975
  };
1947
1976
 
1948
1977
  const {
1949
- lightGrey: lightGrey$9,
1978
+ lightGrey: lightGrey$a,
1950
1979
  green: green$6
1951
1980
  } = colors;
1952
1981
  const {
@@ -1959,7 +1988,7 @@ const Wrapper$5 = _styled.div`
1959
1988
  const Bar = _styled.div`
1960
1989
  flex: 1;
1961
1990
  border-radius: 999px;
1962
- background-color: ${lightGrey$9};
1991
+ background-color: ${lightGrey$a};
1963
1992
  height: ${/*#__PURE__*/rem('10px')};
1964
1993
  overflow: hidden;
1965
1994
  `;
@@ -1989,7 +2018,7 @@ const ProgressBar = props => {
1989
2018
  const {
1990
2019
  light: light$b,
1991
2020
  green: green$7,
1992
- lightGrey: lightGrey$a
2021
+ lightGrey: lightGrey$b
1993
2022
  } = colors;
1994
2023
  const Switcher = _styled.fieldset`
1995
2024
  margin: 0;
@@ -2048,7 +2077,7 @@ const Switcher = _styled.fieldset`
2048
2077
  }
2049
2078
 
2050
2079
  &.switch-off:checked ~ .bg {
2051
- background-color: ${lightGrey$a};
2080
+ background-color: ${lightGrey$b};
2052
2081
  }
2053
2082
  }
2054
2083
 
@@ -2076,7 +2105,7 @@ const Switcher = _styled.fieldset`
2076
2105
  border-radius: 999px;
2077
2106
  background-color: transparent;
2078
2107
  transition: all 0.3s ease-out;
2079
- background-color: ${lightGrey$a};
2108
+ background-color: ${lightGrey$b};
2080
2109
  }
2081
2110
  }
2082
2111
  }
@@ -2166,7 +2195,7 @@ const Toggle = ({
2166
2195
  const {
2167
2196
  red: red$9,
2168
2197
  grey: grey$f,
2169
- lightGrey: lightGrey$b,
2198
+ lightGrey: lightGrey$c,
2170
2199
  darkGrey: darkGrey$2,
2171
2200
  green: green$8,
2172
2201
  darkGreen: darkGreen$4,
@@ -2189,7 +2218,7 @@ const Wrapper$6 = _styled.div`
2189
2218
  border-style: solid;
2190
2219
  border-color: ${props => props.error ? red$9 : grey$f};
2191
2220
  border-radius: ${props => props.minimal ? 0 : rem('6px')};
2192
- background-color: ${props => props.disabled ? lightGrey$b : 'transparent'};
2221
+ background-color: ${props => props.disabled ? lightGrey$c : 'transparent'};
2193
2222
  display: flex;
2194
2223
  justify-content: space-between;
2195
2224
  align-items: center;
@@ -2217,7 +2246,7 @@ const Wrapper$6 = _styled.div`
2217
2246
 
2218
2247
  &.button {
2219
2248
  border-left: ${props => props.minimal ? 0 : `${rem('1px')} solid ${grey$f}`};
2220
- background-color: ${props => props.minimal ? 'transparent' : props.disabled ? lightGrey$b : green$8};
2249
+ background-color: ${props => props.minimal ? 'transparent' : props.disabled ? lightGrey$c : green$8};
2221
2250
  height: 100%;
2222
2251
  padding: ${props => props.minimal ? `0 ${rem('5px')} 0 ${rem('20px')}` : `0 ${rem('20px')}`};
2223
2252
  color: ${props => props.disabled ? grey$f : props.minimal ? darkGrey$2 : light$c};
@@ -2300,7 +2329,7 @@ const FilePicker = props => {
2300
2329
  const {
2301
2330
  normal: normal$9,
2302
2331
  light: light$d,
2303
- lightGrey: lightGrey$c,
2332
+ lightGrey: lightGrey$d,
2304
2333
  red: red$a
2305
2334
  } = colors;
2306
2335
  const ActionsMenuStyle$1 = /*#__PURE__*/_styled.div.withConfig({
@@ -2310,11 +2339,11 @@ const ActionsMenuStyle$1 = /*#__PURE__*/_styled.div.withConfig({
2310
2339
  const List = /*#__PURE__*/_styled.ul.withConfig({
2311
2340
  displayName: "styles__List",
2312
2341
  componentId: "sc-1peafop-1"
2313
- })(["position:absolute;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";min-width:", ";max-width:", ";padding:0;-moz-box-shadow:0 0 ", " 0 ", ";-webkit-box-shadow:0 0 ", " 0 ", ";box-shadow:0 0 ", " 0 ", ";z-index:1;", " li{list-style:none;min-height:", ";display:flex;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}&.danger{border-top:", " solid ", ";a{color:", ";}}&.disabled{a{color:", ";pointer-events:none;}&:hover{background-color:transparent;}}a{width:100%;display:flex;align-items:center;padding:0 ", ";color:", ";text-decoration:none;white-space:nowrap;span{display:table-cell;overflow:hidden;text-overflow:ellipsis;}}}"], /*#__PURE__*/rem('1px'), lightGrey$c, /*#__PURE__*/rem('4px'), light$d, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('200px'), /*#__PURE__*/rem('250px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), props => props.rowIndex != undefined && css`
2342
+ })(["position:absolute;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";min-width:", ";max-width:", ";padding:0;-moz-box-shadow:0 0 ", " 0 ", ";-webkit-box-shadow:0 0 ", " 0 ", ";box-shadow:0 0 ", " 0 ", ";z-index:1;", " li{list-style:none;min-height:", ";display:flex;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}&.danger{border-top:", " solid ", ";a{color:", ";}}&.disabled{a{color:", ";pointer-events:none;}&:hover{background-color:transparent;}}a{width:100%;display:flex;align-items:center;padding:0 ", ";color:", ";text-decoration:none;white-space:nowrap;span{display:table-cell;overflow:hidden;text-overflow:ellipsis;}}}"], /*#__PURE__*/rem('1px'), lightGrey$d, /*#__PURE__*/rem('4px'), light$d, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('200px'), /*#__PURE__*/rem('250px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), props => props.rowIndex != undefined && css`
2314
2343
  --margin: ${`calc(${rem('45px')} + ${rem('50px')} * ${props.rowIndex} + ${rem('42px')})`};
2315
2344
  top: var(--margin);
2316
2345
  right: ${rem('5px')};
2317
- `, /*#__PURE__*/rem('45px'), lightGrey$c, /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('1px'), lightGrey$c, red$a, lightGrey$c, /*#__PURE__*/rem('20px'), normal$9);
2346
+ `, /*#__PURE__*/rem('45px'), lightGrey$d, /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('1px'), lightGrey$d, red$a, lightGrey$d, /*#__PURE__*/rem('20px'), normal$9);
2318
2347
 
2319
2348
  const ActionMenuList = props => {
2320
2349
  const {
@@ -2517,7 +2546,7 @@ const {
2517
2546
  lightGreen,
2518
2547
  darkGreen: darkGreen$5,
2519
2548
  grey: grey$i,
2520
- lightGrey: lightGrey$d,
2549
+ lightGrey: lightGrey$e,
2521
2550
  darkGrey: darkGrey$3,
2522
2551
  red: red$b,
2523
2552
  lightRed: lightRed$1,
@@ -2526,9 +2555,9 @@ const {
2526
2555
  const Wrapper$7 = /*#__PURE__*/_styled.div.withConfig({
2527
2556
  displayName: "styles__Wrapper",
2528
2557
  componentId: "d2fn4g-0"
2529
- })(["--default:", ";--light:", ";--dark:", ";", " ", " ", " border-width:", ";border-style:solid;border-color:var(--default);border-radius:", ";background-color:var(--light);padding:", ";div{&:first-child{flex:1;}p{margin:0;}}", ""], grey$i, lightGrey$d, darkGrey$3, props => props.color === 'grey' && css`
2558
+ })(["--default:", ";--light:", ";--dark:", ";", " ", " ", " border-width:", ";border-style:solid;border-color:var(--default);border-radius:", ";background-color:var(--light);padding:", ";div{&:first-child{flex:1;}p{margin:0;}}", ""], grey$i, lightGrey$e, darkGrey$3, props => props.color === 'grey' && css`
2530
2559
  --default: ${grey$i};
2531
- --light: ${lightGrey$d};
2560
+ --light: ${lightGrey$e};
2532
2561
  --dark: ${darkGrey$3};
2533
2562
  `, props => props.color === 'green' && css`
2534
2563
  --default: ${green$9};
@@ -2599,7 +2628,7 @@ const {
2599
2628
  normal: normal$a,
2600
2629
  light: light$g,
2601
2630
  grey: grey$j,
2602
- lightGrey: lightGrey$e
2631
+ lightGrey: lightGrey$f
2603
2632
  } = colors;
2604
2633
  const {
2605
2634
  bold: bold$7
@@ -2615,7 +2644,7 @@ const OverflowWrapper = /*#__PURE__*/_styled.div.withConfig({
2615
2644
  const Table = /*#__PURE__*/_styled.table.withConfig({
2616
2645
  displayName: "styles__Table",
2617
2646
  componentId: "vmoy3z-2"
2618
- })(["width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td.menu{button{opacity:1;}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$7, grey$j, lightGrey$e, device.s, /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), normal$a, grey$j, /*#__PURE__*/rem('15px'), bold$7, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('36px'), /*#__PURE__*/rem('-170px'), device.s, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('40px'));
2647
+ })(["width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td.menu{button{opacity:1;}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$7, grey$j, lightGrey$f, device.s, /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), normal$a, grey$j, /*#__PURE__*/rem('15px'), bold$7, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('36px'), /*#__PURE__*/rem('-170px'), device.s, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('40px'));
2619
2648
 
2620
2649
  const Table$1 = props => {
2621
2650
  const {
@@ -2717,7 +2746,7 @@ const Table$1 = props => {
2717
2746
  const {
2718
2747
  normal: normal$b,
2719
2748
  grey: grey$k,
2720
- lightGrey: lightGrey$f
2749
+ lightGrey: lightGrey$g
2721
2750
  } = colors;
2722
2751
  const {
2723
2752
  bold: bold$8
@@ -2725,7 +2754,7 @@ const {
2725
2754
  const Table$2 = /*#__PURE__*/_styled.table.withConfig({
2726
2755
  displayName: "styles__Table",
2727
2756
  componentId: "sc-1p618q0-0"
2728
- })(["position:relative;width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;table-layout:", ";th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td{&.drag-handle{svg{fill:", ";}}&.menu{button{opacity:1;}}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;&.drag-handle{> div{width:min-content;}svg{width:", ";height:", ";fill:", ";transition-duration:0.3s;}}> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$k, /*#__PURE__*/rem('6px'), props => props.layout, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$8, grey$k, lightGrey$f, grey$k, device.s, /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), grey$k, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), normal$b, grey$k, /*#__PURE__*/rem('15px'), bold$8, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('36px'), /*#__PURE__*/rem('-170px'), device.s, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('40px'));
2757
+ })(["position:relative;width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;table-layout:", ";th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td{&.drag-handle{svg{fill:", ";}}&.menu{button{opacity:1;}}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;&.drag-handle{> div{width:min-content;}svg{width:", ";height:", ";fill:", ";transition-duration:0.3s;}}> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$k, /*#__PURE__*/rem('6px'), props => props.layout, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$8, grey$k, lightGrey$g, grey$k, device.s, /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), grey$k, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), normal$b, grey$k, /*#__PURE__*/rem('15px'), bold$8, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('36px'), /*#__PURE__*/rem('-170px'), device.s, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('40px'));
2729
2758
  const TableRow = /*#__PURE__*/_styled.tr.withConfig({
2730
2759
  displayName: "styles__TableRow",
2731
2760
  componentId: "sc-1p618q0-1"
@@ -2917,13 +2946,13 @@ const FormGroup = props => {
2917
2946
 
2918
2947
  const {
2919
2948
  grey: grey$m,
2920
- lightGrey: lightGrey$g,
2949
+ lightGrey: lightGrey$h,
2921
2950
  lightRed: lightRed$2
2922
2951
  } = colors;
2923
2952
  const Wrapper$9 = /*#__PURE__*/_styled.div.withConfig({
2924
2953
  displayName: "styles__Wrapper",
2925
2954
  componentId: "sc-124afcu-0"
2926
- })(["border:", " solid ", ";border-radius:", ";max-width:max-content;height:", ";display:flex;overflow:hidden;button,input{&:disabled{cursor:inherit;background-color:", ";svg{opacity:0.25;}&:hover{pointer-events:none;}}}"], /*#__PURE__*/rem('1px'), grey$m, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), lightGrey$g);
2955
+ })(["border:", " solid ", ";border-radius:", ";max-width:max-content;height:", ";display:flex;overflow:hidden;button,input{&:disabled{cursor:inherit;background-color:", ";svg{opacity:0.25;}&:hover{pointer-events:none;}}}"], /*#__PURE__*/rem('1px'), grey$m, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), lightGrey$h);
2927
2956
  const Input = /*#__PURE__*/_styled.input.withConfig({
2928
2957
  displayName: "styles__Input",
2929
2958
  componentId: "sc-124afcu-1"
@@ -2931,7 +2960,7 @@ const Input = /*#__PURE__*/_styled.input.withConfig({
2931
2960
  const Button$1 = /*#__PURE__*/_styled.button.withConfig({
2932
2961
  displayName: "styles__Button",
2933
2962
  componentId: "sc-124afcu-2"
2934
- })(["width:", ";height:", ";border:0;background-color:", ";cursor:pointer;transition-duration:0.3s;&.remove-button{border-right:", " solid ", ";}&.add-button{border-left:", " solid ", ";}svg{width:auto;height:", ";fill:", ";}&:hover{background-color:", ";}"], /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('50px'), lightGrey$g, /*#__PURE__*/rem('1px'), grey$m, /*#__PURE__*/rem('1px'), grey$m, /*#__PURE__*/rem('20px'), grey$m, lightGrey$g);
2963
+ })(["width:", ";height:", ";border:0;background-color:", ";cursor:pointer;transition-duration:0.3s;&.remove-button{border-right:", " solid ", ";}&.add-button{border-left:", " solid ", ";}svg{width:auto;height:", ";fill:", ";}&:hover{background-color:", ";}"], /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('50px'), lightGrey$h, /*#__PURE__*/rem('1px'), grey$m, /*#__PURE__*/rem('1px'), grey$m, /*#__PURE__*/rem('20px'), grey$m, lightGrey$h);
2935
2964
 
2936
2965
  const NumberInputSpinner = props => {
2937
2966
  const {
@@ -2999,7 +3028,7 @@ const NumberInputSpinner = props => {
2999
3028
  const {
3000
3029
  green: green$a,
3001
3030
  grey: grey$n,
3002
- lightGrey: lightGrey$h,
3031
+ lightGrey: lightGrey$i,
3003
3032
  light: light$i
3004
3033
  } = colors;
3005
3034
  const Steps = /*#__PURE__*/_styled.ul.withConfig({
@@ -3009,7 +3038,7 @@ const Steps = /*#__PURE__*/_styled.ul.withConfig({
3009
3038
  const Step = /*#__PURE__*/_styled.li.withConfig({
3010
3039
  displayName: "styles__Step",
3011
3040
  componentId: "sc-1s2dhfy-1"
3012
- })(["list-style:none;flex:1;position:relative;height:", ";display:flex;justify-content:center;align-items:center;padding-right:", ";text-align:center;&:before,&:after{content:'';position:absolute;top:0;border:0 solid ", ";border-width:", " ", ";width:0;height:0;}&:before{left:", ";border-left-color:transparent;}&:after{left:calc(100% - ", ");border-color:transparent;border-left-color:", ";}&:first-child:before{border:none;}&:last-child:after{border:none;}&:first-child{overflow:hidden;> div{border-radius:", " 0 0 ", ";}}&:last-child{padding-right:0;> div{border-radius:0 ", " ", " 0;}}> div{background-color:", ";width:100%;height:100%;display:flex;justify-content:center;align-items:center;span{width:min-content;font-size:0.75rem;color:", ";@media ", "{width:100%;font-size:1rem;font-weight:700;}}}"], /*#__PURE__*/rem('44px'), /*#__PURE__*/rem('18px'), props => props.active ? green$a : lightGrey$h, /*#__PURE__*/rem('22px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('-15px'), /*#__PURE__*/rem('18px'), props => props.active ? green$a : lightGrey$h, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), props => props.active ? green$a : lightGrey$h, props => props.active ? light$i : grey$n, device.s);
3041
+ })(["list-style:none;flex:1;position:relative;height:", ";display:flex;justify-content:center;align-items:center;padding-right:", ";text-align:center;&:before,&:after{content:'';position:absolute;top:0;border:0 solid ", ";border-width:", " ", ";width:0;height:0;}&:before{left:", ";border-left-color:transparent;}&:after{left:calc(100% - ", ");border-color:transparent;border-left-color:", ";}&:first-child:before{border:none;}&:last-child:after{border:none;}&:first-child{overflow:hidden;> div{border-radius:", " 0 0 ", ";}}&:last-child{padding-right:0;> div{border-radius:0 ", " ", " 0;}}> div{background-color:", ";width:100%;height:100%;display:flex;justify-content:center;align-items:center;span{width:min-content;font-size:0.75rem;color:", ";@media ", "{width:100%;font-size:1rem;font-weight:700;}}}"], /*#__PURE__*/rem('44px'), /*#__PURE__*/rem('18px'), props => props.active ? green$a : lightGrey$i, /*#__PURE__*/rem('22px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('-15px'), /*#__PURE__*/rem('18px'), props => props.active ? green$a : lightGrey$i, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), props => props.active ? green$a : lightGrey$i, props => props.active ? light$i : grey$n, device.s);
3013
3042
 
3014
3043
  const WizardSteps = props => {
3015
3044
  const {
@@ -3143,7 +3172,7 @@ const {
3143
3172
  normal: normal$d,
3144
3173
  light: light$k,
3145
3174
  blue: blue$2,
3146
- lightGrey: lightGrey$i
3175
+ lightGrey: lightGrey$j
3147
3176
  } = colors;
3148
3177
  const {
3149
3178
  bold: bold$9
@@ -3215,7 +3244,7 @@ const PaginationWrapper = _styled.div`
3215
3244
 
3216
3245
  &.dark {
3217
3246
  a {
3218
- color: ${lightGrey$i};
3247
+ color: ${lightGrey$j};
3219
3248
 
3220
3249
  &:hover {
3221
3250
  color: ${light$k};
@@ -5329,7 +5358,7 @@ const {
5329
5358
  green: green$e,
5330
5359
  darkGreen: darkGreen$7,
5331
5360
  grey: grey$o,
5332
- lightGrey: lightGrey$j,
5361
+ lightGrey: lightGrey$k,
5333
5362
  red: red$e
5334
5363
  } = colors;
5335
5364
  const Wrapper$d = _styled.ul`
@@ -5417,11 +5446,11 @@ const Item = _styled.li`
5417
5446
 
5418
5447
  input[type='radio'] ~ .check,
5419
5448
  input[type='radio']:checked ~ .check {
5420
- border-color: ${lightGrey$j};
5449
+ border-color: ${lightGrey$k};
5421
5450
  }
5422
5451
 
5423
5452
  input[type='radio']:checked ~ .check::before {
5424
- background-color: ${lightGrey$j};
5453
+ background-color: ${lightGrey$k};
5425
5454
  }
5426
5455
 
5427
5456
  &:hover {
@@ -5635,7 +5664,7 @@ const {
5635
5664
  normal: normal$h,
5636
5665
  purple: purple$7,
5637
5666
  grey: grey$q,
5638
- lightGrey: lightGrey$k,
5667
+ lightGrey: lightGrey$l,
5639
5668
  light: light$m
5640
5669
  } = colors;
5641
5670
  const {
@@ -5648,7 +5677,7 @@ const Wrapper$g = /*#__PURE__*/_styled.div.withConfig({
5648
5677
  const More = /*#__PURE__*/_styled.div.withConfig({
5649
5678
  displayName: "styles__More",
5650
5679
  componentId: "znznmm-1"
5651
- })(["position:relative;display:none;&.hide{display:initial;}ul{position:absolute;right:0;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";padding:0;-moz-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);-webkit-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;&.more{display:none;}&.is-open{display:inherit;}li{list-style:none;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;a{color:", ";svg{fill:", ";}}}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}a{width:100%;height:100%;padding:", ";}}}"], /*#__PURE__*/rem('1px'), lightGrey$k, /*#__PURE__*/rem('4px'), light$m, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), lightGrey$k, normal$h, normal$h, /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('15px'));
5680
+ })(["position:relative;display:none;&.hide{display:initial;}ul{position:absolute;right:0;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";padding:0;-moz-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);-webkit-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;&.more{display:none;}&.is-open{display:inherit;}li{list-style:none;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;a{color:", ";svg{fill:", ";}}}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}a{width:100%;height:100%;padding:", ";}}}"], /*#__PURE__*/rem('1px'), lightGrey$l, /*#__PURE__*/rem('4px'), light$m, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), lightGrey$l, normal$h, normal$h, /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('15px'));
5652
5681
 
5653
5682
  const HorizontalNav = props => {
5654
5683
  const [showMore, setShowMore] = useState(false);
@@ -5803,11 +5832,11 @@ const {
5803
5832
  } = fontWeight;
5804
5833
  const slideInLeft = keyframes`
5805
5834
  from {
5806
- transform: translate3d(100%, 0, 0);
5835
+ transform: translateX(100%);
5807
5836
  }
5808
5837
 
5809
5838
  to {
5810
- transform: translate3d(0, 0, 0);
5839
+ transform: translateX(0);
5811
5840
  }
5812
5841
  `;
5813
5842
  const ModalOverlay$1 = /*#__PURE__*/_styled.div.withConfig({
@@ -5821,7 +5850,7 @@ const ModalWrapper$1 = /*#__PURE__*/_styled.div.withConfig({
5821
5850
  const ModalContainer$1 = /*#__PURE__*/_styled.div.withConfig({
5822
5851
  displayName: "styles__ModalContainer",
5823
5852
  componentId: "sc-46huls-2"
5824
- })(["position:absolute;right:0;background:", ";width:100%;min-height:100vh;display:flex;flex-direction:column;padding:", ";word-wrap:break-word;animation-timing-function:", ";animation-duration:1s;animation-fill-mode:forwards;transform:translate3d(100%,0,0);animation-name:", ";@media ", "{max-width:", ";padding:", ";}"], light$o, /*#__PURE__*/rem('15px'), /*#__PURE__*/timingFunctions('easeOutQuint'), slideInLeft, device.s, /*#__PURE__*/rem('400px'), /*#__PURE__*/rem('30px'));
5853
+ })(["position:fixed;right:0;background:", ";width:100%;height:100vh;display:flex;flex-direction:column;padding:", ";word-wrap:break-word;animation-timing-function:", ";animation-duration:1s;animation-fill-mode:forwards;transform:translateX(100%);animation-name:", ";overflow-y:auto;@media ", "{max-width:", ";padding:", ";}"], light$o, /*#__PURE__*/rem('15px'), /*#__PURE__*/timingFunctions('easeOutQuint'), slideInLeft, device.s, /*#__PURE__*/rem('400px'), /*#__PURE__*/rem('30px'));
5825
5854
  const ModalHeader$1 = /*#__PURE__*/_styled.div.withConfig({
5826
5855
  displayName: "styles__ModalHeader",
5827
5856
  componentId: "sc-46huls-3"
@@ -5859,7 +5888,7 @@ const ModalDrawer = props => {
5859
5888
  };
5860
5889
 
5861
5890
  const {
5862
- lightGrey: lightGrey$l
5891
+ lightGrey: lightGrey$m
5863
5892
  } = colors;
5864
5893
  const Wrapper$h = _styled.div`
5865
5894
  div {
@@ -5922,7 +5951,7 @@ const Wrapper$h = _styled.div`
5922
5951
 
5923
5952
  .card {
5924
5953
  position: relative;
5925
- border: ${/*#__PURE__*/rem('2px')} solid ${lightGrey$l};
5954
+ border: ${/*#__PURE__*/rem('2px')} solid ${lightGrey$m};
5926
5955
  border-radius: ${/*#__PURE__*/rem('6px')};
5927
5956
  width: ${/*#__PURE__*/rem('300px')};
5928
5957
  overflow: hidden;
@@ -5937,7 +5966,7 @@ const Wrapper$h = _styled.div`
5937
5966
  margin: ${/*#__PURE__*/rem('-45px')} 0 0 ${/*#__PURE__*/rem('20px')};
5938
5967
  width: ${/*#__PURE__*/rem('90px')};
5939
5968
  height: ${/*#__PURE__*/rem('90px')};
5940
- border: ${/*#__PURE__*/rem('1px')} solid ${lightGrey$l};
5969
+ border: ${/*#__PURE__*/rem('1px')} solid ${lightGrey$m};
5941
5970
  border-radius: 999px;
5942
5971
  }
5943
5972
 
@@ -6084,19 +6113,19 @@ const LoadingState = props => {
6084
6113
  const {
6085
6114
  normal: normal$i,
6086
6115
  grey: grey$r,
6087
- lightGrey: lightGrey$m,
6116
+ lightGrey: lightGrey$n,
6088
6117
  light: light$p
6089
6118
  } = colors;
6090
6119
  const Wrapper$i = _styled.div`
6091
6120
  .tab {
6092
- border-color: ${lightGrey$m};
6121
+ border-color: ${lightGrey$n};
6093
6122
 
6094
6123
  &[aria-selected='true'] {
6095
6124
  border-bottom: 0;
6096
6125
  }
6097
6126
 
6098
6127
  &[aria-selected='false'] {
6099
- background-color: ${lightGrey$m};
6128
+ background-color: ${lightGrey$n};
6100
6129
  color: ${grey$r};
6101
6130
  transition-duration: 0.3s;
6102
6131
 
@@ -6116,7 +6145,7 @@ const Wrapper$i = _styled.div`
6116
6145
 
6117
6146
  .panel {
6118
6147
  border-radius: 0 ${/*#__PURE__*/rem('6px')} ${/*#__PURE__*/rem('6px')} ${/*#__PURE__*/rem('6px')};
6119
- border-color: ${lightGrey$m};
6148
+ border-color: ${lightGrey$n};
6120
6149
  background-color: ${light$p};
6121
6150
  padding: ${/*#__PURE__*/rem('30px')};
6122
6151
  }
@@ -6206,7 +6235,7 @@ const Wrapper$i = _styled.div`
6206
6235
  }
6207
6236
 
6208
6237
  .RRT__showmore {
6209
- background: ${lightGrey$m};
6238
+ background: ${lightGrey$n};
6210
6239
  border: ${/*#__PURE__*/rem('1px')} solid ${/*#__PURE__*/lighten(0.25, grey$r)};
6211
6240
  border-radius: 0 ${/*#__PURE__*/rem('6px')} 0 0;
6212
6241
  cursor: pointer;