@taikai/rocket-kit 2.0.0-beta.9 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atoms/button/types.d.ts +1 -1
- package/dist/atoms/tag/types.d.ts +1 -1
- package/dist/ions/variables.d.ts +1 -0
- package/dist/rocket-kit.cjs.development.js +88 -66
- package/dist/rocket-kit.cjs.development.js.map +1 -1
- package/dist/rocket-kit.cjs.production.min.js +219 -209
- package/dist/rocket-kit.cjs.production.min.js.map +1 -1
- package/dist/rocket-kit.esm.js +88 -66
- package/dist/rocket-kit.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/rocket-kit.esm.js
CHANGED
|
@@ -16,6 +16,7 @@ const colors = {
|
|
|
16
16
|
normal: '#000000',
|
|
17
17
|
light: '#ffffff',
|
|
18
18
|
blue: '#4250e4',
|
|
19
|
+
darkBlue: '#1825AD',
|
|
19
20
|
orange: '#ff6a2c',
|
|
20
21
|
darkOrange: /*#__PURE__*/darken(0.2, '#ff6a2c'),
|
|
21
22
|
red: '#ef5766',
|
|
@@ -123,10 +124,13 @@ const {
|
|
|
123
124
|
red,
|
|
124
125
|
darkRed,
|
|
125
126
|
purple,
|
|
126
|
-
darkPurple
|
|
127
|
+
darkPurple,
|
|
128
|
+
blue,
|
|
129
|
+
darkBlue
|
|
127
130
|
} = colors;
|
|
128
131
|
const {
|
|
129
|
-
bold
|
|
132
|
+
bold,
|
|
133
|
+
medium
|
|
130
134
|
} = fontWeight;
|
|
131
135
|
const pulseKeyframes = keyframes`
|
|
132
136
|
0% {
|
|
@@ -142,7 +146,7 @@ const pulseKeyframes = keyframes`
|
|
|
142
146
|
const ButtonWrapper = /*#__PURE__*/_styled.button.withConfig({
|
|
143
147
|
displayName: "styles__ButtonWrapper",
|
|
144
148
|
componentId: "baestp-0"
|
|
145
|
-
})(["--button:", ";--txt:", ";--hover:", ";", " ", " ", " ", " ", " ", " ", " ", " ", " border-width:", ";border-style:solid;border-color:var(--button);border-radius:", ";background-color:", ";width:", ";height:", ";display:flex;justify-content:center;align-items:center;padding:", ";text-transform:uppercase;white-space:nowrap;transition-duration:0.3s;cursor:pointer;@media ", "{min-width:", ";}&:hover{border-color:", ";background-color:", ";span{color:", ";}svg{fill:", ";}}&:disabled{cursor:inherit;opacity:0.5;&:hover{pointer-events:none;}}> *:not(:last-child){margin-left:", ";margin-right:", ";}.spinner{border-top-color:", ";}span{position:relative;font-size:0.75rem;font-weight:", ";color:", ";pointer-events:none;transition-duration:0.3s;order:", ";}svg{order:", ";width:auto;min-width:", ";height:", ";fill:", ";transition:0.3s;}", ""], green, light, darkGreen, props => props.color === 'green' && css`
|
|
149
|
+
})(["--button:", ";--txt:", ";--hover:", ";", " ", " ", " ", " ", " ", " ", " ", " ", " ", " border-width:", ";border-style:solid;border-color:var(--button);border-radius:", ";background-color:", ";width:", ";height:", ";display:flex;justify-content:center;align-items:center;padding:", ";text-transform:uppercase;white-space:nowrap;transition-duration:0.3s;cursor:pointer;@media ", "{min-width:", ";}&:hover{border-color:", ";background-color:", ";span{color:", ";}svg{fill:", ";}}&:disabled{cursor:inherit;opacity:0.5;&:hover{pointer-events:none;}}> *:not(:last-child){margin-left:", ";margin-right:", ";}.spinner{border-top-color:", ";}span{position:relative;font-size:0.75rem;font-weight:", ";letter-spacing:1px;color:", ";pointer-events:none;transition-duration:0.3s;order:", ";}svg{order:", ";width:auto;min-width:", ";height:", ";fill:", ";transition:0.3s;}", ""], green, light, darkGreen, props => props.color === 'green' && css`
|
|
146
150
|
--button: ${green};
|
|
147
151
|
--hover: ${darkGreen};
|
|
148
152
|
`, props => props.color === 'orange' && css`
|
|
@@ -154,6 +158,9 @@ const ButtonWrapper = /*#__PURE__*/_styled.button.withConfig({
|
|
|
154
158
|
`, props => props.color === 'grey' && css`
|
|
155
159
|
--button: ${grey$1};
|
|
156
160
|
--hover: ${darkGrey};
|
|
161
|
+
`, props => props.color === 'blue' && css`
|
|
162
|
+
--button: ${blue};
|
|
163
|
+
--hover: ${darkBlue};
|
|
157
164
|
`, props => props.color === 'purple' && css`
|
|
158
165
|
--button: ${purple};
|
|
159
166
|
--hover: ${darkPurple};
|
|
@@ -171,7 +178,7 @@ const ButtonWrapper = /*#__PURE__*/_styled.button.withConfig({
|
|
|
171
178
|
`, props => props.color === 'magic' && css`
|
|
172
179
|
--button: ${light};
|
|
173
180
|
--hover: ${lightGrey};
|
|
174
|
-
`, props => props.variant === 'outline' ? '3px' : 0, props => props.variant === 'text' ? 0 : '999px', props => props.variant === 'solid' ? 'var(--button)' : 'transparent', props => props.value ? props.circle ? rem('36px') : 'min-content' : rem('36px'), /*#__PURE__*/rem('
|
|
181
|
+
`, props => props.variant === 'outline' ? '3px' : 0, props => props.variant === 'text' ? 0 : '999px', props => props.variant === 'solid' ? 'var(--button)' : 'transparent', props => props.value ? props.circle ? rem('36px') : 'min-content' : rem('36px'), /*#__PURE__*/rem('32px'), props => props.value ? props.circle ? 0 : `0 ${rem('20px')}` : 0, device.l, props => props.value ? rem('100px') : rem('36px'), 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' ? '5px' : 0, props => props.iconPosition === 'left' ? '5px' : 0, props => props.variant === 'solid' ? '' : 'var(--button)', medium, props => props.variant === 'solid' ? 'var(--txt)' : 'var(--button)', props => props.iconPosition === 'left' ? 2 : 1, props => props.iconPosition === 'left' ? 1 : 2, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), props => props.variant === 'solid' ? 'var(--txt)' : 'var(--button)', props => props.color === 'magic' && css`
|
|
175
182
|
position: relative;
|
|
176
183
|
background-image: linear-gradient(to bottom right, #ef5867, #5031a8);
|
|
177
184
|
height: ${rem('60px')};
|
|
@@ -354,15 +361,18 @@ const {
|
|
|
354
361
|
red: red$1,
|
|
355
362
|
darkRed: darkRed$1,
|
|
356
363
|
purple: purple$1,
|
|
357
|
-
darkPurple: darkPurple$1
|
|
364
|
+
darkPurple: darkPurple$1,
|
|
365
|
+
blue: blue$1,
|
|
366
|
+
darkBlue: darkBlue$1
|
|
358
367
|
} = colors;
|
|
359
368
|
const {
|
|
360
|
-
bold: bold$1
|
|
369
|
+
bold: bold$1,
|
|
370
|
+
medium: medium$1
|
|
361
371
|
} = fontWeight;
|
|
362
372
|
const ButtonLinkStyle = /*#__PURE__*/_styled.a.withConfig({
|
|
363
373
|
displayName: "styles__ButtonLinkStyle",
|
|
364
374
|
componentId: "clge7v-0"
|
|
365
|
-
})(["--button:", ";--txt:", ";--hover:", ";", " ", " ", " ", " ", " ", " ", " ", " ", " border-width:", ";border-style:solid;border-color:var(--button);border-radius:", ";background-color:", ";width:min-content;min-width:", ";height:", ";display:flex;justify-content:center;align-items:center;padding:", ";text-transform:uppercase;white-space:nowrap;text-decoration:none;transition-duration:0.3s;cursor:pointer;@media ", "{min-width:", ";}&:hover{border-color:", ";background-color:", ";span{color:", ";}svg{fill:", ";}}> *:not(:last-child){margin-left:", ";margin-right:", ";}span{position:relative;font-size:0.75rem;font-weight:", ";color:", ";pointer-events:none;transition-duration:0.3s;order:", ";}svg{order:", ";width:auto;min-width:", ";height:", ";fill:", ";transition:0.3s;}", ""], green$1, light$2, darkGreen$1, props => props.color === 'green' && css`
|
|
375
|
+
})(["--button:", ";--txt:", ";--hover:", ";", " ", " ", " ", " ", " ", " ", " ", " ", " ", " border-width:", ";border-style:solid;border-color:var(--button);border-radius:", ";background-color:", ";width:min-content;min-width:", ";height:", ";display:flex;justify-content:center;align-items:center;padding:", ";text-transform:uppercase;white-space:nowrap;text-decoration:none;transition-duration:0.3s;cursor:pointer;@media ", "{min-width:", ";}&:hover{border-color:", ";background-color:", ";span{color:", ";}svg{fill:", ";}}> *:not(:last-child){margin-left:", ";margin-right:", ";}span{position:relative;font-size:0.75rem;font-weight:", ";letter-spacing:1px;color:", ";pointer-events:none;transition-duration:0.3s;order:", ";}svg{order:", ";width:auto;min-width:", ";height:", ";fill:", ";transition:0.3s;}", ""], green$1, light$2, darkGreen$1, props => props.color === 'green' && css`
|
|
366
376
|
--button: ${green$1};
|
|
367
377
|
--hover: ${darkGreen$1};
|
|
368
378
|
`, props => props.color === 'orange' && css`
|
|
@@ -384,6 +394,9 @@ const ButtonLinkStyle = /*#__PURE__*/_styled.a.withConfig({
|
|
|
384
394
|
`, props => props.color === 'dark' && css`
|
|
385
395
|
--button: ${normal$2};
|
|
386
396
|
--hover: ${darkGrey$1};
|
|
397
|
+
`, props => props.color === 'blue' && css`
|
|
398
|
+
--button: ${blue$1};
|
|
399
|
+
--hover: ${darkBlue$1};
|
|
387
400
|
`, props => props.color === 'pulse' && css`
|
|
388
401
|
--button: ${red$1};
|
|
389
402
|
--hover: ${darkRed$1};
|
|
@@ -391,7 +404,7 @@ const ButtonLinkStyle = /*#__PURE__*/_styled.a.withConfig({
|
|
|
391
404
|
`, props => props.color === 'magic' && css`
|
|
392
405
|
--button: ${light$2};
|
|
393
406
|
--hover: ${lightGrey$2};
|
|
394
|
-
`, props => props.variant === 'outline' ? '3px' : 0, props => props.variant === 'text' ? 0 : '999px', props => props.variant === 'solid' ? 'var(--button)' : 'transparent', props => props.value ? rem('80px') : rem('36px'), /*#__PURE__*/rem('
|
|
407
|
+
`, props => props.variant === 'outline' ? '3px' : 0, props => props.variant === 'text' ? 0 : '999px', props => props.variant === 'solid' ? 'var(--button)' : 'transparent', props => props.value ? rem('80px') : rem('36px'), /*#__PURE__*/rem('32px'), props => props.value ? `0 ${rem('20px')}` : 0, device.l, props => props.value ? rem('100px') : rem('36px'), 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' ? '5px' : 0, props => props.iconPosition === 'left' ? '5px' : 0, medium$1, props => props.variant === 'solid' ? 'var(--txt)' : 'var(--button)', props => props.iconPosition === 'left' ? 2 : 1, props => props.iconPosition === 'left' ? 1 : 2, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), props => props.variant === 'solid' ? 'var(--txt)' : 'var(--button)', props => props.color === 'magic' && css`
|
|
395
408
|
position: relative;
|
|
396
409
|
background-image: linear-gradient(to bottom right, #ef5867, #5031a8);
|
|
397
410
|
height: ${rem('60px')};
|
|
@@ -753,7 +766,8 @@ const icons = {
|
|
|
753
766
|
"ledger": 'M3 21.0526V27.4139H12.6806V26.0048H4.4172V21.0526H3ZM3 5.00808V11.3532H4.4172V6.40912H12.6887V5L3 5.00808Z M29 21.0526V27.4139H19.3167V26.0048H27.5882V21.0526H29ZM29 5.00808V11.3532H27.5882V6.40912H19.3167V5L29 5.00808Z M14.1841 11.3612H12.7749V21.0445H19.1362V19.7728H14.1841V11.3612Z',
|
|
754
767
|
"moonbeam": 'M21.142 5.645c2.964 1.257 4.94 4.356 4.715 7.499-5.299 0-10.598 0.045-15.896-0.045 0-2.111 0.718-4.266 2.245-5.748 2.245-2.29 5.972-3.009 8.936-1.706z M20.917 25.852c0.314 0 0.584 0.18 0.584 0.404s-0.27 0.404-0.584 0.404h-8.532c-0.314 0-0.584-0.18-0.584-0.404s0.269-0.404 0.584-0.404h8.532z M10.544 26.661c0.322 0 0.584-0.261 0.584-0.584s-0.261-0.584-0.584-0.584c-0.322 0-0.584 0.261-0.584 0.584s0.261 0.584 0.584 0.584z M15.663 24.505c0.322 0 0.584-0.261 0.584-0.584s-0.261-0.584-0.584-0.584c-0.322 0-0.584 0.261-0.584 0.584s0.261 0.584 0.584 0.584z M25.677 23.338c0.314 0 0.584 0.269 0.584 0.584s-0.269 0.584-0.584 0.584h-8.352c-0.314 0-0.584-0.269-0.584-0.584s0.27-0.584 0.584-0.584h8.352z M4.706 22.35c0.322 0 0.584-0.261 0.584-0.584s-0.261-0.584-0.584-0.584c-0.322 0-0.584 0.261-0.584 0.584s0.261 0.584 0.584 0.584z M13.014 21.182c0.314 0 0.584 0.27 0.584 0.584s-0.27 0.584-0.584 0.584h-6.87c-0.314 0-0.584-0.27-0.584-0.584s0.269-0.584 0.584-0.584h6.87z M28.416 21.182c0.314 0 0.584 0.27 0.584 0.584s-0.269 0.584-0.584 0.584h-13.651c-0.314 0-0.584-0.27-0.584-0.584s0.269-0.584 0.584-0.584h13.651z M25.857 19.027c0.314 0 0.584 0.27 0.584 0.584s-0.269 0.584-0.584 0.584h-16.75c-0.314 0-0.584-0.27-0.584-0.584s0.269-0.584 0.584-0.584h16.75z M7.266 20.195c0.322 0 0.584-0.261 0.584-0.584s-0.261-0.584-0.584-0.584c-0.322 0-0.584 0.261-0.584 0.584s0.261 0.584 0.584 0.584z M22.354 16.916c0.314 0 0.584 0.269 0.584 0.584s-0.269 0.584-0.584 0.584h-16.75c-0.314 0-0.584-0.269-0.584-0.584s0.269-0.584 0.584-0.584h16.75z M3.584 18.084c0.322 0 0.584-0.261 0.584-0.584s-0.261-0.584-0.584-0.584c-0.322 0-0.584 0.261-0.584 0.584s0.261 0.584 0.584 0.584z M7.266 15.929c0.322 0 0.584-0.261 0.584-0.584s-0.261-0.584-0.584-0.584c-0.322 0-0.584 0.261-0.584 0.584s0.261 0.584 0.584 0.584z M27.473 14.761c0.314 0 0.584 0.27 0.584 0.584s-0.269 0.584-0.584 0.584h-18.231c-0.314 0-0.584-0.27-0.584-0.584s0.269-0.584 0.584-0.584h18.231z',
|
|
755
768
|
"solidity": 'M20.535 3l4.177 7.429h-8.357l-4.177 7.427-4.177-7.427 4.177-7.429h8.357zM16.398 21.571l4.177-7.427 4.18 7.427-4.18 7.429h-8.357l-4.177-7.429h8.357z',
|
|
756
|
-
"metamask": 'M27.043 16.037l1.128-1.32c0.006-0.012 0.008-0.025 0.008-0.038s-0.003-0.026-0.008-0.038c-0.001-0.013-0.005-0.025-0.012-0.036s-0.016-0.020-0.027-0.026l-0.415-0.299 0.722-0.66c0.005-0.012 0.008-0.025 0.008-0.038s-0.003-0.026-0.008-0.038c-0.001-0.014-0.005-0.027-0.012-0.039s-0.016-0.022-0.027-0.030l-0.514-0.399 0.706-0.537c0.011-0.009 0.021-0.021 0.027-0.034s0.010-0.028 0.011-0.042c0.002-0.015-0.001-0.031-0.008-0.044s-0.018-0.025-0.031-0.033l-0.484-0.376 0.837-4.053v-0.046l-1.274-3.838c-0.011-0.020-0.029-0.035-0.050-0.043s-0.044-0.009-0.066-0.003v0l-8.183 3.071h-6.778l-8.168-3.071h-0.077c-0.022 0.015-0.038 0.037-0.046 0.061l-1.274 3.838c-0.004 0.015-0.004 0.031 0 0.046l0.852 4.053-0.507 0.376c-0.012 0.009-0.022 0.020-0.029 0.034s-0.010 0.028-0.010 0.043c0.001 0.015 0.005 0.029 0.011 0.043s0.016 0.025 0.027 0.034l0.722 0.537-0.514 0.407c-0.011 0.008-0.020 0.018-0.027 0.030s-0.011 0.025-0.011 0.039c-0.007 0.025-0.007 0.052 0 0.077l0.714 0.66-0.415 0.299c-0.017 0.018-0.030 0.038-0.038 0.062-0.008 0.025-0.008 0.052 0 0.077l1.136 1.32-1.75 5.42c-0.004 0.009-0.005 0.018-0.005 0.027s0.002 0.018 0.005 0.027l1.635 5.588c0.003 0.012 0.008 0.024 0.015 0.034s0.017 0.019 0.027 0.025c0.011 0.006 0.023 0.011 0.035 0.012s0.025 0.001 0.037-0.003l5.688-1.535 1.090 0.89 2.303 1.535h4l2.303-1.574 1.067-0.875 5.696 1.535c0.025 0.007 0.053 0.004 0.076-0.009s0.040-0.035 0.047-0.060l1.643-5.588v-0.054l-1.812-5.42zM11.060 19.314c-0.018-0.008-0.034-0.020-0.045-0.037s-0.017-0.036-0.017-0.055c0-0.020 0.006-0.039 0.017-0.055s0.027-0.029 0.045-0.037l2.011-0.921c0.023-0.009 0.047-0.009 0.070 0s0.041 0.025 0.053 0.046l0.837 1.75c0.010 0.013 0.015 0.029 0.015 0.046s-0.005 0.033-0.015 0.046c-0.007 0.014-0.018 0.026-0.032 0.034s-0.029 0.012-0.045 0.012l-2.894-0.829zM18.222 26.146c-0.016 0.009-0.035 0.015-0.054 0.015s-0.037-0.005-0.054-0.015l-0.238-0.192h-3.746l-0.223 0.192c-0.020 0.008-0.042 0.008-0.061 0h-0.046c-0.017-0.011-0.031-0.025-0.040-0.043s-0.014-0.037-0.014-0.057l0.276-2.226c0.008-0.025 0.025-0.046 0.046-0.061l0.476-0.338c0.008-0.004 0.018-0.005 0.027-0.005s0.018 0.002 0.027 0.005h2.863l0.484 0.33c0.010 0.027 0.010 0.057 0 0.084v0l0.276 2.211c0.007 0.016 0.010 0.034 0.008 0.051s-0.007 0.034-0.016 0.049h0.008zM20.971 19.307l-2.863 0.844h-0.061c-0.009-0.025-0.009-0.052 0-0.077-0.003-0.018-0.003-0.036 0-0.054l0.837-1.758c0.014-0.021 0.034-0.037 0.058-0.045s0.049-0.009 0.073-0.001l2.019 0.921c0.019 0.008 0.034 0.023 0.044 0.041s0.013 0.039 0.010 0.059c-0.007 0.025-0.024 0.047-0.047 0.060s-0.050 0.016-0.076 0.009h0.008z'
|
|
769
|
+
"metamask": 'M27.043 16.037l1.128-1.32c0.006-0.012 0.008-0.025 0.008-0.038s-0.003-0.026-0.008-0.038c-0.001-0.013-0.005-0.025-0.012-0.036s-0.016-0.020-0.027-0.026l-0.415-0.299 0.722-0.66c0.005-0.012 0.008-0.025 0.008-0.038s-0.003-0.026-0.008-0.038c-0.001-0.014-0.005-0.027-0.012-0.039s-0.016-0.022-0.027-0.030l-0.514-0.399 0.706-0.537c0.011-0.009 0.021-0.021 0.027-0.034s0.010-0.028 0.011-0.042c0.002-0.015-0.001-0.031-0.008-0.044s-0.018-0.025-0.031-0.033l-0.484-0.376 0.837-4.053v-0.046l-1.274-3.838c-0.011-0.020-0.029-0.035-0.050-0.043s-0.044-0.009-0.066-0.003v0l-8.183 3.071h-6.778l-8.168-3.071h-0.077c-0.022 0.015-0.038 0.037-0.046 0.061l-1.274 3.838c-0.004 0.015-0.004 0.031 0 0.046l0.852 4.053-0.507 0.376c-0.012 0.009-0.022 0.020-0.029 0.034s-0.010 0.028-0.010 0.043c0.001 0.015 0.005 0.029 0.011 0.043s0.016 0.025 0.027 0.034l0.722 0.537-0.514 0.407c-0.011 0.008-0.020 0.018-0.027 0.030s-0.011 0.025-0.011 0.039c-0.007 0.025-0.007 0.052 0 0.077l0.714 0.66-0.415 0.299c-0.017 0.018-0.030 0.038-0.038 0.062-0.008 0.025-0.008 0.052 0 0.077l1.136 1.32-1.75 5.42c-0.004 0.009-0.005 0.018-0.005 0.027s0.002 0.018 0.005 0.027l1.635 5.588c0.003 0.012 0.008 0.024 0.015 0.034s0.017 0.019 0.027 0.025c0.011 0.006 0.023 0.011 0.035 0.012s0.025 0.001 0.037-0.003l5.688-1.535 1.090 0.89 2.303 1.535h4l2.303-1.574 1.067-0.875 5.696 1.535c0.025 0.007 0.053 0.004 0.076-0.009s0.040-0.035 0.047-0.060l1.643-5.588v-0.054l-1.812-5.42zM11.060 19.314c-0.018-0.008-0.034-0.020-0.045-0.037s-0.017-0.036-0.017-0.055c0-0.020 0.006-0.039 0.017-0.055s0.027-0.029 0.045-0.037l2.011-0.921c0.023-0.009 0.047-0.009 0.070 0s0.041 0.025 0.053 0.046l0.837 1.75c0.010 0.013 0.015 0.029 0.015 0.046s-0.005 0.033-0.015 0.046c-0.007 0.014-0.018 0.026-0.032 0.034s-0.029 0.012-0.045 0.012l-2.894-0.829zM18.222 26.146c-0.016 0.009-0.035 0.015-0.054 0.015s-0.037-0.005-0.054-0.015l-0.238-0.192h-3.746l-0.223 0.192c-0.020 0.008-0.042 0.008-0.061 0h-0.046c-0.017-0.011-0.031-0.025-0.040-0.043s-0.014-0.037-0.014-0.057l0.276-2.226c0.008-0.025 0.025-0.046 0.046-0.061l0.476-0.338c0.008-0.004 0.018-0.005 0.027-0.005s0.018 0.002 0.027 0.005h2.863l0.484 0.33c0.010 0.027 0.010 0.057 0 0.084v0l0.276 2.211c0.007 0.016 0.010 0.034 0.008 0.051s-0.007 0.034-0.016 0.049h0.008zM20.971 19.307l-2.863 0.844h-0.061c-0.009-0.025-0.009-0.052 0-0.077-0.003-0.018-0.003-0.036 0-0.054l0.837-1.758c0.014-0.021 0.034-0.037 0.058-0.045s0.049-0.009 0.073-0.001l2.019 0.921c0.019 0.008 0.034 0.023 0.044 0.041s0.013 0.039 0.010 0.059c-0.007 0.025-0.024 0.047-0.047 0.060s-0.050 0.016-0.076 0.009h0.008z',
|
|
770
|
+
"launch": 'M19.1153 6C18.4467 6 17.9048 6.54196 17.9048 7.2105C17.9048 7.87905 18.4467 8.42101 19.1153 8.42101H21.8671L13.4974 16.7907C13.0247 17.2634 13.0247 18.0299 13.4974 18.5026C13.9701 18.9753 14.7366 18.9753 15.2093 18.5026L23.579 10.1329V12.8847C23.579 13.5533 24.121 14.0952 24.7895 14.0952C25.458 14.0952 26 13.5533 26 12.8847V7.2105C26 6.54196 25.458 6 24.7895 6H19.1153Z M9.14146 8.16167C8.8816 8.16167 8.63239 8.26489 8.44864 8.44864C8.26489 8.63239 8.16167 8.8816 8.16167 9.14146V22.8585C8.16167 23.1184 8.26489 23.3676 8.44864 23.5514C8.63239 23.7351 8.8816 23.8383 9.14146 23.8383H22.8585C23.1184 23.8383 23.3676 23.7351 23.5514 23.5514C23.7351 23.3676 23.8383 23.1184 23.8383 22.8585V19.055C23.8383 18.5139 24.277 18.0752 24.8181 18.0752C25.3592 18.0752 25.7979 18.5139 25.7979 19.055V22.8585C25.7979 23.6381 25.4882 24.3858 24.937 24.937C24.3858 25.4882 23.6381 25.7979 22.8585 25.7979H9.14146C8.36189 25.7979 7.61424 25.4882 7.06301 24.937C6.51177 24.3858 6.20208 23.6381 6.20208 22.8585V9.14146C6.20208 8.36189 6.51177 7.61425 7.06301 7.06301C7.61425 6.51177 8.36189 6.20208 9.14146 6.20208H12.945C13.4861 6.20208 13.9248 6.64075 13.9248 7.18187C13.9248 7.723 13.4861 8.16167 12.945 8.16167H9.14146Z M6.92011 6.92011C7.50925 6.33097 8.30829 6 9.14146 6H12.945C13.5977 6 14.1268 6.52914 14.1268 7.18187C14.1268 7.83461 13.5977 8.36375 12.945 8.36375H9.14146C8.9352 8.36375 8.73738 8.44569 8.59153 8.59153C8.44568 8.73738 8.36375 8.9352 8.36375 9.14146V22.8585C8.36375 23.0648 8.44568 23.2626 8.59153 23.4085C8.73738 23.5543 8.9352 23.6363 9.14146 23.6363H22.8585C23.0648 23.6363 23.2626 23.5543 23.4085 23.4085C23.5543 23.2626 23.6363 23.0648 23.6363 22.8585V19.055C23.6363 18.4023 24.1654 17.8732 24.8181 17.8732C25.4709 17.8732 26 18.4023 26 19.055V22.8585C26 23.6917 25.669 24.4908 25.0799 25.0799C24.4908 25.669 23.6917 26 22.8585 26H9.14146C8.30829 26 7.50925 25.669 6.92011 25.0799C6.33097 24.4907 6 23.6917 6 22.8585V9.14146C6 8.30829 6.33097 7.50925 6.92011 6.92011ZM9.14146 6.40416C8.41548 6.40416 7.71924 6.69256 7.2059 7.2059C6.69256 7.71924 6.40416 8.41548 6.40416 9.14146V22.8585C6.40416 23.5845 6.69256 24.2808 7.2059 24.7941C7.71924 25.3074 8.41548 25.5958 9.14146 25.5958H22.8585C23.5845 25.5958 24.2808 25.3074 24.7941 24.7941C25.3074 24.2808 25.5958 23.5845 25.5958 22.8585V19.055C25.5958 18.6255 25.2476 18.2773 24.8181 18.2773C24.3886 18.2773 24.0404 18.6255 24.0404 19.055V22.8585C24.0404 23.172 23.9159 23.4726 23.6943 23.6943C23.4726 23.9159 23.172 24.0404 22.8585 24.0404H9.14146C8.82801 24.0404 8.52739 23.9159 8.30575 23.6943C8.0841 23.4726 7.95958 23.172 7.95958 22.8585V9.14146C7.95958 8.828 8.0841 8.52739 8.30575 8.30575C8.52739 8.0841 8.828 7.95958 9.14146 7.95958H12.945C13.3745 7.95958 13.7227 7.61139 13.7227 7.18187C13.7227 6.75236 13.3745 6.40416 12.945 6.40416H9.14146Z'
|
|
757
771
|
};
|
|
758
772
|
|
|
759
773
|
const {
|
|
@@ -1019,16 +1033,20 @@ const Spinner = props => {
|
|
|
1019
1033
|
};
|
|
1020
1034
|
|
|
1021
1035
|
const {
|
|
1036
|
+
normal: normal$5,
|
|
1022
1037
|
light: light$7,
|
|
1023
1038
|
grey: grey$b,
|
|
1024
1039
|
green: green$5,
|
|
1025
1040
|
orange: orange$2,
|
|
1026
1041
|
red: red$7
|
|
1027
1042
|
} = colors;
|
|
1043
|
+
const {
|
|
1044
|
+
bold: bold$3
|
|
1045
|
+
} = fontWeight;
|
|
1028
1046
|
const TagWrapper = /*#__PURE__*/_styled.span.withConfig({
|
|
1029
1047
|
displayName: "styles__TagWrapper",
|
|
1030
1048
|
componentId: "sc-1ghratr-0"
|
|
1031
|
-
})(["display:inline-block;border:", " solid ", ";border-radius:
|
|
1049
|
+
})(["display:inline-block;border:", " solid ", ";border-radius:", ";background-color:", ";max-width:", ";padding:", " ", ";font-size:", ";font-weight:", ";letter-spacing:0.1em;line-height:1;color:", ";white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-transform:uppercase;&:not(:first-child){margin-left:", ";}", " ", " ", " ", " ", " ", ""], /*#__PURE__*/rem('2px'), grey$b, /*#__PURE__*/rem('3px'), grey$b, /*#__PURE__*/rem('150px'), /*#__PURE__*/rem('3px'), /*#__PURE__*/rem('8px'), /*#__PURE__*/rem('12px'), bold$3, light$7, /*#__PURE__*/rem('5px'), props => props.color === 'green' && css`
|
|
1032
1050
|
border-color: ${green$5};
|
|
1033
1051
|
background-color: ${green$5};
|
|
1034
1052
|
color: ${props.variant === 'solid' ? light$7 : green$5};
|
|
@@ -1044,6 +1062,10 @@ const TagWrapper = /*#__PURE__*/_styled.span.withConfig({
|
|
|
1044
1062
|
border-color: ${grey$b};
|
|
1045
1063
|
background-color: ${grey$b};
|
|
1046
1064
|
color: ${props.variant === 'solid' ? light$7 : grey$b};
|
|
1065
|
+
`, props => props.color === 'light' && css`
|
|
1066
|
+
border-color: ${light$7};
|
|
1067
|
+
background-color: ${light$7};
|
|
1068
|
+
color: ${props.variant === 'solid' ? normal$5 : light$7};
|
|
1047
1069
|
`, props => props.variant === 'outline' && css`
|
|
1048
1070
|
background-color: transparent;
|
|
1049
1071
|
`);
|
|
@@ -1070,12 +1092,12 @@ const {
|
|
|
1070
1092
|
light: light$8
|
|
1071
1093
|
} = colors;
|
|
1072
1094
|
const {
|
|
1073
|
-
bold: bold$
|
|
1095
|
+
bold: bold$4
|
|
1074
1096
|
} = fontWeight;
|
|
1075
1097
|
const TagWrapper$1 = /*#__PURE__*/_styled.div.withConfig({
|
|
1076
1098
|
displayName: "styles__TagWrapper",
|
|
1077
1099
|
componentId: "db57da-0"
|
|
1078
|
-
})(["display:flex;border:", " solid ", ";border-radius:", ";
|
|
1100
|
+
})(["display:flex;border:", " solid ", ";border-radius:", ";line-height:1;max-width:100%;width:max-content;overflow:hidden;span{display:inline-block;padding:", " ", ";font-size:", ";font-weight:", ";letter-spacing:0.1em;&.label{flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-transform:uppercase;}&.value{background-color:", ";font-weight:", ";color:", ";}}&:not(:first-child){margin-left:", ";}"], /*#__PURE__*/rem('2px'), grey$c, /*#__PURE__*/rem('3px'), /*#__PURE__*/rem('3px'), /*#__PURE__*/rem('8px'), /*#__PURE__*/rem('12px'), bold$4, grey$c, bold$4, light$8, /*#__PURE__*/rem('5px'));
|
|
1079
1101
|
|
|
1080
1102
|
const TagNumber = props => {
|
|
1081
1103
|
const {
|
|
@@ -1221,7 +1243,7 @@ const Select = props => {
|
|
|
1221
1243
|
};
|
|
1222
1244
|
|
|
1223
1245
|
const {
|
|
1224
|
-
normal: normal$
|
|
1246
|
+
normal: normal$6,
|
|
1225
1247
|
light: light$9,
|
|
1226
1248
|
grey: grey$d,
|
|
1227
1249
|
purple: purple$5,
|
|
@@ -1258,11 +1280,11 @@ const SelectWrapper = _styled.div`
|
|
|
1258
1280
|
}
|
|
1259
1281
|
|
|
1260
1282
|
&__input {
|
|
1261
|
-
color: ${normal$
|
|
1283
|
+
color: ${normal$6};
|
|
1262
1284
|
}
|
|
1263
1285
|
|
|
1264
1286
|
&__single-value {
|
|
1265
|
-
color: ${normal$
|
|
1287
|
+
color: ${normal$6};
|
|
1266
1288
|
}
|
|
1267
1289
|
|
|
1268
1290
|
&__indicator {
|
|
@@ -1301,7 +1323,7 @@ const SelectWrapper = _styled.div`
|
|
|
1301
1323
|
|
|
1302
1324
|
&--is-selected {
|
|
1303
1325
|
background-color: ${lightPurple};
|
|
1304
|
-
color: ${normal$
|
|
1326
|
+
color: ${normal$6};
|
|
1305
1327
|
}
|
|
1306
1328
|
}
|
|
1307
1329
|
}
|
|
@@ -1329,7 +1351,7 @@ const SelectWrapper = _styled.div`
|
|
|
1329
1351
|
|
|
1330
1352
|
.select__option--is-selected {
|
|
1331
1353
|
svg {
|
|
1332
|
-
fill: ${normal$
|
|
1354
|
+
fill: ${normal$6};
|
|
1333
1355
|
transition-duration: 0.3s;
|
|
1334
1356
|
}
|
|
1335
1357
|
}
|
|
@@ -1395,7 +1417,7 @@ const SelectInteractive = props => {
|
|
|
1395
1417
|
};
|
|
1396
1418
|
|
|
1397
1419
|
const {
|
|
1398
|
-
normal: normal$
|
|
1420
|
+
normal: normal$7,
|
|
1399
1421
|
grey: grey$e,
|
|
1400
1422
|
lightGrey: lightGrey$8,
|
|
1401
1423
|
red: red$8,
|
|
@@ -1412,7 +1434,7 @@ const Wrapper$2 = _styled.div`
|
|
|
1412
1434
|
input {
|
|
1413
1435
|
flex: 1;
|
|
1414
1436
|
border: 0;
|
|
1415
|
-
color: ${props => props.error ? red$8 : normal$
|
|
1437
|
+
color: ${props => props.error ? red$8 : normal$7};
|
|
1416
1438
|
}
|
|
1417
1439
|
|
|
1418
1440
|
& + span {
|
|
@@ -1928,7 +1950,7 @@ const {
|
|
|
1928
1950
|
green: green$6
|
|
1929
1951
|
} = colors;
|
|
1930
1952
|
const {
|
|
1931
|
-
bold: bold$
|
|
1953
|
+
bold: bold$5
|
|
1932
1954
|
} = fontWeight;
|
|
1933
1955
|
const Wrapper$5 = _styled.div`
|
|
1934
1956
|
display: flex;
|
|
@@ -1951,7 +1973,7 @@ const Progress = _styled.div`
|
|
|
1951
1973
|
const Value = _styled.div`
|
|
1952
1974
|
margin-left: ${/*#__PURE__*/rem('5px')};
|
|
1953
1975
|
font-size: 0.75rem;
|
|
1954
|
-
font-weight: ${bold$
|
|
1976
|
+
font-weight: ${bold$5};
|
|
1955
1977
|
`;
|
|
1956
1978
|
|
|
1957
1979
|
const ProgressBar = props => {
|
|
@@ -2149,7 +2171,7 @@ const {
|
|
|
2149
2171
|
green: green$8,
|
|
2150
2172
|
darkGreen: darkGreen$4,
|
|
2151
2173
|
light: light$c,
|
|
2152
|
-
normal: normal$
|
|
2174
|
+
normal: normal$8
|
|
2153
2175
|
} = colors;
|
|
2154
2176
|
const Wrapper$6 = _styled.div`
|
|
2155
2177
|
input {
|
|
@@ -2187,7 +2209,7 @@ const Wrapper$6 = _styled.div`
|
|
|
2187
2209
|
flex: 1;
|
|
2188
2210
|
display: block;
|
|
2189
2211
|
padding: ${props => props.minimal ? 0 : `0 ${rem('10px')}`};
|
|
2190
|
-
color: ${props => props.disabled ? grey$f : normal$
|
|
2212
|
+
color: ${props => props.disabled ? grey$f : normal$8};
|
|
2191
2213
|
white-space: nowrap;
|
|
2192
2214
|
overflow: hidden;
|
|
2193
2215
|
text-overflow: ellipsis;
|
|
@@ -2276,7 +2298,7 @@ const FilePicker = props => {
|
|
|
2276
2298
|
};
|
|
2277
2299
|
|
|
2278
2300
|
const {
|
|
2279
|
-
normal: normal$
|
|
2301
|
+
normal: normal$9,
|
|
2280
2302
|
light: light$d,
|
|
2281
2303
|
lightGrey: lightGrey$c,
|
|
2282
2304
|
red: red$a
|
|
@@ -2288,11 +2310,11 @@ const ActionsMenuStyle$1 = /*#__PURE__*/_styled.div.withConfig({
|
|
|
2288
2310
|
const List = /*#__PURE__*/_styled.ul.withConfig({
|
|
2289
2311
|
displayName: "styles__List",
|
|
2290
2312
|
componentId: "sc-1peafop-1"
|
|
2291
|
-
})(["position:absolute;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";min-width:", ";max-width:", ";padding:0;-moz-box-shadow:0 0 ", " 0 ", ";-webkit-box-shadow:0 0 ", " 0 ", ";box-shadow:0 0 ", " 0 ", ";z-index:1;", " li{list-style:none;min-height:", ";display:flex;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}&.danger{border-top:", " solid ", ";a{color:", ";}}&.disabled{a{color:", ";pointer-events:none;}&:hover{background-color:transparent;}}a{width:100%;display:flex;align-items:center;padding:0 ", ";color:", ";text-decoration:none;white-space:nowrap;span{display:table-cell;overflow:hidden;text-overflow:ellipsis;}}}"], /*#__PURE__*/rem('1px'), lightGrey$c, /*#__PURE__*/rem('4px'), light$d, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('200px'), /*#__PURE__*/rem('250px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$
|
|
2313
|
+
})(["position:absolute;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";min-width:", ";max-width:", ";padding:0;-moz-box-shadow:0 0 ", " 0 ", ";-webkit-box-shadow:0 0 ", " 0 ", ";box-shadow:0 0 ", " 0 ", ";z-index:1;", " li{list-style:none;min-height:", ";display:flex;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}&.danger{border-top:", " solid ", ";a{color:", ";}}&.disabled{a{color:", ";pointer-events:none;}&:hover{background-color:transparent;}}a{width:100%;display:flex;align-items:center;padding:0 ", ";color:", ";text-decoration:none;white-space:nowrap;span{display:table-cell;overflow:hidden;text-overflow:ellipsis;}}}"], /*#__PURE__*/rem('1px'), lightGrey$c, /*#__PURE__*/rem('4px'), light$d, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('200px'), /*#__PURE__*/rem('250px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), /*#__PURE__*/rem('15px'), /*#__PURE__*/lighten(0.7, normal$9), props => props.rowIndex != undefined && css`
|
|
2292
2314
|
--margin: ${`calc(${rem('45px')} + ${rem('50px')} * ${props.rowIndex} + ${rem('42px')})`};
|
|
2293
2315
|
top: var(--margin);
|
|
2294
2316
|
right: ${rem('5px')};
|
|
2295
|
-
`, /*#__PURE__*/rem('45px'), lightGrey$c, /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('1px'), lightGrey$c, red$a, lightGrey$c, /*#__PURE__*/rem('20px'), normal$
|
|
2317
|
+
`, /*#__PURE__*/rem('45px'), lightGrey$c, /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('1px'), lightGrey$c, red$a, lightGrey$c, /*#__PURE__*/rem('20px'), normal$9);
|
|
2296
2318
|
|
|
2297
2319
|
const ActionMenuList = props => {
|
|
2298
2320
|
const {
|
|
@@ -2406,7 +2428,7 @@ const {
|
|
|
2406
2428
|
light: light$f
|
|
2407
2429
|
} = colors;
|
|
2408
2430
|
const {
|
|
2409
|
-
bold: bold$
|
|
2431
|
+
bold: bold$6
|
|
2410
2432
|
} = fontWeight;
|
|
2411
2433
|
const EmptyTableWrapper = /*#__PURE__*/_styled.div.withConfig({
|
|
2412
2434
|
displayName: "styles__EmptyTableWrapper",
|
|
@@ -2415,7 +2437,7 @@ const EmptyTableWrapper = /*#__PURE__*/_styled.div.withConfig({
|
|
|
2415
2437
|
const EmptyTableHead = /*#__PURE__*/_styled.div.withConfig({
|
|
2416
2438
|
displayName: "styles__EmptyTableHead",
|
|
2417
2439
|
componentId: "sc-1dgsb9l-1"
|
|
2418
|
-
})(["border-width:", ";border-style:solid;border-color:", ";border-radius:", " ", " 0 0;height:", ";display:flex;align-items:center;font-size:0.85rem;font-weight:", ";color:", ";text-transform:uppercase;> div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:none;flex:1;padding:0 ", ";font-size:0.85rem;font-weight:", ";color:", ";text-transform:uppercase;&: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 ? rem('1px') : `0 0 ${rem('1px')} 0`, grey$h, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), bold$
|
|
2440
|
+
})(["border-width:", ";border-style:solid;border-color:", ";border-radius:", " ", " 0 0;height:", ";display:flex;align-items:center;font-size:0.85rem;font-weight:", ";color:", ";text-transform:uppercase;> div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:none;flex:1;padding:0 ", ";font-size:0.85rem;font-weight:", ";color:", ";text-transform:uppercase;&: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 ? rem('1px') : `0 0 ${rem('1px')} 0`, grey$h, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), bold$6, grey$h, /*#__PURE__*/rem('15px'), bold$6, grey$h, device.s, device.m, device.l);
|
|
2419
2441
|
const EmptyTableBody = /*#__PURE__*/_styled.div.withConfig({
|
|
2420
2442
|
displayName: "styles__EmptyTableBody",
|
|
2421
2443
|
componentId: "sc-1dgsb9l-2"
|
|
@@ -2574,13 +2596,13 @@ function hasValue(value) {
|
|
|
2574
2596
|
}
|
|
2575
2597
|
|
|
2576
2598
|
const {
|
|
2577
|
-
normal: normal$
|
|
2599
|
+
normal: normal$a,
|
|
2578
2600
|
light: light$g,
|
|
2579
2601
|
grey: grey$j,
|
|
2580
2602
|
lightGrey: lightGrey$e
|
|
2581
2603
|
} = colors;
|
|
2582
2604
|
const {
|
|
2583
|
-
bold: bold$
|
|
2605
|
+
bold: bold$7
|
|
2584
2606
|
} = fontWeight;
|
|
2585
2607
|
const TableWrapper = /*#__PURE__*/_styled.div.withConfig({
|
|
2586
2608
|
displayName: "styles__TableWrapper",
|
|
@@ -2593,7 +2615,7 @@ const OverflowWrapper = /*#__PURE__*/_styled.div.withConfig({
|
|
|
2593
2615
|
const Table = /*#__PURE__*/_styled.table.withConfig({
|
|
2594
2616
|
displayName: "styles__Table",
|
|
2595
2617
|
componentId: "vmoy3z-2"
|
|
2596
|
-
})(["width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td.menu{button{opacity:1;}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$
|
|
2618
|
+
})(["width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td.menu{button{opacity:1;}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$7, grey$j, lightGrey$e, device.s, /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), normal$a, grey$j, /*#__PURE__*/rem('15px'), bold$7, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('36px'), /*#__PURE__*/rem('-170px'), device.s, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('1px'), grey$j, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('40px'));
|
|
2597
2619
|
|
|
2598
2620
|
const Table$1 = props => {
|
|
2599
2621
|
const {
|
|
@@ -2693,17 +2715,17 @@ const Table$1 = props => {
|
|
|
2693
2715
|
};
|
|
2694
2716
|
|
|
2695
2717
|
const {
|
|
2696
|
-
normal: normal$
|
|
2718
|
+
normal: normal$b,
|
|
2697
2719
|
grey: grey$k,
|
|
2698
2720
|
lightGrey: lightGrey$f
|
|
2699
2721
|
} = colors;
|
|
2700
2722
|
const {
|
|
2701
|
-
bold: bold$
|
|
2723
|
+
bold: bold$8
|
|
2702
2724
|
} = fontWeight;
|
|
2703
2725
|
const Table$2 = /*#__PURE__*/_styled.table.withConfig({
|
|
2704
2726
|
displayName: "styles__Table",
|
|
2705
2727
|
componentId: "sc-1p618q0-0"
|
|
2706
|
-
})(["position:relative;width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;table-layout:", ";th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td{&.drag-handle{svg{fill:", ";}}&.menu{button{opacity:1;}}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;&.drag-handle{> div{width:min-content;}svg{width:", ";height:", ";fill:", ";transition-duration:0.3s;}}> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$k, /*#__PURE__*/rem('6px'), props => props.layout, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$
|
|
2728
|
+
})(["position:relative;width:100%;border-width:", ";border-style:solid;border-color:", ";border-radius:", ";border-spacing:0;white-space:nowrap;table-layout:", ";th,td{height:", ";padding:0 ", ";&.center{text-align:center;> div{justify-content:center;}}&.right{text-align:right;> div{justify-content:flex-end;}}&.thin{@media ", "{max-width:min-content;}}&.kai{text-align:right;> div{justify-content:flex-end;}}&.avatar > div{display:flex;align-items:center;.avatar-img{margin-right:", ";}}}th{font-size:0.85rem;&:first-child{border-top-left-radius:", ";}&:last-child{border-top-right-radius:", ";}}tr{border:", " solid ", ";border-radius:", ";position:relative;&:not(:last-child){margin-bottom:", ";}@media ", "{border:0;}}thead{border:none;clip:rect(0 0 0 0);height:", ";margin:", ";overflow:hidden;padding:0;position:absolute;width:", ";@media ", "{display:contents;font-weight:", ";color:", ";text-transform:uppercase;text-align:left;}}tbody{tr{display:block;transition-duration:0.3s;&:hover{background-color:", ";td{&.drag-handle{svg{fill:", ";}}&.menu{button{opacity:1;}}}}@media ", "{display:table-row;}}td{border-top:", " solid ", ";height:inherit;min-height:", ";padding:", ";display:flex;justify-content:flex-end;&.drag-handle{> div{width:min-content;}svg{width:", ";height:", ";fill:", ";transition-duration:0.3s;}}> div{margin-left:", ";height:100%;display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;text-align:right;> span{display:none;&:first-child,&:last-child{display:inherit;}}}img{min-width:", ";min-height:", ";}a{display:flex;align-items:center;color:", ";text-decoration-color:", ";}&:first-child{border:0;}&:before{position:absolute;left:", ";content:attr(data-label);font-weight:", ";text-transform:capitalize;}&.kai{svg{float:right;width:auto;min-width:", ";max-height:", ";}}.avatar-img{display:none;}.tag{margin:0;&:not(:first-child){display:none;}}&.menu{padding:0 ", " 0 0;button{margin-top:", ";transition:0.3s;}ul{top:", ";margin-left:", ";}}@media ", "{display:table-cell;height:", ";padding:0 ", ";align-items:center;> div{position:relative;margin-left:0;display:flex-start;justify-content:flex-start;text-align:left;> span{display:inherit;}}&:first-child{border-top:", " solid ", ";}&:before{content:'';}&.kai{max-width:", ";}.avatar-img{display:inherit;}.tag{&:not(:first-child){display:inherit;}&:not(:last-child){margin-right:", ";}}&.menu{width:", ";button{opacity:0;}}}}}"], props => props.border ? '1px' : '0', grey$k, /*#__PURE__*/rem('6px'), props => props.layout, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('6px'), /*#__PURE__*/rem('15px'), device.s, /*#__PURE__*/rem('1px'), /*#__PURE__*/rem('-1px'), /*#__PURE__*/rem('1px'), device.s, bold$8, grey$k, lightGrey$f, grey$k, device.s, /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), grey$k, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('30px'), /*#__PURE__*/rem('30px'), normal$b, grey$k, /*#__PURE__*/rem('15px'), bold$8, /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('20px'), /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('36px'), /*#__PURE__*/rem('-170px'), device.s, /*#__PURE__*/rem('50px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('1px'), grey$k, /*#__PURE__*/rem('100px'), /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('40px'));
|
|
2707
2729
|
const TableRow = /*#__PURE__*/_styled.tr.withConfig({
|
|
2708
2730
|
displayName: "styles__TableRow",
|
|
2709
2731
|
componentId: "sc-1p618q0-1"
|
|
@@ -2869,14 +2891,14 @@ const TableDnD = props => {
|
|
|
2869
2891
|
};
|
|
2870
2892
|
|
|
2871
2893
|
const {
|
|
2872
|
-
normal: normal$
|
|
2894
|
+
normal: normal$c,
|
|
2873
2895
|
grey: grey$l,
|
|
2874
2896
|
red: red$c
|
|
2875
2897
|
} = colors;
|
|
2876
2898
|
const Wrapper$8 = /*#__PURE__*/_styled.div.withConfig({
|
|
2877
2899
|
displayName: "styles__Wrapper",
|
|
2878
2900
|
componentId: "mbja2a-0"
|
|
2879
|
-
})(["display:inline-block;> label{margin-bottom:", ";color:", ";span{color:", ";}}&:not(:last-child){margin-bottom:", ";}"], /*#__PURE__*/rem('5px'), props => props.error ? red$c : grey$l, props => props.error ? red$c : normal$
|
|
2901
|
+
})(["display:inline-block;> label{margin-bottom:", ";color:", ";span{color:", ";}}&:not(:last-child){margin-bottom:", ";}"], /*#__PURE__*/rem('5px'), props => props.error ? red$c : grey$l, props => props.error ? red$c : normal$c, /*#__PURE__*/rem('15px'));
|
|
2880
2902
|
|
|
2881
2903
|
const FormGroup = props => {
|
|
2882
2904
|
const {
|
|
@@ -3118,13 +3140,13 @@ const AlertNotification = props => {
|
|
|
3118
3140
|
};
|
|
3119
3141
|
|
|
3120
3142
|
const {
|
|
3121
|
-
normal: normal$
|
|
3143
|
+
normal: normal$d,
|
|
3122
3144
|
light: light$k,
|
|
3123
|
-
blue,
|
|
3145
|
+
blue: blue$2,
|
|
3124
3146
|
lightGrey: lightGrey$i
|
|
3125
3147
|
} = colors;
|
|
3126
3148
|
const {
|
|
3127
|
-
bold: bold$
|
|
3149
|
+
bold: bold$9
|
|
3128
3150
|
} = fontWeight;
|
|
3129
3151
|
const PaginationWrapper = _styled.div`
|
|
3130
3152
|
--size: ${/*#__PURE__*/rem('30px')};
|
|
@@ -3166,18 +3188,18 @@ const PaginationWrapper = _styled.div`
|
|
|
3166
3188
|
display: flex;
|
|
3167
3189
|
justify-content: center;
|
|
3168
3190
|
align-items: center;
|
|
3169
|
-
color: ${normal$
|
|
3170
|
-
font-weight: ${bold$
|
|
3191
|
+
color: ${normal$d};
|
|
3192
|
+
font-weight: ${bold$9};
|
|
3171
3193
|
text-decoration: none;
|
|
3172
3194
|
|
|
3173
3195
|
&:hover {
|
|
3174
|
-
color: ${blue};
|
|
3196
|
+
color: ${blue$2};
|
|
3175
3197
|
}
|
|
3176
3198
|
|
|
3177
3199
|
svg {
|
|
3178
3200
|
width: ${/*#__PURE__*/rem('18px')};
|
|
3179
3201
|
height: auto;
|
|
3180
|
-
fill: ${blue};
|
|
3202
|
+
fill: ${blue$2};
|
|
3181
3203
|
}
|
|
3182
3204
|
}
|
|
3183
3205
|
|
|
@@ -3185,7 +3207,7 @@ const PaginationWrapper = _styled.div`
|
|
|
3185
3207
|
pointer-events: none;
|
|
3186
3208
|
|
|
3187
3209
|
a {
|
|
3188
|
-
background-color: ${blue};
|
|
3210
|
+
background-color: ${blue$2};
|
|
3189
3211
|
color: ${light$k};
|
|
3190
3212
|
}
|
|
3191
3213
|
}
|
|
@@ -3255,11 +3277,11 @@ const PaginationControl = props => {
|
|
|
3255
3277
|
};
|
|
3256
3278
|
|
|
3257
3279
|
const {
|
|
3258
|
-
normal: normal$
|
|
3280
|
+
normal: normal$e,
|
|
3259
3281
|
green: green$c
|
|
3260
3282
|
} = colors;
|
|
3261
3283
|
const {
|
|
3262
|
-
bold: bold$
|
|
3284
|
+
bold: bold$a
|
|
3263
3285
|
} = fontWeight;
|
|
3264
3286
|
const Wrapper$b = _styled.div`
|
|
3265
3287
|
min-height: ${props => props.variant === 'default' ? '50vh' : 'inherit'};
|
|
@@ -3277,11 +3299,11 @@ const Wrapper$b = _styled.div`
|
|
|
3277
3299
|
|
|
3278
3300
|
> span {
|
|
3279
3301
|
margin-top: ${/*#__PURE__*/rem('15px')};
|
|
3280
|
-
font-weight: ${bold$
|
|
3281
|
-
color: ${normal$
|
|
3302
|
+
font-weight: ${bold$a};
|
|
3303
|
+
color: ${normal$e};
|
|
3282
3304
|
|
|
3283
3305
|
a {
|
|
3284
|
-
color: ${normal$
|
|
3306
|
+
color: ${normal$e};
|
|
3285
3307
|
transition-duration: 0.3s;
|
|
3286
3308
|
|
|
3287
3309
|
&:hover {
|
|
@@ -3305,11 +3327,11 @@ const Error = props => {
|
|
|
3305
3327
|
};
|
|
3306
3328
|
|
|
3307
3329
|
const {
|
|
3308
|
-
normal: normal$
|
|
3330
|
+
normal: normal$f,
|
|
3309
3331
|
green: green$d
|
|
3310
3332
|
} = colors;
|
|
3311
3333
|
const {
|
|
3312
|
-
bold: bold$
|
|
3334
|
+
bold: bold$b
|
|
3313
3335
|
} = fontWeight;
|
|
3314
3336
|
const Wrapper$c = _styled.div`
|
|
3315
3337
|
min-height: 50vh;
|
|
@@ -3327,11 +3349,11 @@ const Wrapper$c = _styled.div`
|
|
|
3327
3349
|
|
|
3328
3350
|
> div {
|
|
3329
3351
|
margin-top: ${/*#__PURE__*/rem('15px')};
|
|
3330
|
-
font-weight: ${bold$
|
|
3331
|
-
color: ${normal$
|
|
3352
|
+
font-weight: ${bold$b};
|
|
3353
|
+
color: ${normal$f};
|
|
3332
3354
|
|
|
3333
3355
|
a {
|
|
3334
|
-
color: ${normal$
|
|
3356
|
+
color: ${normal$f};
|
|
3335
3357
|
transition-duration: 0.3s;
|
|
3336
3358
|
|
|
3337
3359
|
&:hover {
|
|
@@ -5303,7 +5325,7 @@ const DataWarning = props => {
|
|
|
5303
5325
|
};
|
|
5304
5326
|
|
|
5305
5327
|
const {
|
|
5306
|
-
normal: normal$
|
|
5328
|
+
normal: normal$g,
|
|
5307
5329
|
green: green$e,
|
|
5308
5330
|
darkGreen: darkGreen$7,
|
|
5309
5331
|
grey: grey$o,
|
|
@@ -5385,7 +5407,7 @@ const Item = _styled.li`
|
|
|
5385
5407
|
}
|
|
5386
5408
|
|
|
5387
5409
|
&:hover .check {
|
|
5388
|
-
border-color: ${normal$
|
|
5410
|
+
border-color: ${normal$g};
|
|
5389
5411
|
}
|
|
5390
5412
|
|
|
5391
5413
|
${props => props.disabled && css`
|
|
@@ -5610,23 +5632,23 @@ const FieldWidthButton = props => {
|
|
|
5610
5632
|
};
|
|
5611
5633
|
|
|
5612
5634
|
const {
|
|
5613
|
-
normal: normal$
|
|
5635
|
+
normal: normal$h,
|
|
5614
5636
|
purple: purple$7,
|
|
5615
5637
|
grey: grey$q,
|
|
5616
5638
|
lightGrey: lightGrey$k,
|
|
5617
5639
|
light: light$m
|
|
5618
5640
|
} = colors;
|
|
5619
5641
|
const {
|
|
5620
|
-
bold: bold$
|
|
5642
|
+
bold: bold$c
|
|
5621
5643
|
} = fontWeight;
|
|
5622
5644
|
const Wrapper$g = /*#__PURE__*/_styled.div.withConfig({
|
|
5623
5645
|
displayName: "styles__Wrapper",
|
|
5624
5646
|
componentId: "znznmm-0"
|
|
5625
|
-
})(["display:flex;align-items:center;ul.menu{width:0;animation:showAnimation 1s forwards;animation-delay:0.5s;overflow:hidden;}@keyframes showAnimation{0%{width:0%;}100%{width:100%;}}ul{margin:0;max-width:max-content;padding:0;&.menu{display:flex;li:not(:last-child){margin-right:", ";}}li{position:relative;list-style:none;a{display:flex;align-items:center;padding:", ";color:", ";text-transform:capitalize;text-decoration:none;white-space:nowrap;transition-duration:0.3s;svg{margin-right:", ";width:auto;height:", ";min-width:", ";fill:", ";transition-duration:0.3s;}&:hover{color:", ";svg{fill:", ";}}}&.active{font-weight:", ";a{pointer-events:none;svg{fill:", ";}}}}}"], /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('10px'), normal$
|
|
5647
|
+
})(["display:flex;align-items:center;ul.menu{width:0;animation:showAnimation 1s forwards;animation-delay:0.5s;overflow:hidden;}@keyframes showAnimation{0%{width:0%;}100%{width:100%;}}ul{margin:0;max-width:max-content;padding:0;&.menu{display:flex;li:not(:last-child){margin-right:", ";}}li{position:relative;list-style:none;a{display:flex;align-items:center;padding:", ";color:", ";text-transform:capitalize;text-decoration:none;white-space:nowrap;transition-duration:0.3s;svg{margin-right:", ";width:auto;height:", ";min-width:", ";fill:", ";transition-duration:0.3s;}&:hover{color:", ";svg{fill:", ";}}}&.active{font-weight:", ";a{pointer-events:none;svg{fill:", ";}}}}}"], /*#__PURE__*/rem('10px'), /*#__PURE__*/rem('10px'), normal$h, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('24px'), /*#__PURE__*/rem('24px'), grey$q, props => props.customColor ? props.customColor : purple$7, props => props.customColor ? props.customColor : purple$7, bold$c, props => props.customColor ? props.customColor : purple$7);
|
|
5626
5648
|
const More = /*#__PURE__*/_styled.div.withConfig({
|
|
5627
5649
|
displayName: "styles__More",
|
|
5628
5650
|
componentId: "znznmm-1"
|
|
5629
|
-
})(["position:relative;display:none;&.hide{display:initial;}ul{position:absolute;right:0;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";padding:0;-moz-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);-webkit-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;&.more{display:none;}&.is-open{display:inherit;}li{list-style:none;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;a{color:", ";svg{fill:", ";}}}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}a{width:100%;height:100%;padding:", ";}}}"], /*#__PURE__*/rem('1px'), lightGrey$k, /*#__PURE__*/rem('4px'), light$m, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), lightGrey$k, normal$
|
|
5651
|
+
})(["position:relative;display:none;&.hide{display:initial;}ul{position:absolute;right:0;border:", " solid ", ";border-radius:", ";background-color:", ";margin-top:", ";padding:0;-moz-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);-webkit-box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);box-shadow:0 0 ", " 0 rgba(40,40,40,0.2);z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;&.more{display:none;}&.is-open{display:inherit;}li{list-style:none;transition-duration:0.3s;&:hover{background-color:", ";cursor:pointer;a{color:", ";svg{fill:", ";}}}&:first-child{border-radius:", " ", " 0 0;}&:last-child{border-radius:0 0 ", " ", ";}a{width:100%;height:100%;padding:", ";}}}"], /*#__PURE__*/rem('1px'), lightGrey$k, /*#__PURE__*/rem('4px'), light$m, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), /*#__PURE__*/rem('15px'), lightGrey$k, normal$h, normal$h, /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('4px'), /*#__PURE__*/rem('15px'));
|
|
5630
5652
|
|
|
5631
5653
|
const HorizontalNav = props => {
|
|
5632
5654
|
const [showMore, setShowMore] = useState(false);
|
|
@@ -5706,7 +5728,7 @@ const {
|
|
|
5706
5728
|
light: light$n
|
|
5707
5729
|
} = colors;
|
|
5708
5730
|
const {
|
|
5709
|
-
bold: bold$
|
|
5731
|
+
bold: bold$d
|
|
5710
5732
|
} = fontWeight;
|
|
5711
5733
|
const ModalOverlay = /*#__PURE__*/_styled.div.withConfig({
|
|
5712
5734
|
displayName: "styles__ModalOverlay",
|
|
@@ -5723,7 +5745,7 @@ const ModalContainer = /*#__PURE__*/_styled.div.withConfig({
|
|
|
5723
5745
|
const ModalHeader = /*#__PURE__*/_styled.div.withConfig({
|
|
5724
5746
|
displayName: "styles__ModalHeader",
|
|
5725
5747
|
componentId: "sc-16r6vcc-3"
|
|
5726
|
-
})(["display:flex;h2{margin:0 0 ", " 0;font-size:2rem;font-weight:", ";}button{display:none;position:absolute;top:0;right:0;margin:", " ", " 0 0;background-color:", ";z-index:1;&:hover{background-color:", ";}@media ", "{display:inherit;}}"], /*#__PURE__*/rem('30px'), bold$
|
|
5748
|
+
})(["display:flex;h2{margin:0 0 ", " 0;font-size:2rem;font-weight:", ";}button{display:none;position:absolute;top:0;right:0;margin:", " ", " 0 0;background-color:", ";z-index:1;&:hover{background-color:", ";}@media ", "{display:inherit;}}"], /*#__PURE__*/rem('30px'), bold$d, /*#__PURE__*/rem('-18px'), /*#__PURE__*/rem('-18px'), light$n, light$n, device.s);
|
|
5727
5749
|
|
|
5728
5750
|
const Modal = props => {
|
|
5729
5751
|
const {
|
|
@@ -5777,7 +5799,7 @@ const {
|
|
|
5777
5799
|
light: light$o
|
|
5778
5800
|
} = colors;
|
|
5779
5801
|
const {
|
|
5780
|
-
bold: bold$
|
|
5802
|
+
bold: bold$e
|
|
5781
5803
|
} = fontWeight;
|
|
5782
5804
|
const slideInLeft = keyframes`
|
|
5783
5805
|
from {
|
|
@@ -5803,7 +5825,7 @@ const ModalContainer$1 = /*#__PURE__*/_styled.div.withConfig({
|
|
|
5803
5825
|
const ModalHeader$1 = /*#__PURE__*/_styled.div.withConfig({
|
|
5804
5826
|
displayName: "styles__ModalHeader",
|
|
5805
5827
|
componentId: "sc-46huls-3"
|
|
5806
|
-
})(["top:0;h2{margin:0 0 ", " 0;font-size:2rem;font-weight:", ";}"], /*#__PURE__*/rem('30px'), bold$
|
|
5828
|
+
})(["top:0;h2{margin:0 0 ", " 0;font-size:2rem;font-weight:", ";}"], /*#__PURE__*/rem('30px'), bold$e);
|
|
5807
5829
|
const ModalContent = /*#__PURE__*/_styled.div.withConfig({
|
|
5808
5830
|
displayName: "styles__ModalContent",
|
|
5809
5831
|
componentId: "sc-46huls-4"
|
|
@@ -6060,7 +6082,7 @@ const LoadingState = props => {
|
|
|
6060
6082
|
};
|
|
6061
6083
|
|
|
6062
6084
|
const {
|
|
6063
|
-
normal: normal$
|
|
6085
|
+
normal: normal$i,
|
|
6064
6086
|
grey: grey$r,
|
|
6065
6087
|
lightGrey: lightGrey$m,
|
|
6066
6088
|
light: light$p
|
|
@@ -6079,7 +6101,7 @@ const Wrapper$i = _styled.div`
|
|
|
6079
6101
|
transition-duration: 0.3s;
|
|
6080
6102
|
|
|
6081
6103
|
&:hover {
|
|
6082
|
-
color: ${normal$
|
|
6104
|
+
color: ${normal$i};
|
|
6083
6105
|
}
|
|
6084
6106
|
}
|
|
6085
6107
|
|