@taikai/rocket-kit 3.0.10-beta.2 → 3.0.11

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.
@@ -7,8 +7,8 @@ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'defau
7
7
  var React = require('react');
8
8
  var React__default = _interopDefault(React);
9
9
  var Avatar = _interopDefault(require('boring-avatars'));
10
- var _styled = require('styled-components');
11
- var _styled__default = _interopDefault(_styled);
10
+ var styled = require('styled-components');
11
+ var styled__default = _interopDefault(styled);
12
12
  var polished = require('polished');
13
13
  var Select$1 = require('react-select');
14
14
  var Select$1__default = _interopDefault(Select$1);
@@ -198,10 +198,24 @@ const field = {
198
198
  placeholderColor: colors.grey200
199
199
  };
200
200
 
201
- const Wrapper = /*#__PURE__*/_styled__default.div.withConfig({
202
- displayName: "styles__Wrapper",
203
- componentId: "sc-1oawilb-0"
204
- })(["position:relative;border:", " solid ", ";border-radius:", ";width:", "px;height:", "px;overflow:hidden;z-index:0;> *{width:100%;height:100%;}img{object-fit:cover;}"], /*#__PURE__*/polished.rem('2px'), colors.grey200, props => props.square ? 0 : '999px', props => props.size, props => props.size);
201
+ const Wrapper = styled__default.div`
202
+ position: relative;
203
+ border: ${/*#__PURE__*/polished.rem('2px')} solid ${colors.grey200};
204
+ border-radius: ${props => props.square ? 0 : '999px'};
205
+ width: ${props => props.size}px;
206
+ height: ${props => props.size}px;
207
+ overflow: hidden;
208
+ z-index: 0;
209
+
210
+ > * {
211
+ width: 100%;
212
+ height: 100%;
213
+ }
214
+
215
+ img {
216
+ object-fit: cover;
217
+ }
218
+ `;
205
219
 
206
220
  const AvatarImage = props => {
207
221
  const {
@@ -252,10 +266,82 @@ const useColor = value => {
252
266
  };
253
267
  };
254
268
 
255
- const ButtonWrapper = /*#__PURE__*/_styled__default.button.withConfig({
256
- displayName: "styles__ButtonWrapper",
257
- componentId: "sc-baestp-0"
258
- })(["--bg:", ";--txt:", ";--hover:", ";margin:0;border-width:", ";border-style:solid;border-color:var(--bg);border-radius:", ";background-color:", ";width:min-content;min-width:", ";height:", ";display:flex;justify-content:center;align-items:center;padding:", ";white-space:nowrap;text-decoration:none;transition-duration:", ";cursor:pointer;outline:none;&:hover{border-color:", ";background-color:", ";span{color:", ";}svg{fill:", ";}}&:disabled{cursor:inherit;opacity:0.5;&:hover{background-color:", ";pointer-events:none;}}> *:not(:last-child){margin-left:", ";margin-right:", ";}.spinner{order:", ";border-top-color:", ";}span{position:relative;font-size:", ";font-weight:", ";line-height:", ";color:", ";pointer-events:none;transition-duration:", ";order:", ";}svg{order:", ";width:", ";height:", ";fill:", ";transition:", ";}"], props => useColor(props.color ?? 'black').color, props => props.variant === 'outline' && !props.txtColor ? useColor(props.color ?? 'black').color : useColor(props.txtColor ?? 'white').color, props => props.color === 'white' ? colors.grey100 : props.color === 'black' ? colors.grey900 : useColor(props.color ?? 'black').hover, props => props.variant === 'outline' ? button.borderWidth : 0, props => props.variant === 'text' ? 0 : props.rounded ? '999px' : button.borderRadius, props => props.variant === 'solid' ? 'var(--bg)' : 'transparent', props => props.value ? polished.rem('80px') : polished.rem('42px'), button.height, props => props.value ? `0 ${button.padding}` : 0, misc.transitionDuration, props => props.variant === 'solid' ? '' : 'var(--hover)', props => props.variant === 'solid' ? 'var(--hover)' : 'transparent', props => props.variant === 'solid' ? '' : 'var(--hover)', props => props.variant === 'solid' ? '' : 'var(--hover)', props => props.variant === 'solid' ? 'var(--bg)' : 'transparent', props => props.iconPosition === 'right' ? button.iconSpacing : 0, props => props.iconPosition === 'left' ? button.iconSpacing : 0, props => props.iconPosition === 'left' ? 1 : 2, props => props.variant === 'solid' ? '' : 'var(--button)', /*#__PURE__*/polished.rem(typography.defaultSize), typography.medium, /*#__PURE__*/polished.rem(typography.defaultSize), props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)', misc.transitionDuration, props => props.iconPosition === 'left' ? 2 : 1, props => props.iconPosition === 'left' ? 1 : 2, button.iconSize, button.iconSize, props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)', misc.transitionDuration);
269
+ const ButtonWrapper = styled__default.button`
270
+ --bg: ${props => useColor(props.color ?? 'black').color};
271
+ --txt: ${props => props.variant === 'outline' && !props.txtColor ? useColor(props.color ?? 'black').color : useColor(props.txtColor ?? 'white').color};
272
+ --hover: ${props => props.color === 'white' ? colors.grey100 : props.color === 'black' ? colors.grey900 : useColor(props.color ?? 'black').hover};
273
+
274
+ margin: 0;
275
+ border-width: ${props => props.variant === 'outline' ? button.borderWidth : 0};
276
+ border-style: solid;
277
+ border-color: var(--bg);
278
+ border-radius: ${props => props.variant === 'text' ? 0 : props.rounded ? '999px' : button.borderRadius};
279
+ background-color: ${props => props.variant === 'solid' ? 'var(--bg)' : 'transparent'};
280
+ width: min-content;
281
+ min-width: ${props => props.value ? polished.rem('80px') : polished.rem('42px')};
282
+ height: ${button.height};
283
+ display: flex;
284
+ justify-content: center;
285
+ align-items: center;
286
+ padding: ${props => props.value ? `0 ${button.padding}` : 0};
287
+ white-space: nowrap;
288
+ text-decoration: none;
289
+ transition-duration: ${misc.transitionDuration};
290
+ cursor: pointer;
291
+ outline: none;
292
+
293
+ &:hover {
294
+ border-color: ${props => props.variant === 'solid' ? '' : 'var(--hover)'};
295
+ background-color: ${props => props.variant === 'solid' ? 'var(--hover)' : 'transparent'};
296
+
297
+ span {
298
+ color: ${props => props.variant === 'solid' ? '' : 'var(--hover)'};
299
+ }
300
+
301
+ svg {
302
+ fill: ${props => props.variant === 'solid' ? '' : 'var(--hover)'};
303
+ }
304
+ }
305
+
306
+ &:disabled {
307
+ cursor: inherit;
308
+ opacity: 0.5;
309
+
310
+ &:hover {
311
+ background-color: ${props => props.variant === 'solid' ? 'var(--bg)' : 'transparent'};
312
+ pointer-events: none;
313
+ }
314
+ }
315
+
316
+ > *:not(:last-child) {
317
+ margin-left: ${props => props.iconPosition === 'right' ? button.iconSpacing : 0};
318
+ margin-right: ${props => props.iconPosition === 'left' ? button.iconSpacing : 0};
319
+ }
320
+
321
+ .spinner {
322
+ order: ${props => props.iconPosition === 'left' ? 1 : 2};
323
+ border-top-color: ${props => props.variant === 'solid' ? '' : 'var(--button)'};
324
+ }
325
+
326
+ span {
327
+ position: relative;
328
+ font-size: ${/*#__PURE__*/polished.rem(typography.defaultSize)};
329
+ font-weight: ${typography.medium};
330
+ line-height: ${/*#__PURE__*/polished.rem(typography.defaultSize)};
331
+ color: ${props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)'};
332
+ pointer-events: none;
333
+ transition-duration: ${misc.transitionDuration};
334
+ order: ${props => props.iconPosition === 'left' ? 2 : 1};
335
+ }
336
+
337
+ svg {
338
+ order: ${props => props.iconPosition === 'left' ? 1 : 2};
339
+ width: ${button.iconSize};
340
+ height: ${button.iconSize};
341
+ fill: ${props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)'};
342
+ transition: ${misc.transitionDuration};
343
+ }
344
+ `;
259
345
 
260
346
  const Button = props => {
261
347
  const {
@@ -298,10 +384,79 @@ const Button = props => {
298
384
  }) : null, value && /*#__PURE__*/React__default.createElement("span", null, value));
299
385
  };
300
386
 
301
- const ActionsMenuStyle = /*#__PURE__*/_styled__default.div.withConfig({
302
- displayName: "styles__ActionsMenuStyle",
303
- componentId: "sc-1j5ogfi-0"
304
- })(["position:relative;ul{position:absolute;opacity:0;top:0;margin:0;border:", " solid ", ";border-radius:", ";background-color:", ";min-width:", ";max-width:", ";height:0;max-height:none;padding:0;-moz-box-shadow:0 0 ", " 0 ", ";-webkit-box-shadow:0 0 ", " 0 ", ";box-shadow:0 0 ", " 0 ", ";overflow-y:hidden;z-index:1;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;transition-duration:", ";&.isOpen{opacity:1;height:calc(", " * ", " + ", ");max-height:", ";}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 ", " ", ";}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'), field.borderColor, field.borderRadius, field.backgroundColor, /*#__PURE__*/polished.rem('200px'), /*#__PURE__*/polished.rem('250px'), /*#__PURE__*/polished.rem('15px'), field.boxShadow, /*#__PURE__*/polished.rem('15px'), field.boxShadow, /*#__PURE__*/polished.rem('15px'), field.boxShadow, misc.transitionDuration, /*#__PURE__*/polished.rem('45px'), props => props.visibleActions, /*#__PURE__*/polished.rem('2px'), /*#__PURE__*/polished.rem('1280px'), /*#__PURE__*/polished.rem('45px'), field.borderColor, /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('4px'), /*#__PURE__*/polished.rem('20px'), field.color);
387
+ const ActionsMenuStyle = styled__default.div`
388
+ position: relative;
389
+
390
+ ul {
391
+ position: absolute;
392
+ opacity: 0;
393
+ top: 0;
394
+ margin: 0;
395
+ border: ${/*#__PURE__*/polished.rem('1px')} solid ${field.borderColor};
396
+ border-radius: ${field.borderRadius};
397
+ background-color: ${field.backgroundColor};
398
+ min-width: ${/*#__PURE__*/polished.rem('200px')};
399
+ max-width: ${/*#__PURE__*/polished.rem('250px')};
400
+ height: 0;
401
+ max-height: none;
402
+ padding: 0;
403
+ -moz-box-shadow: 0 0 ${/*#__PURE__*/polished.rem('15px')} 0 ${field.boxShadow};
404
+ -webkit-box-shadow: 0 0 ${/*#__PURE__*/polished.rem('15px')} 0 ${field.boxShadow};
405
+ box-shadow: 0 0 ${/*#__PURE__*/polished.rem('15px')} 0 ${field.boxShadow};
406
+ overflow-y: hidden;
407
+ z-index: 1;
408
+ -webkit-scrollbar-width: none;
409
+ -moz-scrollbar-width: none;
410
+ -ms-scrollbar-width: none;
411
+ scrollbar-width: none;
412
+ -webkit-overflow-scrolling: touch;
413
+ -ms-overflow-style: -ms-autohiding-scrollbar;
414
+ transition-duration: ${misc.transitionDuration};
415
+
416
+ &.isOpen {
417
+ opacity: 1;
418
+ // prettier-ignore
419
+ height: calc(${/*#__PURE__*/polished.rem('45px')} * ${props => props.visibleActions} + ${/*#__PURE__*/polished.rem('2px')});
420
+ max-height: ${/*#__PURE__*/polished.rem('1280px')};
421
+ }
422
+
423
+ li {
424
+ list-style: none;
425
+ min-height: ${/*#__PURE__*/polished.rem('45px')};
426
+ display: flex;
427
+ transition-duration: 0.3s;
428
+
429
+ &:hover {
430
+ background-color: ${field.borderColor};
431
+ cursor: pointer;
432
+ }
433
+
434
+ &:first-child {
435
+ border-radius: ${/*#__PURE__*/polished.rem('4px')} ${/*#__PURE__*/polished.rem('4px')} 0 0;
436
+ }
437
+
438
+ &:last-child {
439
+ border-radius: 0 0 ${/*#__PURE__*/polished.rem('4px')} ${/*#__PURE__*/polished.rem('4px')};
440
+ }
441
+
442
+ a {
443
+ width: 100%;
444
+ display: flex;
445
+ align-items: center;
446
+ padding: 0 ${/*#__PURE__*/polished.rem('20px')};
447
+ color: ${field.color};
448
+ text-decoration: none;
449
+ white-space: nowrap;
450
+
451
+ span {
452
+ display: table-cell;
453
+ overflow: hidden;
454
+ text-overflow: ellipsis;
455
+ }
456
+ }
457
+ }
458
+ }
459
+ `;
305
460
 
306
461
  function useVisible(initialIsVisible) {
307
462
  const [isVisible, setIsVisible] = React.useState(initialIsVisible);
@@ -396,10 +551,65 @@ const ButtonDropdown = props => {
396
551
  }, /*#__PURE__*/React__default.createElement("span", null, value))))));
397
552
  };
398
553
 
399
- const ButtonLinkStyle = /*#__PURE__*/_styled__default.a.withConfig({
400
- displayName: "styles__ButtonLinkStyle",
401
- componentId: "sc-clge7v-0"
402
- })(["--bg:", ";--txt:", ";--hover:", ";border-width:", ";border-style:solid;border-color:var(--bg);border-radius:", ";background-color:", ";width:min-content;min-width:", ";height:", ";display:flex;justify-content:center;align-items:center;padding:", ";white-space:nowrap;text-decoration:none;transition-duration:", ";cursor:pointer;&:hover{border-color:", ";background-color:", ";span{color:", ";}svg{fill:", ";}}> *:not(:last-child){margin-left:", ";margin-right:", ";}span{position:relative;font-size:", ";font-weight:", ";line-height:", ";color:", ";pointer-events:none;transition-duration:", ";order:", ";}svg{order:", ";width:", ";height:", ";fill:", ";transition:", ";}"], props => useColor(props.color ?? 'black').color, props => props.variant === 'outline' && !props.txtColor ? useColor(props.color ?? 'black').color : useColor(props.txtColor ?? 'white').color, props => props.color === 'white' ? colors.grey100 : props.color === 'black' ? colors.grey900 : useColor(props.color ?? 'black').hover, props => props.variant === 'outline' ? button.borderWidth : 0, props => props.variant === 'text' ? 0 : props.rounded ? '999px' : button.borderRadius, props => props.variant === 'solid' ? 'var(--bg)' : 'transparent', props => props.value ? polished.rem('80px') : polished.rem('42px'), button.height, props => props.value ? `0 ${button.padding}` : 0, misc.transitionDuration, props => props.variant === 'solid' ? '' : 'var(--hover)', props => props.variant === 'solid' ? 'var(--hover)' : 'transparent', props => props.variant === 'solid' ? '' : 'var(--hover)', props => props.variant === 'solid' ? '' : 'var(--hover)', props => props.iconPosition === 'right' ? button.iconSpacing : 0, props => props.iconPosition === 'left' ? button.iconSpacing : 0, /*#__PURE__*/polished.rem(typography.defaultSize), typography.medium, /*#__PURE__*/polished.rem(typography.defaultSize), props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)', misc.transitionDuration, props => props.iconPosition === 'left' ? 2 : 1, props => props.iconPosition === 'left' ? 1 : 2, button.iconSize, button.iconSize, props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)', misc.transitionDuration);
554
+ const ButtonLinkStyle = styled__default.a`
555
+ --bg: ${props => useColor(props.color ?? 'black').color};
556
+ --txt: ${props => props.variant === 'outline' && !props.txtColor ? useColor(props.color ?? 'black').color : useColor(props.txtColor ?? 'white').color};
557
+ --hover: ${props => props.color === 'white' ? colors.grey100 : props.color === 'black' ? colors.grey900 : useColor(props.color ?? 'black').hover};
558
+
559
+ border-width: ${props => props.variant === 'outline' ? button.borderWidth : 0};
560
+ border-style: solid;
561
+ border-color: var(--bg);
562
+ border-radius: ${props => props.variant === 'text' ? 0 : props.rounded ? '999px' : button.borderRadius};
563
+ background-color: ${props => props.variant === 'solid' ? 'var(--bg)' : 'transparent'};
564
+ width: min-content;
565
+ min-width: ${props => props.value ? polished.rem('80px') : polished.rem('42px')};
566
+ height: ${button.height};
567
+ display: flex;
568
+ justify-content: center;
569
+ align-items: center;
570
+ padding: ${props => props.value ? `0 ${button.padding}` : 0};
571
+ white-space: nowrap;
572
+ text-decoration: none;
573
+ transition-duration: ${misc.transitionDuration};
574
+ cursor: pointer;
575
+
576
+ &:hover {
577
+ border-color: ${props => props.variant === 'solid' ? '' : 'var(--hover)'};
578
+ background-color: ${props => props.variant === 'solid' ? 'var(--hover)' : 'transparent'};
579
+
580
+ span {
581
+ color: ${props => props.variant === 'solid' ? '' : 'var(--hover)'};
582
+ }
583
+
584
+ svg {
585
+ fill: ${props => props.variant === 'solid' ? '' : 'var(--hover)'};
586
+ }
587
+ }
588
+
589
+ > *:not(:last-child) {
590
+ margin-left: ${props => props.iconPosition === 'right' ? button.iconSpacing : 0};
591
+ margin-right: ${props => props.iconPosition === 'left' ? button.iconSpacing : 0};
592
+ }
593
+
594
+ span {
595
+ position: relative;
596
+ font-size: ${/*#__PURE__*/polished.rem(typography.defaultSize)};
597
+ font-weight: ${typography.medium};
598
+ line-height: ${/*#__PURE__*/polished.rem(typography.defaultSize)};
599
+ color: ${props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)'};
600
+ pointer-events: none;
601
+ transition-duration: ${misc.transitionDuration};
602
+ order: ${props => props.iconPosition === 'left' ? 2 : 1};
603
+ }
604
+
605
+ svg {
606
+ order: ${props => props.iconPosition === 'left' ? 1 : 2};
607
+ width: ${button.iconSize};
608
+ height: ${button.iconSize};
609
+ fill: ${props => props.variant === 'solid' || props.variant === 'outline' ? 'var(--txt)' : 'var(--bg)'};
610
+ transition: ${misc.transitionDuration};
611
+ }
612
+ `;
403
613
 
404
614
  const ButtonLink = props => {
405
615
  const {
@@ -447,22 +657,94 @@ const ButtonLink = props => {
447
657
  }), value && /*#__PURE__*/React__default.createElement("span", null, value));
448
658
  };
449
659
 
