@uniformdev/design-system 20.72.3-alpha.2 → 20.72.3-alpha.23
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/esm/index.js +60 -70
- package/dist/index.d.mts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +163 -174
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1412,7 +1412,6 @@ __export(index_exports, {
|
|
|
1412
1412
|
FlexiCard: () => FlexiCard,
|
|
1413
1413
|
FlexiCardTitle: () => FlexiCardTitle,
|
|
1414
1414
|
Heading: () => Heading2,
|
|
1415
|
-
HexModalBackground: () => HexModalBackground,
|
|
1416
1415
|
HorizontalRhythm: () => HorizontalRhythm,
|
|
1417
1416
|
Icon: () => Icon,
|
|
1418
1417
|
IconButton: () => IconButton,
|
|
@@ -3022,7 +3021,7 @@ var buttonSoftAccentPrimary = import_react12.css`
|
|
|
3022
3021
|
|
|
3023
3022
|
// src/components/Input/styles/Inputs.styles.ts
|
|
3024
3023
|
init_emotion_jsx_shim();
|
|
3025
|
-
var
|
|
3024
|
+
var import_react23 = require("@emotion/react");
|
|
3026
3025
|
|
|
3027
3026
|
// src/components/Button/Button.tsx
|
|
3028
3027
|
init_emotion_jsx_shim();
|
|
@@ -4920,7 +4919,15 @@ function useShortcut({
|
|
|
4920
4919
|
// src/components/Tooltip/Tooltip.tsx
|
|
4921
4920
|
init_emotion_jsx_shim();
|
|
4922
4921
|
var import_tooltip = require("@base-ui/react/tooltip");
|
|
4923
|
-
var
|
|
4922
|
+
var import_react21 = require("react");
|
|
4923
|
+
|
|
4924
|
+
// src/components/Modal/ModalPortalContext.ts
|
|
4925
|
+
init_emotion_jsx_shim();
|
|
4926
|
+
var import_react19 = require("react");
|
|
4927
|
+
var ModalPortalContext = (0, import_react19.createContext)(null);
|
|
4928
|
+
function useModalPortalContainer() {
|
|
4929
|
+
return (0, import_react19.useContext)(ModalPortalContext);
|
|
4930
|
+
}
|
|
4924
4931
|
|
|
4925
4932
|
// src/components/parsePlacement.ts
|
|
4926
4933
|
init_emotion_jsx_shim();
|
|
@@ -4934,11 +4941,11 @@ function parsePlacement(placement) {
|
|
|
4934
4941
|
|
|
4935
4942
|
// src/components/Tooltip/Tooltip.styles.ts
|
|
4936
4943
|
init_emotion_jsx_shim();
|
|
4937
|
-
var
|
|
4938
|
-
var TooltipPositionerStyles =
|
|
4944
|
+
var import_react20 = require("@emotion/react");
|
|
4945
|
+
var TooltipPositionerStyles = import_react20.css`
|
|
4939
4946
|
z-index: var(--z-tooltip);
|
|
4940
4947
|
`;
|
|
4941
|
-
var TooltipContainer =
|
|
4948
|
+
var TooltipContainer = import_react20.css`
|
|
4942
4949
|
border: 2px solid var(--gray-300);
|
|
4943
4950
|
border-radius: var(--rounded-base);
|
|
4944
4951
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
@@ -4947,7 +4954,7 @@ var TooltipContainer = import_react19.css`
|
|
|
4947
4954
|
background: var(--white);
|
|
4948
4955
|
position: relative;
|
|
4949
4956
|
`;
|
|
4950
|
-
var TooltipArrowStyles =
|
|
4957
|
+
var TooltipArrowStyles = import_react20.css`
|
|
4951
4958
|
display: flex;
|
|
4952
4959
|
|
|
4953
4960
|
&[data-side='top'] {
|
|
@@ -4970,13 +4977,13 @@ var TooltipArrowStyles = import_react19.css`
|
|
|
4970
4977
|
rotate: -90deg;
|
|
4971
4978
|
}
|
|
4972
4979
|
`;
|
|
4973
|
-
var TooltipArrowFill =
|
|
4980
|
+
var TooltipArrowFill = import_react20.css`
|
|
4974
4981
|
fill: var(--gray-300);
|
|
4975
4982
|
`;
|
|
4976
|
-
var TooltipArrowOuterStroke =
|
|
4983
|
+
var TooltipArrowOuterStroke = import_react20.css`
|
|
4977
4984
|
fill: var(--gray-300);
|
|
4978
4985
|
`;
|
|
4979
|
-
var TooltipArrowInnerStroke =
|
|
4986
|
+
var TooltipArrowInnerStroke = import_react20.css`
|
|
4980
4987
|
fill: var(--gray-300);
|
|
4981
4988
|
`;
|
|
4982
4989
|
|
|
@@ -5017,7 +5024,8 @@ function Tooltip({
|
|
|
5017
5024
|
gutter = 10,
|
|
5018
5025
|
...popupProps
|
|
5019
5026
|
}) {
|
|
5020
|
-
const [inlineContainer, setInlineContainer] = (0,
|
|
5027
|
+
const [inlineContainer, setInlineContainer] = (0, import_react21.useState)(null);
|
|
5028
|
+
const modalContainer = useModalPortalContainer();
|
|
5021
5029
|
if (!title) {
|
|
5022
5030
|
return children;
|
|
5023
5031
|
}
|
|
@@ -5035,7 +5043,7 @@ function Tooltip({
|
|
|
5035
5043
|
style: { position: "absolute", width: 0, height: 0, overflow: "visible" }
|
|
5036
5044
|
}
|
|
5037
5045
|
),
|
|
5038
|
-
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_tooltip.Tooltip.Portal, { container: withoutPortal ? inlineContainer : void 0, children: positionerContent })
|
|
5046
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_tooltip.Tooltip.Portal, { container: withoutPortal ? inlineContainer : modalContainer != null ? modalContainer : void 0, children: positionerContent })
|
|
5039
5047
|
] });
|
|
5040
5048
|
}
|
|
5041
5049
|
|
|
@@ -5143,8 +5151,8 @@ var React6 = __toESM(require("react"));
|
|
|
5143
5151
|
|
|
5144
5152
|
// src/components/Button/LinkButton.styles.ts
|
|
5145
5153
|
init_emotion_jsx_shim();
|
|
5146
|
-
var
|
|
5147
|
-
var linkButton =
|
|
5154
|
+
var import_react22 = require("@emotion/react");
|
|
5155
|
+
var linkButton = import_react22.css`
|
|
5148
5156
|
background: transparent;
|
|
5149
5157
|
border: none;
|
|
5150
5158
|
padding: 0;
|
|
@@ -5162,13 +5170,13 @@ var linkButton = import_react21.css`
|
|
|
5162
5170
|
outline: none;
|
|
5163
5171
|
}
|
|
5164
5172
|
`;
|
|
5165
|
-
var linkButtonDisabled =
|
|
5173
|
+
var linkButtonDisabled = import_react22.css`
|
|
5166
5174
|
opacity: var(--opacity-50);
|
|
5167
5175
|
filter: saturate(0.5);
|
|
5168
5176
|
cursor: default;
|
|
5169
5177
|
pointer-events: none;
|
|
5170
5178
|
`;
|
|
5171
|
-
var linkButtonTruncated =
|
|
5179
|
+
var linkButtonTruncated = import_react22.css`
|
|
5172
5180
|
display: block;
|
|
5173
5181
|
width: 100%;
|
|
5174
5182
|
overflow: hidden;
|
|
@@ -5198,15 +5206,15 @@ var LinkButton = React6.forwardRef(
|
|
|
5198
5206
|
);
|
|
5199
5207
|
|
|
5200
5208
|
// src/components/Input/styles/Inputs.styles.ts
|
|
5201
|
-
var inputContainer =
|
|
5209
|
+
var inputContainer = import_react23.css`
|
|
5202
5210
|
position: relative;
|
|
5203
5211
|
`;
|
|
5204
|
-
var labelText =
|
|
5212
|
+
var labelText = import_react23.css`
|
|
5205
5213
|
display: flex;
|
|
5206
5214
|
margin: 0 0 var(--spacing-xs);
|
|
5207
5215
|
align-items: center;
|
|
5208
5216
|
`;
|
|
5209
|
-
var input = (whiteSpaceWrap) =>
|
|
5217
|
+
var input = (whiteSpaceWrap) => import_react23.css`
|
|
5210
5218
|
--input-padding: 12px var(--spacing-base) 12px var(--spacing-sm);
|
|
5211
5219
|
appearance: none;
|
|
5212
5220
|
background-color: var(--white);
|
|
@@ -5291,7 +5299,7 @@ var input = (whiteSpaceWrap) => import_react22.css`
|
|
|
5291
5299
|
}
|
|
5292
5300
|
}
|
|
5293
5301
|
`;
|
|
5294
|
-
var inputError =
|
|
5302
|
+
var inputError = import_react23.css`
|
|
5295
5303
|
border-color: var(--action-destructive-default);
|
|
5296
5304
|
box-shadow: var(--elevation-100);
|
|
5297
5305
|
|
|
@@ -5299,7 +5307,7 @@ var inputError = import_react22.css`
|
|
|
5299
5307
|
border-color: var(--action-destructive-hover);
|
|
5300
5308
|
}
|
|
5301
5309
|
`;
|
|
5302
|
-
var inputPrefixGroup =
|
|
5310
|
+
var inputPrefixGroup = import_react23.css`
|
|
5303
5311
|
align-items: center;
|
|
5304
5312
|
background-color: var(--white);
|
|
5305
5313
|
border: 1px solid var(--gray-200);
|
|
@@ -5331,7 +5339,7 @@ var inputPrefixGroup = import_react22.css`
|
|
|
5331
5339
|
color: var(--gray-300);
|
|
5332
5340
|
}
|
|
5333
5341
|
`;
|
|
5334
|
-
var inputPrefixGroupError =
|
|
5342
|
+
var inputPrefixGroupError = import_react23.css`
|
|
5335
5343
|
border-color: var(--action-destructive-default);
|
|
5336
5344
|
box-shadow: var(--elevation-100);
|
|
5337
5345
|
|
|
@@ -5339,7 +5347,7 @@ var inputPrefixGroupError = import_react22.css`
|
|
|
5339
5347
|
border-color: var(--action-destructive-hover);
|
|
5340
5348
|
}
|
|
5341
5349
|
`;
|
|
5342
|
-
var inputPrefixSlot =
|
|
5350
|
+
var inputPrefixSlot = import_react23.css`
|
|
5343
5351
|
color: var(--gray-300);
|
|
5344
5352
|
flex: none;
|
|
5345
5353
|
font-size: 1rem;
|
|
@@ -5347,7 +5355,7 @@ var inputPrefixSlot = import_react22.css`
|
|
|
5347
5355
|
pointer-events: none;
|
|
5348
5356
|
white-space: nowrap;
|
|
5349
5357
|
`;
|
|
5350
|
-
var inputInPrefixGroup =
|
|
5358
|
+
var inputInPrefixGroup = import_react23.css`
|
|
5351
5359
|
appearance: none;
|
|
5352
5360
|
background: transparent;
|
|
5353
5361
|
border: 0;
|
|
@@ -5377,19 +5385,19 @@ var inputInPrefixGroup = import_react22.css`
|
|
|
5377
5385
|
color: var(--gray-300);
|
|
5378
5386
|
}
|
|
5379
5387
|
`;
|
|
5380
|
-
var inputInPrefixGroupWithIcon =
|
|
5388
|
+
var inputInPrefixGroupWithIcon = import_react23.css`
|
|
5381
5389
|
padding-right: var(--spacing-2xl);
|
|
5382
5390
|
`;
|
|
5383
|
-
var inputIcon =
|
|
5391
|
+
var inputIcon = import_react23.css`
|
|
5384
5392
|
align-items: center;
|
|
5385
5393
|
display: flex;
|
|
5386
5394
|
position: absolute;
|
|
5387
5395
|
inset: 0 var(--spacing-base) 0 auto;
|
|
5388
5396
|
`;
|
|
5389
|
-
var inputWithIcon =
|
|
5397
|
+
var inputWithIcon = import_react23.css`
|
|
5390
5398
|
padding-right: var(--spacing-2xl);
|
|
5391
5399
|
`;
|
|
5392
|
-
var inputSelect =
|
|
5400
|
+
var inputSelect = import_react23.css`
|
|
5393
5401
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%0A%3E%3Cpath d='M6.34317 7.75732L4.92896 9.17154L12 16.2426L19.0711 9.17157L17.6569 7.75735L12 13.4142L6.34317 7.75732Z' fill='currentColor' /%3E%3C/svg%3E");
|
|
5394
5402
|
background-position: right var(--spacing-sm) center;
|
|
5395
5403
|
background-repeat: no-repeat;
|
|
@@ -5400,13 +5408,13 @@ var inputSelect = import_react22.css`
|
|
|
5400
5408
|
color: var(--gray-300);
|
|
5401
5409
|
}
|
|
5402
5410
|
`;
|
|
5403
|
-
var inputSearchCloseBtn =
|
|
5411
|
+
var inputSearchCloseBtn = import_react23.css`
|
|
5404
5412
|
background: none;
|
|
5405
5413
|
border: none;
|
|
5406
5414
|
padding: 0;
|
|
5407
5415
|
pointer-events: all;
|
|
5408
5416
|
`;
|
|
5409
|
-
var inputToggleLabel =
|
|
5417
|
+
var inputToggleLabel = import_react23.css`
|
|
5410
5418
|
align-items: flex-start;
|
|
5411
5419
|
cursor: pointer;
|
|
5412
5420
|
display: inline-flex;
|
|
@@ -5417,7 +5425,7 @@ var inputToggleLabel = import_react22.css`
|
|
|
5417
5425
|
position: relative;
|
|
5418
5426
|
min-height: var(--spacing-md);
|
|
5419
5427
|
`;
|
|
5420
|
-
var toggleInput =
|
|
5428
|
+
var toggleInput = import_react23.css`
|
|
5421
5429
|
appearance: none;
|
|
5422
5430
|
border: 1px solid var(--gray-200);
|
|
5423
5431
|
background: var(--white);
|
|
@@ -5463,7 +5471,7 @@ var toggleInput = import_react22.css`
|
|
|
5463
5471
|
no-repeat center center;
|
|
5464
5472
|
}
|
|
5465
5473
|
`;
|
|
5466
|
-
var inlineLabel =
|
|
5474
|
+
var inlineLabel = import_react23.css`
|
|
5467
5475
|
padding-left: var(--spacing-lg);
|
|
5468
5476
|
|
|
5469
5477
|
> a {
|
|
@@ -5474,20 +5482,20 @@ var inlineLabel = import_react22.css`
|
|
|
5474
5482
|
}
|
|
5475
5483
|
}
|
|
5476
5484
|
`;
|
|
5477
|
-
var labelNormal =
|
|
5485
|
+
var labelNormal = import_react23.css`
|
|
5478
5486
|
font-weight: var(--fw-regular);
|
|
5479
5487
|
`;
|
|
5480
|
-
var labelMedium =
|
|
5488
|
+
var labelMedium = import_react23.css`
|
|
5481
5489
|
font-weight: var(--fw-medium);
|
|
5482
5490
|
`;
|
|
5483
|
-
var labelBold =
|
|
5491
|
+
var labelBold = import_react23.css`
|
|
5484
5492
|
font-weight: var(--fw-bold);
|
|
5485
5493
|
`;
|
|
5486
|
-
var inputDisabled =
|
|
5494
|
+
var inputDisabled = import_react23.css`
|
|
5487
5495
|
cursor: not-allowed;
|
|
5488
5496
|
color: var(--gray-400);
|
|
5489
5497
|
`;
|
|
5490
|
-
var inputToggleMessageContainer =
|
|
5498
|
+
var inputToggleMessageContainer = import_react23.css`
|
|
5491
5499
|
display: flex;
|
|
5492
5500
|
flex-direction: column;
|
|
5493
5501
|
flex-basis: 100%;
|
|
@@ -5495,11 +5503,11 @@ var inputToggleMessageContainer = import_react22.css`
|
|
|
5495
5503
|
margin-top: -0.5rem;
|
|
5496
5504
|
line-height: 1.15;
|
|
5497
5505
|
`;
|
|
5498
|
-
var textarea =
|
|
5506
|
+
var textarea = import_react23.css`
|
|
5499
5507
|
${input("wrap")};
|
|
5500
5508
|
display: block;
|
|
5501
5509
|
`;
|
|
5502
|
-
var inputSelectCompact =
|
|
5510
|
+
var inputSelectCompact = import_react23.css`
|
|
5503
5511
|
font-size: var(--fs-xs);
|
|
5504
5512
|
padding: var(--spacing-2xs) var(--spacing-md) var(--spacing-2xs) var(--spacing-xs);
|
|
5505
5513
|
border-color: var(--gray-200);
|
|
@@ -5509,8 +5517,8 @@ var inputSelectCompact = import_react22.css`
|
|
|
5509
5517
|
|
|
5510
5518
|
// src/styles/Accessibility.styles.ts
|
|
5511
5519
|
init_emotion_jsx_shim();
|
|
5512
|
-
var
|
|
5513
|
-
var accessibleHidden =
|
|
5520
|
+
var import_react24 = require("@emotion/react");
|
|
5521
|
+
var accessibleHidden = import_react24.css`
|
|
5514
5522
|
clip: rect(0, 0, 0, 0);
|
|
5515
5523
|
position: absolute;
|
|
5516
5524
|
width: 1px;
|
|
@@ -5520,17 +5528,17 @@ var accessibleHidden = import_react23.css`
|
|
|
5520
5528
|
|
|
5521
5529
|
// src/hooks/useImageLoadFallback.ts
|
|
5522
5530
|
init_emotion_jsx_shim();
|
|
5523
|
-
var
|
|
5531
|
+
var import_react25 = require("react");
|
|
5524
5532
|
function useImageLoadFallback({
|
|
5525
5533
|
src,
|
|
5526
5534
|
srcSet,
|
|
5527
5535
|
errorFallbackSrc,
|
|
5528
5536
|
logContext
|
|
5529
5537
|
}) {
|
|
5530
|
-
const [currentSrc, setCurrentSrc] = (0,
|
|
5531
|
-
const [currentSrcSet, setCurrentSrcSet] = (0,
|
|
5532
|
-
const [usedFallback, setUsedFallback] = (0,
|
|
5533
|
-
(0,
|
|
5538
|
+
const [currentSrc, setCurrentSrc] = (0, import_react25.useState)(src);
|
|
5539
|
+
const [currentSrcSet, setCurrentSrcSet] = (0, import_react25.useState)(srcSet);
|
|
5540
|
+
const [usedFallback, setUsedFallback] = (0, import_react25.useState)(false);
|
|
5541
|
+
(0, import_react25.useEffect)(() => {
|
|
5534
5542
|
setCurrentSrc(src);
|
|
5535
5543
|
setCurrentSrcSet(srcSet);
|
|
5536
5544
|
setUsedFallback(false);
|
|
@@ -5552,8 +5560,8 @@ function useImageLoadFallback({
|
|
|
5552
5560
|
|
|
5553
5561
|
// src/styles/Animations.styles.ts
|
|
5554
5562
|
init_emotion_jsx_shim();
|
|
5555
|
-
var
|
|
5556
|
-
var growSubtle =
|
|
5563
|
+
var import_react26 = require("@emotion/react");
|
|
5564
|
+
var growSubtle = import_react26.keyframes`
|
|
5557
5565
|
0%,
|
|
5558
5566
|
100% {
|
|
5559
5567
|
transform: scale(1);
|
|
@@ -5564,7 +5572,7 @@ var growSubtle = import_react25.keyframes`
|
|
|
5564
5572
|
opacity: 1;
|
|
5565
5573
|
}
|
|
5566
5574
|
`;
|
|
5567
|
-
var fadeInBottom =
|
|
5575
|
+
var fadeInBottom = import_react26.keyframes`
|
|
5568
5576
|
0% {
|
|
5569
5577
|
opacity: 0;
|
|
5570
5578
|
transform: translateY(10px);
|
|
@@ -5574,7 +5582,7 @@ var fadeInBottom = import_react25.keyframes`
|
|
|
5574
5582
|
transform: translateY(0);
|
|
5575
5583
|
}
|
|
5576
5584
|
`;
|
|
5577
|
-
var fadeInTop =
|
|
5585
|
+
var fadeInTop = import_react26.keyframes`
|
|
5578
5586
|
0% {
|
|
5579
5587
|
opacity: 0;
|
|
5580
5588
|
transform: translateY(-10px);
|
|
@@ -5584,7 +5592,7 @@ var fadeInTop = import_react25.keyframes`
|
|
|
5584
5592
|
transform: translateY(0);
|
|
5585
5593
|
}
|
|
5586
5594
|
`;
|
|
5587
|
-
var fadeOutBottom =
|
|
5595
|
+
var fadeOutBottom = import_react26.keyframes`
|
|
5588
5596
|
0% {
|
|
5589
5597
|
opacity: 1;
|
|
5590
5598
|
transform: translateY(0);
|
|
@@ -5594,7 +5602,7 @@ var fadeOutBottom = import_react25.keyframes`
|
|
|
5594
5602
|
transform: translateY(10px);
|
|
5595
5603
|
}
|
|
5596
5604
|
`;
|
|
5597
|
-
var fadeIn =
|
|
5605
|
+
var fadeIn = import_react26.keyframes`
|
|
5598
5606
|
0% {
|
|
5599
5607
|
opacity: 0;
|
|
5600
5608
|
}
|
|
@@ -5602,11 +5610,11 @@ var fadeIn = import_react25.keyframes`
|
|
|
5602
5610
|
opacity: 1;
|
|
5603
5611
|
}
|
|
5604
5612
|
`;
|
|
5605
|
-
var ripple =
|
|
5613
|
+
var ripple = import_react26.keyframes`
|
|
5606
5614
|
to {
|
|
5607
5615
|
transform: scale(4);
|
|
5608
5616
|
}`;
|
|
5609
|
-
var skeletonLoading =
|
|
5617
|
+
var skeletonLoading = import_react26.keyframes`
|
|
5610
5618
|
0% {
|
|
5611
5619
|
background-color: var(--gray-100);
|
|
5612
5620
|
}
|
|
@@ -5614,7 +5622,7 @@ var skeletonLoading = import_react25.keyframes`
|
|
|
5614
5622
|
background-color: var(--gray-200);
|
|
5615
5623
|
}
|
|
5616
5624
|
`;
|
|
5617
|
-
var fadeInLtr =
|
|
5625
|
+
var fadeInLtr = import_react26.keyframes`
|
|
5618
5626
|
from {
|
|
5619
5627
|
opacity: 0;
|
|
5620
5628
|
transform: translateX(-10px);
|
|
@@ -5624,7 +5632,7 @@ to {
|
|
|
5624
5632
|
transform: translateX(0);
|
|
5625
5633
|
}
|
|
5626
5634
|
`;
|
|
5627
|
-
var fadeInRtl =
|
|
5635
|
+
var fadeInRtl = import_react26.keyframes`
|
|
5628
5636
|
from {
|
|
5629
5637
|
opacity: 0;
|
|
5630
5638
|
transform: translateX(10px);
|
|
@@ -5634,7 +5642,7 @@ to {
|
|
|
5634
5642
|
transform: translateX(0);
|
|
5635
5643
|
}
|
|
5636
5644
|
`;
|
|
5637
|
-
var slideInTtb =
|
|
5645
|
+
var slideInTtb = import_react26.keyframes`
|
|
5638
5646
|
from {
|
|
5639
5647
|
transform: translateY(-100%);
|
|
5640
5648
|
}
|
|
@@ -5642,7 +5650,7 @@ to {
|
|
|
5642
5650
|
transform: translateY(0);
|
|
5643
5651
|
}
|
|
5644
5652
|
`;
|
|
5645
|
-
var slideInRtl =
|
|
5653
|
+
var slideInRtl = import_react26.keyframes`
|
|
5646
5654
|
from {
|
|
5647
5655
|
transform: translateX(100%);
|
|
5648
5656
|
}
|
|
@@ -5650,7 +5658,7 @@ to {
|
|
|
5650
5658
|
transform: translateX(0);
|
|
5651
5659
|
}
|
|
5652
5660
|
`;
|
|
5653
|
-
var spin2 =
|
|
5661
|
+
var spin2 = import_react26.keyframes`
|
|
5654
5662
|
from {
|
|
5655
5663
|
transform: rotateZ(0deg);
|
|
5656
5664
|
}
|
|
@@ -5664,8 +5672,8 @@ init_emotion_jsx_shim();
|
|
|
5664
5672
|
|
|
5665
5673
|
// src/components/AddButton/AddButton.styles.ts
|
|
5666
5674
|
init_emotion_jsx_shim();
|
|
5667
|
-
var
|
|
5668
|
-
var addButton =
|
|
5675
|
+
var import_react27 = require("@emotion/react");
|
|
5676
|
+
var addButton = import_react27.css`
|
|
5669
5677
|
--max-size: clamp(2.5rem, 100vw, 3.5rem);
|
|
5670
5678
|
align-items: center;
|
|
5671
5679
|
box-shadow: var(--shadow-base);
|
|
@@ -5751,8 +5759,8 @@ var import_CgMathPlus2 = require("@react-icons/all-files/cg/CgMathPlus");
|
|
|
5751
5759
|
|
|
5752
5760
|
// src/components/AddListButton/AddListButton.styles.ts
|
|
5753
5761
|
init_emotion_jsx_shim();
|
|
5754
|
-
var
|
|
5755
|
-
var AddListButtonBtn =
|
|
5762
|
+
var import_react28 = require("@emotion/react");
|
|
5763
|
+
var AddListButtonBtn = import_react28.css`
|
|
5756
5764
|
align-items: center;
|
|
5757
5765
|
background: transparent;
|
|
5758
5766
|
border: none;
|
|
@@ -5771,20 +5779,20 @@ var AddListButtonBtn = import_react27.css`
|
|
|
5771
5779
|
box-shadow: var(--shadow-base);
|
|
5772
5780
|
}
|
|
5773
5781
|
`;
|
|
5774
|
-
var AddListButtonTheme = (theme) =>
|
|
5782
|
+
var AddListButtonTheme = (theme) => import_react28.css`
|
|
5775
5783
|
color: ${theme};
|
|
5776
5784
|
`;
|
|
5777
|
-
var AddListButtonBtnSmall =
|
|
5785
|
+
var AddListButtonBtnSmall = import_react28.css`
|
|
5778
5786
|
font-size: var(--fs-xs);
|
|
5779
5787
|
font-weight: var(--fw-regular);
|
|
5780
5788
|
`;
|
|
5781
|
-
var AddListButtonIconMathPlus = (disabled2, theme) =>
|
|
5789
|
+
var AddListButtonIconMathPlus = (disabled2, theme) => import_react28.css`
|
|
5782
5790
|
box-sizing: border-box;
|
|
5783
5791
|
background: ${disabled2 ? "var(--gray-300)" : theme};
|
|
5784
5792
|
color: var(--white);
|
|
5785
5793
|
padding: calc(var(--spacing-xs) - 0.15rem);
|
|
5786
5794
|
`;
|
|
5787
|
-
var AddListButtonIcon =
|
|
5795
|
+
var AddListButtonIcon = import_react28.css`
|
|
5788
5796
|
border-radius: var(--rounded-full);
|
|
5789
5797
|
transition: box-shadow var(--duration-fast) var(--timing-ease-out);
|
|
5790
5798
|
`;
|
|
@@ -5840,7 +5848,7 @@ var import_CgProfile2 = require("@react-icons/all-files/cg/CgProfile");
|
|
|
5840
5848
|
|
|
5841
5849
|
// src/components/Avatar/Avatar.styles.ts
|
|
5842
5850
|
init_emotion_jsx_shim();
|
|
5843
|
-
var
|
|
5851
|
+
var import_react29 = require("@emotion/react");
|
|
5844
5852
|
var AVATAR_SIZE_2XS = "1rem";
|
|
5845
5853
|
var AVATAR_SIZE_XS = "1.5rem";
|
|
5846
5854
|
var AVATAR_SIZE_SM = "2rem";
|
|
@@ -5849,7 +5857,7 @@ var AVATAR_SIZE_LG = "3rem";
|
|
|
5849
5857
|
var AVATAR_SIZE_XL = "4rem";
|
|
5850
5858
|
var AVATAR_SIZE_2XL = "5rem";
|
|
5851
5859
|
var AVATAR_SIZE_3XL = "6rem";
|
|
5852
|
-
var avatarStyles =
|
|
5860
|
+
var avatarStyles = import_react29.css`
|
|
5853
5861
|
display: flex;
|
|
5854
5862
|
justify-content: center;
|
|
5855
5863
|
align-items: center;
|
|
@@ -5863,33 +5871,33 @@ var avatarStyles = import_react28.css`
|
|
|
5863
5871
|
font-weight: var(--fw-bold);
|
|
5864
5872
|
overflow: hidden;
|
|
5865
5873
|
`;
|
|
5866
|
-
var avatarImageStyles =
|
|
5874
|
+
var avatarImageStyles = import_react29.css`
|
|
5867
5875
|
width: 100%;
|
|
5868
5876
|
height: 100%;
|
|
5869
5877
|
object-fit: cover;
|
|
5870
5878
|
`;
|
|
5871
|
-
var avatarSize2xsStyles =
|
|
5879
|
+
var avatarSize2xsStyles = import_react29.css`
|
|
5872
5880
|
width: ${AVATAR_SIZE_2XS};
|
|
5873
5881
|
`;
|
|
5874
|
-
var avatarSizeXsStyles =
|
|
5882
|
+
var avatarSizeXsStyles = import_react29.css`
|
|
5875
5883
|
width: ${AVATAR_SIZE_XS};
|
|
5876
5884
|
`;
|
|
5877
|
-
var avatarSizeSmStyles =
|
|
5885
|
+
var avatarSizeSmStyles = import_react29.css`
|
|
5878
5886
|
width: ${AVATAR_SIZE_SM};
|
|
5879
5887
|
`;
|
|
5880
|
-
var avatarSizeMdStyles =
|
|
5888
|
+
var avatarSizeMdStyles = import_react29.css`
|
|
5881
5889
|
width: ${AVATAR_SIZE_MD};
|
|
5882
5890
|
`;
|
|
5883
|
-
var avatarSizeLgStyles =
|
|
5891
|
+
var avatarSizeLgStyles = import_react29.css`
|
|
5884
5892
|
width: ${AVATAR_SIZE_LG};
|
|
5885
5893
|
`;
|
|
5886
|
-
var avatarSizeXlStyles =
|
|
5894
|
+
var avatarSizeXlStyles = import_react29.css`
|
|
5887
5895
|
width: ${AVATAR_SIZE_XL};
|
|
5888
5896
|
`;
|
|
5889
|
-
var avatarSize2xlStyles =
|
|
5897
|
+
var avatarSize2xlStyles = import_react29.css`
|
|
5890
5898
|
width: ${AVATAR_SIZE_2XL};
|
|
5891
5899
|
`;
|
|
5892
|
-
var avatarSize3xlStyles =
|
|
5900
|
+
var avatarSize3xlStyles = import_react29.css`
|
|
5893
5901
|
width: ${AVATAR_SIZE_3XL};
|
|
5894
5902
|
`;
|
|
5895
5903
|
|
|
@@ -5927,8 +5935,8 @@ init_emotion_jsx_shim();
|
|
|
5927
5935
|
|
|
5928
5936
|
// src/components/Avatar/AvatarGroup.styles.ts
|
|
5929
5937
|
init_emotion_jsx_shim();
|
|
5930
|
-
var
|
|
5931
|
-
var avatarGroupStyles =
|
|
5938
|
+
var import_react30 = require("@emotion/react");
|
|
5939
|
+
var avatarGroupStyles = import_react30.css`
|
|
5932
5940
|
display: flex;
|
|
5933
5941
|
flex-wrap: nowrap;
|
|
5934
5942
|
|
|
@@ -5936,7 +5944,7 @@ var avatarGroupStyles = import_react29.css`
|
|
|
5936
5944
|
margin-left: calc(-1 * var(--spacing-sm));
|
|
5937
5945
|
}
|
|
5938
5946
|
`;
|
|
5939
|
-
var avatarGroupMaxStyles = (numberOfItemsToRender) =>
|
|
5947
|
+
var avatarGroupMaxStyles = (numberOfItemsToRender) => import_react30.css`
|
|
5940
5948
|
& > *:nth-of-type(n + ${numberOfItemsToRender + 1}) {
|
|
5941
5949
|
display: none;
|
|
5942
5950
|
}
|
|
@@ -5998,8 +6006,8 @@ var import_CgClose3 = require("@react-icons/all-files/cg/CgClose");
|
|
|
5998
6006
|
|
|
5999
6007
|
// src/components/Banner/Banner.styles.ts
|
|
6000
6008
|
init_emotion_jsx_shim();
|
|
6001
|
-
var
|
|
6002
|
-
var bannerStyles =
|
|
6009
|
+
var import_react31 = require("@emotion/react");
|
|
6010
|
+
var bannerStyles = import_react31.css`
|
|
6003
6011
|
${functionalColors}
|
|
6004
6012
|
|
|
6005
6013
|
--border-color: var(--utility-caution-icon);
|
|
@@ -6033,11 +6041,11 @@ var bannerStyles = import_react30.css`
|
|
|
6033
6041
|
--background-color: var(--utility-success-container);
|
|
6034
6042
|
}
|
|
6035
6043
|
`;
|
|
6036
|
-
var bannerAnimatedStyles =
|
|
6044
|
+
var bannerAnimatedStyles = import_react31.css`
|
|
6037
6045
|
animation: ${slideInTtb} var(--duration-xfast) ease-out;
|
|
6038
6046
|
`;
|
|
6039
|
-
var bannerContentStyles =
|
|
6040
|
-
var bannerDismissButtonStyles =
|
|
6047
|
+
var bannerContentStyles = import_react31.css``;
|
|
6048
|
+
var bannerDismissButtonStyles = import_react31.css`
|
|
6041
6049
|
display: flex;
|
|
6042
6050
|
align-items: center;
|
|
6043
6051
|
justify-content: center;
|
|
@@ -6090,15 +6098,15 @@ init_emotion_jsx_shim();
|
|
|
6090
6098
|
|
|
6091
6099
|
// src/components/Brand/UniformLogo.styles.ts
|
|
6092
6100
|
init_emotion_jsx_shim();
|
|
6093
|
-
var
|
|
6094
|
-
var SVG =
|
|
6101
|
+
var import_react32 = require("@emotion/react");
|
|
6102
|
+
var SVG = import_react32.css`
|
|
6095
6103
|
display: block;
|
|
6096
6104
|
`;
|
|
6097
|
-
var SVGLight =
|
|
6105
|
+
var SVGLight = import_react32.css`
|
|
6098
6106
|
background: transparent;
|
|
6099
6107
|
color: var(--typography-base);
|
|
6100
6108
|
`;
|
|
6101
|
-
var SVGDark =
|
|
6109
|
+
var SVGDark = import_react32.css`
|
|
6102
6110
|
background: var(--gray-800);
|
|
6103
6111
|
color: var(--white);
|
|
6104
6112
|
`;
|
|
@@ -6311,36 +6319,36 @@ init_emotion_jsx_shim();
|
|
|
6311
6319
|
|
|
6312
6320
|
// src/components/LoadingOverlay/LoadingOverlay.styles.ts
|
|
6313
6321
|
init_emotion_jsx_shim();
|
|
6314
|
-
var
|
|
6315
|
-
var loadingOverlayContainer =
|
|
6322
|
+
var import_react33 = require("@emotion/react");
|
|
6323
|
+
var loadingOverlayContainer = import_react33.css`
|
|
6316
6324
|
inset: 0;
|
|
6317
6325
|
overflow: hidden;
|
|
6318
6326
|
justify-content: center;
|
|
6319
6327
|
padding: var(--spacing-xl);
|
|
6320
6328
|
overflow-y: auto;
|
|
6321
6329
|
`;
|
|
6322
|
-
var loadingOverlayVisible =
|
|
6330
|
+
var loadingOverlayVisible = import_react33.css`
|
|
6323
6331
|
display: flex;
|
|
6324
6332
|
`;
|
|
6325
|
-
var loadingOverlayHidden =
|
|
6333
|
+
var loadingOverlayHidden = import_react33.css`
|
|
6326
6334
|
display: none;
|
|
6327
6335
|
`;
|
|
6328
|
-
var loadingOverlayBackground = (bgColor) =>
|
|
6336
|
+
var loadingOverlayBackground = (bgColor) => import_react33.css`
|
|
6329
6337
|
background: ${bgColor};
|
|
6330
6338
|
opacity: 0.92;
|
|
6331
6339
|
position: absolute;
|
|
6332
6340
|
inset: 0 0;
|
|
6333
6341
|
`;
|
|
6334
|
-
var loadingOverlayBody =
|
|
6342
|
+
var loadingOverlayBody = import_react33.css`
|
|
6335
6343
|
align-items: center;
|
|
6336
6344
|
display: flex;
|
|
6337
6345
|
flex-direction: column;
|
|
6338
6346
|
`;
|
|
6339
|
-
var loadingOverlayMessage =
|
|
6347
|
+
var loadingOverlayMessage = import_react33.css`
|
|
6340
6348
|
color: var(--gray-600);
|
|
6341
6349
|
margin: var(--spacing-base) 0 0;
|
|
6342
6350
|
`;
|
|
6343
|
-
var loaderAnimationContainer =
|
|
6351
|
+
var loaderAnimationContainer = import_react33.css`
|
|
6344
6352
|
aspect-ratio: 1/1;
|
|
6345
6353
|
position: relative;
|
|
6346
6354
|
transition: filter var(--duration-xslow) ease-in-out;
|
|
@@ -6668,17 +6676,17 @@ var LoadingIcon = ({ height, width, ...props }) => {
|
|
|
6668
6676
|
|
|
6669
6677
|
// src/components/Menu/DropdownStyleMenuTrigger.tsx
|
|
6670
6678
|
init_emotion_jsx_shim();
|
|
6671
|
-
var
|
|
6679
|
+
var import_react34 = require("@emotion/react");
|
|
6672
6680
|
var import_CgChevronDown2 = require("@react-icons/all-files/cg/CgChevronDown");
|
|
6673
|
-
var
|
|
6681
|
+
var import_react35 = require("react");
|
|
6674
6682
|
var import_jsx_runtime25 = require("@emotion/react/jsx-runtime");
|
|
6675
|
-
var buttonStyle = (bgColor) =>
|
|
6683
|
+
var buttonStyle = (bgColor) => import_react34.css`
|
|
6676
6684
|
background-color: ${bgColor};
|
|
6677
6685
|
display: block;
|
|
6678
6686
|
font-size: var(--fs-sm);
|
|
6679
6687
|
line-height: 1.5;
|
|
6680
6688
|
`;
|
|
6681
|
-
var ghostButtonStyle =
|
|
6689
|
+
var ghostButtonStyle = import_react34.css`
|
|
6682
6690
|
border: 0;
|
|
6683
6691
|
transition:
|
|
6684
6692
|
background-color var(--duration-fast) var(--timing-ease-out),
|
|
@@ -6695,7 +6703,7 @@ var ghostButtonStyle = import_react33.css`
|
|
|
6695
6703
|
color: var(--gray-400);
|
|
6696
6704
|
}
|
|
6697
6705
|
`;
|
|
6698
|
-
var outlineButtonStyle =
|
|
6706
|
+
var outlineButtonStyle = import_react34.css`
|
|
6699
6707
|
align-items: center;
|
|
6700
6708
|
border: 1px solid var(--gray-200);
|
|
6701
6709
|
border-radius: var(--rounded-sm);
|
|
@@ -6716,7 +6724,7 @@ var outlineButtonStyle = import_react33.css`
|
|
|
6716
6724
|
}
|
|
6717
6725
|
`;
|
|
6718
6726
|
var DropdownStyleMenuTrigger = markNativeButton(
|
|
6719
|
-
(0,
|
|
6727
|
+
(0, import_react35.forwardRef)(function DropdownStyleMenuTrigger2({ bgColor = "var(--white)", variant = "ghost", children, ...buttonProps }, ref) {
|
|
6720
6728
|
var _a;
|
|
6721
6729
|
const buttonVariantStyle = variant === "ghost" ? ghostButtonStyle : outlineButtonStyle;
|
|
6722
6730
|
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
@@ -6741,14 +6749,6 @@ var import_menu = require("@base-ui/react/menu");
|
|
|
6741
6749
|
var React8 = __toESM(require("react"));
|
|
6742
6750
|
var import_react40 = require("react");
|
|
6743
6751
|
|
|
6744
|
-
// src/components/Modal/ModalPortalContext.ts
|
|
6745
|
-
init_emotion_jsx_shim();
|
|
6746
|
-
var import_react35 = require("react");
|
|
6747
|
-
var ModalPortalContext = (0, import_react35.createContext)(null);
|
|
6748
|
-
function useModalPortalContainer() {
|
|
6749
|
-
return (0, import_react35.useContext)(ModalPortalContext);
|
|
6750
|
-
}
|
|
6751
|
-
|
|
6752
6752
|
// src/components/Menu/filterMenuSeparators.ts
|
|
6753
6753
|
init_emotion_jsx_shim();
|
|
6754
6754
|
var import_react38 = __toESM(require("react"));
|
|
@@ -7658,10 +7658,10 @@ var Input = (0, import_react49.forwardRef)(
|
|
|
7658
7658
|
id,
|
|
7659
7659
|
css: [
|
|
7660
7660
|
prefix ? inputInPrefixGroup : input("nowrap"),
|
|
7661
|
+
typeof classNameControl === "object" ? classNameControl : void 0,
|
|
7661
7662
|
prefix && icon ? inputInPrefixGroupWithIcon : void 0,
|
|
7662
7663
|
!prefix && errorMessage ? inputError : void 0,
|
|
7663
|
-
!prefix && icon ? inputWithIcon : ""
|
|
7664
|
-
typeof classNameControl === "object" ? classNameControl : void 0
|
|
7664
|
+
!prefix && icon ? inputWithIcon : ""
|
|
7665
7665
|
],
|
|
7666
7666
|
"aria-label": showLabel || typeof label2 !== "string" ? void 0 : label2,
|
|
7667
7667
|
className: typeof classNameControl === "string" ? classNameControl : "",
|
|
@@ -9546,18 +9546,38 @@ var Link = React13.forwardRef(
|
|
|
9546
9546
|
);
|
|
9547
9547
|
Link.displayName = "Link";
|
|
9548
9548
|
var LinkWithRef = React13.forwardRef(
|
|
9549
|
-
({
|
|
9550
|
-
LinkManager,
|
|
9551
|
-
|
|
9552
|
-
|
|
9553
|
-
|
|
9554
|
-
|
|
9555
|
-
|
|
9556
|
-
|
|
9557
|
-
|
|
9558
|
-
|
|
9559
|
-
|
|
9560
|
-
|
|
9549
|
+
({
|
|
9550
|
+
linkManagerComponent: LinkManager,
|
|
9551
|
+
href,
|
|
9552
|
+
as,
|
|
9553
|
+
onClick,
|
|
9554
|
+
external,
|
|
9555
|
+
linkColor = "default",
|
|
9556
|
+
children,
|
|
9557
|
+
text,
|
|
9558
|
+
...props
|
|
9559
|
+
}, ref) => {
|
|
9560
|
+
const externalAttrs = external ? {
|
|
9561
|
+
target: "_blank",
|
|
9562
|
+
rel: "noreferrer noopener"
|
|
9563
|
+
} : {};
|
|
9564
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
9565
|
+
LinkManager,
|
|
9566
|
+
{
|
|
9567
|
+
...props,
|
|
9568
|
+
...externalAttrs,
|
|
9569
|
+
as,
|
|
9570
|
+
href,
|
|
9571
|
+
ref,
|
|
9572
|
+
css: [link, textColor[linkColor]],
|
|
9573
|
+
onClick,
|
|
9574
|
+
children: [
|
|
9575
|
+
text != null ? text : children,
|
|
9576
|
+
external ? /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(Icon, { icon: import_CgExternal2.CgExternal, iconColor: "currentColor", size: 20 }) : null
|
|
9577
|
+
]
|
|
9578
|
+
}
|
|
9579
|
+
);
|
|
9580
|
+
}
|
|
9561
9581
|
);
|
|
9562
9582
|
LinkWithRef.displayName = "LinkWithRef";
|
|
9563
9583
|
|
|
@@ -12944,11 +12964,6 @@ var TileText2 = ({ as = "heading", children, ...props }) => {
|
|
|
12944
12964
|
// src/components/IntegrationModalHeader/IntegrationModalHeader.styles.ts
|
|
12945
12965
|
init_emotion_jsx_shim();
|
|
12946
12966
|
var import_react111 = require("@emotion/react");
|
|
12947
|
-
var IntegrationModalHeaderSVGBackground = import_react111.css`
|
|
12948
|
-
position: absolute;
|
|
12949
|
-
top: 0;
|
|
12950
|
-
left: 0;
|
|
12951
|
-
`;
|
|
12952
12967
|
var IntegrationModalHeaderGroup = import_react111.css`
|
|
12953
12968
|
align-items: center;
|
|
12954
12969
|
display: flex;
|
|
@@ -12981,48 +12996,8 @@ var IntegrationModalHeaderContentWrapper = import_react111.css`
|
|
|
12981
12996
|
|
|
12982
12997
|
// src/components/IntegrationModalHeader/IntegrationModalHeader.tsx
|
|
12983
12998
|
var import_jsx_runtime93 = require("@emotion/react/jsx-runtime");
|
|
12984
|
-
var HexModalBackground = ({ ...props }) => {
|
|
12985
|
-
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
12986
|
-
"svg",
|
|
12987
|
-
{
|
|
12988
|
-
width: "236",
|
|
12989
|
-
height: "130",
|
|
12990
|
-
viewBox: "0 0 236 130",
|
|
12991
|
-
fill: "none",
|
|
12992
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
12993
|
-
...props,
|
|
12994
|
-
children: [
|
|
12995
|
-
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
12996
|
-
"path",
|
|
12997
|
-
{
|
|
12998
|
-
fillRule: "evenodd",
|
|
12999
|
-
clipRule: "evenodd",
|
|
13000
|
-
d: "M-217.51 129.423L-217.349 129.517L-217.349 129.33L-195.025 116.432L-194.865 116.34L-194.704 116.432L-194.704 116.246L-172.219 103.255L-172.059 103.347L-172.059 103.162L-171.897 103.069L-172.059 102.976L-172.059 77.1784L-149.735 90.0769L-149.735 90.2627L-149.735 116.06L-149.896 116.153L-149.735 116.246L-149.735 116.432L-149.574 116.339L-127.09 129.33L-127.09 129.517L-126.929 129.423L-126.768 129.517L-126.768 129.33L-104.284 116.339L-104.123 116.432L-104.123 116.246L-103.962 116.153L-104.123 116.06L-104.123 90.2627L-81.96 103.069L-81.9607 103.069L-81.7998 103.162L-81.7998 103.347L-81.7998 129.517L-58.9935 116.339L-58.8326 116.432L-58.8326 116.246L-58.6717 116.153L-58.8326 116.06L-58.8326 90.2627L-58.8326 90.0769L-36.3485 77.0857L-36.1876 77.1788L-36.1876 76.9926L-36.0267 76.8995L-36.1876 76.8068L-36.1876 51.0099L-36.1876 50.8237L-13.8644 37.9256L-13.7031 37.8325L-13.5425 37.9256L-13.5425 37.7397L9.26375 24.5621L-13.3813 11.4778L8.781 -1.32792L8.781 -1.3276L8.94192 -1.42068L9.10284 -1.3276L9.10284 -1.32792L31.4263 11.5705L31.4263 11.7564L31.4263 37.3674L31.4263 37.5536L8.94191 50.5448L8.781 50.4517L8.781 50.6379L8.62008 50.7306L8.781 50.8237L8.78099 76.6209L8.78099 76.8068L8.62008 76.8995L8.78099 76.9926L8.78099 77.1788L8.78099 102.79L8.78099 102.976L-14.025 116.153L8.78099 129.33L8.78099 129.517L8.94191 129.423L9.10282 129.517L9.10282 129.33L31.5869 116.339L31.7482 116.432L54.0714 129.33L54.0714 129.517L54.2323 129.424L54.3932 129.517L54.3932 129.33L76.7164 116.432L99.5233 103.255L99.6836 103.347L99.6836 103.162L99.8445 103.069L99.6836 102.976L99.6836 76.9926L99.8445 76.8995L99.6836 76.8068L99.6836 76.6209L99.5227 76.7137L77.1992 63.8149L99.3618 51.0099L99.5227 50.9168L99.6836 51.0099L99.6836 50.8237L122.007 37.9256L122.168 37.8325L122.329 37.9256L144.491 50.7306L121.846 63.8149L144.652 76.9926L144.652 77.1788L144.813 77.0857L144.974 77.1788L144.974 76.9926L167.297 64.0939L167.297 64.0942L167.458 64.0011L167.619 64.0942L167.619 64.0939L190.264 77.1788L190.264 51.0099L190.264 50.8237L190.425 50.7307L190.264 50.6379L190.264 50.4517L190.264 24.6552L212.748 11.6633L212.909 11.7564L212.909 11.5705L213.07 11.4778L212.909 11.3847L212.909 -14.4122L212.909 -14.5984L235.394 -27.5896L235.554 -27.4965L235.554 -27.6826L235.715 -27.7757L235.554 -27.8685L235.554 -53.6657L235.554 -53.8515L235.715 -53.9443L235.554 -54.0374L235.554 -54.2235L235.554 -80.0201L235.715 -80.1132L235.554 -80.2063L235.554 -80.3921L235.394 -80.299L212.909 -93.2909L212.909 -93.4767L212.909 -119.645L190.264 -106.561L190.103 -106.468L189.943 -106.561L167.619 -119.459L167.619 -119.645L167.458 -119.552L167.297 -119.645L167.297 -119.459L144.974 -106.561L144.813 -106.468L144.652 -106.561L122.007 -119.645L122.007 -93.4767L122.007 -93.2909L99.6836 -80.3921L99.5227 -80.2994L99.3618 -80.3921L77.0386 -93.2909L77.0386 -93.4767L76.8773 -93.384L76.7164 -93.4767L76.7164 -93.2909L54.3932 -80.3921L54.2323 -80.2994L54.0714 -80.3921L31.7482 -93.2909L31.7482 -93.4768L31.7482 -119.645L9.10285 -106.561L9.10285 -132.358L9.26376 -132.451L9.10285 -132.544L9.10285 -132.73L8.94193 -132.637L-13.5425 -145.628L-13.5425 -145.814L-13.7031 -145.721L-13.8643 -145.814L-13.8643 -145.628L-36.1876 -132.73L-36.1876 -132.73L-36.3484 -132.637L-36.509 -132.73L-36.509 -132.73L-58.8326 -145.628L-58.8326 -145.814L-58.8326 -171.611L-58.6717 -171.704L-58.8326 -171.797L-58.8326 -171.983L-58.9935 -171.89L-73.9236 -180.517L-74.5672 -180.517L-59.3153 -171.704L-70.3966 -165.302L-81.4776 -158.899L-81.4776 -180.517L-81.7998 -180.517L-81.7998 -158.899L-92.8807 -165.302L-103.962 -171.704L-88.7101 -180.517L-89.3538 -180.517L-104.284 -171.89L-104.445 -171.983L-104.445 -171.797L-104.606 -171.704L-104.445 -171.611L-104.445 -145.628L-126.929 -132.637L-127.09 -132.73L-127.09 -132.544L-127.251 -132.451L-127.09 -132.358L-127.09 -106.561L-127.09 -106.375L-127.251 -106.282L-127.09 -106.189L-127.09 -106.003L-127.09 -80.2063L-127.251 -80.1132L-127.09 -80.0202L-127.09 -79.834L-126.929 -79.9271L-104.606 -67.0289L-126.768 -54.2233L-126.768 -54.2236L-126.929 -54.1305L-127.09 -54.2236L-127.09 -54.2233L-149.413 -67.1217L-149.413 -67.3079L-149.574 -67.2148L-149.735 -67.3079L-149.735 -67.1217L-172.059 -54.2233L-172.059 -54.2236L-172.219 -54.1305L-172.381 -54.2236L-172.381 -54.2233L-194.704 -67.1217L-194.704 -67.3079L-194.865 -67.2148L-195.025 -67.3079L-195.025 -67.3076L-217.349 -80.2063L-217.349 -80.3922L-217.349 -106.003L-217.349 -106.189L-194.865 -119.181L-194.704 -119.088L-194.704 -119.273L-194.543 -119.366L-194.704 -119.459L-194.704 -145.256L-194.704 -145.442L-194.543 -145.535L-194.704 -145.628L-194.704 -145.814L-194.704 -171.611L-194.543 -171.704L-194.704 -171.797L-194.704 -171.983L-194.865 -171.89L-209.795 -180.517L-210.438 -180.517L-195.186 -171.704L-206.267 -165.302L-217.349 -158.899L-217.349 -180.517L-217.671 -180.517L-217.671 -158.899L-228.752 -165.302L-235.897 -169.43L-235.897 -169.058L-228.913 -165.022L-217.832 -158.62L-228.913 -152.217L-235.897 -148.182L-235.897 -147.81L-228.752 -151.938L-217.671 -158.34L-217.671 -132.73L-228.752 -139.133L-235.897 -143.261L-235.897 -142.889L-228.913 -138.854L-217.832 -132.451L-228.913 -126.048L-235.897 -122.013L-235.897 -121.641L-228.752 -125.769L-217.671 -132.172L-217.671 -106.561L-228.752 -112.964L-235.897 -117.092L-235.897 -116.72L-228.913 -112.684L-217.832 -106.282L-228.913 -99.8795L-235.897 -95.8441L-235.897 -95.4721L-228.752 -99.6002L-217.671 -106.003L-217.671 -80.3922L-228.752 -86.7952L-235.897 -90.9233L-235.897 -90.5513L-228.913 -86.5159L-217.832 -80.1132L-228.913 -73.7106L-235.897 -69.6752L-235.897 -69.3032L-228.752 -73.4316L-217.671 -79.834L-217.671 -54.2236L-228.752 -60.626L-235.897 -64.7544L-235.897 -64.3824L-228.913 -60.3473L-217.832 -53.9443L-235.897 -43.5063L-235.897 -43.1343L-217.671 -53.6657L-217.671 -28.0547L-217.671 -27.8685L-217.832 -27.7758L-217.671 -27.6827L-217.671 -27.4965L-217.671 -1.69994L-217.832 -1.60687L-217.671 -1.51378L-217.671 -1.32762L-217.51 -1.4207L-195.186 11.4778L-217.349 24.2831L-217.349 24.2828L-217.51 24.3759L-217.671 24.2828L-217.671 24.469L-235.897 35.0001L-235.897 35.3721L-217.671 24.8406L-217.671 50.4517L-228.752 44.049L-235.897 39.9209L-235.897 40.2929L-228.913 44.3283L-217.832 50.7306L-228.913 57.1333L-235.897 61.1687L-235.897 61.5407L-228.752 57.4125L-217.671 51.0099L-217.671 76.6209L-228.752 70.2176L-235.897 66.0895L-235.897 66.4615L-228.913 70.4968L-217.832 76.8995L-235.897 87.3376L-235.897 87.7096L-217.671 77.1784L-217.671 77.1788L-217.671 102.79L-217.671 102.976L-235.897 113.507L-235.897 113.879L-217.671 103.348L-217.671 128.958L-235.897 118.428L-235.897 118.8L-217.671 129.33L-217.671 129.517L-217.51 129.423ZM-206.267 109.751L-195.186 116.153L-217.349 128.958L-217.349 103.348L-206.267 109.751ZM-127.09 128.958L-149.252 116.153L-138.171 109.751L-127.09 103.348L-127.09 128.958ZM-115.687 109.751L-104.606 116.153L-126.768 128.958L-126.768 103.348L-115.687 109.751ZM-70.3966 109.751L-59.3153 116.153L-81.4776 128.958L-81.4776 103.348L-70.3966 109.751ZM8.78099 128.958L-13.3813 116.153L8.78099 103.348L8.78099 128.958ZM20.1838 109.751L31.2654 116.153L9.10282 128.958L9.10283 103.348L20.1838 109.751ZM54.0714 128.958L31.9088 116.153L54.0714 103.348L54.0714 128.958ZM76.5555 116.153L54.3932 128.958L54.3932 103.348L76.5555 116.153ZM-195.025 115.874L-206.107 109.472L-217.188 103.069L-195.025 90.2631L-195.025 115.874ZM-172.541 103.069L-194.704 115.874L-194.704 90.2631L-172.541 103.069ZM-127.251 103.069L-138.332 109.472L-149.413 115.874L-149.413 90.2631L-127.251 103.069ZM-104.445 115.874L-115.526 109.472L-126.607 103.069L-104.445 90.2631L-104.445 115.874ZM-59.1544 115.874L-70.2357 109.472L-81.317 103.069L-59.1544 90.2631L-59.1544 115.874ZM31.4263 115.874L20.345 109.472L9.26406 103.069L31.4263 90.2631L31.4263 115.874ZM54.0714 102.976L31.7482 115.874L31.7482 90.2628L31.7482 90.0769L54.0714 77.1785L54.0714 77.1788L54.2323 77.0857L54.3932 77.1788L54.3932 77.1785L76.7164 90.0769L76.7164 90.2628L76.7164 115.874L54.3932 102.976L54.3932 102.79L54.2323 102.883L54.0714 102.79L54.0714 102.976ZM99.2008 103.069L77.0386 115.874L77.0386 90.2631L99.2008 103.069ZM-195.186 89.9841L-217.349 102.789L-217.349 77.1788L-195.186 89.9841ZM-172.381 102.789L-194.543 89.9841L-172.381 77.1788L-172.381 102.789ZM-127.09 102.789L-149.252 89.9841L-138.171 83.5811L-127.09 77.1788L-127.09 102.789ZM-115.687 83.5811L-104.606 89.9841L-126.768 102.789L-126.768 77.1788L-115.687 83.5811ZM-81.7998 102.789L-103.962 89.9841L-92.8807 83.5811L-81.7998 77.1788L-81.7998 102.789ZM-70.3966 83.5811L-59.3153 89.9841L-81.4776 102.789L-81.4776 77.1788L-70.3966 83.5811ZM20.1838 83.5811L31.2654 89.9841L9.10283 102.789L9.10283 77.1788L20.1838 83.5811ZM99.3618 102.789L77.1992 89.9842L88.2805 83.5811L99.3618 77.1788L99.3618 102.789ZM-172.381 76.8068L-194.865 89.798L-217.188 76.8995L-195.025 64.0938L-195.025 64.0942L-194.865 64.0011L-194.704 64.0942L-194.704 63.908L-172.381 51.0099L-172.381 76.8068ZM-149.735 89.7049L-171.897 76.8995L-160.817 70.4968L-149.735 64.0942L-149.735 89.7049ZM-138.332 70.4968L-127.251 76.8995L-138.332 83.3025L-149.413 89.7049L-149.413 64.0942L-138.332 70.4968ZM-104.445 89.7049L-115.526 83.3025L-126.607 76.8995L-115.526 70.4968L-104.445 64.0942L-104.445 89.7049ZM-93.042 70.4968L-81.9607 76.8995L-93.042 83.3025L-104.123 89.7049L-104.123 64.0942L-93.042 70.4968ZM-59.1544 89.7049L-70.2357 83.3025L-81.317 76.8995L-70.2357 70.4968L-59.1544 64.0942L-59.1544 89.7049ZM-47.7513 70.4968L-36.6703 76.8995L-58.8326 89.7049L-58.8326 64.0942L-47.7513 70.4968ZM31.4263 89.7049L20.345 83.3025L9.26406 76.8995L20.345 70.4969L31.4263 64.0942L31.4263 89.7049ZM42.8292 70.4969L53.9105 76.8995L31.7482 89.7049L31.7482 64.0942L42.8292 70.4969ZM76.7164 89.7049L54.5541 76.8995L65.6351 70.4969L76.7164 64.0942L76.7164 89.7049ZM99.2008 76.8995L88.1195 83.3025L77.0386 89.7049L77.0386 64.0942L99.2008 76.8995ZM-206.267 57.4125L-195.186 63.8149L-217.349 76.6209L-217.349 51.0099L-206.267 57.4125ZM-149.896 63.8149L-160.977 70.2176L-172.059 76.6209L-172.059 51.0099L-149.896 63.8149ZM-127.09 76.6209L-138.171 70.2176L-149.252 63.8149L-127.09 51.0099L-127.09 76.6209ZM-115.687 57.4125L-104.606 63.8149L-115.687 70.2176L-126.768 76.6209L-126.768 51.0099L-115.687 57.4125ZM-81.7998 76.6209L-92.8807 70.2176L-103.962 63.8149L-92.8807 57.4126L-81.7998 51.0099L-81.7998 76.6209ZM-70.3966 57.4126L-59.3153 63.8149L-70.3966 70.2176L-81.4776 76.6209L-81.4776 51.0099L-70.3966 57.4126ZM-36.5091 76.6209L-47.5907 70.2176L-58.6717 63.8149L-47.5907 57.4126L-36.5091 51.0099L-36.5091 76.6209ZM20.1838 57.4126L31.2654 63.8149L20.1838 70.2176L9.10283 76.6209L9.10283 51.0099L20.1838 57.4126ZM54.0714 76.6209L42.9904 70.2176L31.9091 63.8149L42.9904 57.4126L54.0714 51.0099L54.0714 76.6209ZM65.4745 57.4126L76.5555 63.8149L65.4745 70.2176L54.3932 76.6209L54.3932 51.0099L65.4745 57.4126ZM144.652 76.6209L122.49 63.8149L144.652 51.0099L144.652 76.6209ZM156.055 57.4126L167.136 63.8149L144.974 76.6209L144.974 51.0099L156.055 57.4126ZM189.943 76.621L167.78 63.8149L178.861 57.4126L189.943 51.0099L189.943 76.621ZM-127.09 -1.51377L-127.09 -1.32761L-127.09 24.2828L-127.09 24.469L-127.251 24.562L-127.09 24.6548L-127.09 24.8406L-127.09 50.4517L-127.09 50.6379L-149.413 63.536L-149.574 63.6291L-149.735 63.536L-171.897 50.7306L-149.574 37.8325L-149.413 37.9256L-149.413 37.7394L-149.252 37.6467L-149.413 37.5536L-149.413 11.7564L-149.413 11.5705L-149.252 11.4778L-149.413 11.3847L-149.413 11.1985L-149.413 -14.4125L-127.09 -1.51377ZM-195.025 63.536L-206.107 57.1333L-217.188 50.7306L-206.107 44.3283L-195.025 37.9256L-195.025 63.536ZM-183.622 44.3283L-172.541 50.7306L-194.704 63.536L-194.704 37.9256L-183.622 44.3283ZM-104.445 63.536L-115.526 57.1333L-126.607 50.7306L-115.526 44.3283L-104.445 37.9256L-104.445 63.536ZM-93.042 44.3283L-81.9607 50.7306L-93.042 57.1333L-104.123 63.536L-104.123 37.9256L-93.042 44.3283ZM-59.1544 63.536L-70.2357 57.1333L-81.317 50.7306L-70.2357 44.3283L-59.1544 37.9256L-59.1544 63.536ZM-47.7513 44.3283L-36.6703 50.7306L-47.7513 57.1333L-58.8326 63.536L-58.8326 37.9256L-47.7513 44.3283ZM31.4263 63.536L20.345 57.1333L9.26406 50.7306L31.4263 37.9256L31.4263 63.536ZM42.8292 44.3283L53.9105 50.7306L42.8292 57.1333L31.7482 63.536L31.7482 37.9256L42.8292 44.3283ZM76.7164 63.536L65.6351 57.1333L54.5541 50.7306L76.7164 37.9256L76.7164 63.536ZM88.1195 44.3283L99.2008 50.7306L77.0386 63.536L77.0386 37.9256L88.1195 44.3283ZM167.297 63.536L156.216 57.1333L145.135 50.7306L156.216 44.3283L167.297 37.9256L167.297 63.536ZM178.7 44.3283L189.781 50.7307L178.7 57.1333L167.619 63.536L167.619 37.9256L178.7 44.3283ZM-206.267 31.2436L-195.186 37.6466L-206.267 44.049L-217.349 50.4517L-217.349 24.8406L-206.267 31.2436ZM-172.381 50.4517L-183.462 44.049L-194.543 37.6466L-183.462 31.2436L-172.381 24.8406L-172.381 50.4517ZM-160.977 31.2436L-149.896 37.6467L-172.059 50.4517L-172.059 24.8406L-160.977 31.2436ZM-115.687 31.2437L-104.606 37.6467L-115.687 44.049L-126.768 50.4517L-126.768 24.8406L-115.687 31.2437ZM-81.7998 50.4517L-92.8807 44.049L-103.962 37.6467L-92.8807 31.2437L-81.7998 24.8406L-81.7998 50.4517ZM-70.3966 31.2437L-59.3153 37.6467L-70.3966 44.049L-81.4776 50.4517L-81.4776 24.8406L-70.3966 31.2437ZM-36.5091 50.4517L-47.5907 44.049L-58.6717 37.6467L-47.5907 31.2437L-36.5091 24.8407L-36.5091 50.4517ZM-25.1063 31.2437L-14.025 37.6467L-36.1876 50.4517L-36.1876 24.8407L-25.1063 31.2437ZM54.0714 50.4517L42.9904 44.049L31.9091 37.6467L42.9904 31.2437L54.0714 24.8407L54.0714 50.4517ZM76.7164 37.3674L76.7164 37.5536L54.3932 50.4517L54.3932 24.8407L54.3932 24.6551L76.7164 11.7564L76.7164 37.3674ZM99.3618 50.4517L88.2805 44.049L77.1992 37.6467L88.2805 31.2437L99.3618 24.8407L99.3618 50.4517ZM110.765 31.2437L121.846 37.6467L99.6836 50.4517L99.6836 24.8407L110.765 31.2437ZM144.652 50.4517L122.49 37.6467L133.571 31.2437L144.652 24.8407L144.652 50.4517ZM167.136 37.6467L156.055 44.049L144.974 50.4517L144.974 24.8407L167.136 37.6467ZM189.943 50.4517L178.861 44.049L167.78 37.6467L189.943 24.8407L189.943 50.4517ZM189.943 -1.3279L189.943 24.469L167.619 37.3674L167.458 37.4605L167.297 37.3674L145.135 24.5621L167.297 11.7564L167.458 11.6636L167.619 11.7564L167.619 11.5705L189.943 -1.3279ZM-195.025 37.3674L-206.107 30.9647L-217.188 24.562L-195.025 11.7564L-195.025 37.3674ZM-183.622 18.1594L-172.541 24.562L-183.622 30.9647L-194.704 37.3674L-194.704 11.7564L-183.622 18.1594ZM-149.735 37.3674L-160.817 30.9647L-171.897 24.562L-160.817 18.1594L-149.735 11.7564L-149.735 37.3674ZM-104.445 37.3674L-115.526 30.9647L-126.607 24.562L-115.526 18.1594L-104.445 11.7564L-104.445 37.3674ZM-93.042 18.1594L-81.9607 24.562L-93.042 30.9647L-104.123 37.3674L-104.123 11.7564L-93.042 18.1594ZM-59.1544 37.3674L-70.2357 30.9647L-81.317 24.562L-70.2357 18.1594L-59.1544 11.7564L-59.1544 37.3674ZM-47.7513 18.1594L-36.6703 24.5621L-47.7513 30.9647L-58.8326 37.3674L-58.8326 11.7564L-47.7513 18.1594ZM-13.8644 37.3674L-24.9453 30.9647L-36.0263 24.5621L-24.9453 18.1594L-13.8644 11.7564L-13.8644 37.3674ZM8.62008 24.5621L-13.5425 37.3674L-13.5425 11.7564L8.62008 24.5621ZM42.8292 18.1594L53.9105 24.5621L42.8292 30.9647L31.7482 37.3674L31.7482 11.7564L42.8292 18.1594ZM88.1195 18.1594L99.2008 24.5621L88.1195 30.9647L77.0386 37.3674L77.0386 11.7564L88.1195 18.1594ZM122.007 37.3674L110.925 30.9648L99.8445 24.5621L110.925 18.1594L122.007 11.7564L122.007 37.3674ZM133.41 18.1594L144.491 24.5621L133.41 30.9648L122.329 37.3674L122.329 11.7564L133.41 18.1594ZM-172.381 24.2828L-183.462 17.8804L-194.543 11.4778L-183.462 5.07475L-172.381 -1.32762L-172.381 24.2828ZM-160.977 5.07475L-149.896 11.4778L-160.977 17.8804L-172.059 24.2828L-172.059 -1.32762L-160.977 5.07475ZM-115.687 5.07475L-104.606 11.4778L-115.687 17.8804L-126.768 24.2828L-126.768 -1.32761L-115.687 5.07475ZM-81.7998 24.2828L-92.8807 17.8804L-103.962 11.4778L-92.8807 5.07475L-81.7998 -1.32761L-81.7998 24.2828ZM-70.3966 5.07476L-59.3153 11.4778L-70.3966 17.8804L-81.4776 24.2828L-81.4776 -1.32761L-70.3966 5.07476ZM-36.5091 24.2828L-47.5907 17.8804L-58.6717 11.4778L-47.5907 5.07476L-36.5091 -1.3276L-36.5091 24.2828ZM-25.1063 5.07476L-14.0253 11.4778L-25.1063 17.8804L-36.1876 24.2828L-36.1876 -1.3276L-25.1063 5.07476ZM54.0714 24.2828L42.9904 17.8805L31.9091 11.4778L42.9904 5.07477L54.0714 -1.3276L54.0714 24.2828ZM65.4745 5.07477L76.5555 11.4778L54.3932 24.2828L54.3932 -1.3276L65.4745 5.07477ZM99.3618 24.2828L88.2805 17.8805L77.1992 11.4778L88.2805 5.07477L99.3618 -1.32759L99.3618 24.2828ZM110.765 5.07477L121.846 11.4778L110.765 17.8805L99.6836 24.2828L99.6836 -1.32759L110.765 5.07477ZM144.652 24.2828L133.571 17.8805L122.49 11.4778L133.571 5.07477L144.652 -1.32759L144.652 24.2828ZM156.055 5.07478L167.136 11.4778L144.974 24.2828L144.974 -1.32759L156.055 5.07478ZM201.345 5.07478L212.426 11.4778L190.264 24.2828L190.264 -1.32759L201.345 5.07478ZM-195.025 11.1985L-217.188 -1.60687L-206.107 -8.00954L-195.025 -14.4122L-195.025 11.1985ZM-183.622 -8.00954L-172.541 -1.60686L-183.622 4.79614L-194.704 11.1985L-194.704 -14.4122L-183.622 -8.00954ZM-149.735 11.1985L-160.816 4.79615L-171.897 -1.60686L-160.816 -8.00954L-149.735 -14.4122L-149.735 11.1985ZM-104.445 11.1985L-115.526 4.79615L-126.607 -1.60686L-115.526 -8.00954L-104.445 -14.4122L-104.445 11.1985ZM-93.042 -8.00953L-81.9607 -1.60685L-93.042 4.79615L-104.123 11.1985L-104.123 -14.4122L-93.042 -8.00953ZM-59.1544 11.1985L-70.2357 4.79615L-81.317 -1.60685L-70.2357 -8.00953L-59.1544 -14.4122L-59.1544 11.1985ZM-47.7513 -8.00953L-36.6703 -1.60685L-47.7513 4.79616L-58.8326 11.1985L-58.8326 -14.4122L-47.7513 -8.00953ZM-13.8644 11.1985L-24.9453 4.79616L-36.0263 -1.60685L-24.9453 -8.00953L-13.8644 -14.4122L-13.8644 11.1985ZM-2.4609 -8.00953L8.62008 -1.60685L-13.5425 11.1985L-13.5425 -14.4122L-2.4609 -8.00953ZM31.4263 11.1985L9.26407 -1.60685L20.345 -8.00952L31.4263 -14.4122L31.4263 11.1985ZM42.8292 -8.00952L53.9105 -1.60684L42.8292 4.79616L31.7482 11.1985L31.7482 -14.4122L42.8292 -8.00952ZM76.7164 11.1985L65.6351 4.79617L54.5541 -1.60684L76.7164 -14.4122L76.7164 11.1985ZM88.1195 -8.00952L99.2008 -1.60684L88.1195 4.79617L77.0386 11.1985L77.0386 -14.4122L88.1195 -8.00952ZM122.007 11.1985L110.925 4.79617L99.8445 -1.60684L110.925 -8.00952L122.007 -14.4122L122.007 11.1985ZM133.41 -8.00951L144.491 -1.60683L133.41 4.79617L122.329 11.1985L122.329 -14.4122L133.41 -8.00951ZM167.297 11.1985L156.216 4.79617L145.135 -1.60683L156.216 -8.00951L167.297 -14.4122L167.297 11.1985ZM178.7 -8.00951L189.781 -1.60683L167.619 11.1985L167.619 -14.4122L178.7 -8.00951ZM212.588 11.1985L201.507 4.79618L190.425 -1.60683L201.507 -8.00951L212.588 -14.4122L212.588 11.1985ZM-206.267 -21.0938L-195.186 -14.6915L-206.267 -8.28879L-217.349 -1.88578L-217.349 -27.4965L-206.267 -21.0938ZM-172.381 -1.88578L-183.462 -8.28879L-194.543 -14.6915L-183.462 -21.0938L-172.381 -27.4965L-172.381 -1.88578ZM-160.977 -21.0938L-149.896 -14.6915L-160.977 -8.28878L-172.059 -1.88578L-172.059 -27.4965L-160.977 -21.0938ZM-127.09 -1.88577L-149.252 -14.6915L-138.171 -21.0938L-127.09 -27.4965L-127.09 -1.88577ZM-115.687 -21.0938L-104.606 -14.6915L-115.687 -8.28878L-126.768 -1.88577L-126.768 -27.4965L-115.687 -21.0938ZM-81.7998 -1.88577L-92.8807 -8.28878L-103.962 -14.6915L-92.8807 -21.0938L-81.7998 -27.4965L-81.7998 -1.88577ZM-70.3966 -21.0938L-59.3153 -14.6915L-70.3966 -8.28878L-81.4776 -1.88577L-81.4776 -27.4965L-70.3966 -21.0938ZM-36.5091 -1.88577L-47.5907 -8.28877L-58.6717 -14.6915L-47.5907 -21.0938L-36.5091 -27.4965L-36.5091 -1.88577ZM-14.025 -14.6915L-25.1063 -8.28877L-36.1876 -1.88577L-36.1876 -27.4965L-14.025 -14.6915ZM8.781 -1.88576L-2.3003 -8.28877L-13.3813 -14.6915L8.781 -27.4965L8.781 -1.88576ZM20.1838 -21.0938L31.2654 -14.6915L20.1838 -8.28877L9.10284 -1.88576L9.10284 -27.4965L20.1838 -21.0938ZM54.0714 -1.88576L42.9904 -8.28877L31.9091 -14.6915L42.9904 -21.0938L54.0714 -27.4965L54.0714 -1.88576ZM76.7164 -41.1389L76.7164 -40.9528L76.5555 -40.8597L76.7164 -40.767L76.7164 -40.5811L76.7164 -14.9704L76.7164 -14.7845L54.3932 -1.88576L54.3932 -27.4965L54.3932 -27.6827L54.5541 -27.7757L54.3932 -27.8685L54.3932 -28.0547L54.3932 -53.6657L54.3932 -53.8516L76.7164 -66.75L76.7164 -41.1389ZM99.3618 -1.88575L88.2805 -8.28876L77.1992 -14.6915L88.2805 -21.0938L99.3618 -27.4965L99.3618 -1.88575ZM110.765 -21.0938L121.846 -14.6915L110.765 -8.28876L99.6836 -1.88575L99.6836 -27.4965L110.765 -21.0938ZM144.652 -1.88575L133.571 -8.28876L122.49 -14.6915L133.571 -21.0938L144.652 -27.4965L144.652 -1.88575ZM156.055 -21.0938L167.136 -14.6914L156.055 -8.28876L144.974 -1.88575L144.974 -27.4965L156.055 -21.0938ZM189.943 -1.88575L178.861 -8.28875L167.78 -14.6914L178.861 -21.0938L189.943 -27.4965L189.943 -1.88575ZM201.345 -21.0938L212.426 -14.6914L201.345 -8.28875L190.264 -1.88575L190.264 -27.4965L201.345 -21.0938ZM8.781 -28.0547L8.781 -27.8685L-13.5425 -14.9704L-13.7031 -14.8776L-13.8644 -14.9704L-36.0263 -27.7758L-13.8644 -40.5811L-13.7031 -40.6739L-13.5425 -40.5811L-13.5425 -40.7666L8.78101 -53.6657L8.781 -28.0547ZM-195.025 -14.9704L-206.107 -21.3731L-217.188 -27.7758L-206.107 -34.1781L-195.025 -40.5811L-195.025 -14.9704ZM-183.622 -34.1781L-172.541 -27.7758L-183.622 -21.3731L-194.704 -14.9704L-194.704 -40.5811L-183.622 -34.1781ZM-149.735 -14.9704L-160.816 -21.3731L-171.897 -27.7758L-160.816 -34.1781L-149.735 -40.5811L-149.735 -14.9704ZM-138.332 -34.1781L-127.251 -27.7758L-138.332 -21.3731L-149.413 -14.9704L-149.413 -40.5811L-138.332 -34.1781ZM-104.445 -14.9704L-115.526 -21.3731L-126.607 -27.7758L-115.526 -34.1781L-104.445 -40.5811L-104.445 -14.9704ZM-93.042 -34.1781L-81.9607 -27.7758L-93.042 -21.3731L-104.123 -14.9704L-104.123 -40.5811L-93.042 -34.1781ZM-59.1544 -14.9704L-70.2357 -21.3731L-81.317 -27.7758L-70.2357 -34.1781L-59.1544 -40.5811L-59.1544 -14.9704ZM-47.7513 -34.1781L-36.6703 -27.7758L-47.7513 -21.3731L-58.8326 -14.9704L-58.8326 -40.5811L-47.7513 -34.1781ZM31.4263 -14.9704L20.345 -21.3731L9.26407 -27.7757L20.345 -34.1781L31.4264 -40.5811L31.4263 -14.9704ZM42.8292 -34.1781L53.9105 -27.7757L42.8292 -21.3731L31.7482 -14.9704L31.7482 -40.5811L42.8292 -34.1781ZM88.1195 -34.1781L99.2009 -27.7757L88.1195 -21.373L77.0386 -14.9704L77.0386 -40.5811L88.1195 -34.1781ZM122.007 -14.9704L110.925 -21.373L99.8445 -27.7757L110.925 -34.1781L122.007 -40.5811L122.007 -14.9704ZM144.491 -27.7757L133.41 -21.373L122.329 -14.9704L122.329 -40.5811L144.491 -27.7757ZM167.297 -14.9704L156.216 -21.373L145.135 -27.7757L167.297 -40.5811L167.297 -14.9704ZM178.7 -34.1781L189.781 -27.7757L178.7 -21.373L167.619 -14.9704L167.619 -40.5811L178.7 -34.1781ZM212.588 -14.9704L201.507 -21.373L190.425 -27.7757L201.507 -34.1781L212.588 -40.5811L212.588 -14.9704ZM223.991 -34.1781L235.072 -27.7757L212.909 -14.9704L212.909 -40.5811L223.991 -34.1781ZM144.974 -53.6657L167.136 -40.8597L144.974 -28.0547L144.813 -27.9616L144.652 -28.0547L122.49 -40.8597L144.652 -53.6657L144.813 -53.7585L144.974 -53.6657ZM-206.267 -47.2627L-195.186 -40.8597L-206.267 -34.4574L-217.349 -28.0547L-217.349 -53.6657L-206.267 -47.2627ZM-172.381 -28.0547L-183.462 -34.4574L-194.543 -40.8597L-183.462 -47.2627L-172.381 -53.6657L-172.381 -28.0547ZM-160.977 -47.2627L-149.896 -40.8597L-160.977 -34.4574L-172.059 -28.0547L-172.059 -53.6657L-160.977 -47.2627ZM-127.09 -28.0547L-138.171 -34.4574L-149.252 -40.8597L-138.171 -47.2627L-127.09 -53.6657L-127.09 -28.0547ZM-115.687 -47.2627L-104.606 -40.8597L-115.687 -34.4574L-126.768 -28.0547L-126.768 -53.6657L-115.687 -47.2627ZM-81.7998 -28.0547L-92.8807 -34.4574L-103.962 -40.8597L-92.8807 -47.2627L-81.7998 -53.6657L-81.7998 -28.0547ZM-70.3966 -47.2627L-59.3153 -40.8597L-70.3966 -34.4574L-81.4776 -28.0547L-81.4776 -53.6657L-70.3966 -47.2627ZM-36.5091 -28.0547L-47.5907 -34.4574L-58.6717 -40.8597L-47.5907 -47.2627L-36.5091 -53.6657L-36.5091 -28.0547ZM-25.1063 -47.2627L-14.025 -40.8597L-36.1876 -28.0547L-36.1876 -53.6657L-25.1063 -47.2627ZM20.1838 -47.2627L31.2654 -40.8597L20.1838 -34.4574L9.10284 -28.0547L9.10284 -53.6657L20.1838 -47.2627ZM54.0714 -28.0547L42.9904 -34.4574L31.9091 -40.8597L42.9904 -47.2627L54.0714 -53.6657L54.0714 -28.0547ZM99.3618 -28.0547L88.2805 -34.4573L77.1992 -40.8597L88.2805 -47.2627L99.3618 -53.6657L99.3618 -28.0547ZM110.765 -47.2627L121.846 -40.8597L110.765 -34.4573L99.6836 -28.0547L99.6836 -53.6657L110.765 -47.2627ZM189.943 -28.0546L178.861 -34.4573L167.78 -40.8597L178.861 -47.2627L189.943 -53.6657L189.943 -28.0546ZM201.345 -47.2627L212.426 -40.8597L201.345 -34.4573L190.264 -28.0546L190.264 -53.6657L201.345 -47.2627ZM235.233 -28.0546L224.151 -34.4573L213.07 -40.8597L224.151 -47.2627L235.233 -53.6657L235.233 -28.0546ZM-195.025 -41.139L-206.107 -47.5417L-217.188 -53.9443L-206.107 -60.3473L-195.025 -66.75L-195.025 -41.139ZM-172.541 -53.9443L-183.622 -47.5417L-194.704 -41.139L-194.704 -66.75L-172.541 -53.9443ZM-149.735 -41.139L-160.816 -47.5417L-171.897 -53.9443L-149.735 -66.75L-149.735 -41.139ZM-127.251 -53.9443L-138.332 -47.5417L-149.413 -41.139L-149.413 -66.75L-127.251 -53.9443ZM-104.445 -41.139L-115.526 -47.5417L-126.607 -53.9443L-104.445 -66.75L-104.445 -41.139ZM-93.042 -60.3473L-81.9607 -53.9443L-93.042 -47.5417L-104.123 -41.139L-104.123 -66.75L-93.042 -60.3473ZM-59.1544 -41.139L-70.2357 -47.5416L-81.317 -53.9443L-70.2357 -60.3473L-59.1544 -66.75L-59.1544 -41.139ZM-36.6703 -53.9443L-47.7513 -47.5416L-58.8326 -41.139L-58.8326 -66.75L-36.6703 -53.9443ZM-13.8644 -41.139L-24.9453 -47.5416L-36.0263 -53.9443L-24.9453 -60.3473L-13.8644 -66.75L-13.8644 -41.139ZM-2.4609 -60.3473L8.62009 -53.9443L-13.5425 -41.139L-13.5425 -66.75L-2.4609 -60.3473ZM31.4264 -41.1389L20.345 -47.5416L9.26407 -53.9443L20.345 -60.3473L31.4264 -66.75L31.4264 -41.1389ZM42.8292 -60.3473L53.9105 -53.9443L42.8292 -47.5416L31.7482 -41.1389L31.7482 -66.75L42.8292 -60.3473ZM88.1196 -60.3473L99.2009 -53.9443L88.1195 -47.5416L77.0386 -41.1389L77.0386 -66.75L88.1196 -60.3473ZM122.007 -41.1389L110.925 -47.5416L99.8445 -53.9443L110.925 -60.3473L122.007 -66.75L122.007 -41.1389ZM133.41 -60.3473L144.491 -53.9443L122.329 -41.1389L122.329 -66.75L133.41 -60.3473ZM167.297 -41.1389L145.135 -53.9443L156.216 -60.3473L167.297 -66.75L167.297 -41.1389ZM189.781 -53.9443L178.7 -47.5416L167.619 -41.1389L167.619 -66.75L189.781 -53.9443ZM212.588 -41.1389L201.507 -47.5416L190.425 -53.9443L212.588 -66.75L212.588 -41.1389ZM223.991 -60.3473L235.072 -53.9443L223.991 -47.5416L212.909 -41.1389L212.909 -66.75L223.991 -60.3473ZM190.103 -54.1305L189.943 -54.2236L189.943 -54.2232L167.619 -67.1217L167.619 -67.3078L167.619 -92.9189L189.943 -80.0201L189.943 -79.834L190.103 -79.927L190.264 -79.834L190.264 -79.8343L212.426 -67.0289L190.264 -54.2232L190.264 -54.2236L190.103 -54.1305ZM-36.5091 -80.3921L-36.5091 -80.2063L-36.6703 -80.1132L-36.5091 -80.0202L-36.5091 -79.834L-36.5091 -54.2233L-58.8326 -67.1217L-58.8326 -67.3079L-58.8326 -92.9186L-58.8326 -93.1048L-36.509 -106.003L-36.5091 -80.3921ZM-195.186 -67.029L-206.267 -60.6259L-217.349 -54.2236L-217.349 -79.834L-195.186 -67.029ZM-81.7998 -54.2236L-92.8807 -60.6259L-103.962 -67.0289L-92.8807 -73.4316L-81.7998 -79.834L-81.7998 -54.2236ZM-70.3966 -73.4316L-59.3153 -67.0289L-70.3966 -60.6259L-81.4776 -54.2236L-81.4776 -79.834L-70.3966 -73.4316ZM-25.1063 -73.4316L-14.0253 -67.0289L-25.1063 -60.6259L-36.1876 -54.2236L-36.1876 -79.834L-25.1063 -73.4316ZM8.78101 -54.2236L-2.3003 -60.6259L-13.3813 -67.0289L-2.3003 -73.4316L8.78101 -79.834L8.78101 -54.2236ZM20.1838 -73.4316L31.2654 -67.0289L20.1838 -60.6259L9.10284 -54.2236L9.10284 -79.834L20.1838 -73.4316ZM54.0714 -54.2236L42.9904 -60.6259L31.9091 -67.0289L42.9904 -73.4316L54.0714 -79.834L54.0714 -54.2236ZM65.4745 -73.4316L76.5555 -67.0289L54.3932 -54.2236L54.3932 -79.834L65.4745 -73.4316ZM99.3618 -54.2236L88.2805 -60.6259L77.1992 -67.0289L88.2805 -73.4316L99.3618 -79.834L99.3618 -54.2236ZM110.765 -73.4316L121.846 -67.0289L110.765 -60.6259L99.6836 -54.2236L99.6836 -79.834L110.765 -73.4316ZM144.652 -54.2236L133.571 -60.6259L122.49 -67.0289L133.571 -73.4316L144.652 -79.834L144.652 -54.2236ZM156.055 -73.4316L167.136 -67.0289L156.055 -60.6259L144.974 -54.2236L144.974 -79.834L156.055 -73.4316ZM235.233 -54.2235L224.151 -60.6259L213.07 -67.0289L224.151 -73.4316L235.233 -79.834L235.233 -54.2235ZM-104.445 -67.3079L-126.607 -80.1132L-115.526 -86.5159L-104.445 -92.9186L-104.445 -67.3079ZM-93.042 -86.5159L-81.9607 -80.1132L-93.042 -73.7106L-104.123 -67.3079L-104.123 -92.9186L-93.042 -86.5159ZM-59.1544 -67.3079L-70.2357 -73.7106L-81.317 -80.1132L-70.2357 -86.5159L-59.1544 -92.9186L-59.1544 -67.3079ZM-13.8644 -67.3079L-24.9453 -73.7105L-36.0263 -80.1132L-24.9453 -86.5159L-13.8643 -92.9186L-13.8644 -67.3079ZM-2.4609 -86.5159L8.62009 -80.1132L-2.4609 -73.7105L-13.5425 -67.3079L-13.5425 -92.9186L-2.4609 -86.5159ZM31.4264 -67.3079L20.345 -73.7105L9.26408 -80.1132L20.3451 -86.5159L31.4264 -92.9186L31.4264 -67.3079ZM53.9105 -80.1132L42.8292 -73.7105L31.7482 -67.3079L31.7482 -92.9186L53.9105 -80.1132ZM76.7164 -67.3078L65.6351 -73.7105L54.5541 -80.1132L76.7164 -92.9186L76.7164 -67.3078ZM99.2009 -80.1132L88.1196 -73.7105L77.0386 -67.3078L77.0386 -92.9186L99.2009 -80.1132ZM122.007 -67.3078L110.925 -73.7105L99.8445 -80.1132L122.007 -92.9186L122.007 -67.3078ZM133.41 -86.5159L144.491 -80.1132L133.41 -73.7105L122.329 -67.3078L122.329 -92.9186L133.41 -86.5159ZM167.297 -67.3078L156.216 -73.7105L145.135 -80.1132L156.216 -86.5159L167.297 -92.9186L167.297 -67.3078ZM212.588 -67.3078L190.425 -80.1132L201.507 -86.5159L212.588 -92.9186L212.588 -67.3078ZM235.072 -80.1132L223.991 -73.7105L212.909 -67.3078L212.909 -92.9186L235.072 -80.1132ZM-115.687 -99.6002L-104.606 -93.1978L-115.687 -86.7952L-126.768 -80.3922L-126.768 -106.003L-115.687 -99.6002ZM-81.7998 -80.3921L-92.8807 -86.7952L-103.962 -93.1978L-92.8807 -99.6002L-81.7998 -106.003L-81.7998 -80.3921ZM-70.3966 -99.6002L-59.3153 -93.1978L-70.3966 -86.7952L-81.4776 -80.3921L-81.4776 -106.003L-70.3966 -99.6002ZM-25.1063 -99.6002L-14.0253 -93.1978L-25.1063 -86.7952L-36.1876 -80.3921L-36.1876 -106.003L-25.1063 -99.6002ZM8.78101 -80.3921L-2.30029 -86.7951L-13.3813 -93.1978L-2.30029 -99.6002L8.78101 -106.003L8.78101 -80.3921ZM20.1838 -99.6002L31.2654 -93.1978L20.1838 -86.7951L9.10284 -80.3921L9.10285 -106.003L20.1838 -99.6002ZM144.652 -80.3921L133.571 -86.7951L122.49 -93.1978L133.571 -99.6002L144.652 -106.003L144.652 -80.3921ZM156.055 -99.6002L167.136 -93.1978L156.055 -86.7951L144.974 -80.3921L144.974 -106.003L156.055 -99.6002ZM189.943 -80.3921L167.78 -93.1978L178.861 -99.6002L189.943 -106.003L189.943 -80.3921ZM201.345 -99.6002L212.426 -93.1978L201.345 -86.7951L190.264 -80.3921L190.264 -106.003L201.345 -99.6002ZM-104.445 -93.4768L-115.526 -99.8794L-126.607 -106.282L-115.526 -112.684L-104.445 -119.088L-104.445 -93.4768ZM-81.9607 -106.282L-93.042 -99.8794L-104.123 -93.4768L-104.123 -119.088L-81.9607 -106.282ZM-59.1544 -93.4768L-70.2357 -99.8794L-81.317 -106.282L-59.1544 -119.088L-59.1544 -93.4768ZM-47.7513 -112.684L-36.6703 -106.282L-58.8326 -93.4768L-58.8326 -119.088L-47.7513 -112.684ZM-13.8643 -93.4768L-24.9453 -99.8794L-36.0263 -106.282L-24.9453 -112.684L-13.8643 -119.087L-13.8643 -93.4768ZM-2.46089 -112.684L8.62009 -106.282L-2.4609 -99.8794L-13.5425 -93.4768L-13.5425 -119.087L-2.46089 -112.684ZM31.4264 -93.4768L20.3451 -99.8794L9.26408 -106.282L31.4264 -119.087L31.4264 -93.4768ZM144.491 -106.282L133.41 -99.8794L122.329 -93.4767L122.329 -119.087L144.491 -106.282ZM167.297 -93.4767L156.216 -99.8794L145.135 -106.282L167.297 -119.087L167.297 -93.4767ZM189.781 -106.282L178.7 -99.8794L167.619 -93.4767L167.619 -119.087L189.781 -106.282ZM212.588 -93.4767L201.507 -99.8794L190.425 -106.282L212.588 -119.087L212.588 -93.4767ZM-59.3153 -119.366L-81.4776 -106.561L-81.6388 -106.468L-81.7998 -106.561L-104.123 -119.459L-104.123 -119.645L-104.123 -145.442L-81.7998 -158.341L-81.7998 -132.544L-81.9607 -132.451L-81.7998 -132.358L-81.7998 -132.172L-81.6388 -132.265L-59.3153 -119.366ZM-206.267 -125.769L-195.186 -119.366L-217.349 -106.561L-217.349 -132.172L-206.267 -125.769ZM-115.687 -125.769L-104.606 -119.366L-115.687 -112.964L-126.768 -106.561L-126.768 -132.172L-115.687 -125.769ZM-36.509 -106.561L-47.5907 -112.964L-58.6717 -119.366L-47.5907 -125.769L-36.509 -132.172L-36.509 -106.561ZM-25.1063 -125.769L-14.0253 -119.366L-25.1063 -112.964L-36.1876 -106.561L-36.1876 -132.172L-25.1063 -125.769ZM8.78101 -106.561L-2.30029 -112.964L-13.3813 -119.366L-2.30029 -125.769L8.78101 -132.172L8.78101 -106.561ZM-195.025 -119.645L-206.107 -126.048L-217.188 -132.451L-206.107 -138.854L-195.025 -145.256L-195.025 -119.645ZM-104.445 -119.645L-115.526 -126.048L-126.607 -132.451L-104.445 -145.256L-104.445 -119.645ZM-59.1544 -119.645L-81.317 -132.451L-70.2357 -138.854L-59.1544 -145.256L-59.1544 -119.645ZM-36.6703 -132.451L-47.7513 -126.048L-58.8326 -119.645L-58.8326 -145.256L-36.6703 -132.451ZM-13.8643 -119.645L-24.9453 -126.048L-36.0263 -132.451L-13.8643 -145.256L-13.8643 -119.645ZM8.6201 -132.451L-2.46089 -126.048L-13.5425 -119.645L-13.5425 -145.256L8.6201 -132.451ZM-206.267 -151.938L-195.186 -145.535L-206.267 -139.133L-217.349 -132.73L-217.349 -158.34L-206.267 -151.938ZM-70.3966 -151.938L-59.3153 -145.535L-70.3966 -139.133L-81.4776 -132.73L-81.4776 -158.34L-70.3966 -151.938ZM-195.025 -145.814L-206.107 -152.217L-217.188 -158.62L-206.107 -165.022L-195.025 -171.425L-195.025 -145.814ZM-93.042 -165.022L-81.9607 -158.62L-104.123 -145.814L-104.123 -171.425L-93.042 -165.022ZM-59.1544 -145.814L-70.2357 -152.217L-81.317 -158.62L-70.2357 -165.022L-59.1544 -171.425L-59.1544 -145.814ZM-224.581 -180.517L-225.225 -180.517L-235.897 -174.35L-235.897 -173.978L-224.581 -180.517Z",
|
|
13001
|
-
fill: "url(#paint0_linear_196_2737)"
|
|
13002
|
-
}
|
|
13003
|
-
),
|
|
13004
|
-
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
13005
|
-
"linearGradient",
|
|
13006
|
-
{
|
|
13007
|
-
id: "paint0_linear_196_2737",
|
|
13008
|
-
x1: "196.127",
|
|
13009
|
-
y1: "77.4138",
|
|
13010
|
-
x2: "-183.705",
|
|
13011
|
-
y2: "-95.2742",
|
|
13012
|
-
gradientUnits: "userSpaceOnUse",
|
|
13013
|
-
children: [
|
|
13014
|
-
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("stop", { stopColor: "#81DCDE" }),
|
|
13015
|
-
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("stop", { offset: "1", stopColor: "#428ED4" })
|
|
13016
|
-
]
|
|
13017
|
-
}
|
|
13018
|
-
) })
|
|
13019
|
-
]
|
|
13020
|
-
}
|
|
13021
|
-
);
|
|
13022
|
-
};
|
|
13023
12999
|
var IntegrationModalHeader = ({ icon, name, menu, children }) => {
|
|
13024
13000
|
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_jsx_runtime93.Fragment, { children: [
|
|
13025
|
-
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(HexModalBackground, { css: IntegrationModalHeaderSVGBackground, role: "presentation" }),
|
|
13026
13001
|
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("div", { css: IntegrationModalHeaderGroup, children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { css: IntegrationModalHeaderTitleGroup, children: [
|
|
13027
13002
|
icon ? /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(IntegrationModalIcon, { icon, name: name || "" }) : null,
|
|
13028
13003
|
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(Heading2, { level: 3, css: IntegrationModalHeaderTitle, "data-testid": "integration-modal-title", children: name || "Create Team Integration" }),
|
|
@@ -15297,6 +15272,20 @@ var ObjectGridItemSubtitle = import_react133.css`
|
|
|
15297
15272
|
text-overflow: ellipsis;
|
|
15298
15273
|
max-width: 100%;
|
|
15299
15274
|
`;
|
|
15275
|
+
var ObjectGridItemRevealMenu = import_react133.css`
|
|
15276
|
+
display: inline-flex;
|
|
15277
|
+
opacity: 0;
|
|
15278
|
+
transition: opacity var(--duration-fast) var(--timing-ease-out);
|
|
15279
|
+
|
|
15280
|
+
[data-object-grid-item]:hover &,
|
|
15281
|
+
[data-object-grid-item]:focus-within &,
|
|
15282
|
+
&:hover,
|
|
15283
|
+
&:focus-within,
|
|
15284
|
+
&:has([aria-expanded='true']),
|
|
15285
|
+
&:has([data-popup-open]) {
|
|
15286
|
+
opacity: 1;
|
|
15287
|
+
}
|
|
15288
|
+
`;
|
|
15300
15289
|
|
|
15301
15290
|
// src/components/Objects/ObjectGridItem.tsx
|
|
15302
15291
|
var import_jsx_runtime112 = require("@emotion/react/jsx-runtime");
|
|
@@ -15308,6 +15297,7 @@ var ObjectGridItem2 = ({
|
|
|
15308
15297
|
isSelected,
|
|
15309
15298
|
children,
|
|
15310
15299
|
menuTestId,
|
|
15300
|
+
revealMenuOnHover,
|
|
15311
15301
|
...props
|
|
15312
15302
|
}) => {
|
|
15313
15303
|
const hasOnClick = props.onClick;
|
|
@@ -15344,14 +15334,14 @@ var ObjectGridItem2 = ({
|
|
|
15344
15334
|
onClick: hasOnClick ? onStopPropagation : void 0,
|
|
15345
15335
|
children: [
|
|
15346
15336
|
rightSlot,
|
|
15347
|
-
menuItems ? /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
15337
|
+
menuItems ? /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("span", { css: revealMenuOnHover ? ObjectGridItemRevealMenu : void 0, children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
15348
15338
|
Menu,
|
|
15349
15339
|
{
|
|
15350
15340
|
menuTrigger: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(MenuThreeDots, { "data-testid": menuTestId != null ? menuTestId : "object-grid-item-menu-btn" }),
|
|
15351
15341
|
placement: "bottom-end",
|
|
15352
15342
|
children: menuItems
|
|
15353
15343
|
}
|
|
15354
|
-
) : null
|
|
15344
|
+
) }) : null
|
|
15355
15345
|
]
|
|
15356
15346
|
}
|
|
15357
15347
|
) : null
|
|
@@ -23139,7 +23129,6 @@ var StatusBullet = ({
|
|
|
23139
23129
|
FlexiCard,
|
|
23140
23130
|
FlexiCardTitle,
|
|
23141
23131
|
Heading,
|
|
23142
|
-
HexModalBackground,
|
|
23143
23132
|
HorizontalRhythm,
|
|
23144
23133
|
Icon,
|
|
23145
23134
|
IconButton,
|