@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.
- package/README.md +12 -5
- package/dist/atoms/select-interactive/components/index.d.ts +6 -0
- package/dist/atoms/select-interactive/index.d.ts +2 -1
- package/dist/atoms/select-interactive/stories/select-interactive.stories.d.ts +9 -9
- package/dist/atoms/select-interactive/styles.d.ts +1 -0
- package/dist/atoms/select-interactive/types.d.ts +34 -0
- package/dist/rocket-kit.cjs.development.js +109 -80
- package/dist/rocket-kit.cjs.development.js.map +1 -1
- package/dist/rocket-kit.cjs.production.min.js +165 -152
- package/dist/rocket-kit.cjs.production.min.js.map +1 -1
- package/dist/rocket-kit.esm.js +109 -80
- package/dist/rocket-kit.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -1255,6 +1255,7 @@ const {
|
|
|
1255
1255
|
normal: normal$6,
|
|
1256
1256
|
light: light$9,
|
|
1257
1257
|
grey: grey$d,
|
|
1258
|
+
lightGrey: lightGrey$8,
|
|
1258
1259
|
purple: purple$5,
|
|
1259
1260
|
lightPurple
|
|
1260
1261
|
} = colors;
|
|
@@ -1371,55 +1372,83 @@ const SelectWrapper = _styled__default.div`
|
|
|
1371
1372
|
transition-duration: 0.3s;
|
|
1372
1373
|
}
|
|
1373
1374
|
}
|
|
1374
|
-
`;
|
|
1375
1375
|
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
value,
|
|
1384
|
-
clear = true,
|
|
1385
|
-
onChange = () => {},
|
|
1386
|
-
onInputChange = () => {},
|
|
1387
|
-
error,
|
|
1388
|
-
disabled = false,
|
|
1389
|
-
dataTestId
|
|
1390
|
-
} = props;
|
|
1391
|
-
const {
|
|
1392
|
-
Option
|
|
1393
|
-
} = Select$1.components;
|
|
1394
|
-
|
|
1395
|
-
const CustomSelectOption = (props, commonProps) => /*#__PURE__*/React__default.createElement(Option, Object.assign({}, props, commonProps), props.data.icon ? /*#__PURE__*/React__default.createElement(Icon, {
|
|
1396
|
-
icon: props.data.icon
|
|
1397
|
-
}) : props.data.customImage ? props.data.customImage : null, props.data.label);
|
|
1376
|
+
.select__option--is-disabled {
|
|
1377
|
+
pointer-events: none;
|
|
1378
|
+
}
|
|
1379
|
+
`;
|
|
1380
|
+
const SelectGroupLabel = _styled__default.span`
|
|
1381
|
+
font-size: ${/*#__PURE__*/polished.rem('12px')};
|
|
1382
|
+
color: ${lightGrey$8};
|
|
1398
1383
|
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1384
|
+
+ .tag {
|
|
1385
|
+
border-color: ${lightGrey$8};
|
|
1386
|
+
background-color: ${lightGrey$8};
|
|
1387
|
+
color: ${grey$d};
|
|
1388
|
+
}
|
|
1389
|
+
`;
|
|
1402
1390
|
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1391
|
+
const {
|
|
1392
|
+
Option
|
|
1393
|
+
} = Select$1.components;
|
|
1394
|
+
const FormatGroupLabel = ({
|
|
1395
|
+
label,
|
|
1396
|
+
options
|
|
1397
|
+
}) => {
|
|
1398
|
+
return /*#__PURE__*/React__default.createElement("div", {
|
|
1399
|
+
style: {
|
|
1400
|
+
display: 'flex',
|
|
1401
|
+
alignItems: 'center',
|
|
1402
|
+
justifyContent: 'space-between'
|
|
1403
|
+
}
|
|
1404
|
+
}, /*#__PURE__*/React__default.createElement(SelectGroupLabel, {
|
|
1405
|
+
className: "selective-options-group-label"
|
|
1406
|
+
}, label), /*#__PURE__*/React__default.createElement(Tag, {
|
|
1407
|
+
value: `${options == null ? void 0 : options.length}`
|
|
1408
|
+
}));
|
|
1409
|
+
};
|
|
1410
|
+
const CustomSelectOption = (props, commonProps) => /*#__PURE__*/React__default.createElement(Option, Object.assign({}, props, commonProps), props.data.icon ? /*#__PURE__*/React__default.createElement(Icon, {
|
|
1411
|
+
icon: props.data.icon
|
|
1412
|
+
}) : props.data.customImage ? props.data.customImage : null, props.data.label);
|
|
1413
|
+
const CustomSelectValue = props => /*#__PURE__*/React__default.createElement("div", null, props.data.icon ? /*#__PURE__*/React__default.createElement(Icon, {
|
|
1414
|
+
icon: props.data.icon
|
|
1415
|
+
}) : props.data.customImage ? props.data.customImage : null, props.data.label);
|
|
1416
|
+
|
|
1417
|
+
const SelectInteractive = ({
|
|
1418
|
+
name,
|
|
1419
|
+
multi = false,
|
|
1420
|
+
search = true,
|
|
1421
|
+
placeholder,
|
|
1422
|
+
options,
|
|
1423
|
+
value,
|
|
1424
|
+
clear = true,
|
|
1425
|
+
error,
|
|
1426
|
+
disabled = false,
|
|
1427
|
+
formatGroupLabel = true,
|
|
1428
|
+
onChange = () => {},
|
|
1429
|
+
onInputChange = () => {},
|
|
1430
|
+
...rest
|
|
1431
|
+
}) => {
|
|
1432
|
+
return /*#__PURE__*/React__default.createElement(SelectWrapper, Object.assign({}, rest), /*#__PURE__*/React__default.createElement(Select$1__default, {
|
|
1408
1433
|
name: name,
|
|
1434
|
+
value: value,
|
|
1409
1435
|
isMulti: multi,
|
|
1410
|
-
isSearchable: search,
|
|
1411
|
-
isDisabled: disabled,
|
|
1412
|
-
placeholder: placeholder,
|
|
1413
1436
|
options: options,
|
|
1414
|
-
value: value,
|
|
1415
1437
|
isClearable: clear,
|
|
1416
|
-
|
|
1438
|
+
isDisabled: disabled,
|
|
1439
|
+
isSearchable: search,
|
|
1440
|
+
classNamePrefix: "select",
|
|
1441
|
+
placeholder: placeholder,
|
|
1442
|
+
className: "select-interactive",
|
|
1443
|
+
// @ts-ignore
|
|
1444
|
+
onChange: e => onChange(e != null ? e : []),
|
|
1417
1445
|
defaultMenuIsOpen: false,
|
|
1418
1446
|
onInputChange: onInputChange,
|
|
1419
1447
|
components: {
|
|
1420
1448
|
Option: CustomSelectOption,
|
|
1421
1449
|
SingleValue: CustomSelectValue
|
|
1422
|
-
}
|
|
1450
|
+
},
|
|
1451
|
+
formatGroupLabel: s => formatGroupLabel ? FormatGroupLabel == null ? void 0 : FormatGroupLabel(s) : undefined
|
|
1423
1452
|
}), error ? /*#__PURE__*/React__default.createElement(ErrorField, {
|
|
1424
1453
|
error: error
|
|
1425
1454
|
}) : null);
|
|
@@ -1428,7 +1457,7 @@ const SelectInteractive = props => {
|
|
|
1428
1457
|
const {
|
|
1429
1458
|
normal: normal$7,
|
|
1430
1459
|
grey: grey$e,
|
|
1431
|
-
lightGrey: lightGrey$
|
|
1460
|
+
lightGrey: lightGrey$9,
|
|
1432
1461
|
red: red$8,
|
|
1433
1462
|
lightRed
|
|
1434
1463
|
} = colors;
|
|
@@ -1454,7 +1483,7 @@ const Appendix = _styled__default.div`
|
|
|
1454
1483
|
border-width: ${props => props.position === 'left' ? `0 ${polished.rem('1px')} 0 0` : `0 0 0 ${polished.rem('1px')}`};
|
|
1455
1484
|
border-style: solid;
|
|
1456
1485
|
border-color: ${props => props.error ? red$8 : grey$e};
|
|
1457
|
-
background-color: ${props => props.error ? lightRed : lightGrey$
|
|
1486
|
+
background-color: ${props => props.error ? lightRed : lightGrey$9};
|
|
1458
1487
|
padding: 0 ${/*#__PURE__*/polished.rem('15px')};
|
|
1459
1488
|
color: ${props => props.error ? red$8 : grey$e};
|
|
1460
1489
|
line-height: ${/*#__PURE__*/polished.rem('48px')};
|
|
@@ -1955,7 +1984,7 @@ const VideoPlayer = props => {
|
|
|
1955
1984
|
};
|
|
1956
1985
|
|
|
1957
1986
|
const {
|
|
1958
|
-
lightGrey: lightGrey$
|
|
1987
|
+
lightGrey: lightGrey$a,
|
|
1959
1988
|
green: green$6
|
|
1960
1989
|
} = colors;
|
|
1961
1990
|
const {
|
|
@@ -1968,7 +1997,7 @@ const Wrapper$5 = _styled__default.div`
|
|
|
1968
1997
|
const Bar = _styled__default.div`
|
|
1969
1998
|
flex: 1;
|
|
1970
1999
|
border-radius: 999px;
|
|
1971
|
-
background-color: ${lightGrey$
|
|
2000
|
+
background-color: ${lightGrey$a};
|
|
1972
2001
|
height: ${/*#__PURE__*/polished.rem('10px')};
|
|
1973
2002
|
overflow: hidden;
|
|
1974
2003
|
`;
|
|
@@ -1998,7 +2027,7 @@ const ProgressBar = props => {
|
|
|
1998
2027
|
const {
|
|
1999
2028
|
light: light$b,
|
|
2000
2029
|
green: green$7,
|
|
2001
|
-
lightGrey: lightGrey$
|
|
2030
|
+
lightGrey: lightGrey$b
|
|
2002
2031
|
} = colors;
|
|
2003
2032
|
const Switcher = _styled__default.fieldset`
|
|
2004
2033
|
margin: 0;
|
|
@@ -2057,7 +2086,7 @@ const Switcher = _styled__default.fieldset`
|
|
|
2057
2086
|
}
|
|
2058
2087
|
|
|
2059
2088
|
&.switch-off:checked ~ .bg {
|
|
2060
|
-
background-color: ${lightGrey$
|
|
2089
|
+
background-color: ${lightGrey$b};
|
|
2061
2090
|
}
|
|
2062
2091
|
}
|
|
2063
2092
|
|
|
@@ -2085,7 +2114,7 @@ const Switcher = _styled__default.fieldset`
|
|
|
2085
2114
|
border-radius: 999px;
|
|
2086
2115
|
background-color: transparent;
|
|
2087
2116
|
transition: all 0.3s ease-out;
|
|
2088
|
-
background-color: ${lightGrey$
|
|
2117
|
+
background-color: ${lightGrey$b};
|
|
2089
2118
|
}
|
|
2090
2119
|
}
|
|
2091
2120
|
}
|
|
@@ -2175,7 +2204,7 @@ const Toggle = ({
|
|
|
2175
2204
|
const {
|
|
2176
2205
|
red: red$9,
|
|
2177
2206
|
grey: grey$f,
|
|
2178
|
-
lightGrey: lightGrey$
|
|
2207
|
+
lightGrey: lightGrey$c,
|
|
2179
2208
|
darkGrey: darkGrey$2,
|
|
2180
2209
|
green: green$8,
|
|
2181
2210
|
darkGreen: darkGreen$4,
|
|
@@ -2198,7 +2227,7 @@ const Wrapper$6 = _styled__default.div`
|
|
|
2198
2227
|
border-style: solid;
|
|
2199
2228
|
border-color: ${props => props.error ? red$9 : grey$f};
|
|
2200
2229
|
border-radius: ${props => props.minimal ? 0 : polished.rem('6px')};
|
|
2201
|
-
background-color: ${props => props.disabled ? lightGrey$
|
|
2230
|
+
background-color: ${props => props.disabled ? lightGrey$c : 'transparent'};
|
|
2202
2231
|
display: flex;
|
|
2203
2232
|
justify-content: space-between;
|
|
2204
2233
|
align-items: center;
|
|
@@ -2226,7 +2255,7 @@ const Wrapper$6 = _styled__default.div`
|
|
|
2226
2255
|
|
|
2227
2256
|
&.button {
|
|
2228
2257
|
border-left: ${props => props.minimal ? 0 : `${polished.rem('1px')} solid ${grey$f}`};
|
|
2229
|
-
background-color: ${props => props.minimal ? 'transparent' : props.disabled ? lightGrey$
|
|
2258
|
+
background-color: ${props => props.minimal ? 'transparent' : props.disabled ? lightGrey$c : green$8};
|
|
2230
2259
|
height: 100%;
|
|
2231
2260
|
padding: ${props => props.minimal ? `0 ${polished.rem('5px')} 0 ${polished.rem('20px')}` : `0 ${polished.rem('20px')}`};
|
|
2232
2261
|
color: ${props => props.disabled ? grey$f : props.minimal ? darkGrey$2 : light$c};
|
|
@@ -2309,7 +2338,7 @@ const FilePicker = props => {
|
|
|
2309
2338
|
const {
|
|
2310
2339
|
normal: normal$9,
|
|
2311
2340
|
light: light$d,
|
|
2312
|
-
lightGrey: lightGrey$
|
|
2341
|
+
lightGrey: lightGrey$d,
|
|
2313
2342
|
red: red$a
|
|
2314
2343
|
} = colors;
|
|
2315
2344
|
const ActionsMenuStyle$1 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
@@ -2319,11 +2348,11 @@ const ActionsMenuStyle$1 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
|
2319
2348
|
const List = /*#__PURE__*/_styled__default.ul.withConfig({
|
|
2320
2349
|
displayName: "styles__List",
|
|
2321
2350
|
componentId: "sc-1peafop-1"
|
|
2322
|
-
})(["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__*/polished.rem('1px'), lightGrey$
|
|
2351
|
+
})(["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__*/polished.rem('1px'), lightGrey$d, /*#__PURE__*/polished.rem('4px'), light$d, /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('200px'), /*#__PURE__*/polished.rem('250px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.lighten(0.7, normal$9), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.lighten(0.7, normal$9), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.lighten(0.7, normal$9), props => props.rowIndex != undefined && _styled.css`
|
|
2323
2352
|
--margin: ${`calc(${polished.rem('45px')} + ${polished.rem('50px')} * ${props.rowIndex} + ${polished.rem('42px')})`};
|
|
2324
2353
|
top: var(--margin);
|
|
2325
2354
|
right: ${polished.rem('5px')};
|
|
2326
|
-
`, /*#__PURE__*/polished.rem('45px'), lightGrey$
|
|
2355
|
+
`, /*#__PURE__*/polished.rem('45px'), lightGrey$d, /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('1px'), lightGrey$d, red$a, lightGrey$d, /*#__PURE__*/polished.rem('20px'), normal$9);
|
|
2327
2356
|
|
|
2328
2357
|
const ActionMenuList = props => {
|
|
2329
2358
|
const {
|
|
@@ -2526,7 +2555,7 @@ const {
|
|
|
2526
2555
|
lightGreen,
|
|
2527
2556
|
darkGreen: darkGreen$5,
|
|
2528
2557
|
grey: grey$i,
|
|
2529
|
-
lightGrey: lightGrey$
|
|
2558
|
+
lightGrey: lightGrey$e,
|
|
2530
2559
|
darkGrey: darkGrey$3,
|
|
2531
2560
|
red: red$b,
|
|
2532
2561
|
lightRed: lightRed$1,
|
|
@@ -2535,9 +2564,9 @@ const {
|
|
|
2535
2564
|
const Wrapper$7 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
2536
2565
|
displayName: "styles__Wrapper",
|
|
2537
2566
|
componentId: "d2fn4g-0"
|
|
2538
|
-
})(["--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$
|
|
2567
|
+
})(["--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' && _styled.css`
|
|
2539
2568
|
--default: ${grey$i};
|
|
2540
|
-
--light: ${lightGrey$
|
|
2569
|
+
--light: ${lightGrey$e};
|
|
2541
2570
|
--dark: ${darkGrey$3};
|
|
2542
2571
|
`, props => props.color === 'green' && _styled.css`
|
|
2543
2572
|
--default: ${green$9};
|
|
@@ -2608,7 +2637,7 @@ const {
|
|
|
2608
2637
|
normal: normal$a,
|
|
2609
2638
|
light: light$g,
|
|
2610
2639
|
grey: grey$j,
|
|
2611
|
-
lightGrey: lightGrey$
|
|
2640
|
+
lightGrey: lightGrey$f
|
|
2612
2641
|
} = colors;
|
|
2613
2642
|
const {
|
|
2614
2643
|
bold: bold$7
|
|
@@ -2624,7 +2653,7 @@ const OverflowWrapper = /*#__PURE__*/_styled__default.div.withConfig({
|
|
|
2624
2653
|
const Table = /*#__PURE__*/_styled__default.table.withConfig({
|
|
2625
2654
|
displayName: "styles__Table",
|
|
2626
2655
|
componentId: "vmoy3z-2"
|
|
2627
|
-
})(["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__*/polished.rem('6px'), /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('1px'), grey$j, /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('1px'), /*#__PURE__*/polished.rem('-1px'), /*#__PURE__*/polished.rem('1px'), device.s, bold$7, grey$j, lightGrey$
|
|
2656
|
+
})(["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__*/polished.rem('6px'), /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('1px'), grey$j, /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('1px'), /*#__PURE__*/polished.rem('-1px'), /*#__PURE__*/polished.rem('1px'), device.s, bold$7, grey$j, lightGrey$f, device.s, /*#__PURE__*/polished.rem('1px'), grey$j, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('30px'), normal$a, grey$j, /*#__PURE__*/polished.rem('15px'), bold$7, /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('10px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('36px'), /*#__PURE__*/polished.rem('-170px'), device.s, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('1px'), grey$j, /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('40px'));
|
|
2628
2657
|
|
|
2629
2658
|
const Table$1 = props => {
|
|
2630
2659
|
const {
|
|
@@ -2726,7 +2755,7 @@ const Table$1 = props => {
|
|
|
2726
2755
|
const {
|
|
2727
2756
|
normal: normal$b,
|
|
2728
2757
|
grey: grey$k,
|
|
2729
|
-
lightGrey: lightGrey$
|
|
2758
|
+
lightGrey: lightGrey$g
|
|
2730
2759
|
} = colors;
|
|
2731
2760
|
const {
|
|
2732
2761
|
bold: bold$8
|
|
@@ -2734,7 +2763,7 @@ const {
|
|
|
2734
2763
|
const Table$2 = /*#__PURE__*/_styled__default.table.withConfig({
|
|
2735
2764
|
displayName: "styles__Table",
|
|
2736
2765
|
componentId: "sc-1p618q0-0"
|
|
2737
|
-
})(["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__*/polished.rem('6px'), props => props.layout, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('1px'), grey$k, /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('1px'), /*#__PURE__*/polished.rem('-1px'), /*#__PURE__*/polished.rem('1px'), device.s, bold$8, grey$k, lightGrey$
|
|
2766
|
+
})(["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__*/polished.rem('6px'), props => props.layout, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('1px'), grey$k, /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('1px'), /*#__PURE__*/polished.rem('-1px'), /*#__PURE__*/polished.rem('1px'), device.s, bold$8, grey$k, lightGrey$g, grey$k, device.s, /*#__PURE__*/polished.rem('1px'), grey$k, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('30px'), grey$k, /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('30px'), normal$b, grey$k, /*#__PURE__*/polished.rem('15px'), bold$8, /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('10px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('36px'), /*#__PURE__*/polished.rem('-170px'), device.s, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('1px'), grey$k, /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('40px'));
|
|
2738
2767
|
const TableRow = /*#__PURE__*/_styled__default.tr.withConfig({
|
|
2739
2768
|
displayName: "styles__TableRow",
|
|
2740
2769
|
componentId: "sc-1p618q0-1"
|
|
@@ -2926,13 +2955,13 @@ const FormGroup = props => {
|
|
|
2926
2955
|
|
|
2927
2956
|
const {
|
|
2928
2957
|
grey: grey$m,
|
|
2929
|
-
lightGrey: lightGrey$
|
|
2958
|
+
lightGrey: lightGrey$h,
|
|
2930
2959
|
lightRed: lightRed$2
|
|
2931
2960
|
} = colors;
|
|
2932
2961
|
const Wrapper$9 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
2933
2962
|
displayName: "styles__Wrapper",
|
|
2934
2963
|
componentId: "sc-124afcu-0"
|
|
2935
|
-
})(["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__*/polished.rem('1px'), grey$m, /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('50px'), lightGrey$
|
|
2964
|
+
})(["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__*/polished.rem('1px'), grey$m, /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('50px'), lightGrey$h);
|
|
2936
2965
|
const Input = /*#__PURE__*/_styled__default.input.withConfig({
|
|
2937
2966
|
displayName: "styles__Input",
|
|
2938
2967
|
componentId: "sc-124afcu-1"
|
|
@@ -2940,7 +2969,7 @@ const Input = /*#__PURE__*/_styled__default.input.withConfig({
|
|
|
2940
2969
|
const Button$1 = /*#__PURE__*/_styled__default.button.withConfig({
|
|
2941
2970
|
displayName: "styles__Button",
|
|
2942
2971
|
componentId: "sc-124afcu-2"
|
|
2943
|
-
})(["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__*/polished.rem('50px'), /*#__PURE__*/polished.rem('50px'), lightGrey$
|
|
2972
|
+
})(["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__*/polished.rem('50px'), /*#__PURE__*/polished.rem('50px'), lightGrey$h, /*#__PURE__*/polished.rem('1px'), grey$m, /*#__PURE__*/polished.rem('1px'), grey$m, /*#__PURE__*/polished.rem('20px'), grey$m, lightGrey$h);
|
|
2944
2973
|
|
|
2945
2974
|
const NumberInputSpinner = props => {
|
|
2946
2975
|
const {
|
|
@@ -3008,7 +3037,7 @@ const NumberInputSpinner = props => {
|
|
|
3008
3037
|
const {
|
|
3009
3038
|
green: green$a,
|
|
3010
3039
|
grey: grey$n,
|
|
3011
|
-
lightGrey: lightGrey$
|
|
3040
|
+
lightGrey: lightGrey$i,
|
|
3012
3041
|
light: light$i
|
|
3013
3042
|
} = colors;
|
|
3014
3043
|
const Steps = /*#__PURE__*/_styled__default.ul.withConfig({
|
|
@@ -3018,7 +3047,7 @@ const Steps = /*#__PURE__*/_styled__default.ul.withConfig({
|
|
|
3018
3047
|
const Step = /*#__PURE__*/_styled__default.li.withConfig({
|
|
3019
3048
|
displayName: "styles__Step",
|
|
3020
3049
|
componentId: "sc-1s2dhfy-1"
|
|
3021
|
-
})(["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__*/polished.rem('44px'), /*#__PURE__*/polished.rem('18px'), props => props.active ? green$a : lightGrey$
|
|
3050
|
+
})(["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__*/polished.rem('44px'), /*#__PURE__*/polished.rem('18px'), props => props.active ? green$a : lightGrey$i, /*#__PURE__*/polished.rem('22px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('-15px'), /*#__PURE__*/polished.rem('18px'), props => props.active ? green$a : lightGrey$i, /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('6px'), props => props.active ? green$a : lightGrey$i, props => props.active ? light$i : grey$n, device.s);
|
|
3022
3051
|
|
|
3023
3052
|
const WizardSteps = props => {
|
|
3024
3053
|
const {
|
|
@@ -3152,7 +3181,7 @@ const {
|
|
|
3152
3181
|
normal: normal$d,
|
|
3153
3182
|
light: light$k,
|
|
3154
3183
|
blue: blue$2,
|
|
3155
|
-
lightGrey: lightGrey$
|
|
3184
|
+
lightGrey: lightGrey$j
|
|
3156
3185
|
} = colors;
|
|
3157
3186
|
const {
|
|
3158
3187
|
bold: bold$9
|
|
@@ -3224,7 +3253,7 @@ const PaginationWrapper = _styled__default.div`
|
|
|
3224
3253
|
|
|
3225
3254
|
&.dark {
|
|
3226
3255
|
a {
|
|
3227
|
-
color: ${lightGrey$
|
|
3256
|
+
color: ${lightGrey$j};
|
|
3228
3257
|
|
|
3229
3258
|
&:hover {
|
|
3230
3259
|
color: ${light$k};
|
|
@@ -5338,7 +5367,7 @@ const {
|
|
|
5338
5367
|
green: green$e,
|
|
5339
5368
|
darkGreen: darkGreen$7,
|
|
5340
5369
|
grey: grey$o,
|
|
5341
|
-
lightGrey: lightGrey$
|
|
5370
|
+
lightGrey: lightGrey$k,
|
|
5342
5371
|
red: red$e
|
|
5343
5372
|
} = colors;
|
|
5344
5373
|
const Wrapper$d = _styled__default.ul`
|
|
@@ -5426,11 +5455,11 @@ const Item = _styled__default.li`
|
|
|
5426
5455
|
|
|
5427
5456
|
input[type='radio'] ~ .check,
|
|
5428
5457
|
input[type='radio']:checked ~ .check {
|
|
5429
|
-
border-color: ${lightGrey$
|
|
5458
|
+
border-color: ${lightGrey$k};
|
|
5430
5459
|
}
|
|
5431
5460
|
|
|
5432
5461
|
input[type='radio']:checked ~ .check::before {
|
|
5433
|
-
background-color: ${lightGrey$
|
|
5462
|
+
background-color: ${lightGrey$k};
|
|
5434
5463
|
}
|
|
5435
5464
|
|
|
5436
5465
|
&:hover {
|
|
@@ -5644,7 +5673,7 @@ const {
|
|
|
5644
5673
|
normal: normal$h,
|
|
5645
5674
|
purple: purple$7,
|
|
5646
5675
|
grey: grey$q,
|
|
5647
|
-
lightGrey: lightGrey$
|
|
5676
|
+
lightGrey: lightGrey$l,
|
|
5648
5677
|
light: light$m
|
|
5649
5678
|
} = colors;
|
|
5650
5679
|
const {
|
|
@@ -5657,7 +5686,7 @@ const Wrapper$g = /*#__PURE__*/_styled__default.div.withConfig({
|
|
|
5657
5686
|
const More = /*#__PURE__*/_styled__default.div.withConfig({
|
|
5658
5687
|
displayName: "styles__More",
|
|
5659
5688
|
componentId: "znznmm-1"
|
|
5660
|
-
})(["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__*/polished.rem('1px'), lightGrey$
|
|
5689
|
+
})(["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__*/polished.rem('1px'), lightGrey$l, /*#__PURE__*/polished.rem('4px'), light$m, /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('15px'), lightGrey$l, normal$h, normal$h, /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('15px'));
|
|
5661
5690
|
|
|
5662
5691
|
const HorizontalNav = props => {
|
|
5663
5692
|
const [showMore, setShowMore] = React.useState(false);
|
|
@@ -5812,11 +5841,11 @@ const {
|
|
|
5812
5841
|
} = fontWeight;
|
|
5813
5842
|
const slideInLeft = _styled.keyframes`
|
|
5814
5843
|
from {
|
|
5815
|
-
transform:
|
|
5844
|
+
transform: translateX(100%);
|
|
5816
5845
|
}
|
|
5817
5846
|
|
|
5818
5847
|
to {
|
|
5819
|
-
transform:
|
|
5848
|
+
transform: translateX(0);
|
|
5820
5849
|
}
|
|
5821
5850
|
`;
|
|
5822
5851
|
const ModalOverlay$1 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
@@ -5830,7 +5859,7 @@ const ModalWrapper$1 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
|
5830
5859
|
const ModalContainer$1 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
5831
5860
|
displayName: "styles__ModalContainer",
|
|
5832
5861
|
componentId: "sc-46huls-2"
|
|
5833
|
-
})(["position:
|
|
5862
|
+
})(["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__*/polished.rem('15px'), /*#__PURE__*/polished.timingFunctions('easeOutQuint'), slideInLeft, device.s, /*#__PURE__*/polished.rem('400px'), /*#__PURE__*/polished.rem('30px'));
|
|
5834
5863
|
const ModalHeader$1 = /*#__PURE__*/_styled__default.div.withConfig({
|
|
5835
5864
|
displayName: "styles__ModalHeader",
|
|
5836
5865
|
componentId: "sc-46huls-3"
|
|
@@ -5868,7 +5897,7 @@ const ModalDrawer = props => {
|
|
|
5868
5897
|
};
|
|
5869
5898
|
|
|
5870
5899
|
const {
|
|
5871
|
-
lightGrey: lightGrey$
|
|
5900
|
+
lightGrey: lightGrey$m
|
|
5872
5901
|
} = colors;
|
|
5873
5902
|
const Wrapper$h = _styled__default.div`
|
|
5874
5903
|
div {
|
|
@@ -5931,7 +5960,7 @@ const Wrapper$h = _styled__default.div`
|
|
|
5931
5960
|
|
|
5932
5961
|
.card {
|
|
5933
5962
|
position: relative;
|
|
5934
|
-
border: ${/*#__PURE__*/polished.rem('2px')} solid ${lightGrey$
|
|
5963
|
+
border: ${/*#__PURE__*/polished.rem('2px')} solid ${lightGrey$m};
|
|
5935
5964
|
border-radius: ${/*#__PURE__*/polished.rem('6px')};
|
|
5936
5965
|
width: ${/*#__PURE__*/polished.rem('300px')};
|
|
5937
5966
|
overflow: hidden;
|
|
@@ -5946,7 +5975,7 @@ const Wrapper$h = _styled__default.div`
|
|
|
5946
5975
|
margin: ${/*#__PURE__*/polished.rem('-45px')} 0 0 ${/*#__PURE__*/polished.rem('20px')};
|
|
5947
5976
|
width: ${/*#__PURE__*/polished.rem('90px')};
|
|
5948
5977
|
height: ${/*#__PURE__*/polished.rem('90px')};
|
|
5949
|
-
border: ${/*#__PURE__*/polished.rem('1px')} solid ${lightGrey$
|
|
5978
|
+
border: ${/*#__PURE__*/polished.rem('1px')} solid ${lightGrey$m};
|
|
5950
5979
|
border-radius: 999px;
|
|
5951
5980
|
}
|
|
5952
5981
|
|
|
@@ -6093,19 +6122,19 @@ const LoadingState = props => {
|
|
|
6093
6122
|
const {
|
|
6094
6123
|
normal: normal$i,
|
|
6095
6124
|
grey: grey$r,
|
|
6096
|
-
lightGrey: lightGrey$
|
|
6125
|
+
lightGrey: lightGrey$n,
|
|
6097
6126
|
light: light$p
|
|
6098
6127
|
} = colors;
|
|
6099
6128
|
const Wrapper$i = _styled__default.div`
|
|
6100
6129
|
.tab {
|
|
6101
|
-
border-color: ${lightGrey$
|
|
6130
|
+
border-color: ${lightGrey$n};
|
|
6102
6131
|
|
|
6103
6132
|
&[aria-selected='true'] {
|
|
6104
6133
|
border-bottom: 0;
|
|
6105
6134
|
}
|
|
6106
6135
|
|
|
6107
6136
|
&[aria-selected='false'] {
|
|
6108
|
-
background-color: ${lightGrey$
|
|
6137
|
+
background-color: ${lightGrey$n};
|
|
6109
6138
|
color: ${grey$r};
|
|
6110
6139
|
transition-duration: 0.3s;
|
|
6111
6140
|
|
|
@@ -6125,7 +6154,7 @@ const Wrapper$i = _styled__default.div`
|
|
|
6125
6154
|
|
|
6126
6155
|
.panel {
|
|
6127
6156
|
border-radius: 0 ${/*#__PURE__*/polished.rem('6px')} ${/*#__PURE__*/polished.rem('6px')} ${/*#__PURE__*/polished.rem('6px')};
|
|
6128
|
-
border-color: ${lightGrey$
|
|
6157
|
+
border-color: ${lightGrey$n};
|
|
6129
6158
|
background-color: ${light$p};
|
|
6130
6159
|
padding: ${/*#__PURE__*/polished.rem('30px')};
|
|
6131
6160
|
}
|
|
@@ -6215,7 +6244,7 @@ const Wrapper$i = _styled__default.div`
|
|
|
6215
6244
|
}
|
|
6216
6245
|
|
|
6217
6246
|
.RRT__showmore {
|
|
6218
|
-
background: ${lightGrey$
|
|
6247
|
+
background: ${lightGrey$n};
|
|
6219
6248
|
border: ${/*#__PURE__*/polished.rem('1px')} solid ${/*#__PURE__*/polished.lighten(0.25, grey$r)};
|
|
6220
6249
|
border-radius: 0 ${/*#__PURE__*/polished.rem('6px')} 0 0;
|
|
6221
6250
|
cursor: pointer;
|