450
- const CheckboxWrapper = /*#__PURE__*/_styled__default.label.withConfig({
451
- displayName: "styles__CheckboxWrapper",
452
- componentId: "sc-w5t014-0"
453
- })(["display:flex;position:relative;padding-left:0;cursor:", ";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;&:hover input:not(:disabled) ~ span{border-color:", ";}span{color:", ";border-color:", ";}"], props => props.disabled ? 'auto' : 'pointer', props => props.error ? field.errorBorderColor : field.hoverBorderColor, props => props.disabled ? field.disabledColor : props.error ? field.errorBorderColor : null, props => props.error ? field.errorBorderColor : null);
454
- const CheckboxLabel = /*#__PURE__*/_styled__default.span.withConfig({
455
- displayName: "styles__CheckboxLabel",
456
- componentId: "sc-w5t014-1"
457
- })(["margin-left:calc(", " + ", ");line-height:", ";"], /*#__PURE__*/polished.rem('24px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('24px'));
458
- const CheckboxInput = /*#__PURE__*/_styled__default.input.withConfig({
459
- displayName: "styles__CheckboxInput",
460
- componentId: "sc-w5t014-2"
461
- })(["position:absolute;left:0;opacity:0;cursor:pointer;"]);
462
- const Checkmark = /*#__PURE__*/_styled__default.span.withConfig({
463
- displayName: "styles__Checkmark",
464
- componentId: "sc-w5t014-3"
465
- })(["position:absolute;top:0;left:0;border:", " solid ", ";border-radius:100%;width:", ";height:", ";transition-duration:", ";&:after{display:block;content:'';position:absolute;display:none;top:", ";left:", ";width:", ";height:", ";border:solid ", ";border-width:0 ", " ", " 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}&.checked.not-disabled{background-color:", ";border-color:", ";&:after{display:block;}}&.checked.disabled{color:", ";border-color:transparent;background-color:", ";&:after{display:block;}}&.not-checked.disabled{border-color:", ";background-color:", ";}&.not-disabled:hover{border-color:", ";&:checked ~ span{border-color:", ";}}"], /*#__PURE__*/polished.rem('2px'), props => props.error ? field.errorBorderColor : field.borderColor, /*#__PURE__*/polished.rem('24px'), /*#__PURE__*/polished.rem('24px'), misc.transitionDuration, /*#__PURE__*/polished.rem('3px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('9px'), colors.white, /*#__PURE__*/polished.rem('3px'), /*#__PURE__*/polished.rem('3px'), props => props.error ? field.errorBackgroundColor : field.successBackgroundColor, props => props.error ? field.errorBorderColor : field.successBorderColor, field.disabledColor, field.disabledBackgroundColor, field.disabledBackgroundColor, colors.white, props => props.error ? field.errorBorderColor : field.successBorderColor, props => props.error ? field.errorBorderColor : field.successBorderColor);
660
+ const CheckboxWrapper = styled__default.label`
661
+ display: flex;
662
+ position: relative;
663
+ padding-left: 0;
664
+ cursor: ${props => props.disabled ? 'auto' : 'pointer'};
665
+ -webkit-user-select: none;
666
+ -moz-user-select: none;
667
+ -ms-user-select: none;
668
+ user-select: none;
669
+
670
+ &:hover input:not(:disabled) ~ span {
671
+ border-color: ${props => props.error ? field.errorBorderColor : field.hoverBorderColor};
672
+ }
673
+
674
+ span {
675
+ color: ${props => props.disabled ? field.disabledColor : props.error ? field.errorBorderColor : null};
676
+ border-color: ${props => props.error ? field.errorBorderColor : null};
677
+ }
678
+ `;
679
+ const CheckboxLabel = styled__default.span`
680
+ margin-left: calc(${/*#__PURE__*/polished.rem('24px')} + ${/*#__PURE__*/polished.rem('5px')});
681
+ line-height: ${/*#__PURE__*/polished.rem('24px')};
682
+ `;
683
+ const CheckboxInput = styled__default.input`
684
+ position: absolute;
685
+ left: 0;
686
+ opacity: 0;
687
+ cursor: pointer;
688
+ `;
689
+ const Checkmark = styled__default.span`
690
+ position: absolute;
691
+ top: 0;
692
+ left: 0;
693
+ border: ${/*#__PURE__*/polished.rem('2px')} solid
694
+ ${props => props.error ? field.errorBorderColor : field.borderColor};
695
+ border-radius: 100%;
696
+ width: ${/*#__PURE__*/polished.rem('24px')};
697
+ height: ${/*#__PURE__*/polished.rem('24px')};
698
+ transition-duration: ${misc.transitionDuration};
699
+
700
+ &:after {
701
+ display: block;
702
+ content: '';
703
+ position: absolute;
704
+ display: none;
705
+ top: ${/*#__PURE__*/polished.rem('3px')};
706
+ left: ${/*#__PURE__*/polished.rem('6px')};
707
+ width: ${/*#__PURE__*/polished.rem('5px')};
708
+ height: ${/*#__PURE__*/polished.rem('9px')};
709
+ border: solid ${colors.white};
710
+ border-width: 0 ${/*#__PURE__*/polished.rem('3px')} ${/*#__PURE__*/polished.rem('3px')} 0;
711
+ -webkit-transform: rotate(45deg);
712
+ -ms-transform: rotate(45deg);
713
+ transform: rotate(45deg);
714
+ }
715
+
716
+ &.checked.not-disabled {
717
+ background-color: ${props => props.error ? field.errorBackgroundColor : field.successBackgroundColor};
718
+ border-color: ${props => props.error ? field.errorBorderColor : field.successBorderColor};
719
+
720
+ &:after {
721
+ display: block;
722
+ }
723
+ }
724
+
725
+ &.checked.disabled {
726
+ color: ${field.disabledColor};
727
+ border-color: transparent;
728
+ background-color: ${field.disabledBackgroundColor};
729
+
730
+ &:after {
731
+ display: block;
732
+ }
733
+ }
734
+
735
+ &.not-checked.disabled {
736
+ border-color: ${field.disabledBackgroundColor};
737
+ background-color: ${colors.white};
738
+ }
739
+
740
+ &.not-disabled:hover {
741
+ border-color: ${props => props.error ? field.errorBorderColor : field.successBorderColor};
742
+
743
+ &:checked ~ span {
744
+ border-color: ${props => props.error ? field.errorBorderColor : field.successBorderColor};
745
+ }
746
+ }
747
+ `;
466
748
 
467
749
  const Checkbox = ({
468
750
  label,
@@ -517,22 +799,101 @@ const Checkbox = ({
517
799
  }));
518
800
  };
519
801
 
520
- const CheckboxWrapper$1 = /*#__PURE__*/_styled__default.label.withConfig({
521
- displayName: "styles__CheckboxWrapper",
522
- componentId: "sc-itly0z-0"
523
- })(["border:", " solid ", ";border-radius:", ";background-color:", ";height:", ";display:flex;align-items:center;position:relative;cursor:", ";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition-duration:", ";&:hover input:not(:disabled) ~ span{border-color:", ";}&:hover{background-color:", ";}span{color:", ";transition-duration:", ";}"], field.borderWidth, props => props.disabled ? field.borderColor : props.checked ? field.successBorderColor : field.borderColor, field.borderRadius, props => props.disabled ? field.disabledBackgroundColor : props.checked ? field.successBackgroundColor : field.backgroundColor, field.height, props => props.disabled ? 'auto' : 'pointer', misc.transitionDuration, field.hoverBorderColor, props => props.disabled ? field.disabledBackgroundColor : props.checked ? field.successBackgroundColor : field.borderColor, props => props.disabled ? field.disabledColor : props.checked ? colors.white : null, misc.transitionDuration);
524
- const CheckboxLabel$1 = /*#__PURE__*/_styled__default.span.withConfig({
525
- displayName: "styles__CheckboxLabel",
526
- componentId: "sc-itly0z-1"
527
- })(["margin-left:", ";line-height:", ";"], /*#__PURE__*/polished.rem('40px'), /*#__PURE__*/polished.rem('24px'));
528
- const CheckboxInput$1 = /*#__PURE__*/_styled__default.input.withConfig({
529
- displayName: "styles__CheckboxInput",
530
- componentId: "sc-itly0z-2"
531
- })(["position:absolute;left:0;opacity:0;cursor:pointer;&:checked:not(:disabled) ~ span{background-color:", ";border-color:", ";&:after{display:block;}}&:checked:disabled ~ span{background-color:", ";color:", ";&:after{display:block;border-color:", ";}}&:not(:checked):disabled ~ span{border-color:", ";background-color:", ";}&:hover:not(:disabled){&:checked ~ span{border-color:", ";}}"], colors.white, field.successBorderColor, field.disabledBackgroundColor, field.disabledColor, field.disabledColor, field.disabledBackgroundColor, field.backgroundColor, field.successBorderColor);
532
- const Checkmark$1 = /*#__PURE__*/_styled__default.span.withConfig({
533
- displayName: "styles__Checkmark",
534
- componentId: "sc-itly0z-3"
535
- })(["position:absolute;left:", ";border:", " solid ", ";border-radius:999px;background-color:", ";width:", ";height:", ";transition-duration:", ";&:after{content:'';position:absolute;display:none;top:", ";left:", ";width:", ";height:", ";border:solid ", ";border-width:0 ", " ", " 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}"], /*#__PURE__*/polished.rem('10px'), /*#__PURE__*/polished.rem('2px'), field.borderColor, colors.white, /*#__PURE__*/polished.rem('24px'), /*#__PURE__*/polished.rem('24px'), misc.transitionDuration, /*#__PURE__*/polished.rem('3px'), /*#__PURE__*/polished.rem('6px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('9px'), props => props.disabled ? colors.white : field.successBorderColor, /*#__PURE__*/polished.rem('3px'), /*#__PURE__*/polished.rem('3px'));
802
+ const CheckboxWrapper$1 = styled__default.label`
803
+ border: ${field.borderWidth} solid
804
+ ${props => props.disabled ? field.borderColor : props.checked ? field.successBorderColor : field.borderColor};
805
+ border-radius: ${field.borderRadius};
806
+ background-color: ${props => props.disabled ? field.disabledBackgroundColor : props.checked ? field.successBackgroundColor : field.backgroundColor};
807
+ height: ${field.height};
808
+ display: flex;
809
+ align-items: center;
810
+ position: relative;
811
+ cursor: ${props => props.disabled ? 'auto' : 'pointer'};
812
+ -webkit-user-select: none;
813
+ -moz-user-select: none;
814
+ -ms-user-select: none;
815
+ user-select: none;
816
+ transition-duration: ${misc.transitionDuration};
817
+
818
+ &:hover input:not(:disabled) ~ span {
819
+ border-color: ${field.hoverBorderColor};
820
+ }
821
+
822
+ &:hover {
823
+ background-color: ${props => props.disabled ? field.disabledBackgroundColor : props.checked ? field.successBackgroundColor : field.borderColor};
824
+ }
825
+
826
+ span {
827
+ color: ${props => props.disabled ? field.disabledColor : props.checked ? colors.white : null};
828
+ transition-duration: ${misc.transitionDuration};
829
+ }
830
+ `;
831
+ const CheckboxLabel$1 = styled__default.span`
832
+ margin-left: ${/*#__PURE__*/polished.rem('40px')};
833
+ line-height: ${/*#__PURE__*/polished.rem('24px')};
834
+ `;
835
+ const CheckboxInput$1 = styled__default.input`
836
+ position: absolute;
837
+ left: 0;
838
+ opacity: 0;
839
+ cursor: pointer;
840
+
841
+ &:checked:not(:disabled) ~ span {
842
+ background-color: ${colors.white};
843
+ border-color: ${field.successBorderColor};
844
+
845
+ &:after {
846
+ display: block;
847
+ }
848
+ }
849
+
850
+ &:checked:disabled ~ span {
851
+ background-color: ${field.disabledBackgroundColor};
852
+ color: ${field.disabledColor};
853
+
854
+ &:after {
855
+ display: block;
856
+ border-color: ${field.disabledColor};
857
+ }
858
+ }
859
+
860
+ &:not(:checked):disabled ~ span {
861
+ border-color: ${field.disabledBackgroundColor};
862
+ background-color: ${field.backgroundColor};
863
+ }
864
+
865
+ &:hover:not(:disabled) {
866
+ &:checked ~ span {
867
+ border-color: ${field.successBorderColor};
868
+ }
869
+ }
870
+ `;
871
+ const Checkmark$1 = styled__default.span`
872
+ position: absolute;
873
+ left: ${/*#__PURE__*/polished.rem('10px')};
874
+ border: ${/*#__PURE__*/polished.rem('2px')} solid ${field.borderColor};
875
+ border-radius: 999px;
876
+ background-color: ${colors.white};
877
+ width: ${/*#__PURE__*/polished.rem('24px')};
878
+ height: ${/*#__PURE__*/polished.rem('24px')};
879
+ transition-duration: ${misc.transitionDuration};
880
+
881
+ &:after {
882
+ content: '';
883
+ position: absolute;
884
+ display: none;
885
+ top: ${/*#__PURE__*/polished.rem('3px')};
886
+ left: ${/*#__PURE__*/polished.rem('6px')};
887
+ width: ${/*#__PURE__*/polished.rem('5px')};
888
+ height: ${/*#__PURE__*/polished.rem('9px')};
889
+ border: solid
890
+ ${props => props.disabled ? colors.white : field.successBorderColor};
891
+ border-width: 0 ${/*#__PURE__*/polished.rem('3px')} ${/*#__PURE__*/polished.rem('3px')} 0;
892
+ -webkit-transform: rotate(45deg);
893
+ -ms-transform: rotate(45deg);
894
+ transform: rotate(45deg);
895
+ }
896
+ `;
536
897
 
537
898
  const CheckboxButton = props => {
538
899
  const {
@@ -580,11 +941,11 @@ const icons = {
580
941
  warning: 'M5.466 27.792h21.067c1.544-0.001 2.796-1.253 2.796-2.797 0-0.515-0.139-0.998-0.383-1.413l0.007 0.013-10.533-18.199c-0.493-0.84-1.392-1.395-2.42-1.395s-1.927 0.555-2.413 1.382l-0.007 0.013-10.534 18.2c-0.236 0.401-0.375 0.884-0.375 1.4 0 1.544 1.251 2.796 2.795 2.797h0zM16 18c-0.772-0.002-1.397-0.627-1.399-1.399v-2.798c-0-0.006-0-0.014-0-0.021 0-0.773 0.626-1.399 1.399-1.399s1.399 0.626 1.399 1.399c0 0.007-0 0.015-0 0.022v-0.001 2.798c-0.002 0.772-0.627 1.397-1.399 1.399h-0zM17.399 23.595h-2.798v-2.798h2.798z',
581
942
  challenge: 'M9.92 4.853v12c0.002 0.736 0.598 1.331 1.333 1.333h2.667v9.533c0 0 0 0 0 0.001 0 0.367 0.298 0.665 0.665 0.665 0.245 0 0.458-0.132 0.574-0.329l0.002-0.003 6.92-11.867c0.115-0.193 0.184-0.425 0.184-0.673 0-0.733-0.594-1.327-1.327-1.327-0.001 0-0.002 0-0.004 0h-3.013l3.32-8.867c0.056-0.141 0.088-0.304 0.088-0.475 0-0.732-0.593-1.325-1.325-1.325-0.001 0-0.002 0-0.003 0h-8.746c-0.736 0.002-1.331 0.598-1.333 1.333v0z',
582
943
  flag: 'M19.2 8l-0.32-1.6c-0.127-0.613-0.663-1.067-1.304-1.067-0.001 0-0.002 0-0.003 0h-9.573c-0.736 0.002-1.331 0.598-1.333 1.333v20c-0 0.006-0 0.013-0 0.021 0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333c0-0.007-0-0.015-0-0.022v0.001-8h7.467l0.32 1.6c0.122 0.612 0.654 1.067 1.293 1.067 0.005 0 0.009-0 0.014-0h6.906c0.736-0.002 1.331-0.598 1.333-1.333v-10.667c-0.002-0.736-0.598-1.331-1.333-1.333h-0z',
583
- transferReceived: 'M20 26.667c-0.006 0-0.014 0-0.021 0-1.492 0-2.912-0.308-4.2-0.864l0.069 0.026c-1.318-0.565-2.443-1.336-3.39-2.285l-0-0c-0.95-0.947-1.721-2.073-2.259-3.323l-0.026-0.069c-0.53-1.219-0.838-2.639-0.838-4.131 0-0.007 0-0.014 0-0.021v0.001c0-0.006-0-0.014-0-0.022 0-1.492 0.308-2.912 0.864-4.2l-0.026 0.069c0.565-1.319 1.336-2.445 2.285-3.392l0-0c0.947-0.949 2.072-1.721 3.321-2.259l0.069-0.026c1.218-0.529 2.637-0.836 4.128-0.836 0.009 0 0.018 0 0.026 0h-0.001c0.006 0 0.014-0 0.021-0 1.492 0 2.912 0.308 4.2 0.864l-0.069-0.026c1.318 0.565 2.443 1.336 3.39 2.285l0 0c0.95 0.947 1.721 2.073 2.259 3.323l0.026 0.069c0.53 1.219 0.838 2.639 0.838 4.131 0 0.008 0 0.015-0 0.023v-0.001c0 0.006 0 0.014 0 0.022 0 1.492-0.308 2.912-0.864 4.2l0.026-0.069c-0.565 1.319-1.336 2.445-2.285 3.392l-0 0c-0.947 0.949-2.072 1.721-3.321 2.259l-0.069 0.026c-1.217 0.528-2.635 0.835-4.124 0.835-0.010 0-0.020 0-0.030-0h0.002zM21.001 19.119v0l1.673 1.668c0.022 0.022 0.036 0.034 0.049 0.044l0.022 0.016 0.010 0.007 0.013 0.012 0.030 0.023c0.134 0.091 0.299 0.145 0.477 0.145 0.002 0 0.004 0 0.006-0h-0c0.021 0 0.042 0 0.064-0.002 0.211-0.013 0.399-0.105 0.536-0.246l0-0c0.153-0.148 0.249-0.353 0.254-0.581v-0.001c0.001-0.011 0.001-0.024 0.001-0.037 0-0.214-0.083-0.408-0.219-0.552l0 0-0.017-0.018-0.034-0.048-1.591-1.579 0.792-0.714c0.163-0.145 0.27-0.35 0.283-0.581l0-0.002c0.002-0.021 0.003-0.045 0.003-0.069 0-0.212-0.081-0.405-0.213-0.549l0.001 0.001c-0.146-0.165-0.357-0.271-0.592-0.279l-0.001-0c-0.017 0-0.034 0-0.050 0-0.003-0-0.007-0-0.011-0-0.215 0-0.411 0.082-0.558 0.217l-0.863 0.777-0.95-0.943 3.71-3.35c0.040-0.032 0.075-0.067 0.107-0.104l0.001-0.001c0.029-0.030 0.055-0.062 0.079-0.097l0.002-0.003c0.081-0.129 0.128-0.285 0.128-0.453 0-0.21-0.075-0.402-0.199-0.551l0.001 0.001c-0.016-0.018-0.032-0.035-0.049-0.050l-0.001-0c-0.154-0.153-0.363-0.25-0.594-0.259l-0.002-0h-0.013c-0.053 0.006-0.089 0.009-0.115 0.012-0.051 0.002-0.099 0.013-0.142 0.033l0.002-0.001c-0.025 0.009-0.059 0.021-0.107 0.037l-0.066 0.034c-0.031 0.015-0.058 0.031-0.083 0.050l0.001-0.001-0.007 0.004-0.058 0.041-4.866 4.403v-3.757c0-0.001 0-0.002 0-0.004 0-0.236-0.098-0.449-0.256-0.6l-0-0c-0.151-0.157-0.363-0.254-0.597-0.254-0.002 0-0.005 0-0.007 0h0c-0.002-0-0.004-0-0.007-0-0.234 0-0.446 0.097-0.597 0.254l-0 0c-0.157 0.151-0.254 0.363-0.254 0.598 0 0.002 0 0.004 0 0.007v-0 8.36c-0 0.002-0 0.004-0 0.007 0 0.235 0.098 0.446 0.254 0.597l0 0c0.151 0.157 0.363 0.254 0.597 0.254 0.002 0 0.005 0 0.007-0h-0c0.002 0 0.004 0 0.007 0 0.234 0 0.446-0.097 0.597-0.254l0-0c0.158-0.151 0.256-0.364 0.256-0.599 0-0.002 0-0.003 0-0.005v0-2.292l1.003-0.909 0.946 0.943-0.794 0.716c-0.165 0.147-0.271 0.357-0.279 0.592l-0 0.001c-0.001 0.018-0.002 0.039-0.002 0.060 0 0.216 0.083 0.412 0.218 0.56l-0.001-0.001c0.146 0.164 0.357 0.269 0.592 0.273h0.033c0.003 0 0.006 0 0.009 0 0.219 0 0.418-0.084 0.567-0.222l-0.001 0 0.864-0.777z M4 16c0-0.001 0-0.002 0-0.003 0-3.172 1.848-5.912 4.526-7.203l0.048-0.021c0.442-0.191 0.748-0.618 0.76-1.119l0-0.002v-0.253c-0.003-0.673-0.549-1.218-1.223-1.218-0.195 0-0.38 0.046-0.544 0.127l0.007-0.003c-3.711 1.718-6.24 5.41-6.24 9.693s2.528 7.975 6.174 9.666l0.066 0.027c0.156 0.077 0.339 0.121 0.532 0.121 0.673 0 1.22-0.542 1.228-1.214v-0.241c-0.011-0.506-0.317-0.937-0.752-1.13l-0.008-0.003c-2.726-1.312-4.573-4.052-4.573-7.224 0-0.001 0-0.002 0-0.003v0z',
944
+ transferReceived: 'M20.023 5.336c1.492 0 2.912.308 4.2.864l-.069-.026a10.7 10.7 0 0 1 3.39 2.285c.95.947 1.72 2.073 2.259 3.323l.026.069c.53 1.219.838 2.64.838 4.131v.044c0 1.492-.308 2.912-.864 4.2l.026-.069a10.7 10.7 0 0 1-2.285 3.392 10.7 10.7 0 0 1-3.321 2.259l-.069.026a10.4 10.4 0 0 1-4.124.835h-.029L20 26.667h-.021c-1.492 0-2.912-.308-4.2-.864l.069.026a10.7 10.7 0 0 1-3.39-2.285 10.6 10.6 0 0 1-2.259-3.323l-.026-.069a10.4 10.4 0 0 1-.838-4.132v-.04c0-1.492.308-2.912.864-4.2l-.026.069a10.7 10.7 0 0 1 2.285-3.392 10.7 10.7 0 0 1 3.321-2.259l.069-.026a10.4 10.4 0 0 1 4.128-.836zM8.111 6.18c.674 0 1.22.546 1.223 1.218v.255a1.25 1.25 0 0 1-.76 1.118l-.048.022A7.99 7.99 0 0 0 4 15.997V16c0 3.172 1.848 5.912 4.574 7.224l.008.003c.435.193.741.624.752 1.13v.24a1.228 1.228 0 0 1-1.76 1.094l-.066-.027a10.65 10.65 0 0 1-6.174-9.666c0-4.15 2.373-7.744 5.895-9.526l.345-.167c.162-.08.345-.124.537-.124M14 12.4h1.8V14.8h2.1v2.4h-1.8v2.4H14V22h3.9v-2.4h4.2V22H26v-2.4h-2.1v-2.4h-1.8v-2.4h2.1v-2.4H26V10h-3.9v2.4h-4.2V10H14z',
584
945
  transferSent: 'M20 26.667c-0.006 0-0.014 0-0.021 0-1.492 0-2.912-0.308-4.2-0.864l0.069 0.026c-1.318-0.565-2.443-1.336-3.39-2.285l-0-0c-0.95-0.947-1.721-2.073-2.259-3.323l-0.026-0.069c-0.53-1.219-0.838-2.64-0.838-4.132 0-0.007 0-0.013 0-0.020v0.001c0-0.006-0-0.014-0-0.021 0-1.492 0.308-2.912 0.864-4.2l-0.026 0.069c0.565-1.319 1.336-2.445 2.285-3.392l0-0c0.947-0.949 2.072-1.721 3.321-2.259l0.069-0.026c1.218-0.529 2.637-0.836 4.128-0.836 0.009 0 0.018 0 0.027 0h-0.001c0.006 0 0.014-0 0.021-0 1.492 0 2.912 0.308 4.2 0.864l-0.069-0.026c1.318 0.565 2.443 1.336 3.39 2.285l0 0c0.95 0.947 1.721 2.073 2.259 3.323l0.026 0.069c0.53 1.219 0.838 2.639 0.838 4.131 0 0.008 0 0.015-0 0.023v-0.001c0 0.006 0 0.014 0 0.022 0 1.492-0.308 2.912-0.864 4.2l0.026-0.069c-0.565 1.319-1.336 2.445-2.285 3.392l-0 0c-0.947 0.949-2.072 1.721-3.321 2.259l-0.069 0.026c-1.217 0.528-2.635 0.835-4.124 0.835-0.010 0-0.020 0-0.031-0h0.002zM18.737 10.703c-0.736 0.001-1.333 0.597-1.333 1.333v0c0.001 0.736 0.597 1.332 1.333 1.333h2.12l-5.747 5.747c-0.24 0.241-0.388 0.573-0.388 0.94s0.148 0.699 0.389 0.94l-0-0c0.239 0.241 0.571 0.39 0.937 0.39 0.001 0 0.002 0 0.003 0h-0c0.001 0 0.002 0 0.003 0 0.366 0 0.698-0.149 0.937-0.39l5.747-5.747v2.12c0.001 0.736 0.597 1.333 1.333 1.333h0c0.736-0.001 1.333-0.597 1.333-1.333v-5.333c-0.001-0.736-0.597-1.333-1.333-1.333h-0z M4 16c0-0.001 0-0.002 0-0.003 0-3.172 1.848-5.912 4.526-7.203l0.048-0.021c0.442-0.191 0.748-0.618 0.76-1.119l0-0.002v-0.253c-0.003-0.673-0.549-1.218-1.223-1.218-0.195 0-0.38 0.046-0.544 0.127l0.007-0.003c-3.711 1.718-6.24 5.41-6.24 9.693s2.528 7.975 6.174 9.666l0.066 0.027c0.156 0.077 0.339 0.121 0.532 0.121 0.673 0 1.22-0.542 1.228-1.214v-0.241c-0.011-0.506-0.317-0.937-0.752-1.13l-0.008-0.003c-2.726-1.312-4.573-4.052-4.573-7.224 0-0.001 0-0.002 0-0.003v0z',
585
946
  transferFailed: 'M20 26.667c-0.006 0-0.014 0-0.021 0-1.492 0-2.912-0.308-4.2-0.864l0.069 0.026c-1.318-0.565-2.443-1.336-3.39-2.285l-0-0c-0.95-0.947-1.721-2.073-2.259-3.323l-0.026-0.069c-0.53-1.219-0.838-2.639-0.838-4.132 0-0.007 0-0.014 0-0.021v0.001c0-0.006-0-0.014-0-0.021 0-1.492 0.308-2.912 0.864-4.2l-0.026 0.069c0.565-1.319 1.336-2.445 2.285-3.392l0-0c0.947-0.949 2.072-1.721 3.321-2.259l0.069-0.026c1.218-0.529 2.637-0.836 4.128-0.836 0.009 0 0.018 0 0.027 0h-0.001c0.006 0 0.014-0 0.021-0 1.492 0 2.912 0.308 4.2 0.864l-0.069-0.026c1.318 0.565 2.443 1.336 3.39 2.285l0 0c0.95 0.947 1.721 2.073 2.259 3.323l0.026 0.069c0.53 1.219 0.838 2.639 0.838 4.132 0 0.008 0 0.015-0 0.023v-0.001c0 0.006 0 0.014 0 0.021 0 1.492-0.308 2.912-0.864 4.2l0.026-0.069c-0.565 1.319-1.336 2.445-2.285 3.392l-0 0c-0.947 0.949-2.072 1.721-3.321 2.259l-0.069 0.026c-1.217 0.528-2.635 0.835-4.124 0.835-0.010 0-0.020 0-0.030-0h0.002zM20.16 17.886v0l2.828 2.828c0.24 0.24 0.571 0.389 0.937 0.389 0.002 0 0.004 0 0.006 0h-0c0.002 0 0.004 0 0.006 0 0.366 0 0.698-0.149 0.937-0.389l0-0c0.24-0.24 0.389-0.571 0.389-0.937 0-0.002 0-0.004 0-0.006v0c0-0.002 0-0.003 0-0.005 0-0.366-0.149-0.698-0.389-0.937l-2.828-2.828 2.828-2.828c0.24-0.24 0.389-0.571 0.389-0.937 0-0.002 0-0.004 0-0.006v0c0-0.002 0-0.004 0-0.006 0-0.366-0.149-0.698-0.389-0.937l-0-0c-0.24-0.24-0.571-0.389-0.937-0.389-0.002 0-0.004 0-0.006 0h0c-0.002 0-0.004 0-0.006 0-0.366 0-0.698 0.149-0.937 0.389l-2.828 2.828-2.828-2.828c-0.24-0.24-0.571-0.389-0.937-0.389-0.002 0-0.004 0-0.006 0h0c-0.002 0-0.004 0-0.006 0-0.366 0-0.698 0.149-0.937 0.389l-0 0c-0.241 0.242-0.39 0.575-0.39 0.943s0.149 0.701 0.39 0.943l2.828 2.828-2.828 2.828c-0.241 0.241-0.39 0.575-0.39 0.943s0.149 0.701 0.39 0.943l-0-0c0.24 0.24 0.571 0.389 0.937 0.389 0.002 0 0.004 0 0.006 0h-0c0.002 0 0.004 0 0.006 0 0.366 0 0.698-0.149 0.937-0.389l2.828-2.828z M4 16c0-0.001 0-0.002 0-0.003 0-3.172 1.848-5.912 4.526-7.203l0.048-0.021c0.442-0.191 0.748-0.618 0.76-1.119l0-0.002v-0.253c-0.003-0.673-0.549-1.218-1.223-1.218-0.195 0-0.38 0.046-0.544 0.127l0.007-0.003c-3.711 1.718-6.24 5.41-6.24 9.693s2.528 7.975 6.174 9.666l0.066 0.027c0.156 0.077 0.339 0.121 0.532 0.121 0.673 0 1.22-0.542 1.228-1.214v-0.241c-0.011-0.506-0.317-0.937-0.752-1.13l-0.008-0.003c-2.726-1.312-4.573-4.052-4.573-7.224 0-0.001 0-0.002 0-0.003v0z',
586
- backer: 'M15.987 2.667c-7.358 0.007-13.32 5.974-13.32 13.333 0 7.364 5.97 13.333 13.333 13.333s13.333-5.97 13.333-13.333v0c0-0.002 0-0.004 0-0.007 0-7.36-5.967-13.327-13.327-13.327-0.007 0-0.014 0-0.021 0h0.001zM16 26.667c-5.891 0-10.667-4.776-10.667-10.667s4.776-10.667 10.667-10.667c5.891 0 10.667 4.776 10.667 10.667v0c0 0.001 0 0.002 0 0.003 0 5.889-4.774 10.664-10.664 10.664-0.001 0-0.002 0-0.003 0h0zM16 23.333c2.694-0.003 5.047-1.462 6.314-3.632l0.019-0.035c0.054-0.094 0.085-0.208 0.085-0.328 0-0.371-0.301-0.672-0.672-0.672-0 0-0 0-0 0h-11.493c-0.371 0.003-0.67 0.304-0.67 0.675 0 0.119 0.031 0.231 0.085 0.329l-0.002-0.003c1.287 2.205 3.639 3.663 6.333 3.667h0z M18.132 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.224-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.087 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z M9.812 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.225-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.088 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z',
587
- jury: 'M15.987 2.667c-7.358 0.007-13.32 5.974-13.32 13.333 0 7.364 5.97 13.333 13.333 13.333s13.333-5.97 13.333-13.333v0c0-0.002 0-0.004 0-0.007 0-7.36-5.967-13.327-13.327-13.327-0.007 0-0.014 0-0.021 0h0.001zM16 26.667c-5.891 0-10.667-4.776-10.667-10.667s4.776-10.667 10.667-10.667c5.891 0 10.667 4.776 10.667 10.667v0c0 0.001 0 0.002 0 0.003 0 5.889-4.774 10.664-10.664 10.664-0.001 0-0.002 0-0.003 0h0zM16 23.333c2.694-0.003 5.047-1.462 6.314-3.632l0.019-0.035c0.054-0.094 0.085-0.208 0.085-0.328 0-0.371-0.301-0.672-0.672-0.672-0 0-0 0-0 0h-11.493c-0.371 0.003-0.67 0.304-0.67 0.675 0 0.119 0.031 0.231 0.085 0.329l-0.002-0.003c1.287 2.205 3.639 3.663 6.333 3.667h0z M18.132 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.224-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.087 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z M9.812 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.225-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.088 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z',
947
+ backer: 'M16.006 2.664c7.36 0 13.327 5.967 13.327 13.327v.007c0 7.363-5.97 13.333-13.333 13.333S2.667 23.362 2.667 15.998c0-7.359 5.962-13.326 13.32-13.333zM16 5.331c-5.891 0-10.667 4.776-10.667 10.667S10.109 26.665 16 26.665h.003c5.89 0 10.664-4.775 10.664-10.664v-.003c0-5.89-4.776-10.667-10.667-10.667m5.746 13.333a.672.672 0 0 1 .587 1l-.018.035A7.31 7.31 0 0 1 16 23.331l-.001.001c-2.61-.004-4.898-1.373-6.209-3.463l-.122-.201a.675.675 0 0 1 .585-1.004zM10.95 11.2h2.1V10H15v1.2h-.9v1.2h-1.05v1.2h.9v1.2H15V16h-1.95v-1.2h-2.1V16H9v-1.2h1.05v-1.2h.9v-1.2H9.9v-1.2H9V10h1.95zm8-1.2v1.2h2.1V10H23v1.2h-.9v1.2h-1.05v1.2h.9v1.2H23V16h-1.95v-1.2h-2.1V16H17v-1.2h1.05v-1.2h.9v-1.2H17.9v-1.2H17V10z',
948
+ jury: 'M16.006 2.664c7.36 0 13.327 5.967 13.327 13.327v.007c0 7.363-5.97 13.333-13.333 13.333S2.667 23.362 2.667 15.998c0-7.359 5.962-13.326 13.32-13.333zM16 5.331c-5.891 0-10.667 4.776-10.667 10.667S10.109 26.665 16 26.665h.003c5.89 0 10.664-4.775 10.664-10.664v-.003c0-5.89-4.776-10.667-10.667-10.667m5.746 13.333a.672.672 0 0 1 .587 1l-.018.035A7.31 7.31 0 0 1 16 23.331l-.001.001c-2.61-.004-4.898-1.373-6.209-3.463l-.122-.201a.675.675 0 0 1 .585-1.004zM10.95 11.2h2.1V10H15v1.2h-.9v1.2h-1.05v1.2h.9v1.2H15V16h-1.95v-1.2h-2.1V16H9v-1.2h1.05v-1.2h.9v-1.2H9.9v-1.2H9V10h1.95zm8-1.2v1.2h2.1V10H23v1.2h-.9v1.2h-1.05v1.2h.9v1.2H23V16h-1.95v-1.2h-2.1V16H17v-1.2h1.05v-1.2h.9v-1.2H17.9v-1.2H17V10z',
588
949
  addMember: 'M16 26.667l-1.147-1.147c-0.724-0.723-1.172-1.723-1.172-2.827 0-1.117 0.459-2.128 1.198-2.853l0.001-0.001 1.12-1.093c-0.397-0.048-0.86-0.077-1.329-0.080l-0.004-0c-3.56 0-10.667 1.787-10.667 5.333v2.667h12zM14.667 16c0 0 0 0 0 0 2.946 0 5.333-2.388 5.333-5.333s-2.388-5.333-5.333-5.333c-2.946 0-5.333 2.388-5.333 5.333 0 0 0 0 0 0v-0c0 0 0 0.001 0 0.001 0 2.945 2.387 5.332 5.332 5.332 0 0 0.001 0 0.001 0h-0z M21.573 26.373c-0.243 0.241-0.577 0.39-0.947 0.39s-0.704-0.149-0.947-0.39l0 0-2.76-2.787c-0.235-0.238-0.38-0.566-0.38-0.927s0.145-0.689 0.38-0.927l-0 0 0.013-0.014c0.238-0.241 0.568-0.39 0.933-0.39s0.695 0.149 0.933 0.39l1.827 1.827 5.907-5.946c0.24-0.241 0.573-0.39 0.94-0.39s0.7 0.149 0.94 0.39l0.013 0.013c0.235 0.238 0.38 0.566 0.38 0.927s-0.145 0.689-0.38 0.927l0-0-6.853 6.907z',
589
950
  github: 'M15.999 0c-8.839 0-15.999 7.341-15.999 16.404 0 7.26 4.58 13.39 10.94 15.565 0.8 0.143 1.1-0.349 1.1-0.779 0-0.39-0.021-1.681-0.021-3.055-4.019 0.759-5.059-1.005-5.38-1.927-0.18-0.471-0.96-1.927-1.639-2.317-0.561-0.308-1.36-1.067-0.021-1.087 1.26-0.020 2.16 1.189 2.461 1.681 1.44 2.482 3.74 1.785 4.659 1.354 0.14-1.067 0.56-1.785 1.020-2.195-3.559-0.41-7.279-1.825-7.279-8.1 0-1.784 0.62-3.261 1.639-4.409-0.16-0.41-0.72-2.091 0.16-4.346 0 0 1.341-0.431 4.401 1.68 1.301-0.37 2.648-0.556 4-0.553 1.36 0 2.72 0.185 4 0.553 3.059-2.133 4.399-1.681 4.399-1.681 0.88 2.255 0.32 3.937 0.16 4.347 1.021 1.148 1.64 2.604 1.64 4.409 0 6.294-3.74 7.689-7.3 8.099 0.58 0.514 1.080 1.497 1.080 3.035 0 2.195-0.020 3.957-0.020 4.512 0 0.43 0.3 0.943 1.1 0.779 6.513-2.256 10.898-8.518 10.899-15.566 0-9.063-7.16-16.404-15.999-16.404z',
590
951
  bitbucket: 'M1.387 2c-0.004-0-0.008-0-0.013-0-0.548 0-0.993 0.441-1 0.987v0.001c0.001 0.063 0.006 0.124 0.013 0.183l-0.001-0.008 4.244 25.756c0.11 0.646 0.663 1.132 1.331 1.137h20.357c0.004 0 0.009 0 0.013 0 0.495 0 0.906-0.36 0.986-0.832l0.001-0.006 4.244-26.050c0.008-0.047 0.012-0.102 0.012-0.157 0-0.495-0.359-0.906-0.831-0.986l-0.006-0.001c-0.052-0.007-0.112-0.012-0.174-0.013l-29.176-0.012zM19.256 20.613h-6.5l-1.756-9.188h9.831l-1.575 9.188z',
@@ -710,9 +1071,9 @@ const icons = {
710
1071
  stream: 'M16 12.969c-1.432 0-2.592 1.16-2.592 2.592s1.16 2.592 2.592 2.592c1.432 0 2.592-1.16 2.592-2.592v0c0-1.432-1.16-2.592-2.592-2.592v0zM5.629 15.557c0-0.003 0-0.006 0-0.009 0-2.566 0.974-4.904 2.573-6.666l-0.007 0.008c0.11-0.126 0.177-0.292 0.177-0.474 0-0.207-0.087-0.394-0.227-0.526l-0-0-1.035-1.011c-0.136-0.129-0.32-0.208-0.523-0.208-0.226 0-0.428 0.098-0.567 0.254l-0.001 0.001c-2.079 2.267-3.354 5.302-3.354 8.634s1.274 6.367 3.362 8.643l-0.009-0.009c0.14 0.157 0.342 0.255 0.568 0.255 0.203 0 0.387-0.079 0.523-0.209l-0 0 1.035-1.011c0.14-0.132 0.227-0.319 0.227-0.526 0-0.182-0.067-0.348-0.178-0.475l0.001 0.001c-1.591-1.753-2.565-4.092-2.565-6.657 0-0.003 0-0.006 0-0.010v0.001zM11.845 11.503l-1.053-1.029c-0.137-0.131-0.322-0.212-0.527-0.212-0.234 0-0.443 0.105-0.582 0.271l-0.001 0.001c-1.139 1.348-1.83 3.106-1.83 5.025s0.692 3.677 1.84 5.037l-0.010-0.012c0.141 0.167 0.35 0.272 0.583 0.272 0.205 0 0.391-0.081 0.528-0.212l-0 0 1.053-1.029c0.134-0.128 0.218-0.308 0.218-0.507 0-0.165-0.057-0.316-0.152-0.436l0.001 0.001c-0.684-0.845-1.098-1.932-1.098-3.117s0.414-2.272 1.105-3.126l-0.007 0.009c0.093-0.118 0.149-0.268 0.149-0.432 0-0.199-0.083-0.378-0.216-0.505l-0-0zM25.979 6.924c-0.14-0.157-0.342-0.255-0.568-0.255-0.203 0-0.387 0.079-0.523 0.209l0-0-1.035 1.012c-0.14 0.132-0.227 0.319-0.227 0.526 0 0.182 0.067 0.348 0.178 0.475l-0.001-0.001c1.59 1.757 2.563 4.098 2.563 6.667s-0.973 4.91-2.571 6.675l0.008-0.009c-0.11 0.126-0.177 0.292-0.177 0.474 0 0.207 0.087 0.394 0.226 0.525l0 0 1.035 1.011c0.136 0.129 0.32 0.208 0.523 0.208 0.226 0 0.428-0.098 0.567-0.254l0.001-0.001c2.079-2.267 3.354-5.302 3.354-8.634s-1.274-6.367-3.362-8.643l0.009 0.009zM22.316 10.535c-0.141-0.167-0.35-0.272-0.583-0.272-0.205 0-0.391 0.081-0.528 0.212l0-0-1.053 1.029c-0.134 0.128-0.217 0.307-0.217 0.507 0 0.164 0.057 0.315 0.151 0.435l-0.001-0.001c0.684 0.845 1.098 1.932 1.098 3.117s-0.414 2.272-1.105 3.126l0.007-0.009c-0.094 0.118-0.151 0.27-0.151 0.434 0 0.199 0.083 0.379 0.217 0.507l0 0 1.053 1.029c0.137 0.131 0.323 0.212 0.527 0.212 0.234 0 0.443-0.105 0.582-0.271l0.001-0.001c1.139-1.348 1.831-3.106 1.831-5.025s-0.692-3.677-1.84-5.037l0.010 0.012z',
711
1072
  innovators: 'M21.333 14.667c2.213 0 3.987-1.787 3.987-4s-1.773-4-3.987-4-4 1.787-4 4 1.787 4 4 4zM10.667 14.667c2.213 0 3.987-1.787 3.987-4s-1.773-4-3.987-4-4 1.787-4 4 1.787 4 4 4zM10.667 17.333c-3.107 0-9.333 1.56-9.333 4.667v2c0 0.733 0.6 1.333 1.333 1.333h16c0.733 0 1.333-0.6 1.333-1.333v-2c0-3.107-6.227-4.667-9.333-4.667zM21.333 17.333c-0.387 0-0.827 0.027-1.293 0.067 0.027 0.013 0.040 0.040 0.053 0.053 1.52 1.107 2.573 2.587 2.573 4.547v2c0 0.467-0.093 0.92-0.24 1.333h6.907c0.733 0 1.333-0.6 1.333-1.333v-2c0-3.107-6.227-4.667-9.333-4.667z',
712
1073
  participants: 'M21.333 14.667c2.213 0 3.987-1.787 3.987-4s-1.773-4-3.987-4-4 1.787-4 4 1.787 4 4 4zM10.667 14.667c2.213 0 3.987-1.787 3.987-4s-1.773-4-3.987-4-4 1.787-4 4 1.787 4 4 4zM10.667 17.333c-3.107 0-9.333 1.56-9.333 4.667v2c0 0.733 0.6 1.333 1.333 1.333h16c0.733 0 1.333-0.6 1.333-1.333v-2c0-3.107-6.227-4.667-9.333-4.667zM21.333 17.333c-0.387 0-0.827 0.027-1.293 0.067 0.027 0.013 0.040 0.040 0.053 0.053 1.52 1.107 2.573 2.587 2.573 4.547v2c0 0.467-0.093 0.92-0.24 1.333h6.907c0.733 0 1.333-0.6 1.333-1.333v-2c0-3.107-6.227-4.667-9.333-4.667z',
713
- backers: 'M15.987 2.667c-7.358 0.007-13.32 5.974-13.32 13.333 0 7.364 5.97 13.333 13.333 13.333s13.333-5.97 13.333-13.333v0c0-0.002 0-0.004 0-0.007 0-7.36-5.967-13.327-13.327-13.327-0.007 0-0.014 0-0.021 0h0.001zM16 26.667c-5.891 0-10.667-4.776-10.667-10.667s4.776-10.667 10.667-10.667c5.891 0 10.667 4.776 10.667 10.667v0c0 0.001 0 0.002 0 0.003 0 5.889-4.774 10.664-10.664 10.664-0.001 0-0.002 0-0.003 0h0zM16 23.333c2.694-0.003 5.047-1.462 6.314-3.632l0.019-0.035c0.054-0.094 0.085-0.208 0.085-0.328 0-0.371-0.301-0.672-0.672-0.672-0 0-0 0-0 0h-11.493c-0.371 0.003-0.67 0.304-0.67 0.675 0 0.119 0.031 0.231 0.085 0.329l-0.002-0.003c1.287 2.205 3.639 3.663 6.333 3.667h0z M18.132 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.224-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.087 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z M9.812 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.225-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.088 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z',
714
- juries: 'M15.987 2.667c-7.358 0.007-13.32 5.974-13.32 13.333 0 7.364 5.97 13.333 13.333 13.333s13.333-5.97 13.333-13.333v0c0-0.002 0-0.004 0-0.007 0-7.36-5.967-13.327-13.327-13.327-0.007 0-0.014 0-0.021 0h0.001zM16 26.667c-5.891 0-10.667-4.776-10.667-10.667s4.776-10.667 10.667-10.667c5.891 0 10.667 4.776 10.667 10.667v0c0 0.001 0 0.002 0 0.003 0 5.889-4.774 10.664-10.664 10.664-0.001 0-0.002 0-0.003 0h0zM16 23.333c2.694-0.003 5.047-1.462 6.314-3.632l0.019-0.035c0.054-0.094 0.085-0.208 0.085-0.328 0-0.371-0.301-0.672-0.672-0.672-0 0-0 0-0 0h-11.493c-0.371 0.003-0.67 0.304-0.67 0.675 0 0.119 0.031 0.231 0.085 0.329l-0.002-0.003c1.287 2.205 3.639 3.663 6.333 3.667h0z M18.132 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.224-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.087 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z M9.812 9.592c0.3 0.004 0.542 0.246 0.546 0.545v2.389l3.094-2.799c0.039-0.031 0.084-0.059 0.131-0.080l0.004-0.002c0.067-0.032 0.146-0.051 0.229-0.051 0 0 0.001 0 0.001 0h-0c0.152 0.004 0.288 0.066 0.388 0.165l-0-0c0.011 0.010 0.022 0.021 0.032 0.032l0 0c0.079 0.094 0.126 0.216 0.126 0.349 0 0.107-0.030 0.206-0.083 0.29l0.001-0.002c-0.016 0.024-0.033 0.045-0.051 0.064l0-0c-0.021 0.025-0.043 0.046-0.068 0.066l-0.001 0.001-2.359 2.13 0.604 0.6 0.549-0.494c0.097-0.085 0.225-0.137 0.364-0.137 0.16 0 0.305 0.068 0.406 0.178l0 0c0.084 0.091 0.135 0.214 0.135 0.348 0 0.016-0.001 0.032-0.002 0.047l0-0.002c-0.009 0.148-0.077 0.279-0.18 0.37l-0.001 0-0.504 0.454 1.012 1.004 0.021 0.032 0.011 0.011c0.086 0.092 0.139 0.216 0.139 0.352 0 0.008-0 0.016-0.001 0.023l0-0.001c-0.003 0.145-0.064 0.276-0.16 0.37l-0 0c-0.088 0.090-0.207 0.148-0.34 0.157l-0.002 0c-0.013 0.001-0.028 0.002-0.043 0.002-0.114 0-0.22-0.035-0.307-0.094l0.002 0.001-0.019-0.015-0.009-0.008-0.020-0.014c-0.009-0.007-0.017-0.014-0.032-0.028l-1.064-1.060-0.547 0.49c-0.095 0.087-0.223 0.141-0.363 0.141-0.009 0-0.017-0-0.026-0.001l0.001 0c-0.15-0.003-0.284-0.069-0.377-0.173l-0-0.001c-0.085-0.097-0.138-0.225-0.138-0.365 0-0.16 0.068-0.305 0.178-0.406l0-0 0.505-0.455-0.603-0.597-0.637 0.576v1.458c0 0.301-0.244 0.546-0.546 0.546s-0.546-0.244-0.546-0.546v0-5.315c0.004-0.3 0.245-0.541 0.544-0.546h0z',
715
- transactions: 'M9.451 5.76c0.973 0.012 1.76 0.798 1.771 1.77v7.755l10.043-9.085c0.127-0.102 0.272-0.191 0.427-0.261l0.013-0.005c0.217-0.105 0.473-0.166 0.742-0.166 0.001 0 0.002 0 0.003 0h-0c0.492 0.012 0.934 0.214 1.258 0.536l-0-0 0.002-0.002c0.037 0.033 0.071 0.067 0.103 0.102l0.001 0.001c0.255 0.305 0.41 0.701 0.41 1.134 0 0.346-0.099 0.669-0.271 0.942l0.004-0.007c-0.053 0.076-0.107 0.143-0.166 0.205l0.001-0.001c-0.068 0.080-0.141 0.151-0.221 0.215l-0.003 0.002-7.656 6.915 1.961 1.947 1.782-1.605c0.314-0.277 0.729-0.446 1.183-0.446 0.521 0 0.989 0.222 1.317 0.576l0.001 0.001c0.273 0.296 0.44 0.693 0.44 1.129 0 0.052-0.002 0.103-0.007 0.153l0-0.006c-0.029 0.48-0.248 0.904-0.583 1.201l-0.002 0.002-1.635 1.472 3.283 3.26 0.069 0.1 0.036 0.036c0.279 0.299 0.45 0.701 0.45 1.143 0 0.026-0.001 0.052-0.002 0.077l0-0.004c-0.012 0.472-0.21 0.895-0.524 1.201l-0 0c-0.284 0.291-0.671 0.48-1.102 0.508l-0.005 0c-0.041 0.003-0.089 0.005-0.137 0.005-0.37 0-0.713-0.112-0.998-0.305l0.006 0.004-0.061-0.048-0.028-0.026c-0.032-0.022-0.010-0.007-0.066-0.047-0.028-0.022-0.055-0.047-0.102-0.092l-3.453-3.443-1.782 1.605c-0.309 0.284-0.722 0.458-1.176 0.458-0.028 0-0.057-0.001-0.085-0.002l0.004 0c-0.487-0.008-0.922-0.224-1.222-0.562l-0.002-0.002c-0.277-0.314-0.446-0.729-0.446-1.184 0-0.52 0.222-0.989 0.576-1.316l0.001-0.001 1.64-1.477-1.952-1.946-2.070 1.876v4.73c0 0.003 0 0.006 0 0.010 0 0.974-0.789 1.763-1.763 1.763-0.491 0-0.935-0.201-1.255-0.524l-0-0c-0.324-0.313-0.525-0.752-0.525-1.237 0-0.004 0-0.008 0-0.011v0.001-17.254c0.012-0.973 0.798-1.76 1.77-1.771h0.001z',
1074
+ backers: 'M16.006 2.664c7.36 0 13.327 5.967 13.327 13.327v.007c0 7.363-5.97 13.333-13.333 13.333S2.667 23.362 2.667 15.998c0-7.359 5.962-13.326 13.32-13.333zM16 5.331c-5.891 0-10.667 4.776-10.667 10.667S10.109 26.665 16 26.665h.003c5.89 0 10.664-4.775 10.664-10.664v-.003c0-5.89-4.776-10.667-10.667-10.667m5.746 13.333a.672.672 0 0 1 .587 1l-.018.035A7.31 7.31 0 0 1 16 23.331l-.001.001c-2.61-.004-4.898-1.373-6.209-3.463l-.122-.201a.675.675 0 0 1 .585-1.004zM10.95 11.2h2.1V10H15v1.2h-.9v1.2h-1.05v1.2h.9v1.2H15V16h-1.95v-1.2h-2.1V16H9v-1.2h1.05v-1.2h.9v-1.2H9.9v-1.2H9V10h1.95zm8-1.2v1.2h2.1V10H23v1.2h-.9v1.2h-1.05v1.2h.9v1.2H23V16h-1.95v-1.2h-2.1V16H17v-1.2h1.05v-1.2h.9v-1.2H17.9v-1.2H17V10z',
1075
+ juries: 'M16.006 2.664c7.36 0 13.327 5.967 13.327 13.327v.007c0 7.363-5.97 13.333-13.333 13.333S2.667 23.362 2.667 15.998c0-7.359 5.962-13.326 13.32-13.333zM16 5.331c-5.891 0-10.667 4.776-10.667 10.667S10.109 26.665 16 26.665h.003c5.89 0 10.664-4.775 10.664-10.664v-.003c0-5.89-4.776-10.667-10.667-10.667m5.746 13.333a.672.672 0 0 1 .587 1l-.018.035A7.31 7.31 0 0 1 16 23.331l-.001.001c-2.61-.004-4.898-1.373-6.209-3.463l-.122-.201a.675.675 0 0 1 .585-1.004zM10.95 11.2h2.1V10H15v1.2h-.9v1.2h-1.05v1.2h.9v1.2H15V16h-1.95v-1.2h-2.1V16H9v-1.2h1.05v-1.2h.9v-1.2H9.9v-1.2H9V10h1.95zm8-1.2v1.2h2.1V10H23v1.2h-.9v1.2h-1.05v1.2h.9v1.2H23V16h-1.95v-1.2h-2.1V16H17v-1.2h1.05v-1.2h.9v-1.2H17.9v-1.2H17V10z',
1076
+ transactions: 'M27 9.4V5h-7.15v4.4h-7.7V5H5v4.4h3.3v4.4h3.85v4.4h-3.3v4.4H5V27h7.15v-4.4h7.7V27H27v-4.4h-3.85v-4.4h-3.3v-4.4h3.85V9.4z',
716
1077
  updates: 'M16 29.333c1.471-0.005 2.662-1.196 2.667-2.666v-0h-5.333c0 0 0 0 0 0.001 0 1.472 1.194 2.666 2.666 2.666 0 0 0 0 0.001 0h-0zM24 21.333v-6.667c0-4.093-2.187-7.52-6-8.427v-0.907c0-1.105-0.895-2-2-2s-2 0.895-2 2v0 0.907c-3.827 0.907-6 4.32-6 8.427v6.667l-1.72 1.72c-0.244 0.242-0.394 0.577-0.394 0.947 0 0.734 0.594 1.33 1.327 1.333h17.56c0.738-0.001 1.336-0.599 1.336-1.337 0-0.368-0.149-0.701-0.389-0.943l0 0z',
717
1078
  matchmaking: 'M28.449 11.94l-1.98-1.98c-0.216-0.218-0.516-0.353-0.847-0.353s-0.631 0.135-0.847 0.353l-11.973 11.973-5.569-5.574c-0.216-0.218-0.516-0.353-0.847-0.353s-0.631 0.135-0.847 0.353l-1.985 1.985c-0.218 0.217-0.353 0.518-0.353 0.85s0.135 0.633 0.353 0.85l8.399 8.404c0.216 0.218 0.516 0.353 0.847 0.353s0.631-0.135 0.847-0.353l14.798-14.81c0.217-0.218 0.351-0.518 0.351-0.85s-0.134-0.632-0.351-0.85l0 0zM12.236 17.239c0.144 0.146 0.344 0.236 0.565 0.236s0.421-0.090 0.565-0.236l10.399-10.409c0.144-0.145 0.233-0.345 0.233-0.565s-0.089-0.42-0.233-0.565l-2.259-2.261c-0.144-0.146-0.344-0.236-0.565-0.236s-0.421 0.090-0.565 0.236l-7.573 7.573-2.773-2.773c-0.144-0.144-0.342-0.232-0.561-0.232s-0.417 0.089-0.561 0.232v0l-2.27 2.26c-0.144 0.145-0.233 0.345-0.233 0.565s0.089 0.42 0.233 0.565l-0-0 5.599 5.61z',
718
1079
  results: 'M27.185 5.789c-0.516-0.724-1.344-1.197-2.283-1.224l-0.004-0h-1.139c-0.031-0.112-0.061-0.224-0.096-0.335-0.098-0.321-0.346-0.568-0.66-0.665l-0.007-0.002c-2.109-0.641-4.534-1.009-7.044-1.009s-4.935 0.369-7.222 1.055l0.178-0.046c-0.321 0.098-0.569 0.346-0.665 0.66l-0.002 0.007c-0.033 0.111-0.064 0.223-0.096 0.335h-1.139c-0.943 0.027-1.77 0.5-2.281 1.215l-0.006 0.009c-0.549 0.778-0.877 1.746-0.877 2.79 0 0.506 0.077 0.994 0.22 1.452l-0.009-0.035 0.021 0.071c0.838 3.063 3.117 5.458 6.045 6.441l0.386 0.113c0.8 0.938 1.792 1.687 2.917 2.192l0.052 0.021c-0.175 1.834-0.697 3.511-1.501 5.015l0.035-0.071-0.479 0.62h-2.332c-0 0-0.001 0-0.001 0-0.548 0-0.992 0.444-0.992 0.992 0 0 0 0 0 0v0 3.375c0 0 0 0.001 0 0.001 0 0.548 0.444 0.992 0.992 0.992 0 0 0.001 0 0.001 0h13.5c0 0 0 0 0 0 0.548 0 0.992-0.444 0.992-0.992 0-0 0-0.001 0-0.001v0-3.375c-0.001-0.548-0.444-0.991-0.992-0.992h-2.133l-0.479-0.62c-0.778-1.458-1.303-3.165-1.469-4.975l-0.004-0.053c1.098-0.528 2.025-1.246 2.773-2.122l0.010-0.011 0.321-0.093c2.992-1.001 5.27-3.394 6.094-6.389l0.015-0.066 0.023-0.076c0.134-0.424 0.211-0.912 0.211-1.418 0-1.043-0.327-2.009-0.885-2.802l0.010 0.016zM5.965 9.492l-0.019-0.060c-0.080-0.254-0.126-0.546-0.126-0.848 0-0.594 0.178-1.146 0.482-1.606l-0.007 0.011c0.152-0.242 0.406-0.407 0.7-0.436l0.004-0h0.737c-0.079 0.578-0.125 1.245-0.125 1.923v0.001c0 0.007-0 0.016-0 0.025 0 1.801 0.36 3.518 1.011 5.083l-0.032-0.088c-1.234-1.022-2.152-2.386-2.611-3.947l-0.014-0.057zM13.959 24.4c0.699-1.477 1.207-3.191 1.434-4.993l0.009-0.084c0.181 0.016 0.365 0.028 0.549 0.028 0.263-0.001 0.522-0.018 0.775-0.051l-0.031 0.003c0.236 1.893 0.744 3.614 1.49 5.202l-0.044-0.105zM25.952 9.431l-0.019 0.063c-0.474 1.616-1.391 2.979-2.611 3.989l-0.013 0.011c0.619-1.477 0.979-3.194 0.979-4.995 0-0.009 0-0.017-0-0.026v0.001c-0-0.679-0.046-1.347-0.134-2.001l0.008 0.077h0.737c0.298 0.029 0.552 0.194 0.702 0.432l0.002 0.004c0.295 0.448 0.471 0.997 0.471 1.587 0 0.306-0.047 0.601-0.135 0.879l0.006-0.021z',
@@ -744,13 +1105,61 @@ const icons = {
744
1105
  'arrow-external': 'M6 6v5.663h9.542L6.666 21.796v4.183h4.628l9.222-10.917V26H26V6H6z',
745
1106
  mint: 'M21.102 2a1 1 0 011 1v2h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V7h-2a1 1 0 110-2h2V3a1 1 0 011-1zM16.44 22.938l-2.4 6.512a1 1 0 01-1.874 0l-2.4-6.512a1.012 1.012 0 00-.6-.6l-6.513-2.4a1 1 0 010-1.875l6.513-2.4a1.013 1.013 0 00.6-.6l2.4-6.513a1 1 0 011.875 0l2.4 6.512a1.012 1.012 0 00.6.6l6.512 2.4a1 1 0 010 1.875l-6.512 2.4a1.012 1.012 0 00-.6.6zM27.102 9a1 1 0 011 1v1h1a1 1 0 010 2h-1v1a1 1 0 01-2 0v-1h-1a1 1 0 110-2h1v-1a1 1 0 011-1z',
746
1107
  deposit: 'M2.216 5.6A3.384 3.384 0 015.6 2.216h20.8A3.384 3.384 0 0129.785 5.6v11.2a3.384 3.384 0 01-3.385 3.385h-3.2a.984.984 0 110-1.97h3.2c.782 0 1.416-.633 1.416-1.415V5.6c0-.782-.634-1.415-1.416-1.415H5.6c-.782 0-1.415.633-1.415 1.415v11.2c0 .782.633 1.416 1.415 1.416h3.2a.984.984 0 110 1.969H5.6A3.384 3.384 0 012.216 16.8V5.6zM8 7.016c.544 0 .985.44.985.984v5.6a.984.984 0 11-1.97 0V8c0-.543.442-.984.985-.984zm8 1.969a2.216 2.216 0 100 4.43 2.216 2.216 0 000-4.43zM11.816 11.2a4.184 4.184 0 118.369 0 4.184 4.184 0 01-8.37 0zM24 7.016c.544 0 .985.44.985.984v5.6a.984.984 0 01-1.97 0V8c0-.543.441-.984.985-.984zm-8 11.543c.543 0 .983.44.983.985v6.88l2.54-2.54a.984.984 0 111.393 1.391l-4.221 4.221a.984.984 0 01-1.392 0l-4.526-4.525a.984.984 0 011.393-1.393l2.845 2.846v-6.88c0-.544.44-.985.984-.985z',
747
- withdraw: 'M29.8 26.4a3.4 3.4 0 01-3.4 3.4H5.6a3.4 3.4 0 01-3.4-3.4V15.2a3.4 3.4 0 013.4-3.4h3.2a1 1 0 110 2H5.6a1.4 1.4 0 00-1.4 1.4v11.2a1.4 1.4 0 001.4 1.4h20.8a1.4 1.4 0 001.4-1.4V15.2a1.4 1.4 0 00-1.4-1.4h-3.2a1 1 0 110-2h3.2a3.4 3.4 0 013.4 3.4v11.2zM24 25a1 1 0 01-1-1v-5.6a1 1 0 112 0V24a1 1 0 01-1 1zm-8-2a2.2 2.2 0 100-4.4 2.2 2.2 0 000 4.4zm4.2-2.2a4.2 4.2 0 11-8.4 0 4.2 4.2 0 018.4 0zM8 25a1 1 0 01-1-1v-5.6a1 1 0 112 0V24a1 1 0 01-1 1zm8-11.543a1 1 0 01-1-1l.001-6.843-2.513 2.514a1 1 0 11-1.415-1.414l4.221-4.221a1 1 0 011.414 0l4.526 4.525a1 1 0 01-1.415 1.415l-2.818-2.819v6.843a1 1 0 01-1 1z'
1108
+ withdraw: 'M29.8 26.4a3.4 3.4 0 01-3.4 3.4H5.6a3.4 3.4 0 01-3.4-3.4V15.2a3.4 3.4 0 013.4-3.4h3.2a1 1 0 110 2H5.6a1.4 1.4 0 00-1.4 1.4v11.2a1.4 1.4 0 001.4 1.4h20.8a1.4 1.4 0 001.4-1.4V15.2a1.4 1.4 0 00-1.4-1.4h-3.2a1 1 0 110-2h3.2a3.4 3.4 0 013.4 3.4v11.2zM24 25a1 1 0 01-1-1v-5.6a1 1 0 112 0V24a1 1 0 01-1 1zm-8-2a2.2 2.2 0 100-4.4 2.2 2.2 0 000 4.4zm4.2-2.2a4.2 4.2 0 11-8.4 0 4.2 4.2 0 018.4 0zM8 25a1 1 0 01-1-1v-5.6a1 1 0 112 0V24a1 1 0 01-1 1zm8-11.543a1 1 0 01-1-1l.001-6.843-2.513 2.514a1 1 0 11-1.415-1.414l4.221-4.221a1 1 0 011.414 0l4.526 4.525a1 1 0 01-1.415 1.415l-2.818-2.819v6.843a1 1 0 01-1 1z',
1109
+ lx: 'M27 9.4V5h-7.15v4.4h-7.7V5H5v4.4h3.3v4.4h3.85v4.4h-3.3v4.4H5V27h7.15v-4.4h7.7V27H27v-4.4h-3.85v-4.4h-3.3v-4.4h3.85V9.4z',
1110
+ vote: 'M5.21704 23L0 8H3.3417L5.74573 15.2987C5.97183 16.0168 6.20459 16.7819 6.444 17.594C6.6834 18.3993 6.93611 19.2617 7.20211 20.1812C7.46147 19.2617 7.7042 18.3993 7.9303 17.594C8.16306 16.7819 8.38917 16.0168 8.60862 15.2987L10.9328 8H14.2346L9.12733 23H5.21704Z M32 11V8H27.1695V11H21.9674V8H17.1369V11H19.3664V14H21.9674V17H19.7379V20H17.1369V23H21.9674V20H27.1695V23H32V20H29.399V17H27.1695V14H29.7705V11H32Z'
748
1111
  };
749
1112
 
750
- const TextFieldInputStyle = /*#__PURE__*/_styled__default.input.withConfig({
751
- displayName: "styles__TextFieldInputStyle",
752
- componentId: "sc-1hxcxbo-0"
753
- })(["border-width:", ";border-style:solid;border-color:", ";border-radius:", ";background-repeat:no-repeat;background-size:", " ", ";background-position:", " 50%;height:", ";padding:", ";font-family:inherit;font-size:", ";transition-property:border-color;transition-duration:", ";&:hover{border-color:", ";}&:focus{border-color:", ";outline:none;}&:disabled{border-color:", ";background-color:", ";color:", ";}&:invalid{border-color:", ";outline:none;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;}&:required{border-color:", ";}&::placeholder,&:-ms-input-placeholder,&::-ms-input-placeholder{color:", ";opacity:1;}", ""], field.borderWidth, props => props.error ? field.errorBorderColor : field.borderColor, field.borderRadius, /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('10px'), field.height, /*#__PURE__*/polished.rem('10px'), typography.defaultSize, misc.transitionDuration, field.hoverBorderColor, field.activeBorderColor, field.borderColor, field.disabledBackgroundColor, field.disabledColor, field.errorBorderColor, props => props.error ? field.errorBorderColor : field.borderColor, field.placeholderColor, props => props.icon && _styled.css`
1113
+ const TextFieldInputStyle = styled__default.input`
1114
+ border-width: ${field.borderWidth};
1115
+ border-style: solid;
1116
+ border-color: ${props => props.error ? field.errorBorderColor : field.borderColor};
1117
+ border-radius: ${field.borderRadius};
1118
+ background-repeat: no-repeat;
1119
+ background-size: ${/*#__PURE__*/polished.rem('20px')} ${/*#__PURE__*/polished.rem('20px')};
1120
+ background-position: ${/*#__PURE__*/polished.rem('10px')} 50%;
1121
+ height: ${field.height};
1122
+ padding: ${/*#__PURE__*/polished.rem('10px')};
1123
+ font-family: inherit;
1124
+ font-size: ${typography.defaultSize};
1125
+ transition-property: border-color;
1126
+ transition-duration: ${misc.transitionDuration};
1127
+
1128
+ &:hover {
1129
+ border-color: ${field.hoverBorderColor};
1130
+ }
1131
+
1132
+ &:focus {
1133
+ border-color: ${field.activeBorderColor};
1134
+ outline: none;
1135
+ }
1136
+
1137
+ &:disabled {
1138
+ border-color: ${field.borderColor};
1139
+ background-color: ${field.disabledBackgroundColor};
1140
+ color: ${field.disabledColor};
1141
+ }
1142
+
1143
+ &:invalid {
1144
+ border-color: ${field.errorBorderColor};
1145
+ outline: none;
1146
+ box-shadow: none;
1147
+ -webkit-box-shadow: none;
1148
+ -moz-box-shadow: none;
1149
+ }
1150
+
1151
+ &:required {
1152
+ border-color: ${props => props.error ? field.errorBorderColor : field.borderColor};
1153
+ }
1154
+
1155
+ &::placeholder,
1156
+ &:-ms-input-placeholder,
1157
+ &::-ms-input-placeholder {
1158
+ color: ${field.placeholderColor};
1159
+ opacity: 1;
1160
+ }
1161
+
1162
+ ${props => props.icon && styled.css`
754
1163
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewbox="0 0 32 32"><path style="fill:${props => props.error ? 'rgb(235,87,87)' : 'rgb(217,212,237)'}" d=${JSON.stringify(icons[props.icon])} /></svg>');
755
1164
  padding-left: ${polished.rem('40px')};
756
1165
 
@@ -758,12 +1167,13 @@ const TextFieldInputStyle = /*#__PURE__*/_styled__default.input.withConfig({
758
1167
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewbox="0 0 32 32">
759
1168
  <path style="fill:rgb(67,41,166)" d=${JSON.stringify(icons[props.icon])} /></svg>');
760
1169
  }
761
- `);
1170
+ `}
1171
+ `;
762
1172
 
763
- const Wrapper$1 = _styled__default.div`
1173
+ const Wrapper$1 = styled__default.div`
764
1174
  position: relative;
765
1175
  `;
766
- const TextAreaStyle = _styled__default.textarea`
1176
+ const TextAreaStyle = styled__default.textarea`
767
1177
  border-width: ${field.borderWidth};
768
1178
  border-style: solid;
769
1179
  border-color: ${props => props.error ? field.errorBorderColor : field.borderColor};
@@ -819,7 +1229,7 @@ const TextAreaStyle = _styled__default.textarea`
819
1229
  opacity: 1;
820
1230
  }
821
1231
  `;
822
- const Count = _styled__default.div`
1232
+ const Count = styled__default.div`
823
1233
  position: absolute;
824
1234
  top: ${/*#__PURE__*/polished.rem('5px')};
825
1235
  right: ${/*#__PURE__*/polished.rem('10px')};
@@ -836,7 +1246,7 @@ const Count = _styled__default.div`
836
1246
  }
837
1247
  `;
838
1248
 
839
- const SelectStyle = _styled__default.select`
1249
+ const SelectStyle = styled__default.select`
840
1250
  border: ${field.borderWidth} solid
841
1251
  ${props => props.error ? field.errorBorderColor : field.borderColor};
842
1252
  border-radius: ${field.borderRadius};
@@ -872,10 +1282,15 @@ const SelectStyle = _styled__default.select`
872
1282
  }
873
1283
  `;
874
1284
 
875
- const ErrorStyle = /*#__PURE__*/_styled__default.span.withConfig({
876
- displayName: "styles__ErrorStyle",
877
- componentId: "sc-4e4ecc-0"
878
- })(["display:block;font-size:0.7rem;color:", ";", " + &,", " + &,", " + &{margin-top:", ";}"], props => props.color === 'success' ? field.successBorderColor : field.errorBorderColor, TextFieldInputStyle, TextAreaStyle, SelectStyle, /*#__PURE__*/polished.rem('5px'));
1285
+ const ErrorStyle = styled__default.span`
1286
+ display: block;
1287
+ font-size: 0.7rem;
1288
+ color: ${props => props.color === 'success' ? field.successBorderColor : field.errorBorderColor};
1289
+
1290
+ ${TextFieldInputStyle} + &, ${TextAreaStyle} + &, ${SelectStyle} + & {
1291
+ margin-top: ${/*#__PURE__*/polished.rem('5px')};
1292
+ }
1293
+ `;
879
1294
 
880
1295
  const ErrorField = props => {
881
1296
  const {
@@ -910,10 +1325,19 @@ const Icon = props => {
910
1325
  }));
911
1326
  };
912
1327
 
913
- const LabelStyle = /*#__PURE__*/_styled__default.label.withConfig({
914
- displayName: "styles__LabelStyle",
915
- componentId: "sc-pbv9we-0"
916
- })(["display:flex;align-items:center;font-size:", ";font-weight:", ";color:", ";svg{margin-left:", ";width:auto;height:", ";}"], typography.fontSizeXs, typography.semiBold, colors.grey500, /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('16px'));
1328
+ const LabelStyle = styled__default.label`
1329
+ display: flex;
1330
+ align-items: center;
1331
+ font-size: ${typography.fontSizeXs};
1332
+ font-weight: ${typography.semiBold};
1333
+ color: ${colors.grey500};
1334
+
1335
+ svg {
1336
+ margin-left: ${/*#__PURE__*/polished.rem('5px')};
1337
+ width: auto;
1338
+ height: ${/*#__PURE__*/polished.rem('16px')};
1339
+ }
1340
+ `;
917
1341
 
918
1342
  const Label = props => {
919
1343
  const {
@@ -925,27 +1349,29 @@ const Label = props => {
925
1349
  return /*#__PURE__*/React__default.createElement(LabelStyle, {
926
1350
  className: className,
927
1351
  style: style
928
- }, value, currency === 'tkai' && /*#__PURE__*/React__default.createElement(Icon, {
929
- icon: "tkai",
930
- fill: colors.grey200
931
- }), currency === 'vkai' && /*#__PURE__*/React__default.createElement(Icon, {
932
- icon: "vkai",
1352
+ }, value, currency && /*#__PURE__*/React__default.createElement(Icon, {
1353
+ icon: currency,
933
1354
  fill: colors.grey200
934
1355
  }));
935
1356
  };
936
1357
 
937
- const rotation = _styled.keyframes`
938
- from {
1358
+ const Loading = styled__default.div`
1359
+ @keyframes rotation {
1360
+ from {
939
1361
  transform: rotate(0deg);
1362
+ }
1363
+ to {
1364
+ transform: rotate(360deg);
1365
+ }
940
1366
  }
941
- to {
942
- transform: rotate(360deg);
943
- }
1367
+
1368
+ border: ${/*#__PURE__*/polished.rem('5px')} solid hsla(0, 0%, 48%, 0.5);
1369
+ border-top-color: ${props => props.fill || colors.white};
1370
+ border-radius: 50%;
1371
+ width: ${props => props.size || polished.rem('20px')};
1372
+ height: ${props => props.size || polished.rem('20px')};
1373
+ animation: rotation 0.8s ease infinite;
944
1374
  `;
945
- const Loading = /*#__PURE__*/_styled__default.div.withConfig({
946
- displayName: "styles__Loading",
947
- componentId: "sc-sxnx45-0"
948
- })(["border:", " solid hsla(0,0%,48%,0.5);border-top-color:", ";border-radius:50%;width:", ";height:", ";animation:", " 0.8s ease infinite;"], /*#__PURE__*/polished.rem('5px'), props => props.fill || colors.white, props => props.size || polished.rem('20px'), props => props.size || polished.rem('20px'), rotation);
949
1375
 
950
1376
  const Spinner = props => {
951
1377
  const {
@@ -962,10 +1388,23 @@ const Spinner = props => {
962
1388
  });
963
1389
  };
964
1390
 
965
- const TagWrapper = /*#__PURE__*/_styled__default.span.withConfig({
966
- displayName: "styles__TagWrapper",
967
- componentId: "sc-1ghratr-0"
968
- })(["--bg:", ";--txt:", ";display:inline-block;border:", " solid var(--bg);border-radius:", ";background-color:", ";padding:", " ", ";font-size:", ";font-weight:", ";text-transform:uppercase;letter-spacing:", ";line-height:1;color:", ";white-space:nowrap;"], props => useColor(props.color ?? 'black').color, props => useColor(props.txtColor ?? 'black').color, /*#__PURE__*/polished.rem('2px'), /*#__PURE__*/polished.rem('4px'), props => props.variant === 'solid' ? 'var(--bg)' : 'transparent', /*#__PURE__*/polished.rem('3px'), /*#__PURE__*/polished.rem('8px'), /*#__PURE__*/polished.rem('12px'), typography.medium, /*#__PURE__*/polished.rem('1px'), props => props.variant === 'solid' ? 'var(--txt)' : 'var(--bg)');
1391
+ const TagWrapper = styled__default.span`
1392
+ --bg: ${props => useColor(props.color ?? 'black').color};
1393
+ --txt: ${props => useColor(props.txtColor ?? 'black').color};
1394
+
1395
+ display: inline-block;
1396
+ border: ${/*#__PURE__*/polished.rem('2px')} solid var(--bg);
1397
+ border-radius: ${/*#__PURE__*/polished.rem('4px')};
1398
+ background-color: ${props => props.variant === 'solid' ? 'var(--bg)' : 'transparent'};
1399
+ padding: ${/*#__PURE__*/polished.rem('3px')} ${/*#__PURE__*/polished.rem('8px')};
1400
+ font-size: ${/*#__PURE__*/polished.rem('12px')};
1401
+ font-weight: ${typography.medium};
1402
+ text-transform: uppercase;
1403
+ letter-spacing: ${/*#__PURE__*/polished.rem('1px')};
1404
+ line-height: 1;
1405
+ color: ${props => props.variant === 'solid' ? 'var(--txt)' : 'var(--bg)'};
1406
+ white-space: nowrap;
1407
+ `;
969
1408
 
970
1409
  const Tag = props => {
971
1410
  const {
@@ -986,10 +1425,44 @@ const Tag = props => {
986
1425
  }, value);
987
1426
  };
988
1427
 
989
- const TagWrapper$1 = /*#__PURE__*/_styled__default.div.withConfig({
990
- displayName: "styles__TagWrapper",
991
- componentId: "sc-db57da-0"
992
- })(["--bg:", ";--valueColor:", ";display:flex;border:", " solid var(--bg);border-radius:", ";line-height:1;max-width:100%;width:max-content;overflow:hidden;span{display:inline-block;padding:", " ", ";font-size:", ";font-weight:", ";letter-spacing:", ";&.label{flex:1;color:var(--bg);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-transform:uppercase;}&.value{background-color:var(--bg);color:var(--valueColor);}}&:not(:first-child){margin-left:", ";}"], props => useColor(props.color ?? 'black').color, props => useColor(props.valueColor ?? 'black').color, /*#__PURE__*/polished.rem('2px'), /*#__PURE__*/polished.rem('3px'), /*#__PURE__*/polished.rem('3px'), /*#__PURE__*/polished.rem('8px'), /*#__PURE__*/polished.rem('12px'), typography.medium, /*#__PURE__*/polished.rem('1px'), /*#__PURE__*/polished.rem('5px'));
1428
+ const TagWrapper$1 = styled__default.div`
1429
+ --bg: ${props => useColor(props.color ?? 'black').color};
1430
+ --valueColor: ${props => useColor(props.valueColor ?? 'black').color};
1431
+
1432
+ display: flex;
1433
+ border: ${/*#__PURE__*/polished.rem('2px')} solid var(--bg);
1434
+ border-radius: ${/*#__PURE__*/polished.rem('3px')};
1435
+ line-height: 1;
1436
+ max-width: 100%;
1437
+ width: max-content;
1438
+ overflow: hidden;
1439
+
1440
+ span {
1441
+ display: inline-block;
1442
+ padding: ${/*#__PURE__*/polished.rem('3px')} ${/*#__PURE__*/polished.rem('8px')};
1443
+ font-size: ${/*#__PURE__*/polished.rem('12px')};
1444
+ font-weight: ${typography.medium};
1445
+ letter-spacing: ${/*#__PURE__*/polished.rem('1px')};
1446
+
1447
+ &.label {
1448
+ flex: 1;
1449
+ color: var(--bg);
1450
+ overflow: hidden;
1451
+ white-space: nowrap;
1452
+ text-overflow: ellipsis;
1453
+ text-transform: uppercase;
1454
+ }
1455
+
1456
+ &.value {
1457
+ background-color: var(--bg);
1458
+ color: var(--valueColor);
1459
+ }
1460
+ }
1461
+
1462
+ &:not(:first-child) {
1463
+ margin-left: ${/*#__PURE__*/polished.rem('5px')};
1464
+ }
1465
+ `;
993
1466
 
994
1467
  const TagNumber = props => {
995
1468
  const {
@@ -1144,7 +1617,7 @@ function _extends() {
1144
1617
  return _extends.apply(this, arguments);
1145
1618
  }
1146
1619
 
1147
- const SelectWrapper = _styled__default.div`
1620
+ const SelectWrapper = styled__default.div`
1148
1621
  .select {
1149
1622
  &-interactive {
1150
1623
  z-index: 3;
@@ -1270,7 +1743,7 @@ const SelectWrapper = _styled__default.div`
1270
1743
  pointer-events: none;
1271
1744
  }
1272
1745
  `;
1273
- const SelectGroupLabel = _styled__default.span`
1746
+ const SelectGroupLabel = styled__default.span`
1274
1747
  font-size: ${typography.fontSizeXs};
1275
1748
  color: ${field.placeholderColor};
1276
1749
 
@@ -1280,7 +1753,7 @@ const SelectGroupLabel = _styled__default.span`
1280
1753
  color: ${field.activeBorderColor};
1281
1754
  }
1282
1755
  `;
1283
- const SingleValue = _styled__default.div`
1756
+ const SingleValue = styled__default.div`
1284
1757
  grid-area: 1 / 1 / 2 / 3;
1285
1758
  margin-left: ${/*#__PURE__*/polished.rem('2px')};
1286
1759
  margin-right: ${/*#__PURE__*/polished.rem('2px')};
@@ -1334,6 +1807,7 @@ const SelectInteractive = ({
1334
1807
  onChange = () => {},
1335
1808
  onInputChange = () => {},
1336
1809
  dataTestId,
1810
+ filterOption,
1337
1811
  ...rest
1338
1812
  }) => {
1339
1813
  return /*#__PURE__*/React__default.createElement(SelectWrapper, _extends({
@@ -1358,13 +1832,14 @@ const SelectInteractive = ({
1358
1832
  Option: CustomSelectOption,
1359
1833
  SingleValue: CustomSelectValue
1360
1834
  },
1361
- formatGroupLabel: s => formatGroupLabel ? FormatGroupLabel(s) : undefined
1835
+ formatGroupLabel: s => formatGroupLabel ? FormatGroupLabel(s) : undefined,
1836
+ filterOption: filterOption
1362
1837
  }), error ? /*#__PURE__*/React__default.createElement(ErrorField, {
1363
1838
  error: error
1364
1839
  }) : null);
1365
1840
  };
1366
1841
 
1367
- const Wrapper$2 = _styled__default.div`
1842
+ const Wrapper$2 = styled__default.div`
1368
1843
  border-width: ${field.borderWidth};
1369
1844
  border-style: solid;
1370
1845
  border-color: ${props => props.error ? field.errorBorderColor : field.borderColor};
@@ -1406,7 +1881,7 @@ const Wrapper$2 = _styled__default.div`
1406
1881
  margin-top: ${props => props.error ? polished.rem('5px') : 0};
1407
1882
  }
1408
1883
  `;
1409
- const Appendix = _styled__default.div`
1884
+ const Appendix = styled__default.div`
1410
1885
  border-width: ${props => props.position === 'left' ? `0 ${field.borderWidth} 0 0` : `0 0 0 ${field.borderWidth}`};
1411
1886
  border-style: solid;
1412
1887
  border-color: ${props => props.error ? field.errorBorderColor : field.borderColor};
@@ -1466,10 +1941,18 @@ const TextFieldAppendix = props => {
1466
1941
  }) : null);
1467
1942
  };
1468
1943
 
1469
- const TruncateWrapper = /*#__PURE__*/_styled__default.div.withConfig({
1470
- displayName: "styles__TruncateWrapper",
1471
- componentId: "sc-1p4cmvj-0"
1472
- })(["display:table;table-layout:fixed;width:100%;white-space:nowrap;span{display:table-cell;overflow:hidden;text-overflow:ellipsis;}"]);
1944
+ const TruncateWrapper = styled__default.div`
1945
+ display: table;
1946
+ table-layout: fixed;
1947
+ width: 100%;
1948
+ white-space: nowrap;
1949
+
1950
+ span {
1951
+ display: table-cell;
1952
+ overflow: hidden;
1953
+ text-overflow: ellipsis;
1954
+ }
1955
+ `;
1473
1956
 
1474
1957
  const TruncateLine = props => {
1475
1958
  const {
@@ -1502,7 +1985,7 @@ const device = {
1502
1985
  mouse: '(min-width: 538px) and (min-height: 720px)'
1503
1986
  };
1504
1987
 
1505
- const Wrapper$3 = _styled__default.div`
1988
+ const Wrapper$3 = styled__default.div`
1506
1989
  position: relative;
1507
1990
 
1508
1991
  .carousel .control-arrow,
@@ -1891,7 +2374,7 @@ const Slideshow = props => {
1891
2374
  }, children));
1892
2375
  };
1893
2376
 
1894
- const Wrapper$4 = _styled__default.div`
2377
+ const Wrapper$4 = styled__default.div`
1895
2378
  position: relative;
1896
2379
  padding-top: 56.25%;
1897
2380
  `;
@@ -1926,11 +2409,11 @@ const VideoPlayer = props => {
1926
2409
  }));
1927
2410
  };
1928
2411
 
1929
- const Wrapper$5 = _styled__default.div`
2412
+ const Wrapper$5 = styled__default.div`
1930
2413
  display: flex;
1931
2414
  align-items: center;
1932
2415
  `;
1933
- const Bar = _styled__default.div`
2416
+ const Bar = styled__default.div`
1934
2417
  flex: 1;
1935
2418
  border: ${/*#__PURE__*/polished.rem('1px')} solid ${colors.purple100};
1936
2419
  border-radius: 999px;
@@ -1938,14 +2421,14 @@ const Bar = _styled__default.div`
1938
2421
  height: ${/*#__PURE__*/polished.rem('10px')};
1939
2422
  overflow: hidden;
1940
2423
  `;
1941
- const Progress = _styled__default.div`
2424
+ const Progress = styled__default.div`
1942
2425
  border-radius: 999px;
1943
2426
  background-color: ${colors.purple500};
1944
2427
  height: 100%;
1945
2428
  width: ${props => props.progress ? `${props.progress}%` : 0};
1946
2429
  transition-duration: 2s;
1947
2430
  `;
1948
- const Value = _styled__default.div`
2431
+ const Value = styled__default.div`
1949
2432
  margin-left: ${/*#__PURE__*/polished.rem('5px')};
1950
2433
  font-size: ${typography.fontSizeXs};
1951
2434
  font-weight: ${typography.regular};
@@ -1964,7 +2447,7 @@ const ProgressBar = props => {
1964
2447
  })), value && /*#__PURE__*/React__default.createElement(Value, null, value));
1965
2448
  };
1966
2449
 
1967
- const Switcher = _styled__default.fieldset`
2450
+ const Switcher = styled__default.fieldset`
1968
2451
  margin: 0;
1969
2452
  border: none;
1970
2453
  padding: 0;
@@ -2134,7 +2617,7 @@ const Toggle = ({
2134
2617
  }, labelRight)));
2135
2618
  };
2136
2619
 
2137
- const Wrapper$6 = _styled__default.div`
2620
+ const Wrapper$6 = styled__default.div`
2138
2621
  input {
2139
2622
  width: 0.1px;
2140
2623
  height: 0.1px;
@@ -2258,18 +2741,81 @@ const FilePicker = props => {
2258
2741
  }));
2259
2742
  };
2260
2743
 
2261
- const ActionsMenuStyle$1 = /*#__PURE__*/_styled__default.div.withConfig({
2262
- displayName: "styles__ActionsMenuStyle",
2263
- componentId: "sc-1peafop-0"
2264
- })(["height:", ";button{margin-top:", ";}"], /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('7px'));
2265
- const List = /*#__PURE__*/_styled__default.ul.withConfig({
2266
- displayName: "styles__List",
2267
- componentId: "sc-1peafop-1"
2268
- })(["position:absolute;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";min-width:", ";max-width:", ";padding:0;-moz-box-shadow:", ";-webkit-box-shadow:", ";box-shadow:", ";overflow:hidden;z-index:1;", " li{list-style:none;min-height:", ";display:flex;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;}&.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;}}}"], field.borderWidth, field.borderColor, field.borderRadius, field.backgroundColor, /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('200px'), /*#__PURE__*/polished.rem('250px'), field.boxShadow, field.boxShadow, field.boxShadow, props => props.rowIndex != undefined && _styled.css`
2744
+ const ActionsMenuStyle$1 = styled__default.div`
2745
+ height: ${/*#__PURE__*/polished.rem('50px')};
2746
+
2747
+ button {
2748
+ margin-top: ${/*#__PURE__*/polished.rem('7px')};
2749
+ }
2750
+ `;
2751
+ const List = styled__default.ul`
2752
+ position: absolute;
2753
+ border: ${field.borderWidth} solid ${field.borderColor};
2754
+ border-radius: ${field.borderRadius};
2755
+ background-color: ${field.backgroundColor};
2756
+ margin-top: ${/*#__PURE__*/polished.rem('5px')};
2757
+ min-width: ${/*#__PURE__*/polished.rem('200px')};
2758
+ max-width: ${/*#__PURE__*/polished.rem('250px')};
2759
+ padding: 0;
2760
+ -moz-box-shadow: ${field.boxShadow};
2761
+ -webkit-box-shadow: ${field.boxShadow};
2762
+ box-shadow: ${field.boxShadow};
2763
+ overflow: hidden;
2764
+ z-index: 1;
2765
+
2766
+ ${props => props.rowIndex != undefined && styled.css`
2269
2767
  --margin: ${`calc(${polished.rem('45px')} + ${polished.rem('50px')} * ${props.rowIndex} + ${polished.rem('42px')})`};
2270
2768
  top: var(--margin);
2271
2769
  right: ${polished.rem('5px')};
2272
- `, /*#__PURE__*/polished.rem('45px'), field.hoverBorderColor, field.borderWidth, field.borderColor, field.errorBorderColor, field.disabledColor, /*#__PURE__*/polished.rem('20px'), field.color);
2770
+ `}
2771
+
2772
+ li {
2773
+ list-style: none;
2774
+ min-height: ${/*#__PURE__*/polished.rem('45px')};
2775
+ display: flex;
2776
+ transition-duration: 0.3s;
2777
+
2778
+ &:hover {
2779
+ background-color: ${field.hoverBorderColor};
2780
+ cursor: pointer;
2781
+ }
2782
+
2783
+ &.danger {
2784
+ border-top: ${field.borderWidth} solid ${field.borderColor};
2785
+
2786
+ a {
2787
+ color: ${field.errorBorderColor};
2788
+ }
2789
+ }
2790
+
2791
+ &.disabled {
2792
+ a {
2793
+ color: ${field.disabledColor};
2794
+ pointer-events: none;
2795
+ }
2796
+
2797
+ &:hover {
2798
+ background-color: transparent;
2799
+ }
2800
+ }
2801
+
2802
+ a {
2803
+ width: 100%;
2804
+ display: flex;
2805
+ align-items: center;
2806
+ padding: 0 ${/*#__PURE__*/polished.rem('20px')};
2807
+ color: ${field.color};
2808
+ text-decoration: none;
2809
+ white-space: nowrap;
2810
+
2811
+ span {
2812
+ display: table-cell;
2813
+ overflow: hidden;
2814
+ text-overflow: ellipsis;
2815
+ }
2816
+ }
2817
+ }
2818
+ `;
2273
2819
 
2274
2820
  const ActionMenuList = props => {
2275
2821
  const {
@@ -2340,10 +2886,31 @@ const ActionsMenu = props => {
2340
2886
  }) : null);
2341
2887
  };
2342
2888
 
2343
- const CardValueStyle = /*#__PURE__*/_styled__default.div.withConfig({
2344
- displayName: "styles__CardValueStyle",
2345
- componentId: "sc-1ki7jdk-0"
2346
- })(["border:", " solid ", ";border-radius:", ";background-color:", ";display:flex;flex-direction:column;padding:", ";overflow-x:auto;> span{display:block;margin-top:", ";font-size:", ";font-weight:", ";line-height:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}a,button{margin-top:", ";}"], field.borderWidth, field.borderColor, field.borderRadius, colors.white, /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('32px'), typography.semiBold, /*#__PURE__*/polished.rem('20px'));
2889
+ const CardValueStyle = styled__default.div`
2890
+ border: ${field.borderWidth} solid ${field.borderColor};
2891
+ border-radius: ${field.borderRadius};
2892
+ background-color: ${colors.white};
2893
+ display: flex;
2894
+ flex-direction: column;
2895
+ padding: ${/*#__PURE__*/polished.rem('15px')};
2896
+ overflow-x: auto;
2897
+
2898
+ > span {
2899
+ display: block;
2900
+ margin-top: ${/*#__PURE__*/polished.rem('5px')};
2901
+ font-size: ${/*#__PURE__*/polished.rem('32px')};
2902
+ font-weight: ${typography.semiBold};
2903
+ line-height: 1;
2904
+ white-space: nowrap;
2905
+ overflow: hidden;
2906
+ text-overflow: ellipsis;
2907
+ }
2908
+
2909
+ a,
2910
+ button {
2911
+ margin-top: ${/*#__PURE__*/polished.rem('20px')};
2912
+ }
2913
+ `;
2347
2914
 
2348
2915
  const CardValue = props => {
2349
2916
  const {
@@ -2372,30 +2939,118 @@ const CardValue = props => {
2372
2939
  }));
2373
2940
  };
2374
2941
 
2375
- const EmptyTableWrapper = /*#__PURE__*/_styled__default.div.withConfig({
2376
- displayName: "styles__EmptyTableWrapper",
2377
- componentId: "sc-1dgsb9l-0"
2378
- })(["position:relative;"]);
2379
- const EmptyTableHead = /*#__PURE__*/_styled__default.div.withConfig({
2380
- displayName: "styles__EmptyTableHead",
2381
- componentId: "sc-1dgsb9l-1"
2382
- })(["border-width:", ";border-style:solid;border-color:", ";border-radius:", " ", " 0 0;height:", ";display:flex;align-items:center;font-size:", ";font-weight:", ";color:", ";> div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:none;flex:1;padding:0 ", ";font-size:", ";font-weight:", ";color:", ";&:first-child,&:nth-child(2){display:initial;}@media ", "{&:nth-child(3){display:initial;}}@media ", "{&:nth-child(4){display:initial;}}@media ", "{display:initial;}}"], props => props.border ? field.borderWidth : `0 0 ${field.borderWidth} 0`, colors.grey200, field.borderRadius, field.borderRadius, /*#__PURE__*/polished.rem('50px'), typography.fontSizeSm, typography.semiBold, colors.grey400, /*#__PURE__*/polished.rem('15px'), typography.fontSizeSm, typography.semiBold, colors.grey400, device.s, device.m, device.l);
2383
- const EmptyTableBody = /*#__PURE__*/_styled__default.div.withConfig({
2384
- displayName: "styles__EmptyTableBody",
2385
- componentId: "sc-1dgsb9l-2"
2386
- })(["border-width:", ";border-style:solid;border-color:", ";border-radius:0 0 ", " ", ";"], props => props.border ? `0 ${field.borderWidth} ${field.borderWidth} ${field.borderWidth}` : 0, colors.grey200, field.borderRadius, field.borderRadius);
2387
- const EmptyTableRow = /*#__PURE__*/_styled__default.div.withConfig({
2388
- displayName: "styles__EmptyTableRow",
2389
- componentId: "sc-1dgsb9l-3"
2390
- })(["height:", ";display:flex;align-items:center;&:not(:last-child){border-bottom:", " solid ", ";}> div{display:none;flex:1;padding:0 ", ";&:first-child,&:nth-child(2){display:inherit;}@media ", "{&:nth-child(3){display:inherit;}}@media ", "{&:nth-child(4){display:inherit;}}@media ", "{display:inherit;}}"], /*#__PURE__*/polished.rem('50px'), field.borderWidth, colors.grey200, /*#__PURE__*/polished.rem('15px'), device.s, device.m, device.l);
2391
- const EmptyTableCellText = /*#__PURE__*/_styled__default.div.withConfig({
2392
- displayName: "styles__EmptyTableCellText",
2393
- componentId: "sc-1dgsb9l-4"
2394
- })(["background-color:", ";width:100%;height:", ";"], colors.grey200, /*#__PURE__*/polished.rem('15px'));
2395
- const EmptyTableOverlay = /*#__PURE__*/_styled__default.div.withConfig({
2396
- displayName: "styles__EmptyTableOverlay",
2397
- componentId: "sc-1dgsb9l-5"
2398
- })(["position:absolute;bottom:0;background-image:linear-gradient( to bottom,", ",", " );width:100%;height:calc(100% - ", ");display:flex;justify-content:center;align-items:flex-end;padding:0 ", " ", " ", ";text-align:center;color:", ";"], /*#__PURE__*/polished.rgba(colors.white, 0), /*#__PURE__*/polished.rgba(colors.white, 1), /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('15px'), colors.grey400);
2942
+ const EmptyTableWrapper = styled__default.div`
2943
+ position: relative;
2944
+ `;
2945
+ const EmptyTableHead = styled__default.div`
2946
+ border-width: ${props => props.border ? field.borderWidth : `0 0 ${field.borderWidth} 0`};
2947
+ border-style: solid;
2948
+ border-color: ${colors.grey200};
2949
+ border-radius: ${field.borderRadius} ${field.borderRadius} 0 0;
2950
+ height: ${/*#__PURE__*/polished.rem('50px')};
2951
+ display: flex;
2952
+ align-items: center;
2953
+ font-size: ${typography.fontSizeSm};
2954
+ font-weight: ${typography.semiBold};
2955
+ color: ${colors.grey400};
2956
+
2957
+ > div {
2958
+ white-space: nowrap;
2959
+ overflow: hidden;
2960
+ text-overflow: ellipsis;
2961
+ display: none;
2962
+ flex: 1;
2963
+ padding: 0 ${/*#__PURE__*/polished.rem('15px')};
2964
+ font-size: ${typography.fontSizeSm};
2965
+ font-weight: ${typography.semiBold};
2966
+ color: ${colors.grey400};
2967
+
2968
+ &:first-child,
2969
+ &:nth-child(2) {
2970
+ display: initial;
2971
+ }
2972
+
2973
+ @media ${device.s} {
2974
+ &:nth-child(3) {
2975
+ display: initial;
2976
+ }
2977
+ }
2978
+
2979
+ @media ${device.m} {
2980
+ &:nth-child(4) {
2981
+ display: initial;
2982
+ }
2983
+ }
2984
+
2985
+ @media ${device.l} {
2986
+ display: initial;
2987
+ }
2988
+ }
2989
+ `;
2990
+ const EmptyTableBody = styled__default.div`
2991
+ border-width: ${props => props.border ? `0 ${field.borderWidth} ${field.borderWidth} ${field.borderWidth}` : 0};
2992
+ border-style: solid;
2993
+ border-color: ${colors.grey200};
2994
+ border-radius: 0 0 ${field.borderRadius} ${field.borderRadius};
2995
+ `;
2996
+ const EmptyTableRow = styled__default.div`
2997
+ height: ${/*#__PURE__*/polished.rem('50px')};
2998
+ display: flex;
2999
+ align-items: center;
3000
+
3001
+ &:not(:last-child) {
3002
+ border-bottom: ${field.borderWidth} solid ${colors.grey200};
3003
+ }
3004
+
3005
+ > div {
3006
+ display: none;
3007
+ flex: 1;
3008
+ padding: 0 ${/*#__PURE__*/polished.rem('15px')};
3009
+
3010
+ &:first-child,
3011
+ &:nth-child(2) {
3012
+ display: inherit;
3013
+ }
3014
+
3015
+ @media ${device.s} {
3016
+ &:nth-child(3) {
3017
+ display: inherit;
3018
+ }
3019
+ }
3020
+
3021
+ @media ${device.m} {
3022
+ &:nth-child(4) {
3023
+ display: inherit;
3024
+ }
3025
+ }
3026
+
3027
+ @media ${device.l} {
3028
+ display: inherit;
3029
+ }
3030
+ }
3031
+ `;
3032
+ const EmptyTableCellText = styled__default.div`
3033
+ background-color: ${colors.grey200};
3034
+ width: 100%;
3035
+ height: ${/*#__PURE__*/polished.rem('15px')};
3036
+ `;
3037
+ const EmptyTableOverlay = styled__default.div`
3038
+ position: absolute;
3039
+ bottom: 0;
3040
+ background-image: linear-gradient(
3041
+ to bottom,
3042
+ ${/*#__PURE__*/polished.rgba(colors.white, 0)},
3043
+ ${/*#__PURE__*/polished.rgba(colors.white, 1)}
3044
+ );
3045
+ width: 100%;
3046
+ height: calc(100% - ${/*#__PURE__*/polished.rem('50px')});
3047
+ display: flex;
3048
+ justify-content: center;
3049
+ align-items: flex-end;
3050
+ padding: 0 ${/*#__PURE__*/polished.rem('15px')} ${/*#__PURE__*/polished.rem('15px')} ${/*#__PURE__*/polished.rem('15px')};
3051
+ text-align: center;
3052
+ color: ${colors.grey400};
3053
+ `;
2399
3054
 
2400
3055
  const EmptyTable = props => {
2401
3056
  let rows = [];
@@ -2425,10 +3080,25 @@ const EmptyTable = props => {
2425
3080
  }, rows));
2426
3081
  };
2427
3082
 
2428
- const FooterStyle = /*#__PURE__*/_styled__default.div.withConfig({
2429
- displayName: "styles__FooterStyle",
2430
- componentId: "sc-1xdsng6-0"
2431
- })(["position:relative;margin-top:", ";max-width:100%;display:flex;justify-content:center;> button{min-width:", ";&:not(:last-child){margin-right:", ";}}@media ", "{justify-content:flex-end;}"], /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('5px'), device.s);
3083
+ const FooterStyle = styled__default.div`
3084
+ position: relative;
3085
+ margin-top: ${/*#__PURE__*/polished.rem('50px')};
3086
+ max-width: 100%;
3087
+ display: flex;
3088
+ justify-content: center;
3089
+
3090
+ > button {
3091
+ min-width: ${/*#__PURE__*/polished.rem('100px')};
3092
+
3093
+ &:not(:last-child) {
3094
+ margin-right: ${/*#__PURE__*/polished.rem('5px')};
3095
+ }
3096
+ }
3097
+
3098
+ @media ${device.s} {
3099
+ justify-content: flex-end;
3100
+ }
3101
+ `;
2432
3102
 
2433
3103
  const ModalFooter = props => {
2434
3104
  const {
@@ -2451,22 +3121,47 @@ const ModalFooter = props => {
2451
3121
  }), children);
2452
3122
  };
2453
3123
 
2454
- const Wrapper$7 = /*#__PURE__*/_styled__default.div.withConfig({
2455
- displayName: "styles__Wrapper",
2456
- componentId: "sc-d2fn4g-0"
2457
- })(["--borderColor:", ";--backgroundColor:", ";--dark:", ";", " ", " ", " border-width:", ";border-style:solid;border-color:var(--borderColor);border-radius:", ";background-color:var(--backgroundColor);padding:", ";div{&:first-child{flex:1;}p{margin:0;}}", ""], field.borderColor, colors.purple50, colors.purple400, props => props.color === 'grey' && _styled.css`
3124
+ const Wrapper$7 = styled__default.div`
3125
+ --borderColor: ${field.borderColor};
3126
+ --backgroundColor: ${colors.purple50};
3127
+ --dark: ${colors.purple400};
3128
+
3129
+ ${props => props.color === 'grey' && styled.css`
2458
3130
  --borderColor: ${field.borderColor};
2459
3131
  --backgroundColor: ${colors.purple50};
2460
3132
  --dark: ${colors.purple400};
2461
- `, props => props.color === 'green' && _styled.css`
3133
+ `}
3134
+
3135
+ ${props => props.color === 'green' && styled.css`
2462
3136
  --borderColor: ${field.successBorderColor};
2463
3137
  --backgroundColor: ${field.successBackgroundColor};
2464
3138
  --dark: ${colors.green900};
2465
- `, props => props.color === 'red' && _styled.css`
3139
+ `}
3140
+
3141
+ ${props => props.color === 'red' && styled.css`
2466
3142
  --borderColor: ${field.errorBorderColor};
2467
3143
  --backgroundColor: ${field.errorBackgroundColor};
2468
3144
  --dark: ${colors.red800};
2469
- `, field.borderWidth, field.borderRadius, /*#__PURE__*/polished.rem('15px'), props => props.buttonValue && _styled.css`
3145
+ `}
3146
+
3147
+ border-width: ${field.borderWidth};
3148
+ border-style: solid;
3149
+ border-color: var(--borderColor);
3150
+ border-radius: ${field.borderRadius};
3151
+ background-color: var(--backgroundColor);
3152
+ padding: ${/*#__PURE__*/polished.rem('15px')};
3153
+
3154
+ div {
3155
+ &:first-child {
3156
+ flex: 1;
3157
+ }
3158
+
3159
+ p {
3160
+ margin: 0;
3161
+ }
3162
+ }
3163
+
3164
+ ${props => props.buttonValue && styled.css`
2470
3165
  button {
2471
3166
  margin: ${polished.rem('30px')} 0 0 0;
2472
3167
  border: 0;
@@ -2498,7 +3193,8 @@ const Wrapper$7 = /*#__PURE__*/_styled__default.div.withConfig({
2498
3193
  margin: 0 0 0 ${polished.rem('30px')};
2499
3194
  }
2500
3195
  }
2501
- `);
3196
+ `}
3197
+ `;
2502
3198
 
2503
3199
  const NoteCard = props => {
2504
3200
  const {
@@ -2523,18 +3219,227 @@ function hasValue(value) {
2523
3219
  return value !== undefined && value !== null;
2524
3220
  }
2525
3221
 
2526
- const TableWrapper = /*#__PURE__*/_styled__default.div.withConfig({
2527
- displayName: "styles__TableWrapper",
2528
- componentId: "sc-vmoy3z-0"
2529
- })(["position:relative;"]);
2530
- const OverflowWrapper = /*#__PURE__*/_styled__default.div.withConfig({
2531
- displayName: "styles__OverflowWrapper",
2532
- componentId: "sc-vmoy3z-1"
2533
- })(["@media ", "{display:block;border-radius:", ";background:linear-gradient( to right,", " 30%,rgba(255,255,255,0) ),linear-gradient(to right,rgba(255,255,255,0),", " 70%) 0 100%,radial-gradient( farthest-side at 0% 50%,rgba(0,0,0,0.2),rgba(0,0,0,0) ),radial-gradient( farthest-side at 100% 50%,rgba(0,0,0,0.2),rgba(0,0,0,0) ) 0 100%;background-repeat:no-repeat;background-color:", ";background-size:", " 100%,", " 100%,", " 100%,", " 100%;background-position:0 0,100%,0 0,100%;background-attachment:local,local,scroll,scroll;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;}"], device.s, field.borderRadius, colors.white, colors.white, colors.white, /*#__PURE__*/polished.rem('40px'), /*#__PURE__*/polished.rem('40px'), /*#__PURE__*/polished.rem('14px'), /*#__PURE__*/polished.rem('14px'));
2534
- const Table = /*#__PURE__*/_styled__default.table.withConfig({
2535
- displayName: "styles__Table",
2536
- componentId: "sc-vmoy3z-2"
2537
- })(["width:100%;border-width:0;border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;@media ", "{border-width:", ";}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;}}&.vkai,&.tkai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:", ";&: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-align:left;}}tbody{tr{display:block;transition-duration:", ";&: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;align-items:center;> 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;", "}&.tkai,&.vkai{svg{float:right;margin-left:", ";width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}.button{height:", ";}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:", ";}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";> 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:'';}&.tkai,&.vkai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], colors.grey200, field.borderRadius, device.s, props => props.border ? field.borderWidth : 0, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('15px'), typography.fontSizeSm, field.borderRadius, field.borderRadius, field.borderWidth, colors.grey200, field.borderRadius, /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('1px'), /*#__PURE__*/polished.rem('-1px'), /*#__PURE__*/polished.rem('1px'), device.s, typography.semiBold, colors.grey400, misc.transitionDuration, props => props.loadingState ? 'transparent' : colors.grey50, device.s, field.borderWidth, colors.grey200, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('30px'), colors.black, colors.grey400, /*#__PURE__*/polished.rem('15px'), typography.semiBold, props => props.loadingState && _styled.css`
3222
+ const TableWrapper = styled__default.div`
3223
+ position: relative;
3224
+ `;
3225
+ const OverflowWrapper = styled__default.div`
3226
+ @media ${device.s} {
3227
+ display: block;
3228
+ border-radius: ${field.borderRadius};
3229
+ background:
3230
+ linear-gradient(to right, ${colors.white} 30%, rgba(255, 255, 255, 0)),
3231
+ linear-gradient(to right, rgba(255, 255, 255, 0), ${colors.white} 70%) 0
3232
+ 100%,
3233
+ radial-gradient(
3234
+ farthest-side at 0% 50%,
3235
+ rgba(0, 0, 0, 0.2),
3236
+ rgba(0, 0, 0, 0)
3237
+ ),
3238
+ radial-gradient(
3239
+ farthest-side at 100% 50%,
3240
+ rgba(0, 0, 0, 0.2),
3241
+ rgba(0, 0, 0, 0)
3242
+ )
3243
+ 0 100%;
3244
+ background-repeat: no-repeat;
3245
+ background-color: ${colors.white};
3246
+ background-size:
3247
+ ${/*#__PURE__*/polished.rem('40px')} 100%,
3248
+ ${/*#__PURE__*/polished.rem('40px')} 100%,
3249
+ ${/*#__PURE__*/polished.rem('14px')} 100%,
3250
+ ${/*#__PURE__*/polished.rem('14px')} 100%;
3251
+ background-position:
3252
+ 0 0,
3253
+ 100%,
3254
+ 0 0,
3255
+ 100%;
3256
+ background-attachment: local, local, scroll, scroll;
3257
+ overflow-x: auto;
3258
+ -webkit-overflow-scrolling: touch;
3259
+ -ms-overflow-style: -ms-autohiding-scrollbar;
3260
+ -webkit-scrollbar-width: none;
3261
+ -moz-scrollbar-width: none;
3262
+ -ms-scrollbar-width: none;
3263
+ scrollbar-width: none;
3264
+ }
3265
+ `;
3266
+ const Table = styled__default.table`
3267
+ width: 100%;
3268
+ border-width: 0;
3269
+ border-style: solid;
3270
+ border-color: ${colors.grey200};
3271
+ border-radius: ${field.borderRadius};
3272
+ border-spacing: 0;
3273
+ white-space: nowrap;
3274
+
3275
+ @media ${device.s} {
3276
+ border-width: ${props => props.border ? field.borderWidth : 0};
3277
+ }
3278
+
3279
+ th,
3280
+ td {
3281
+ height: ${/*#__PURE__*/polished.rem('50px')};
3282
+ padding: 0 ${/*#__PURE__*/polished.rem('15px')};
3283
+
3284
+ &.center {
3285
+ text-align: center;
3286
+
3287
+ > div {
3288
+ justify-content: center;
3289
+ }
3290
+ }
3291
+
3292
+ &.right {
3293
+ text-align: right;
3294
+
3295
+ > div {
3296
+ justify-content: flex-end;
3297
+ }
3298
+ }
3299
+
3300
+ &.thin {
3301
+ @media ${device.s} {
3302
+ max-width: min-content;
3303
+ }
3304
+ }
3305
+
3306
+ &.vkai,
3307
+ &.tkai,
3308
+ &.lx,
3309
+ &.vote {
3310
+ text-align: right;
3311
+
3312
+ > div {
3313
+ justify-content: flex-end;
3314
+ }
3315
+ }
3316
+
3317
+ &.avatar > div {
3318
+ display: flex;
3319
+ align-items: center;
3320
+
3321
+ .avatar-img {
3322
+ margin-right: ${/*#__PURE__*/polished.rem('15px')};
3323
+ }
3324
+ }
3325
+ }
3326
+
3327
+ th {
3328
+ font-size: ${typography.fontSizeSm};
3329
+
3330
+ &:first-child {
3331
+ border-top-left-radius: ${field.borderRadius};
3332
+ }
3333
+
3334
+ &:last-child {
3335
+ border-top-right-radius: ${field.borderRadius};
3336
+ }
3337
+ }
3338
+
3339
+ tr {
3340
+ border: ${field.borderWidth} solid ${colors.grey200};
3341
+ border-radius: ${field.borderRadius};
3342
+ position: relative;
3343
+
3344
+ &:not(:last-child) {
3345
+ margin-bottom: ${/*#__PURE__*/polished.rem('15px')};
3346
+ }
3347
+
3348
+ @media ${device.s} {
3349
+ border: 0;
3350
+ }
3351
+ }
3352
+
3353
+ thead {
3354
+ border: none;
3355
+ clip: rect(0 0 0 0);
3356
+ height: ${/*#__PURE__*/polished.rem('1px')};
3357
+ margin: ${/*#__PURE__*/polished.rem('-1px')};
3358
+ overflow: hidden;
3359
+ padding: 0;
3360
+ position: absolute;
3361
+ width: ${/*#__PURE__*/polished.rem('1px')};
3362
+
3363
+ @media ${device.s} {
3364
+ display: contents;
3365
+ font-weight: ${typography.semiBold};
3366
+ color: ${colors.grey400};
3367
+ text-align: left;
3368
+ }
3369
+ }
3370
+
3371
+ tbody {
3372
+ tr {
3373
+ display: block;
3374
+ transition-duration: ${misc.transitionDuration};
3375
+
3376
+ &:hover {
3377
+ background-color: ${props => props.loadingState ? 'transparent' : colors.grey50};
3378
+
3379
+ td.menu {
3380
+ button {
3381
+ opacity: 1;
3382
+ }
3383
+ }
3384
+ }
3385
+
3386
+ @media ${device.s} {
3387
+ display: table-row;
3388
+ }
3389
+ }
3390
+
3391
+ td {
3392
+ border-top: ${field.borderWidth} solid ${colors.grey200};
3393
+ height: inherit;
3394
+ min-height: ${/*#__PURE__*/polished.rem('50px')};
3395
+ padding: ${/*#__PURE__*/polished.rem('15px')};
3396
+ display: flex;
3397
+ justify-content: flex-end;
3398
+ align-items: center;
3399
+
3400
+ > div {
3401
+ margin-left: ${/*#__PURE__*/polished.rem('100px')};
3402
+ height: 100%;
3403
+ display: flex;
3404
+ justify-content: flex-end;
3405
+ align-items: center;
3406
+ flex-wrap: nowrap;
3407
+ text-align: right;
3408
+
3409
+ > span {
3410
+ display: none;
3411
+
3412
+ &:first-child,
3413
+ &:last-child {
3414
+ display: inherit;
3415
+ }
3416
+ }
3417
+ }
3418
+
3419
+ img {
3420
+ min-width: ${/*#__PURE__*/polished.rem('30px')};
3421
+ min-height: ${/*#__PURE__*/polished.rem('30px')};
3422
+ }
3423
+
3424
+ a {
3425
+ display: flex;
3426
+ align-items: center;
3427
+ color: ${colors.black};
3428
+ text-decoration-color: ${colors.grey400};
3429
+ }
3430
+
3431
+ &:first-child {
3432
+ border: 0;
3433
+ }
3434
+
3435
+ &:before {
3436
+ position: absolute;
3437
+ left: ${/*#__PURE__*/polished.rem('15px')};
3438
+ content: attr(data-label);
3439
+ font-weight: ${typography.semiBold};
3440
+ text-transform: capitalize;
3441
+
3442
+ ${props => props.loadingState && styled.css`
2538
3443
  width: ${polished.rem('75px')};
2539
3444
  height: ${polished.rem('15px')};
2540
3445
  background: #f6f7f8;
@@ -2552,11 +3457,135 @@ const Table = /*#__PURE__*/_styled__default.table.withConfig({
2552
3457
  animation-timing-function: linear;
2553
3458
  animation-iteration-count: infinite;
2554
3459
  animation-duration: 1.5s;
2555
- `, /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('22px'), /*#__PURE__*/polished.rem('22px'), /*#__PURE__*/polished.rem('34px'), /*#__PURE__*/polished.rem('10px'), /*#__PURE__*/polished.rem('5px'), misc.transitionDuration, /*#__PURE__*/polished.rem('36px'), /*#__PURE__*/polished.rem('-170px'), device.s, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), field.borderWidth, colors.grey200, /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('40px'));
2556
- const SkeletonCell = /*#__PURE__*/_styled__default.div.withConfig({
2557
- displayName: "styles__SkeletonCell",
2558
- componentId: "sc-vmoy3z-3"
2559
- })(["@keyframes placeholderSkeleton{0%{background-position:", " 0;}100%{background-position:", " 0;}}width:100%;height:", " !important;background:#f6f7f8;background-image:-webkit-linear-gradient( left,#f6f7f8 0%,#edeef1 20%,#f6f7f8 40%,#f6f7f8 100% );background-repeat:no-repeat;background-size:", " 100%;animation-fill-mode:forwards;animation-name:placeholderSkeleton;animation-timing-function:linear;animation-iteration-count:infinite;animation-duration:1.5s;"], /*#__PURE__*/polished.rem('-800px'), /*#__PURE__*/polished.rem('800px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('800px'));
3460
+ `}
3461
+ }
3462
+
3463
+ &.tkai,
3464
+ &.vkai,
3465
+ &.lx,
3466
+ &.vote {
3467
+ svg {
3468
+ float: right;
3469
+ margin-left: ${/*#__PURE__*/polished.rem('5px')};
3470
+ width: auto;
3471
+ min-width: ${/*#__PURE__*/polished.rem('22px')};
3472
+ max-height: ${/*#__PURE__*/polished.rem('22px')};
3473
+ }
3474
+ }
3475
+
3476
+ .avatar-img {
3477
+ display: none;
3478
+ }
3479
+
3480
+ .tag {
3481
+ margin: 0;
3482
+
3483
+ &:not(:first-child) {
3484
+ display: none;
3485
+ }
3486
+ }
3487
+
3488
+ .button {
3489
+ height: ${/*#__PURE__*/polished.rem('34px')};
3490
+ }
3491
+
3492
+ &.menu {
3493
+ padding: 0 ${/*#__PURE__*/polished.rem('10px')} 0 0;
3494
+
3495
+ button {
3496
+ margin-top: ${/*#__PURE__*/polished.rem('5px')};
3497
+ transition: ${misc.transitionDuration};
3498
+ }
3499
+
3500
+ ul {
3501
+ top: ${/*#__PURE__*/polished.rem('36px')};
3502
+ margin-left: ${/*#__PURE__*/polished.rem('-170px')};
3503
+ }
3504
+ }
3505
+
3506
+ @media ${device.s} {
3507
+ display: table-cell;
3508
+ height: ${/*#__PURE__*/polished.rem('50px')};
3509
+ padding: 0 ${/*#__PURE__*/polished.rem('15px')};
3510
+
3511
+ > div {
3512
+ position: relative;
3513
+ margin-left: 0;
3514
+ display: flex-start;
3515
+ justify-content: flex-start;
3516
+ text-align: left;
3517
+
3518
+ > span {
3519
+ display: inherit;
3520
+ }
3521
+ }
3522
+
3523
+ &:first-child {
3524
+ border-top: ${field.borderWidth} solid ${colors.grey200};
3525
+ }
3526
+
3527
+ &:before {
3528
+ content: '';
3529
+ }
3530
+
3531
+ &.tkai,
3532
+ &.vkai {
3533
+ max-width: ${/*#__PURE__*/polished.rem('100px')};
3534
+ }
3535
+
3536
+ .avatar-img {
3537
+ display: inherit;
3538
+ }
3539
+
3540
+ .tag {
3541
+ &:not(:first-child) {
3542
+ display: inherit;
3543
+ }
3544
+
3545
+ &:not(:last-child) {
3546
+ margin-right: ${/*#__PURE__*/polished.rem('5px')};
3547
+ }
3548
+ }
3549
+
3550
+ &.menu {
3551
+ width: ${/*#__PURE__*/polished.rem('40px')};
3552
+
3553
+ button {
3554
+ opacity: 0;
3555
+ }
3556
+ }
3557
+ }
3558
+ }
3559
+ }
3560
+ `;
3561
+ const SkeletonCell = styled__default.div`
3562
+ @keyframes placeholderSkeleton {
3563
+ 0% {
3564
+ background-position: ${/*#__PURE__*/polished.rem('-800px')} 0;
3565
+ }
3566
+ 100% {
3567
+ background-position: ${/*#__PURE__*/polished.rem('800px')} 0;
3568
+ }
3569
+ }
3570
+
3571
+ width: 100%;
3572
+ height: ${/*#__PURE__*/polished.rem('15px')} !important;
3573
+ background: #f6f7f8;
3574
+ background-image: -webkit-linear-gradient(
3575
+ left,
3576
+ #f6f7f8 0%,
3577
+ #edeef1 20%,
3578
+ #f6f7f8 40%,
3579
+ #f6f7f8 100%
3580
+ );
3581
+ background-repeat: no-repeat;
3582
+ background-size: ${/*#__PURE__*/polished.rem('800px')} 100%;
3583
+ animation-fill-mode: forwards;
3584
+ animation-name: placeholderSkeleton;
3585
+ animation-timing-function: linear;
3586
+ animation-iteration-count: infinite;
3587
+ animation-duration: 1.5s;
3588
+ `;
2560
3589
 
2561
3590
  const Table$1 = props => {
2562
3591
  const {
@@ -2642,6 +3671,12 @@ const Table$1 = props => {
2642
3671
  }) : className === 'vkai' ? /*#__PURE__*/React__default.createElement(Icon, {
2643
3672
  icon: "vkai",
2644
3673
  fill: "hsl(0, 0%, 16%)"
3674
+ }) : className === 'lx' ? /*#__PURE__*/React__default.createElement(Icon, {
3675
+ icon: "lx",
3676
+ fill: "hsl(0, 0%, 16%)"
3677
+ }) : className === 'vote' ? /*#__PURE__*/React__default.createElement(Icon, {
3678
+ icon: "vote",
3679
+ fill: "hsl(0, 0%, 16%)"
2645
3680
  }) : null))), hasActionMenu && /*#__PURE__*/React__default.createElement("td", {
2646
3681
  className: "menu",
2647
3682
  "data-testid": menuDataTestId
@@ -2666,17 +3701,298 @@ const Table$1 = props => {
2666
3701
  handleOptionClick: () => {
2667
3702
  setIsVisible(false);
2668
3703
  }
2669
- })));
2670
- };
3704
+ })));
3705
+ };
3706
+
3707
+ const Table$2 = styled__default.table`
3708
+ position: relative;
3709
+ width: 100%;
3710
+ border-width: ${props => props.border ? field.borderWidth : 0};
3711
+ border-style: solid;
3712
+ border-color: ${colors.grey200};
3713
+ border-radius: ${field.borderRadius};
3714
+ border-spacing: 0;
3715
+ white-space: nowrap;
3716
+ table-layout: ${props => props.layout};
3717
+
3718
+ th,
3719
+ td {
3720
+ height: ${/*#__PURE__*/polished.rem('50px')};
3721
+ padding: 0 ${/*#__PURE__*/polished.rem('15px')};
3722
+
3723
+ &.center {
3724
+ text-align: center;
3725
+
3726
+ > div {
3727
+ justify-content: center;
3728
+ }
3729
+ }
3730
+
3731
+ &.right {
3732
+ text-align: right;
3733
+
3734
+ > div {
3735
+ justify-content: flex-end;
3736
+ }
3737
+ }
3738
+
3739
+ &.thin {
3740
+ @media ${device.s} {
3741
+ max-width: min-content;
3742
+ }
3743
+ }
3744
+
3745
+ &.kai {
3746
+ text-align: right;
3747
+
3748
+ > div {
3749
+ justify-content: flex-end;
3750
+ }
3751
+ }
3752
+
3753
+ &.avatar > div {
3754
+ display: flex;
3755
+ align-items: center;
3756
+
3757
+ .avatar-img {
3758
+ margin-right: ${/*#__PURE__*/polished.rem('15px')};
3759
+ }
3760
+ }
3761
+ }
3762
+
3763
+ th {
3764
+ font-size: 0.85rem;
3765
+
3766
+ &:first-child {
3767
+ border-top-left-radius: ${field.borderRadius};
3768
+ }
3769
+
3770
+ &:last-child {
3771
+ border-top-right-radius: ${field.borderRadius};
3772
+ }
3773
+ }
3774
+
3775
+ tr {
3776
+ border: ${field.borderWidth} solid ${colors.grey200};
3777
+ border-radius: ${field.borderRadius};
3778
+ position: relative;
3779
+
3780
+ &:not(:last-child) {
3781
+ margin-bottom: ${/*#__PURE__*/polished.rem('15px')};
3782
+ }
3783
+
3784
+ @media ${device.s} {
3785
+ border: 0;
3786
+ }
3787
+ }
3788
+
3789
+ thead {
3790
+ border: none;
3791
+ clip: rect(0 0 0 0);
3792
+ height: ${/*#__PURE__*/polished.rem('1px')};
3793
+ margin: ${/*#__PURE__*/polished.rem('-1px')};
3794
+ overflow: hidden;
3795
+ padding: 0;
3796
+ position: absolute;
3797
+ width: ${/*#__PURE__*/polished.rem('1px')};
3798
+
3799
+ @media ${device.s} {
3800
+ display: contents;
3801
+ font-weight: ${typography.semiBold};
3802
+ color: ${colors.grey400};
3803
+ text-align: left;
3804
+ }
3805
+ }
3806
+
3807
+ tbody {
3808
+ tr {
3809
+ display: block;
3810
+ transition-duration: ${misc.transitionDuration};
3811
+
3812
+ &:hover {
3813
+ background-color: ${colors.grey50};
3814
+
3815
+ td {
3816
+ &.drag-handle {
3817
+ svg {
3818
+ fill: ${colors.grey200};
3819
+ }
3820
+ }
3821
+
3822
+ &.menu {
3823
+ button {
3824
+ opacity: 1;
3825
+ }
3826
+ }
3827
+ }
3828
+ }
3829
+
3830
+ @media ${device.s} {
3831
+ display: table-row;
3832
+ }
3833
+ }
3834
+
3835
+ td {
3836
+ border-top: ${field.borderWidth} solid ${colors.grey200};
3837
+ height: inherit;
3838
+ min-height: ${/*#__PURE__*/polished.rem('50px')};
3839
+ padding: ${/*#__PURE__*/polished.rem('15px')};
3840
+ display: flex;
3841
+ justify-content: flex-end;
3842
+
3843
+ &.drag-handle {
3844
+ > div {
3845
+ width: min-content;
3846
+ }
3847
+
3848
+ svg {
3849
+ width: ${/*#__PURE__*/polished.rem('30px')};
3850
+ height: ${/*#__PURE__*/polished.rem('30px')};
3851
+ fill: ${colors.grey200};
3852
+ transition-duration: ${misc.transitionDuration};
3853
+ }
3854
+ }
3855
+
3856
+ > div {
3857
+ margin-left: ${/*#__PURE__*/polished.rem('100px')};
3858
+ height: 100%;
3859
+ display: flex;
3860
+ justify-content: flex-end;
3861
+ align-items: center;
3862
+ flex-wrap: nowrap;
3863
+ text-align: right;
3864
+
3865
+ > span {
3866
+ display: none;
3867
+
3868
+ &:first-child,
3869
+ &:last-child {
3870
+ display: inherit;
3871
+ }
3872
+ }
3873
+ }
3874
+
3875
+ img {
3876
+ min-width: ${/*#__PURE__*/polished.rem('30px')};
3877
+ min-height: ${/*#__PURE__*/polished.rem('30px')};
3878
+ }
3879
+
3880
+ a {
3881
+ display: flex;
3882
+ align-items: center;
3883
+ color: ${colors.black};
3884
+ text-decoration-color: ${colors.grey400};
3885
+ }
3886
+
3887
+ &:first-child {
3888
+ border: 0;
3889
+ }
3890
+
3891
+ &:before {
3892
+ position: absolute;
3893
+ left: ${/*#__PURE__*/polished.rem('15px')};
3894
+ content: attr(data-label);
3895
+ font-weight: ${typography.semiBold};
3896
+ text-transform: capitalize;
3897
+ }
3898
+
3899
+ &.kai {
3900
+ svg {
3901
+ float: right;
3902
+ width: auto;
3903
+ min-width: ${/*#__PURE__*/polished.rem('20px')};
3904
+ max-height: ${/*#__PURE__*/polished.rem('20px')};
3905
+ }
3906
+ }
3907
+
3908
+ .avatar-img {
3909
+ display: none;
3910
+ }
3911
+
3912
+ .tag {
3913
+ margin: 0;
3914
+
3915
+ &:not(:first-child) {
3916
+ display: none;
3917
+ }
3918
+ }
3919
+
3920
+ &.menu {
3921
+ padding: 0 ${/*#__PURE__*/polished.rem('10px')} 0 0;
3922
+
3923
+ button {
3924
+ margin-top: ${/*#__PURE__*/polished.rem('5px')};
3925
+ transition: ${misc.transitionDuration};
3926
+ }
3927
+
3928
+ ul {
3929
+ top: ${/*#__PURE__*/polished.rem('36px')};
3930
+ margin-left: ${/*#__PURE__*/polished.rem('-170px')};
3931
+ }
3932
+ }
3933
+
3934
+ @media ${device.s} {
3935
+ display: table-cell;
3936
+ height: ${/*#__PURE__*/polished.rem('50px')};
3937
+ padding: 0 ${/*#__PURE__*/polished.rem('15px')};
3938
+ align-items: center;
3939
+
3940
+ > div {
3941
+ position: relative;
3942
+ margin-left: 0;
3943
+ display: flex-start;
3944
+ justify-content: flex-start;
3945
+ text-align: left;
2671
3946
 
2672
- const Table$2 = /*#__PURE__*/_styled__default.table.withConfig({
2673
- displayName: "styles__Table",
2674
- componentId: "sc-1p618q0-0"
2675
- })(["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-align:left;}}tbody{tr{display:block;transition-duration:", ";&: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:", ";}}> 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:", ";}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 ? field.borderWidth : 0, colors.grey200, field.borderRadius, props => props.layout, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('15px'), field.borderRadius, field.borderRadius, field.borderWidth, colors.grey200, field.borderRadius, /*#__PURE__*/polished.rem('15px'), device.s, /*#__PURE__*/polished.rem('1px'), /*#__PURE__*/polished.rem('-1px'), /*#__PURE__*/polished.rem('1px'), device.s, typography.semiBold, colors.grey400, misc.transitionDuration, colors.grey50, colors.grey200, device.s, field.borderWidth, colors.grey200, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('30px'), colors.grey200, misc.transitionDuration, /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('30px'), colors.black, colors.grey400, /*#__PURE__*/polished.rem('15px'), typography.semiBold, /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('20px'), /*#__PURE__*/polished.rem('10px'), /*#__PURE__*/polished.rem('5px'), misc.transitionDuration, /*#__PURE__*/polished.rem('36px'), /*#__PURE__*/polished.rem('-170px'), device.s, /*#__PURE__*/polished.rem('50px'), /*#__PURE__*/polished.rem('15px'), field.borderWidth, colors.grey200, /*#__PURE__*/polished.rem('100px'), /*#__PURE__*/polished.rem('5px'), /*#__PURE__*/polished.rem('40px'));
2676
- const TableRow = /*#__PURE__*/_styled__default.tr.withConfig({
2677
- displayName: "styles__TableRow",
2678
- componentId: "sc-1p618q0-1"
2679
- })(["&[data-rbd-draggable-id='", "']{position:absolute;display:table;width:100%;}"], props => props.draggableId);
3947
+ > span {
3948
+ display: inherit;
3949
+ }
3950
+ }
3951
+
3952
+ &:first-child {
3953
+ border-top: ${field.borderWidth} solid ${colors.grey200};
3954
+ }
3955
+
3956
+ &:before {
3957
+ content: '';
3958
+ }
3959
+
3960
+ &.kai {
3961
+ max-width: ${/*#__PURE__*/polished.rem('100px')};
3962
+ }
3963
+
3964
+ .avatar-img {
3965
+ display: inherit;
3966
+ }
3967
+
3968
+ .tag {
3969
+ &:not(:first-child) {
3970
+ display: inherit;
3971
+ }
3972
+
3973
+ &:not(:last-child) {
3974
+ margin-right: ${/*#__PURE__*/polished.rem('5px')};
3975
+ }
3976
+ }
3977
+
3978
+ &.menu {
3979
+ width: ${/*#__PURE__*/polished.rem('40px')};
3980
+
3981
+ button {
3982
+ opacity: 0;
3983
+ }
3984
+ }
3985
+ }
3986
+ }
3987
+ }
3988
+ `;
3989
+ const TableRow = styled__default.tr`
3990
+ &[data-rbd-draggable-id='${props => props.draggableId}'] {
3991
+ position: absolute;
3992
+ display: table;
3993
+ width: 100%;
3994
+ }
3995
+ `;
2680
3996
 
2681
3997
  const TableDnD = props => {
2682
3998
  const {
@@ -2827,10 +4143,22 @@ const TableDnD = props => {
2827
4143
  );
2828
4144
  };
2829
4145
 
2830
- const Wrapper$8 = /*#__PURE__*/_styled__default.div.withConfig({
2831
- displayName: "styles__Wrapper",
2832
- componentId: "sc-mbja2a-0"
2833
- })(["display:inline-block;> label{margin-bottom:", ";color:", ";span{color:", ";}}&:not(:last-child){margin-bottom:", ";}"], /*#__PURE__*/polished.rem('5px'), props => props.error ? field.errorBorderColor : colors.grey500, props => props.error ? field.errorBorderColor : field.color, /*#__PURE__*/polished.rem('15px'));
4146
+ const Wrapper$8 = styled__default.div`
4147
+ display: inline-block;
4148
+
4149
+ > label {
4150
+ margin-bottom: ${/*#__PURE__*/polished.rem('5px')};
4151
+ color: ${props => props.error ? field.errorBorderColor : colors.grey500};
4152
+
4153
+ span {
4154
+ color: ${props => props.error ? field.errorBorderColor : field.color};
4155
+ }
4156
+ }
4157
+
4158
+ &:not(:last-child) {
4159
+ margin-bottom: ${/*#__PURE__*/polished.rem('15px')};
4160
+ }
4161
+ `;
2834
4162
 
2835
4163
  const FormGroup = props => {
2836
4164
  const {
@@ -2847,18 +4175,81 @@ const FormGroup = props => {
2847
4175
  }), children);
2848
4176
  };
2849
4177
 
2850
- const Wrapper$9 = /*#__PURE__*/_styled__default.div.withConfig({
2851
- displayName: "styles__Wrapper",
2852
- componentId: "sc-124afcu-0"
2853
- })(["border:", " solid ", ";border-radius:", ";max-width:max-content;height:", ";display:flex;overflow:hidden;button,input{&:disabled{cursor:inherit;background-color:", ";svg{fill:", ";}&:hover{pointer-events:none;}}}"], field.borderWidth, field.borderColor, field.borderRadius, field.height, field.disabledBackgroundColor, field.disabledColor);
2854
- const Input = /*#__PURE__*/_styled__default.input.withConfig({
2855
- displayName: "styles__Input",
2856
- componentId: "sc-124afcu-1"
2857
- })(["border:0;width:", ";height:", ";padding:", ";font-family:inherit;font-size:", ";text-align:center;-moz-appearance:textfield;&::-webkit-outer-spin-button,&::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}&:focus{outline:none;}&:invalid{box-shadow:none;background-color:", ";}"], props => props.max != null && props.max.toString().length > 5 ? props.max.toString().length * 10 + 20 + 'px' : '70px', field.height, /*#__PURE__*/polished.rem('10px'), typography.defaultSize, field.errorBackgroundColor);
2858
- const Button$1 = /*#__PURE__*/_styled__default.button.withConfig({
2859
- displayName: "styles__Button",
2860
- componentId: "sc-124afcu-2"
2861
- })(["width:", ";height:", ";border:0;background-color:", ";cursor:pointer;transition-duration:", ";&.remove-button{border-right:", " solid ", ";}&.add-button{border-left:", " solid ", ";}svg{width:auto;height:", ";fill:", ";}&:hover{background-color:", ";}"], field.height, field.height, field.borderColor, misc.transitionDuration, field.borderWidth, field.borderColor, field.borderWidth, field.borderColor, /*#__PURE__*/polished.rem('20px'), colors.purple300, field.hoverBorderColor);
4178
+ const Wrapper$9 = styled__default.div`
4179
+ border: ${field.borderWidth} solid ${field.borderColor};
4180
+ border-radius: ${field.borderRadius};
4181
+ max-width: max-content;
4182
+ height: ${field.height};
4183
+ display: flex;
4184
+ overflow: hidden;
4185
+
4186
+ button,
4187
+ input {
4188
+ &:disabled {
4189
+ cursor: inherit;
4190
+ background-color: ${field.disabledBackgroundColor};
4191
+
4192
+ svg {
4193
+ fill: ${field.disabledColor};
4194
+ }
4195
+
4196
+ &:hover {
4197
+ pointer-events: none;
4198
+ }
4199
+ }
4200
+ }
4201
+ `;
4202
+ const Input = styled__default.input`
4203
+ border: 0;
4204
+ width: ${props => props.max != null && props.max.toString().length > 5 ? props.max.toString().length * 10 + 20 + 'px' : '70px'};
4205
+ height: ${field.height};
4206
+ padding: ${/*#__PURE__*/polished.rem('10px')};
4207
+ font-family: inherit;
4208
+ font-size: ${typography.defaultSize};
4209
+ text-align: center;
4210
+ -moz-appearance: textfield;
4211
+
4212
+ &::-webkit-outer-spin-button,
4213
+ &::-webkit-inner-spin-button {
4214
+ -webkit-appearance: none;
4215
+ margin: 0;
4216
+ }
4217
+
4218
+ &:focus {
4219
+ outline: none;
4220
+ }
4221
+
4222
+ &:invalid {
4223
+ box-shadow: none;
4224
+ background-color: ${field.errorBackgroundColor};
4225
+ }
4226
+ `;
4227
+ const Button$1 = styled__default.button`
4228
+ width: ${field.height};
4229
+ height: ${field.height};
4230
+ border: 0;
4231
+ background-color: ${field.borderColor};
4232
+ cursor: pointer;
4233
+ transition-duration: ${misc.transitionDuration};
4234
+
4235
+ &.remove-button {
4236
+ border-right: ${field.borderWidth} solid ${field.borderColor};
4237
+ }
4238
+
4239
+ &.add-button {
4240
+ border-left: ${field.borderWidth} solid ${field.borderColor};
4241
+ }
4242
+
4243
+ svg {
4244
+ width: auto;
4245
+ height: ${/*#__PURE__*/polished.rem('20px')};
4246
+ fill: ${colors.purple300};
4247
+ }
4248
+
4249
+ &:hover {
4250
+ background-color: ${field.hoverBorderColor};
4251
+ }
4252
+ `;
2862
4253
 
2863
4254
  const NumberInputSpinner = props => {
2864
4255
  const {
@@ -2919,14 +4310,91 @@ const NumberInputSpinner = props => {
2919
4310
  })));
2920
4311
  };
2921
4312
 
2922
- const Steps = /*#__PURE__*/_styled__default.ul.withConfig({
2923
- displayName: "styles__Steps",
2924
- componentId: "sc-1s2dhfy-0"
2925
- })(["margin:0;width:100%;padding:0;display:flex;"]);
2926
- const Step = /*#__PURE__*/_styled__default.li.withConfig({
2927
- displayName: "styles__Step",
2928
- componentId: "sc-1s2dhfy-1"
2929
- })(["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:", ";color:", ";@media ", "{width:100%;font-size:", ";font-weight:", ";}}}"], /*#__PURE__*/polished.rem('44px'), /*#__PURE__*/polished.rem('18px'), props => props.active ? field.successBackgroundColor : field.borderColor, /*#__PURE__*/polished.rem('22px'), /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.rem('-15px'), /*#__PURE__*/polished.rem('18px'), props => props.active ? field.successBackgroundColor : field.borderColor, field.borderRadius, field.borderRadius, field.borderRadius, field.borderRadius, props => props.active ? field.successBackgroundColor : field.borderColor, typography.fontSizeSm, props => props.active ? colors.white : colors.purple300, device.s, typography.defaultSize, typography.semiBold);
4313
+ const Steps = styled__default.ul`
4314
+ margin: 0;
4315
+ width: 100%;
4316
+ padding: 0;
4317
+ display: flex;
4318
+ `;
4319
+ const Step = styled__default.li`
4320
+ list-style: none;
4321
+ flex: 1;
4322
+ position: relative;
4323
+ height: ${/*#__PURE__*/polished.rem('44px')};
4324
+ display: flex;
4325
+ justify-content: center;
4326
+ align-items: center;
4327
+ padding-right: ${/*#__PURE__*/polished.rem('18px')};
4328
+ text-align: center;
4329
+
4330
+ &:before,
4331
+ &:after {
4332
+ content: '';
4333
+ position: absolute;
4334
+ top: 0;
4335
+ border: 0 solid
4336
+ ${props => props.active ? field.successBackgroundColor : field.borderColor};
4337
+ border-width: ${/*#__PURE__*/polished.rem('22px')} ${/*#__PURE__*/polished.rem('15px')};
4338
+ width: 0;
4339
+ height: 0;
4340
+ }
4341
+
4342
+ &:before {
4343
+ left: ${/*#__PURE__*/polished.rem('-15px')};
4344
+ border-left-color: transparent;
4345
+ }
4346
+
4347
+ &:after {
4348
+ left: calc(100% - ${/*#__PURE__*/polished.rem('18px')});
4349
+ border-color: transparent;
4350
+ border-left-color: ${props => props.active ? field.successBackgroundColor : field.borderColor};
4351
+ }
4352
+
4353
+ &:first-child:before {
4354
+ border: none;
4355
+ }
4356
+
4357
+ &:last-child:after {
4358
+ border: none;
4359
+ }
4360
+
4361
+ &:first-child {
4362
+ overflow: hidden;
4363
+
4364
+ > div {
4365
+ border-radius: ${field.borderRadius} 0 0 ${field.borderRadius};
4366
+ }
4367
+ }
4368
+
4369
+ &:last-child {
4370
+ padding-right: 0;
4371
+
4372
+ > div {
4373
+ border-radius: 0 ${field.borderRadius} ${field.borderRadius} 0;
4374
+ }
4375
+ }
4376
+
4377
+ > div {
4378
+ background-color: ${props => props.active ? field.successBackgroundColor : field.borderColor};
4379
+ width: 100%;
4380
+ height: 100%;
4381
+ display: flex;
4382
+ justify-content: center;
4383
+ align-items: center;
4384
+
4385
+ span {
4386
+ width: min-content;
4387
+ font-size: ${typography.fontSizeSm};
4388
+ color: ${props => props.active ? colors.white : colors.purple300};
4389
+
4390
+ @media ${device.s} {
4391
+ width: 100%;
4392
+ font-size: ${typography.defaultSize};
4393
+ font-weight: ${typography.semiBold};
4394
+ }
4395
+ }
4396
+ }
4397
+ `;
2930
4398
 
2931
4399
  const WizardSteps = props => {
2932
4400
  const {
@@ -2946,7 +4414,7 @@ const WizardSteps = props => {
2946
4414
  }, /*#__PURE__*/React__default.createElement("div", null, /*#__PURE__*/React__default.createElement("span", null, step.value))))));
2947
4415
  };
2948
4416
 
2949
- const PaginationWrapper = _styled__default.div`
4417
+ const PaginationWrapper = styled__default.div`
2950
4418
  --size: ${/*#__PURE__*/polished.rem('30px')};
2951
4419
 
2952
4420
  ul.pagination {
@@ -3072,7 +4540,7 @@ const PaginationControl = props => {
3072
4540
  }));
3073
4541
  };
3074
4542
 
3075
- const Wrapper$a = _styled__default.div`
4543
+ const Wrapper$a = styled__default.div`
3076
4544
  min-height: ${props => props.variant === 'default' ? '50vh' : 'inherit'};
3077
4545
  display: flex;
3078
4546
  flex-direction: column;
@@ -3115,7 +4583,7 @@ const Error = props => {
3115
4583
  }) : /*#__PURE__*/React__default.createElement("span", null, "\xAF\\\\_(\u30C4)_/\xAF"), value && /*#__PURE__*/React__default.createElement("span", null, value));
3116
4584
  };
3117
4585
 
3118
- const Wrapper$b = _styled__default.div`
4586
+ const Wrapper$b = styled__default.div`
3119
4587
  min-height: 50vh;
3120
4588
  display: flex;
3121
4589
  flex-direction: column;
@@ -5102,7 +6570,7 @@ const DataWarning = props => {
5102
6570
  }, icon, /*#__PURE__*/React__default.createElement("div", null, children));
5103
6571
  };
5104
6572
 
5105
- const Wrapper$c = _styled__default.ul`
6573
+ const Wrapper$c = styled__default.ul`
5106
6574
  display: flex;
5107
6575
  flex-direction: ${props => props.type === 'column' ? 'column' : 'row'};
5108
6576
  position: relative;
@@ -5112,11 +6580,11 @@ const Wrapper$c = _styled__default.ul`
5112
6580
 
5113
6581
  li {
5114
6582
  &:not(:last-child) {
5115
- ${props => props.type === 'row' && _styled.css`
6583
+ ${props => props.type === 'row' && styled.css`
5116
6584
  margin-right: ${polished.rem('30px')};
5117
6585
  `}
5118
6586
 
5119
- ${props => props.type === 'column' && _styled.css`
6587
+ ${props => props.type === 'column' && styled.css`
5120
6588
  margin-bottom: ${polished.rem('10px')};
5121
6589
  `}
5122
6590
  }
@@ -5134,7 +6602,7 @@ const Wrapper$c = _styled__default.ul`
5134
6602
  margin-top: ${/*#__PURE__*/polished.rem('10px')};
5135
6603
  }
5136
6604
  `;
5137
- const Item = _styled__default.li`
6605
+ const Item = styled__default.li`
5138
6606
  --size: ${/*#__PURE__*/polished.rem('24px')};
5139
6607
  display: flex;
5140
6608
  position: relative;
@@ -5181,7 +6649,7 @@ const Item = _styled__default.li`
5181
6649
  border-color: ${field.hoverBorderColor};
5182
6650
  }
5183
6651
 
5184
- ${props => props.disabled && _styled.css`
6652
+ ${props => props.disabled && styled.css`
5185
6653
  label {
5186
6654
  color: ${field.disabledColor};
5187
6655
  }
@@ -5242,7 +6710,7 @@ const RadioGroup = props => {
5242
6710
  }) : null);
5243
6711
  };
5244
6712
 
5245
- const Wrapper$d = _styled__default.ul`
6713
+ const Wrapper$d = styled__default.ul`
5246
6714
  display: flex;
5247
6715
  flex-direction: ${props => props.type === 'column' ? 'column' : 'row'};
5248
6716
  position: relative;
@@ -5255,11 +6723,11 @@ const Wrapper$d = _styled__default.ul`
5255
6723
  min-height: ${/*#__PURE__*/polished.rem('24px')};
5256
6724
 
5257
6725
  &:not(:last-child) {
5258
- ${props => props.type === 'row' && _styled.css`
6726
+ ${props => props.type === 'row' && styled.css`
5259
6727
  margin-right: ${polished.rem('30px')};
5260
6728
  `}
5261
6729
 
5262
- ${props => props.type === 'column' && _styled.css`
6730
+ ${props => props.type === 'column' && styled.css`
5263
6731
  margin-bottom: ${polished.rem('10px')};
5264
6732
  `}
5265
6733
  }
@@ -5296,12 +6764,12 @@ const CheckboxGroup = props => {
5296
6764
  }) : null);
5297
6765
  };
5298
6766
 
5299
- const Wrapper$e = _styled__default.div`
6767
+ const Wrapper$e = styled__default.div`
5300
6768
  label {
5301
6769
  margin-bottom: ${/*#__PURE__*/polished.rem('5px')};
5302
6770
  }
5303
6771
  `;
5304
- const Field = _styled__default.div`
6772
+ const Field = styled__default.div`
5305
6773
  display: flex;
5306
6774
  flex-wrap: wrap;
5307
6775
 
@@ -5483,22 +6951,88 @@ function HorizontalNav(props) {
5483
6951
  }));
5484
6952
  }
5485
6953
 
5486
- const ModalOverlay = /*#__PURE__*/_styled__default.div.withConfig({
5487
- displayName: "styles__ModalOverlay",
5488
- componentId: "sc-16r6vcc-0"
5489
- })(["position:fixed;top:0;left:0;background-color:", ";width:100vw;height:100vh;z-index:", ";"], /*#__PURE__*/polished.rgba(colors.black, 0.8), props => props.zIndex ? props.zIndex : 10);
5490
- const ModalWrapper = /*#__PURE__*/_styled__default.div.withConfig({
5491
- displayName: "styles__ModalWrapper",
5492
- componentId: "sc-16r6vcc-1"
5493
- })(["position:fixed;top:0;left:0;width:100%;height:100vh;z-index:", ";overflow-x:hidden;overflow-y:auto;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;@media ", "{display:flex;justify-content:center;align-items:", ";}"], props => props.zIndex + 1, device.s, props => props.modalOverflow ? 'flex-start' : 'center');
5494
- const ModalContainer = /*#__PURE__*/_styled__default.div.withConfig({
5495
- displayName: "styles__ModalContainer",
5496
- componentId: "sc-16r6vcc-2"
5497
- })(["position:relative;background:", ";width:100%;min-height:0;padding:", ";word-wrap:break-word;transition-duration:", ";@media ", "{--spacing:", ";margin:var(--spacing);border-radius:", ";max-width:", ";padding:var(--spacing);&:after{content:'';position:absolute;bottom:calc(var(--spacing) * -1);width:", ";height:var(--spacing);}}"], colors.white, /*#__PURE__*/polished.rem('15px'), misc.transitionDuration, device.s, /*#__PURE__*/polished.rem('30px'), field.borderRadius, /*#__PURE__*/polished.rem('860px'), /*#__PURE__*/polished.rem('1px'));
5498
- const ModalHeader = /*#__PURE__*/_styled__default.div.withConfig({
5499
- displayName: "styles__ModalHeader",
5500
- componentId: "sc-16r6vcc-3"
5501
- })(["display:flex;h2{margin:0 0 ", " 0;font-size:", ";font-weight:", ";}button{display:none;position:absolute;top:0;right:0;margin:", " ", " 0 0;border:", " solid ", ";min-width:", ";height:", ";z-index:1;outline:none;@media ", "{display:inherit;}}"], /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('32px'), typography.semiBold, /*#__PURE__*/polished.rem('-14px'), /*#__PURE__*/polished.rem('-14px'), /*#__PURE__*/polished.rem('2px'), colors.grey200, /*#__PURE__*/polished.rem('28px'), /*#__PURE__*/polished.rem('28px'), device.s);
6954
+ const ModalOverlay = styled__default.div`
6955
+ position: fixed;
6956
+ top: 0;
6957
+ left: 0;
6958
+ background-color: ${/*#__PURE__*/polished.rgba(colors.black, 0.8)};
6959
+ width: 100vw;
6960
+ height: 100vh;
6961
+ z-index: ${props => props.zIndex ? props.zIndex : 10};
6962
+ `;
6963
+ const ModalWrapper = styled__default.div`
6964
+ position: fixed;
6965
+ top: 0;
6966
+ left: 0;
6967
+ width: 100%;
6968
+ height: 100vh;
6969
+ z-index: ${props => props.zIndex + 1};
6970
+ overflow-x: hidden;
6971
+ overflow-y: auto;
6972
+ -webkit-scrollbar-width: none;
6973
+ -moz-scrollbar-width: none;
6974
+ -ms-scrollbar-width: none;
6975
+ scrollbar-width: none;
6976
+ -webkit-overflow-scrolling: touch;
6977
+ -ms-overflow-style: -ms-autohiding-scrollbar;
6978
+
6979
+ @media ${device.s} {
6980
+ display: flex;
6981
+ justify-content: center;
6982
+ align-items: ${props => props.modalOverflow ? 'flex-start' : 'center'};
6983
+ }
6984
+ `;
6985
+ const ModalContainer = styled__default.div`
6986
+ position: relative;
6987
+ background: ${colors.white};
6988
+ width: 100%;
6989
+ min-height: 0;
6990
+ padding: ${/*#__PURE__*/polished.rem('15px')};
6991
+ word-wrap: break-word;
6992
+ transition-duration: ${misc.transitionDuration};
6993
+
6994
+ @media ${device.s} {
6995
+ --spacing: ${/*#__PURE__*/polished.rem('30px')};
6996
+ margin: var(--spacing);
6997
+ border-radius: ${field.borderRadius};
6998
+ max-width: ${/*#__PURE__*/polished.rem('860px')};
6999
+ padding: var(--spacing);
7000
+
7001
+ &:after {
7002
+ content: '';
7003
+ position: absolute;
7004
+ bottom: calc(var(--spacing) * -1);
7005
+ width: ${/*#__PURE__*/polished.rem('1px')};
7006
+ height: var(--spacing);
7007
+ }
7008
+ }
7009
+ `;
7010
+ const ModalHeader = styled__default.div`
7011
+ display: flex;
7012
+
7013
+ h2 {
7014
+ margin: 0 0 ${/*#__PURE__*/polished.rem('30px')} 0;
7015
+ font-size: ${/*#__PURE__*/polished.rem('32px')};
7016
+ font-weight: ${typography.semiBold};
7017
+ }
7018
+
7019
+ button {
7020
+ display: none;
7021
+ position: absolute;
7022
+ top: 0;
7023
+ right: 0;
7024
+ margin: ${/*#__PURE__*/polished.rem('-14px')} ${/*#__PURE__*/polished.rem('-14px')} 0 0;
7025
+ border: ${/*#__PURE__*/polished.rem('2px')} solid ${colors.grey200};
7026
+ min-width: ${/*#__PURE__*/polished.rem('28px')};
7027
+ height: ${/*#__PURE__*/polished.rem('28px')};
7028
+ z-index: 1;
7029
+ outline: none;
7030
+
7031
+ @media ${device.s} {
7032
+ display: inherit;
7033
+ }
7034
+ }
7035
+ `;
5502
7036
 
5503
7037
  const Modal = props => {
5504
7038
  const {
@@ -5549,35 +7083,72 @@ const Modal = props => {
5549
7083
  })))), document.body)) : /*#__PURE__*/React__default.createElement(React__default.Fragment, null);
5550
7084
  };
5551
7085
 
5552
- const slideInLeft = _styled.keyframes`
5553
- from {
5554
- transform: translateX(100%);
7086
+ const ModalOverlay$1 = styled__default.div`
7087
+ position: fixed;
7088
+ top: 0;
7089
+ left: 0;
7090
+ background-color: ${/*#__PURE__*/polished.rgba(colors.black, 0.8)};
7091
+ width: 100vw;
7092
+ height: 100vh;
7093
+ z-index: ${props => props.zIndex ? props.zIndex : 10};
7094
+ `;
7095
+ const ModalWrapper$1 = styled__default.div`
7096
+ position: fixed;
7097
+ top: 0;
7098
+ left: 0;
7099
+ width: 100%;
7100
+ height: 100%;
7101
+ overflow-x: hidden;
7102
+ overflow-y: auto;
7103
+ z-index: ${props => props.zIndex + 1};
7104
+ `;
7105
+ const ModalContainer$1 = styled__default.div`
7106
+ @keyframes slideInLeft {
7107
+ from {
7108
+ transform: translateX(100%);
7109
+ }
7110
+
7111
+ to {
7112
+ transform: translateX(0);
7113
+ }
7114
+ }
7115
+
7116
+ margin-left: auto;
7117
+ background: ${colors.white};
7118
+ width: 100%;
7119
+ min-height: 100vh;
7120
+ display: flex;
7121
+ flex-direction: column;
7122
+ padding: ${/*#__PURE__*/polished.rem('15px')};
7123
+ word-wrap: break-word;
7124
+ animation-timing-function: ${/*#__PURE__*/polished.timingFunctions('easeOutQuint')};
7125
+ animation-duration: 1s;
7126
+ animation-fill-mode: forwards;
7127
+ transform: translateX(100%);
7128
+ animation-name: slideInLeft;
7129
+
7130
+ @media ${device.s} {
7131
+ max-width: ${/*#__PURE__*/polished.rem('400px')};
7132
+ padding: ${/*#__PURE__*/polished.rem('30px')};
7133
+ }
7134
+ `;
7135
+ const ModalHeader$1 = styled__default.div`
7136
+ top: 0;
7137
+
7138
+ h2 {
7139
+ margin: 0 0 ${/*#__PURE__*/polished.rem('30px')} 0;
7140
+ font-size: ${/*#__PURE__*/polished.rem('32px')};
7141
+ font-weight: ${typography.semiBold};
5555
7142
  }
7143
+ `;
7144
+ const ModalContent = styled__default.div`
7145
+ display: flex;
7146
+ flex-direction: column;
5556
7147
 
5557
- to {
5558
- transform: translateX(0);
7148
+ @media ${device.s} {
7149
+ flex: 1;
5559
7150
  }
5560
7151
  `;
5561
- const ModalOverlay$1 = /*#__PURE__*/_styled__default.div.withConfig({
5562
- displayName: "styles__ModalOverlay",
5563
- componentId: "sc-46huls-0"
5564
- })(["position:fixed;top:0;left:0;background-color:", ";width:100vw;height:100vh;z-index:", ";"], /*#__PURE__*/polished.rgba(colors.black, 0.8), props => props.zIndex ? props.zIndex : 10);
5565
- const ModalWrapper$1 = /*#__PURE__*/_styled__default.div.withConfig({
5566
- displayName: "styles__ModalWrapper",
5567
- componentId: "sc-46huls-1"
5568
- })(["position:fixed;top:0;left:0;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;z-index:", ";"], props => props.zIndex + 1);
5569
- const ModalContainer$1 = /*#__PURE__*/_styled__default.div.withConfig({
5570
- displayName: "styles__ModalContainer",
5571
- componentId: "sc-46huls-2"
5572
- })(["margin-left:auto;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:translateX(100%);animation-name:", ";@media ", "{max-width:", ";padding:", ";}"], colors.white, /*#__PURE__*/polished.rem('15px'), /*#__PURE__*/polished.timingFunctions('easeOutQuint'), slideInLeft, device.s, /*#__PURE__*/polished.rem('400px'), /*#__PURE__*/polished.rem('30px'));
5573
- const ModalHeader$1 = /*#__PURE__*/_styled__default.div.withConfig({
5574
- displayName: "styles__ModalHeader",
5575
- componentId: "sc-46huls-3"
5576
- })(["top:0;h2{margin:0 0 ", " 0;font-size:", ";font-weight:", ";}"], /*#__PURE__*/polished.rem('30px'), /*#__PURE__*/polished.rem('32px'), typography.semiBold);
5577
- const ModalContent = /*#__PURE__*/_styled__default.div.withConfig({
5578
- displayName: "styles__ModalContent",
5579
- componentId: "sc-46huls-4"
5580
- })(["display:flex;flex-direction:column;@media ", "{flex:1;}"], device.s);
5581
7152
 
5582
7153
  const ModalDrawer = props => {
5583
7154
  const {
@@ -5630,7 +7201,7 @@ const ModalDrawer = props => {
5630
7201
  }))))), document.body)) : /*#__PURE__*/React__default.createElement(React__default.Fragment, null);
5631
7202
  };
5632
7203
 
5633
- const Wrapper$f = _styled__default.div`
7204
+ const Wrapper$f = styled__default.div`
5634
7205
  div {
5635
7206
  width: 100%;
5636
7207
  height: 100%;
@@ -5725,7 +7296,7 @@ const Wrapper$f = _styled__default.div`
5725
7296
  }
5726
7297
  }
5727
7298
  `;
5728
- const Grid = _styled__default.div`
7299
+ const Grid = styled__default.div`
5729
7300
  display: grid;
5730
7301
  grid-template-columns: repeat(auto-fill, ${/*#__PURE__*/polished.rem('300px')});
5731
7302
  grid-gap: ${/*#__PURE__*/polished.rem('15px')};
@@ -5798,7 +7369,7 @@ const LoadingState = props => {
5798
7369
  }, loadingType);
5799
7370
  };
5800
7371
 
5801
- const Wrapper$g = _styled__default.div`
7372
+ const Wrapper$g = styled__default.div`
5802
7373
  .tab {
5803
7374
  border-color: ${field.borderColor};
5804
7375
 
@@ -5986,16 +7557,16 @@ const TabsPanel = props => {
5986
7557
  }));
5987
7558
  };
5988
7559
 
5989
- const Wrapper$h = _styled__default.div`
7560
+ const Wrapper$h = styled__default.div`
5990
7561
  display: flex;
5991
7562
  flex-direction: column;
5992
7563
  `;
5993
- const GridRow = _styled__default.div`
7564
+ const GridRow = styled__default.div`
5994
7565
  @media ${device.m} {
5995
7566
  display: flex;
5996
7567
  }
5997
7568
  `;
5998
- const GridCol = _styled__default.div`
7569
+ const GridCol = styled__default.div`
5999
7570
  @media ${device.m} {
6000
7571
  flex: ${props => props.size};
6001
7572
  }