@activecollab/components 1.0.346 → 1.0.348
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/cjs/components/Dialog/Dialog.js +11 -6
- package/dist/cjs/components/Dialog/Dialog.js.map +1 -1
- package/dist/cjs/components/GlobalStyle.js +1 -1
- package/dist/cjs/components/GlobalStyle.js.map +1 -1
- package/dist/cjs/components/Modal/Modal.js +7 -3
- package/dist/cjs/components/Modal/Modal.js.map +1 -1
- package/dist/esm/components/Dialog/Dialog.d.ts +3 -2
- package/dist/esm/components/Dialog/Dialog.d.ts.map +1 -1
- package/dist/esm/components/Dialog/Dialog.js +10 -4
- package/dist/esm/components/Dialog/Dialog.js.map +1 -1
- package/dist/esm/components/GlobalStyle.d.ts.map +1 -1
- package/dist/esm/components/GlobalStyle.js +1 -1
- package/dist/esm/components/GlobalStyle.js.map +1 -1
- package/dist/esm/components/Modal/Modal.d.ts +1 -0
- package/dist/esm/components/Modal/Modal.d.ts.map +1 -1
- package/dist/esm/components/Modal/Modal.js +7 -3
- package/dist/esm/components/Modal/Modal.js.map +1 -1
- package/dist/index.js +139 -131
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
})(["display:inline-flex;svg{margin:0 4px;}"]);
|
|
270
270
|
StyledButtonElement.displayName = "StyledButtonElement";
|
|
271
271
|
|
|
272
|
-
var _excluded$
|
|
272
|
+
var _excluded$1n = ["children", "active", "variant", "size", "className"];
|
|
273
273
|
/**
|
|
274
274
|
* @component Button
|
|
275
275
|
* @description
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
_ref$size = _ref.size,
|
|
300
300
|
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
301
301
|
className = _ref.className,
|
|
302
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
302
|
+
args = _objectWithoutProperties(_ref, _excluded$1n);
|
|
303
303
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
|
|
304
304
|
className: classNames__default["default"]("c-btn", className, {
|
|
305
305
|
"c-btn--contained": variant === "primary" || variant === "contained",
|
|
@@ -373,12 +373,12 @@
|
|
|
373
373
|
})(["svg{fill:var(--color-theme-100);}&:hover svg{transform:rotate(90deg);transition:ease 0.3s;}"]);
|
|
374
374
|
StyledGlobalAddButton.displayName = "StyledGlobalAddButton";
|
|
375
375
|
|
|
376
|
-
var _excluded$
|
|
376
|
+
var _excluded$1m = ["className", "disabled"];
|
|
377
377
|
var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
378
378
|
var className = _ref.className,
|
|
379
379
|
_ref$disabled = _ref.disabled,
|
|
380
380
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
381
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
381
|
+
rest = _objectWithoutProperties(_ref, _excluded$1m);
|
|
382
382
|
return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
|
|
383
383
|
ref: ref,
|
|
384
384
|
variant: "contained",
|
|
@@ -410,11 +410,11 @@
|
|
|
410
410
|
});
|
|
411
411
|
StyledButtonGroup$1.displayName = "StyledButtonGroup";
|
|
412
412
|
|
|
413
|
-
var _excluded$
|
|
413
|
+
var _excluded$1l = ["children", "className"];
|
|
414
414
|
var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
415
415
|
var children = _ref.children,
|
|
416
416
|
className = _ref.className,
|
|
417
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
417
|
+
rest = _objectWithoutProperties(_ref, _excluded$1l);
|
|
418
418
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
|
|
419
419
|
ref: ref,
|
|
420
420
|
className: classNames__default["default"]("c-btn-group", className)
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
return React.useContext(MenuContext);
|
|
475
475
|
};
|
|
476
476
|
|
|
477
|
-
var _excluded$
|
|
477
|
+
var _excluded$1k = ["children", "anchorEl", "open", "style", "transition", "placement", "strategy", "afterWrite"];
|
|
478
478
|
var Popper = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
479
479
|
var children = _ref.children,
|
|
480
480
|
anchorEl = _ref.anchorEl,
|
|
@@ -488,7 +488,7 @@
|
|
|
488
488
|
_ref$strategy = _ref.strategy,
|
|
489
489
|
strategy = _ref$strategy === void 0 ? "absolute" : _ref$strategy,
|
|
490
490
|
afterWrite = _ref.afterWrite,
|
|
491
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
491
|
+
rest = _objectWithoutProperties(_ref, _excluded$1k);
|
|
492
492
|
var _useState = React.useState(true),
|
|
493
493
|
_useState2 = _slicedToArray(_useState, 2),
|
|
494
494
|
exited = _useState2[0],
|
|
@@ -587,12 +587,12 @@
|
|
|
587
587
|
});
|
|
588
588
|
StyledOverlay.displayName = "StyledOverlay";
|
|
589
589
|
|
|
590
|
-
var _excluded$
|
|
590
|
+
var _excluded$1j = ["className", "disableBackgroundColor"];
|
|
591
591
|
var Overlay = function Overlay(_ref) {
|
|
592
592
|
var className = _ref.className,
|
|
593
593
|
_ref$disableBackgroun = _ref.disableBackgroundColor,
|
|
594
594
|
disableBackgroundColor = _ref$disableBackgroun === void 0 ? false : _ref$disableBackgroun,
|
|
595
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
595
|
+
rest = _objectWithoutProperties(_ref, _excluded$1j);
|
|
596
596
|
return /*#__PURE__*/React__default["default"].createElement(StyledOverlay, _extends({
|
|
597
597
|
className: classNames__default["default"]("c-overlay", className),
|
|
598
598
|
$disableBackgroundColor: disableBackgroundColor
|
|
@@ -632,7 +632,7 @@
|
|
|
632
632
|
})(["", " ", " position:fixed;top:0;right:0;bottom:0;left:0;"], FontStyle, BoxSizingStyle);
|
|
633
633
|
StyledWindow.displayName = "StyledWindow";
|
|
634
634
|
|
|
635
|
-
var _excluded$
|
|
635
|
+
var _excluded$1i = ["children", "onClose", "className", "style", "onKeyDown", "disableFocusLock", "disableScrollLock", "disableCloseOnEsc", "onClick"];
|
|
636
636
|
var returnFocus = {
|
|
637
637
|
preventScroll: true
|
|
638
638
|
};
|
|
@@ -649,7 +649,7 @@
|
|
|
649
649
|
_ref$disableCloseOnEs = _ref.disableCloseOnEsc,
|
|
650
650
|
disableCloseOnEsc = _ref$disableCloseOnEs === void 0 ? false : _ref$disableCloseOnEs,
|
|
651
651
|
onClick = _ref.onClick,
|
|
652
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
652
|
+
rest = _objectWithoutProperties(_ref, _excluded$1i);
|
|
653
653
|
var innerRef = React.useRef(null);
|
|
654
654
|
var handleRef = useForkRef(innerRef, ref);
|
|
655
655
|
var _useLayerContext = useLayerContext(),
|
|
@@ -709,7 +709,7 @@
|
|
|
709
709
|
}, FontStyle, BoxSizingStyle);
|
|
710
710
|
StyledBubble.displayName = "StyledBubble";
|
|
711
711
|
|
|
712
|
-
var _excluded$
|
|
712
|
+
var _excluded$1h = ["children", "className", "innerRef", "style"];
|
|
713
713
|
var Bubble = function Bubble(_ref) {
|
|
714
714
|
var children = _ref.children,
|
|
715
715
|
className = _ref.className,
|
|
@@ -717,7 +717,7 @@
|
|
|
717
717
|
innerRef = _ref$innerRef === void 0 ? null : _ref$innerRef,
|
|
718
718
|
_ref$style = _ref.style,
|
|
719
719
|
style = _ref$style === void 0 ? {} : _ref$style,
|
|
720
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
720
|
+
rest = _objectWithoutProperties(_ref, _excluded$1h);
|
|
721
721
|
return /*#__PURE__*/React__default["default"].createElement(StyledBubble, _extends({}, rest, {
|
|
722
722
|
ref: innerRef,
|
|
723
723
|
className: classNames__default["default"]("c-bubble", className),
|
|
@@ -1037,7 +1037,7 @@
|
|
|
1037
1037
|
});
|
|
1038
1038
|
StyledTypography.displayName = "StyledTypography";
|
|
1039
1039
|
|
|
1040
|
-
var _excluded$
|
|
1040
|
+
var _excluded$1g = ["variant", "as", "color", "italic", "tabularNums", "letterSpacing", "lineHeight", "align", "decoration", "transform", "overflow", "whitespace", "wordBreak", "weight", "className", "children"];
|
|
1041
1041
|
var Typography = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1042
1042
|
var _ref$variant = _ref.variant,
|
|
1043
1043
|
variant = _ref$variant === void 0 ? "Title 1" : _ref$variant,
|
|
@@ -1068,7 +1068,7 @@
|
|
|
1068
1068
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
1069
1069
|
className = _ref.className,
|
|
1070
1070
|
children = _ref.children,
|
|
1071
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1071
|
+
props = _objectWithoutProperties(_ref, _excluded$1g);
|
|
1072
1072
|
var Component = as || "div";
|
|
1073
1073
|
return /*#__PURE__*/React__default["default"].createElement(StyledTypography, _extends({
|
|
1074
1074
|
as: Component,
|
|
@@ -1091,13 +1091,13 @@
|
|
|
1091
1091
|
});
|
|
1092
1092
|
Typography.displayName = "Typography";
|
|
1093
1093
|
|
|
1094
|
-
var _excluded$
|
|
1094
|
+
var _excluded$1f = ["title", "className", "leftElement", "rightElement"];
|
|
1095
1095
|
var MenuHeader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1096
1096
|
var title = _ref.title,
|
|
1097
1097
|
className = _ref.className,
|
|
1098
1098
|
leftElement = _ref.leftElement,
|
|
1099
1099
|
rightElement = _ref.rightElement,
|
|
1100
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1100
|
+
props = _objectWithoutProperties(_ref, _excluded$1f);
|
|
1101
1101
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuHeader, _extends({}, props, {
|
|
1102
1102
|
className: classNames__default["default"]("c-menu-header", className),
|
|
1103
1103
|
ref: ref
|
|
@@ -1122,11 +1122,11 @@
|
|
|
1122
1122
|
});
|
|
1123
1123
|
MenuHeader.displayName = "MenuHeader";
|
|
1124
1124
|
|
|
1125
|
-
var _excluded$
|
|
1125
|
+
var _excluded$1e = ["children", "className"];
|
|
1126
1126
|
var MenuFooter = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1127
1127
|
var children = _ref.children,
|
|
1128
1128
|
className = _ref.className,
|
|
1129
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1129
|
+
props = _objectWithoutProperties(_ref, _excluded$1e);
|
|
1130
1130
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuFooter$1, _extends({}, props, {
|
|
1131
1131
|
className: classNames__default["default"]("c-menu-footer", className),
|
|
1132
1132
|
ref: ref
|
|
@@ -1150,11 +1150,11 @@
|
|
|
1150
1150
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
1151
1151
|
StyledListSeparator.displayName = "StyledListSeparator";
|
|
1152
1152
|
|
|
1153
|
-
var _excluded$
|
|
1153
|
+
var _excluded$1d = ["children", "className"];
|
|
1154
1154
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1155
1155
|
var children = _ref.children,
|
|
1156
1156
|
className = _ref.className,
|
|
1157
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1157
|
+
props = _objectWithoutProperties(_ref, _excluded$1d);
|
|
1158
1158
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem, _extends({
|
|
1159
1159
|
className: classNames__default["default"]("c-list-item", className),
|
|
1160
1160
|
ref: ref,
|
|
@@ -1163,21 +1163,21 @@
|
|
|
1163
1163
|
});
|
|
1164
1164
|
ListItem.displayName = "ListItem";
|
|
1165
1165
|
|
|
1166
|
-
var _excluded$
|
|
1166
|
+
var _excluded$1c = ["className"];
|
|
1167
1167
|
var ListSeparator = function ListSeparator(_ref) {
|
|
1168
1168
|
var className = _ref.className,
|
|
1169
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1169
|
+
props = _objectWithoutProperties(_ref, _excluded$1c);
|
|
1170
1170
|
return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator, _extends({
|
|
1171
1171
|
className: classNames__default["default"]("c-list-separator", className)
|
|
1172
1172
|
}, props));
|
|
1173
1173
|
};
|
|
1174
1174
|
ListSeparator.displayName = "ListSeparator";
|
|
1175
1175
|
|
|
1176
|
-
var _excluded$
|
|
1176
|
+
var _excluded$1b = ["children", "className"];
|
|
1177
1177
|
var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1178
1178
|
var children = _ref.children,
|
|
1179
1179
|
className = _ref.className,
|
|
1180
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1180
|
+
props = _objectWithoutProperties(_ref, _excluded$1b);
|
|
1181
1181
|
return /*#__PURE__*/React__default["default"].createElement(StyledList, _extends({
|
|
1182
1182
|
className: className,
|
|
1183
1183
|
ref: ref,
|
|
@@ -1203,7 +1203,7 @@
|
|
|
1203
1203
|
return size === "big" && styled.css(["width:40px;"]);
|
|
1204
1204
|
});
|
|
1205
1205
|
|
|
1206
|
-
var _excluded$
|
|
1206
|
+
var _excluded$1a = ["children", "className", "variant", "size", "active"];
|
|
1207
1207
|
|
|
1208
1208
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
1209
1209
|
|
|
@@ -1233,7 +1233,7 @@
|
|
|
1233
1233
|
variant = _ref.variant,
|
|
1234
1234
|
size = _ref.size,
|
|
1235
1235
|
active = _ref.active,
|
|
1236
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
1236
|
+
args = _objectWithoutProperties(_ref, _excluded$1a);
|
|
1237
1237
|
return /*#__PURE__*/React__default["default"].createElement(StyledIconButton, _extends({
|
|
1238
1238
|
className: className,
|
|
1239
1239
|
variant: variant,
|
|
@@ -7522,14 +7522,14 @@
|
|
|
7522
7522
|
});
|
|
7523
7523
|
StyledBreadcrumbListItem.displayName = "StyledBreadcrumbListItem";
|
|
7524
7524
|
|
|
7525
|
-
var _excluded$
|
|
7525
|
+
var _excluded$19 = ["children", "className", "separator"];
|
|
7526
7526
|
var Breadcrumbs = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7527
7527
|
var _dimensions$width, _childDimensions$widt;
|
|
7528
7528
|
var children = _ref.children,
|
|
7529
7529
|
className = _ref.className,
|
|
7530
7530
|
_ref$separator = _ref.separator,
|
|
7531
7531
|
separator = _ref$separator === void 0 ? "/" : _ref$separator,
|
|
7532
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7532
|
+
rest = _objectWithoutProperties(_ref, _excluded$19);
|
|
7533
7533
|
var internalRef = React.useRef(null);
|
|
7534
7534
|
var listWrapperRef = React.useRef(null);
|
|
7535
7535
|
var olRef = React.useRef(null);
|
|
@@ -7696,10 +7696,10 @@
|
|
|
7696
7696
|
return props.$isLight && styled.css(["background-color:var(--page-paper-main);box-shadow:var(--shadow-secondary);color:var(--color-theme-700);"]);
|
|
7697
7697
|
});
|
|
7698
7698
|
|
|
7699
|
-
var _excluded$
|
|
7699
|
+
var _excluded$18 = ["children"];
|
|
7700
7700
|
var TooltipAnimation = function TooltipAnimation(_ref) {
|
|
7701
7701
|
var children = _ref.children,
|
|
7702
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7702
|
+
props = _objectWithoutProperties(_ref, _excluded$18);
|
|
7703
7703
|
return /*#__PURE__*/React__default["default"].createElement(FromElement, _extends({
|
|
7704
7704
|
timeout: 0
|
|
7705
7705
|
}, props), children);
|
|
@@ -7774,12 +7774,12 @@
|
|
|
7774
7774
|
});
|
|
7775
7775
|
Tooltip.displayName = "Tooltip";
|
|
7776
7776
|
|
|
7777
|
-
var _excluded$
|
|
7777
|
+
var _excluded$17 = ["weight", "children"];
|
|
7778
7778
|
var Body2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7779
7779
|
var _ref$weight = _ref.weight,
|
|
7780
7780
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
7781
7781
|
children = _ref.children,
|
|
7782
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7782
|
+
props = _objectWithoutProperties(_ref, _excluded$17);
|
|
7783
7783
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
7784
7784
|
variant: "Body 2",
|
|
7785
7785
|
weight: weight,
|
|
@@ -7828,7 +7828,7 @@
|
|
|
7828
7828
|
});
|
|
7829
7829
|
StyledCounterButtonLabel.displayName = "StyledCounterButtonLabel";
|
|
7830
7830
|
|
|
7831
|
-
var _excluded$
|
|
7831
|
+
var _excluded$16 = ["label", "icon", "active", "counter", "tooltipText", "onClearAll", "className", "disabled"];
|
|
7832
7832
|
var CounterButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7833
7833
|
var label = _ref.label,
|
|
7834
7834
|
icon = _ref.icon,
|
|
@@ -7840,7 +7840,7 @@
|
|
|
7840
7840
|
className = _ref.className,
|
|
7841
7841
|
_ref$disabled = _ref.disabled,
|
|
7842
7842
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7843
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
7843
|
+
args = _objectWithoutProperties(_ref, _excluded$16);
|
|
7844
7844
|
return /*#__PURE__*/React__default["default"].createElement(StyledCounterButtonWrapper, {
|
|
7845
7845
|
ref: ref,
|
|
7846
7846
|
className: className
|
|
@@ -8151,7 +8151,7 @@
|
|
|
8151
8151
|
StyledDatePicker.displayName = "StyledDatePicker";
|
|
8152
8152
|
StyledDayPicker.displayName = "StyledDayPicker";
|
|
8153
8153
|
|
|
8154
|
-
var _excluded$
|
|
8154
|
+
var _excluded$15 = ["className", "onChange", "onDayClick", "selectedDays", "disabledDays", "selectionMode", "month", "onMonthChange", "dateRequired", "firstDayOfWeek", "fixedWeeks", "modifiers"];
|
|
8155
8155
|
var DatePicker = function DatePicker(_ref) {
|
|
8156
8156
|
var className = _ref.className,
|
|
8157
8157
|
onChange = _ref.onChange,
|
|
@@ -8173,7 +8173,7 @@
|
|
|
8173
8173
|
_ref$fixedWeeks = _ref.fixedWeeks,
|
|
8174
8174
|
fixedWeeks = _ref$fixedWeeks === void 0 ? true : _ref$fixedWeeks,
|
|
8175
8175
|
defaultModifiers = _ref.modifiers,
|
|
8176
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8176
|
+
rest = _objectWithoutProperties(_ref, _excluded$15);
|
|
8177
8177
|
var _useState = React.useState(),
|
|
8178
8178
|
_useState2 = _slicedToArray(_useState, 2),
|
|
8179
8179
|
enteredTo = _useState2[0],
|
|
@@ -9065,10 +9065,10 @@
|
|
|
9065
9065
|
componentId: "sc-x4ge7a-0"
|
|
9066
9066
|
})(["width:70%;background:linear-gradient( 90deg,rgba(255,255,255,0) 20%,rgba(0,0,0,0.05) 50%,rgba(255,255,255,0) 60% );background-size:400%;height:16px;border-radius:8px;.neon &{background:linear-gradient( 90deg,rgba(255,255,255,0) 20%,rgba(0,0,0,0.2) 50%,rgba(255,255,255,0) 60% );background-size:500%;}animation-duration:1s;animation-iteration-count:infinite;animation-name:", ";animation-timing-function:linear;animation-direction:reverse;"], linearAnimation);
|
|
9067
9067
|
|
|
9068
|
-
var _excluded$
|
|
9068
|
+
var _excluded$14 = ["className"];
|
|
9069
9069
|
var LinearLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9070
9070
|
var className = _ref.className,
|
|
9071
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9071
|
+
rest = _objectWithoutProperties(_ref, _excluded$14);
|
|
9072
9072
|
return /*#__PURE__*/React__default["default"].createElement(StyledLinearLoader, _extends({
|
|
9073
9073
|
ref: ref,
|
|
9074
9074
|
className: classNames__default["default"]("c-loader c-loader--linear", className)
|
|
@@ -9082,10 +9082,10 @@
|
|
|
9082
9082
|
componentId: "sc-1f35d5h-0"
|
|
9083
9083
|
})(["display:inline-block;text-align:center;& > span{display:inline-block;width:18px;height:18px;background-color:#777;border-radius:100%;animation:", " 1.4s infinite ease-in-out both;}span:nth-child(1){animation-delay:-0.32s;}span:nth-child(2){animation-delay:-0.16s;}"], dotAnimation);
|
|
9084
9084
|
|
|
9085
|
-
var _excluded$
|
|
9085
|
+
var _excluded$13 = ["className"];
|
|
9086
9086
|
var DotsLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9087
9087
|
var className = _ref.className,
|
|
9088
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9088
|
+
rest = _objectWithoutProperties(_ref, _excluded$13);
|
|
9089
9089
|
return /*#__PURE__*/React__default["default"].createElement(StyledDotsLoader, _extends({
|
|
9090
9090
|
ref: ref,
|
|
9091
9091
|
className: classNames__default["default"]("c-loader c-loader--dots", className)
|
|
@@ -9107,7 +9107,7 @@
|
|
|
9107
9107
|
return props.$activeColorPercentage === "75%" && styled.css(["border-right:", "px solid ", ";border-bottom:", "px solid ", ";border-left:", "px solid ", ";border-top:", "px solid ", ";"], props.$stroke, props.$activeStrokeColor, props.$stroke, props.$activeStrokeColor, props.$stroke, props.$inactiveStrokeColor, props.$stroke, props.$activeStrokeColor);
|
|
9108
9108
|
});
|
|
9109
9109
|
|
|
9110
|
-
var _excluded$
|
|
9110
|
+
var _excluded$12 = ["radius", "stroke", "activeStrokeColor", "inactiveStrokeColor", "activeColorPercentage", "rotateDurationInSeconds", "className"];
|
|
9111
9111
|
var SpinnerLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9112
9112
|
var _ref$radius = _ref.radius,
|
|
9113
9113
|
radius = _ref$radius === void 0 ? 10 : _ref$radius,
|
|
@@ -9122,7 +9122,7 @@
|
|
|
9122
9122
|
_ref$rotateDurationIn = _ref.rotateDurationInSeconds,
|
|
9123
9123
|
rotateDurationInSeconds = _ref$rotateDurationIn === void 0 ? 0.75 : _ref$rotateDurationIn,
|
|
9124
9124
|
className = _ref.className,
|
|
9125
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9125
|
+
rest = _objectWithoutProperties(_ref, _excluded$12);
|
|
9126
9126
|
return /*#__PURE__*/React__default["default"].createElement(StyledSpinnerLoader$1, _extends({
|
|
9127
9127
|
ref: ref,
|
|
9128
9128
|
className: className,
|
|
@@ -9136,7 +9136,7 @@
|
|
|
9136
9136
|
});
|
|
9137
9137
|
SpinnerLoader.displayName = "SpinnerLoader";
|
|
9138
9138
|
|
|
9139
|
-
var _excluded$
|
|
9139
|
+
var _excluded$11 = ["header", "rows", "className", "sortBy", "sortDirection", "onSortCallback", "theadClass", "noResultsCallback", "groupBy", "groupHead", "isCollapsible", "emptyValue", "loading", "loadingRows"];
|
|
9140
9140
|
exports.SortDirection = void 0;
|
|
9141
9141
|
(function (SortDirection) {
|
|
9142
9142
|
SortDirection["None"] = "none";
|
|
@@ -9184,7 +9184,7 @@
|
|
|
9184
9184
|
loading = _ref.loading,
|
|
9185
9185
|
_ref$loadingRows = _ref.loadingRows,
|
|
9186
9186
|
loadingRows = _ref$loadingRows === void 0 ? 7 : _ref$loadingRows,
|
|
9187
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
9187
|
+
args = _objectWithoutProperties(_ref, _excluded$11);
|
|
9188
9188
|
var _useState = React.useState(sortDirection),
|
|
9189
9189
|
_useState2 = _slicedToArray(_useState, 2),
|
|
9190
9190
|
columnDirection = _useState2[0],
|
|
@@ -9544,7 +9544,7 @@
|
|
|
9544
9544
|
});
|
|
9545
9545
|
StyledCompleteCheckbox.displayName = "StyledCompleteCheckbox";
|
|
9546
9546
|
|
|
9547
|
-
var _excluded
|
|
9547
|
+
var _excluded$10 = ["completed", "disabled", "animate", "onClick", "className", "primary", "checkMarkClassName"];
|
|
9548
9548
|
var CompleteCheckbox = function CompleteCheckbox(_ref) {
|
|
9549
9549
|
var _ref$completed = _ref.completed,
|
|
9550
9550
|
completed = _ref$completed === void 0 ? false : _ref$completed,
|
|
@@ -9557,7 +9557,7 @@
|
|
|
9557
9557
|
_ref$primary = _ref.primary,
|
|
9558
9558
|
primary = _ref$primary === void 0 ? false : _ref$primary,
|
|
9559
9559
|
checkMarkClassName = _ref.checkMarkClassName,
|
|
9560
|
-
rest = _objectWithoutProperties(_ref, _excluded
|
|
9560
|
+
rest = _objectWithoutProperties(_ref, _excluded$10);
|
|
9561
9561
|
return /*#__PURE__*/React__default["default"].createElement(StyledCompleteCheckbox, _extends({
|
|
9562
9562
|
onClick: onClick,
|
|
9563
9563
|
className: classNames__default["default"]("c-complete-checkbox", className),
|
|
@@ -9588,7 +9588,7 @@
|
|
|
9588
9588
|
});
|
|
9589
9589
|
StyledPaper.displayName = "StyledPaper";
|
|
9590
9590
|
|
|
9591
|
-
var _excluded
|
|
9591
|
+
var _excluded$$ = ["children", "className", "type", "hover", "useOptimizedShadow"];
|
|
9592
9592
|
/**
|
|
9593
9593
|
* This is a component description and should sit directly above your component
|
|
9594
9594
|
*/
|
|
@@ -9601,7 +9601,7 @@
|
|
|
9601
9601
|
hover = _ref$hover === void 0 ? false : _ref$hover,
|
|
9602
9602
|
_ref$useOptimizedShad = _ref.useOptimizedShadow,
|
|
9603
9603
|
useOptimizedShadow = _ref$useOptimizedShad === void 0 ? false : _ref$useOptimizedShad,
|
|
9604
|
-
rest = _objectWithoutProperties(_ref, _excluded
|
|
9604
|
+
rest = _objectWithoutProperties(_ref, _excluded$$);
|
|
9605
9605
|
return /*#__PURE__*/React__default["default"].createElement(StyledPaper, _extends({
|
|
9606
9606
|
className: classNames__default["default"](className, {
|
|
9607
9607
|
"ac-shadow--raised--lg": !useOptimizedShadow && hover && type === "paper-1",
|
|
@@ -9654,7 +9654,7 @@
|
|
|
9654
9654
|
});
|
|
9655
9655
|
StyledCard.displayName = "StyledCard";
|
|
9656
9656
|
|
|
9657
|
-
var _excluded$
|
|
9657
|
+
var _excluded$_ = ["children", "className", "hoverable", "paperType"];
|
|
9658
9658
|
var Card = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9659
9659
|
var children = _ref.children,
|
|
9660
9660
|
className = _ref.className,
|
|
@@ -9662,7 +9662,7 @@
|
|
|
9662
9662
|
hoverable = _ref$hoverable === void 0 ? false : _ref$hoverable,
|
|
9663
9663
|
_ref$paperType = _ref.paperType,
|
|
9664
9664
|
paperType = _ref$paperType === void 0 ? "paper-2" : _ref$paperType,
|
|
9665
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9665
|
+
rest = _objectWithoutProperties(_ref, _excluded$_);
|
|
9666
9666
|
return /*#__PURE__*/React__default["default"].createElement(StyledCard, _extends({}, rest, {
|
|
9667
9667
|
type: paperType,
|
|
9668
9668
|
className: classNames__default["default"]("c-card", className),
|
|
@@ -9741,12 +9741,12 @@
|
|
|
9741
9741
|
});
|
|
9742
9742
|
EntityCard$1.displayName = "EntityCard";
|
|
9743
9743
|
|
|
9744
|
-
var _excluded$
|
|
9744
|
+
var _excluded$Z = ["weight", "children"];
|
|
9745
9745
|
var Title1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9746
9746
|
var _ref$weight = _ref.weight,
|
|
9747
9747
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
9748
9748
|
children = _ref.children,
|
|
9749
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9749
|
+
props = _objectWithoutProperties(_ref, _excluded$Z);
|
|
9750
9750
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9751
9751
|
weight: weight,
|
|
9752
9752
|
variant: "Title 1",
|
|
@@ -9755,12 +9755,12 @@
|
|
|
9755
9755
|
});
|
|
9756
9756
|
Title1.displayName = "Title1";
|
|
9757
9757
|
|
|
9758
|
-
var _excluded$
|
|
9758
|
+
var _excluded$Y = ["weight", "children"];
|
|
9759
9759
|
var Title2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9760
9760
|
var _ref$weight = _ref.weight,
|
|
9761
9761
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
9762
9762
|
children = _ref.children,
|
|
9763
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9763
|
+
props = _objectWithoutProperties(_ref, _excluded$Y);
|
|
9764
9764
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9765
9765
|
weight: weight,
|
|
9766
9766
|
variant: "Title 2",
|
|
@@ -9769,10 +9769,10 @@
|
|
|
9769
9769
|
});
|
|
9770
9770
|
Title2.displayName = "Title2";
|
|
9771
9771
|
|
|
9772
|
-
var _excluded$
|
|
9772
|
+
var _excluded$X = ["children"];
|
|
9773
9773
|
var Header2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9774
9774
|
var children = _ref.children,
|
|
9775
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9775
|
+
props = _objectWithoutProperties(_ref, _excluded$X);
|
|
9776
9776
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9777
9777
|
weight: "bold",
|
|
9778
9778
|
variant: "Header 2",
|
|
@@ -9781,10 +9781,10 @@
|
|
|
9781
9781
|
});
|
|
9782
9782
|
Header2.displayName = "Header2";
|
|
9783
9783
|
|
|
9784
|
-
var _excluded$
|
|
9784
|
+
var _excluded$W = ["children"];
|
|
9785
9785
|
var Header3 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9786
9786
|
var children = _ref.children,
|
|
9787
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9787
|
+
props = _objectWithoutProperties(_ref, _excluded$W);
|
|
9788
9788
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9789
9789
|
weight: "bold",
|
|
9790
9790
|
variant: "Header 3",
|
|
@@ -9793,12 +9793,12 @@
|
|
|
9793
9793
|
});
|
|
9794
9794
|
Header3.displayName = "Header3";
|
|
9795
9795
|
|
|
9796
|
-
var _excluded$
|
|
9796
|
+
var _excluded$V = ["weight", "children"];
|
|
9797
9797
|
var Body1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9798
9798
|
var _ref$weight = _ref.weight,
|
|
9799
9799
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
9800
9800
|
children = _ref.children,
|
|
9801
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9801
|
+
props = _objectWithoutProperties(_ref, _excluded$V);
|
|
9802
9802
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9803
9803
|
variant: "Body 1",
|
|
9804
9804
|
weight: weight,
|
|
@@ -9807,12 +9807,12 @@
|
|
|
9807
9807
|
});
|
|
9808
9808
|
Body1.displayName = "Body1";
|
|
9809
9809
|
|
|
9810
|
-
var _excluded$
|
|
9810
|
+
var _excluded$U = ["weight", "children"];
|
|
9811
9811
|
var Caption1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9812
9812
|
var _ref$weight = _ref.weight,
|
|
9813
9813
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
9814
9814
|
children = _ref.children,
|
|
9815
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9815
|
+
props = _objectWithoutProperties(_ref, _excluded$U);
|
|
9816
9816
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9817
9817
|
variant: "Caption 1",
|
|
9818
9818
|
weight: weight,
|
|
@@ -9821,12 +9821,12 @@
|
|
|
9821
9821
|
});
|
|
9822
9822
|
Caption1.displayName = "Caption1";
|
|
9823
9823
|
|
|
9824
|
-
var _excluded$
|
|
9824
|
+
var _excluded$T = ["weight", "children"];
|
|
9825
9825
|
var Caption2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9826
9826
|
var _ref$weight = _ref.weight,
|
|
9827
9827
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
9828
9828
|
children = _ref.children,
|
|
9829
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9829
|
+
props = _objectWithoutProperties(_ref, _excluded$T);
|
|
9830
9830
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9831
9831
|
variant: "Caption 2",
|
|
9832
9832
|
weight: weight,
|
|
@@ -9938,7 +9938,7 @@
|
|
|
9938
9938
|
componentId: "sc-5x2tyd-1"
|
|
9939
9939
|
})(["border-radius:100%;object-fit:cover;"]);
|
|
9940
9940
|
|
|
9941
|
-
var _excluded$
|
|
9941
|
+
var _excluded$S = ["url", "alt", "size", "className", "imgClassName", "children"];
|
|
9942
9942
|
/**
|
|
9943
9943
|
* @component Avatar
|
|
9944
9944
|
* @description
|
|
@@ -9973,7 +9973,7 @@
|
|
|
9973
9973
|
className = _ref.className,
|
|
9974
9974
|
imgClassName = _ref.imgClassName,
|
|
9975
9975
|
children = _ref.children,
|
|
9976
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9976
|
+
rest = _objectWithoutProperties(_ref, _excluded$S);
|
|
9977
9977
|
var _useState = React.useState(false),
|
|
9978
9978
|
_useState2 = _slicedToArray(_useState, 2),
|
|
9979
9979
|
imageLoaded = _useState2[0],
|
|
@@ -10014,13 +10014,13 @@
|
|
|
10014
10014
|
return props.$color && styled.css(["background-color:", ";"], props.$color);
|
|
10015
10015
|
});
|
|
10016
10016
|
|
|
10017
|
-
var _excluded$
|
|
10017
|
+
var _excluded$R = ["color", "size", "className"];
|
|
10018
10018
|
var Dot = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10019
10019
|
var color = _ref.color,
|
|
10020
10020
|
_ref$size = _ref.size,
|
|
10021
10021
|
size = _ref$size === void 0 ? 8 : _ref$size,
|
|
10022
10022
|
className = _ref.className,
|
|
10023
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10023
|
+
rest = _objectWithoutProperties(_ref, _excluded$R);
|
|
10024
10024
|
return /*#__PURE__*/React__default["default"].createElement(StyledDot, _extends({
|
|
10025
10025
|
className: classNames__default["default"]("c-dot", className),
|
|
10026
10026
|
ref: ref,
|
|
@@ -10057,7 +10057,7 @@
|
|
|
10057
10057
|
});
|
|
10058
10058
|
StyledTagText.displayName = "StyledTagText";
|
|
10059
10059
|
|
|
10060
|
-
var _excluded$
|
|
10060
|
+
var _excluded$Q = ["name", "color", "showText", "showDot", "className"];
|
|
10061
10061
|
var Tag = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10062
10062
|
var name = _ref.name,
|
|
10063
10063
|
color = _ref.color,
|
|
@@ -10066,7 +10066,7 @@
|
|
|
10066
10066
|
_ref$showDot = _ref.showDot,
|
|
10067
10067
|
showDot = _ref$showDot === void 0 ? true : _ref$showDot,
|
|
10068
10068
|
className = _ref.className,
|
|
10069
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10069
|
+
rest = _objectWithoutProperties(_ref, _excluded$Q);
|
|
10070
10070
|
return /*#__PURE__*/React__default["default"].createElement(StyledTag, _extends({
|
|
10071
10071
|
className: classNames__default["default"]("c-tag", className),
|
|
10072
10072
|
ref: ref
|
|
@@ -10196,7 +10196,7 @@
|
|
|
10196
10196
|
});
|
|
10197
10197
|
StyledCheckbox$1.displayName = "StyledCheckbox";
|
|
10198
10198
|
|
|
10199
|
-
var _excluded$
|
|
10199
|
+
var _excluded$P = ["isIndeterminate", "data-testid"];
|
|
10200
10200
|
|
|
10201
10201
|
/**
|
|
10202
10202
|
* @component CheckboxIcon
|
|
@@ -10220,7 +10220,7 @@
|
|
|
10220
10220
|
var CheckboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10221
10221
|
var isIndeterminate = _ref.isIndeterminate,
|
|
10222
10222
|
testId = _ref["data-testid"],
|
|
10223
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10223
|
+
props = _objectWithoutProperties(_ref, _excluded$P);
|
|
10224
10224
|
var _useState = React.useState(false),
|
|
10225
10225
|
_useState2 = _slicedToArray(_useState, 2),
|
|
10226
10226
|
animate = _useState2[0],
|
|
@@ -10289,7 +10289,7 @@
|
|
|
10289
10289
|
CheckboxIcon.displayName = "CheckboxIcon";
|
|
10290
10290
|
var CheckboxIcon$1 = CheckboxIcon;
|
|
10291
10291
|
|
|
10292
|
-
var _excluded$
|
|
10292
|
+
var _excluded$O = ["className", "hover", "id", "isIndeterminate"];
|
|
10293
10293
|
/**
|
|
10294
10294
|
* Checkbox component
|
|
10295
10295
|
*/
|
|
@@ -10299,7 +10299,7 @@
|
|
|
10299
10299
|
_ref$id = _ref.id,
|
|
10300
10300
|
id = _ref$id === void 0 ? "checkbox" : _ref$id,
|
|
10301
10301
|
isIndeterminate = _ref.isIndeterminate,
|
|
10302
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10302
|
+
rest = _objectWithoutProperties(_ref, _excluded$O);
|
|
10303
10303
|
return /*#__PURE__*/React__default["default"].createElement(StyledCheckbox$1, {
|
|
10304
10304
|
className: classNames__default["default"]("c-checkbox", {
|
|
10305
10305
|
"c-checkbox__hover": hover,
|
|
@@ -10504,7 +10504,7 @@
|
|
|
10504
10504
|
StyledScrollShadowLeft.displayName = "StyledScrollShadowLeft";
|
|
10505
10505
|
StyledScrollShadowRight.displayName = "StyledScrollShadowRight";
|
|
10506
10506
|
|
|
10507
|
-
var _excluded$
|
|
10507
|
+
var _excluded$N = ["children", "className", "disableVertical", "disableHorizontal", "invertHorizontal", "invertVertical", "innerColor", "outerColor"];
|
|
10508
10508
|
var ScrollShadow = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10509
10509
|
var children = _ref.children,
|
|
10510
10510
|
className = _ref.className,
|
|
@@ -10518,7 +10518,7 @@
|
|
|
10518
10518
|
invertVertical = _ref$invertVertical === void 0 ? false : _ref$invertVertical,
|
|
10519
10519
|
innerColor = _ref.innerColor,
|
|
10520
10520
|
outerColor = _ref.outerColor,
|
|
10521
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10521
|
+
rest = _objectWithoutProperties(_ref, _excluded$N);
|
|
10522
10522
|
var _useState = React.useState({
|
|
10523
10523
|
top: 0,
|
|
10524
10524
|
right: 0,
|
|
@@ -10638,7 +10638,7 @@
|
|
|
10638
10638
|
return height;
|
|
10639
10639
|
};
|
|
10640
10640
|
|
|
10641
|
-
var _excluded$
|
|
10641
|
+
var _excluded$M = ["as", "className", "invert", "style"];
|
|
10642
10642
|
var ScrollElement = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10643
10643
|
var _ref$as = _ref.as,
|
|
10644
10644
|
as = _ref$as === void 0 ? "div" : _ref$as,
|
|
@@ -10646,7 +10646,7 @@
|
|
|
10646
10646
|
_ref$invert = _ref.invert,
|
|
10647
10647
|
invert = _ref$invert === void 0 ? false : _ref$invert,
|
|
10648
10648
|
style = _ref.style,
|
|
10649
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10649
|
+
rest = _objectWithoutProperties(_ref, _excluded$M);
|
|
10650
10650
|
var internalRef = useInitScrollRef(null, invert);
|
|
10651
10651
|
var handleRef = useForkRef(internalRef, ref);
|
|
10652
10652
|
var props = _objectSpread2(_objectSpread2({}, rest), {}, {
|
|
@@ -11128,7 +11128,7 @@
|
|
|
11128
11128
|
});
|
|
11129
11129
|
StyledInput$2.displayName = "StyledInput";
|
|
11130
11130
|
|
|
11131
|
-
var _excluded$
|
|
11131
|
+
var _excluded$L = ["className", "style", "type", "disabled", "size", "invalid", "startAdornment", "endAdornment", "wrapRef", "wrapperClick"];
|
|
11132
11132
|
var Input = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11133
11133
|
var _ref$className = _ref.className,
|
|
11134
11134
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
@@ -11145,7 +11145,7 @@
|
|
|
11145
11145
|
endAdornment = _ref.endAdornment,
|
|
11146
11146
|
wrapRef = _ref.wrapRef,
|
|
11147
11147
|
wrapperClick = _ref.wrapperClick,
|
|
11148
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11148
|
+
rest = _objectWithoutProperties(_ref, _excluded$L);
|
|
11149
11149
|
var intInputRef = React.useRef(null);
|
|
11150
11150
|
var handleRef = useForkRef(ref, intInputRef);
|
|
11151
11151
|
var handleWrapperClick = React.useCallback(function () {
|
|
@@ -11199,14 +11199,14 @@
|
|
|
11199
11199
|
}, StyledRadioLabel);
|
|
11200
11200
|
StyledRadioButton$1.displayName = "StyledRadioButton";
|
|
11201
11201
|
|
|
11202
|
-
var _excluded$
|
|
11202
|
+
var _excluded$K = ["className", "id", "hover"];
|
|
11203
11203
|
var RadioButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11204
11204
|
var _ref$className = _ref.className,
|
|
11205
11205
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
11206
11206
|
_ref$id = _ref.id,
|
|
11207
11207
|
id = _ref$id === void 0 ? "radio" : _ref$id,
|
|
11208
11208
|
hover = _ref.hover,
|
|
11209
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11209
|
+
props = _objectWithoutProperties(_ref, _excluded$K);
|
|
11210
11210
|
return /*#__PURE__*/React__default["default"].createElement(StyledRadioButton$1, {
|
|
11211
11211
|
className: classNames__default["default"]("c-radio-btn", {
|
|
11212
11212
|
"c-radio-btn__hover": hover,
|
|
@@ -11414,7 +11414,7 @@
|
|
|
11414
11414
|
};
|
|
11415
11415
|
OptionContent.displayName = "OptionContent";
|
|
11416
11416
|
|
|
11417
|
-
var _excluded$
|
|
11417
|
+
var _excluded$J = ["type", "mode", "target", "options", "selected", "position", "onChange", "actionIcon", "actionLabel", "placeholder", "emptyAction", "disableSearch", "forceCloseMenu", "selectClassName", "keepSameOptionsOrder", "onSelectOpen", "onSelectClose", "renderOption", "handleDefaultOptionChange", "preselectDefaultValue"];
|
|
11418
11418
|
var Select = function Select(_ref) {
|
|
11419
11419
|
var _ref$type = _ref.type,
|
|
11420
11420
|
type = _ref$type === void 0 ? "single" : _ref$type,
|
|
@@ -11448,7 +11448,7 @@
|
|
|
11448
11448
|
handleDefaultOptionChange = _ref.handleDefaultOptionChange,
|
|
11449
11449
|
_ref$preselectDefault = _ref.preselectDefaultValue,
|
|
11450
11450
|
preselectDefaultValue = _ref$preselectDefault === void 0 ? type === "single" : _ref$preselectDefault,
|
|
11451
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
11451
|
+
prop = _objectWithoutProperties(_ref, _excluded$J);
|
|
11452
11452
|
var childNode = React.useRef();
|
|
11453
11453
|
var elementRef = React.useRef(null);
|
|
11454
11454
|
var handleRef = useForkRef(childNode, elementRef);
|
|
@@ -11703,7 +11703,7 @@
|
|
|
11703
11703
|
});
|
|
11704
11704
|
StyledNavAsMoreTarget.displayName = "StyledNavAsMoreTarget";
|
|
11705
11705
|
|
|
11706
|
-
var _excluded$
|
|
11706
|
+
var _excluded$I = ["children", "active", "disabled", "className", "role"];
|
|
11707
11707
|
var Item = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11708
11708
|
var children = _ref.children,
|
|
11709
11709
|
_ref$active = _ref.active,
|
|
@@ -11712,7 +11712,7 @@
|
|
|
11712
11712
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
11713
11713
|
className = _ref.className,
|
|
11714
11714
|
role = _ref.role,
|
|
11715
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11715
|
+
rest = _objectWithoutProperties(_ref, _excluded$I);
|
|
11716
11716
|
return /*#__PURE__*/React__default["default"].createElement(StyledNavListItem, _extends({
|
|
11717
11717
|
className: classNames__default["default"]("c-nav__item", {
|
|
11718
11718
|
"c-nav__item--active": active
|
|
@@ -11753,11 +11753,11 @@
|
|
|
11753
11753
|
});
|
|
11754
11754
|
StyledExpandSingle.displayName = "StyledExpandSingle";
|
|
11755
11755
|
|
|
11756
|
-
var _excluded$
|
|
11756
|
+
var _excluded$H = ["expanded"];
|
|
11757
11757
|
var ExpandSingle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11758
11758
|
var _ref$expanded = _ref.expanded,
|
|
11759
11759
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
11760
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11760
|
+
rest = _objectWithoutProperties(_ref, _excluded$H);
|
|
11761
11761
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpandSingle, _extends({
|
|
11762
11762
|
ref: ref,
|
|
11763
11763
|
viewBox: "0 0 24 24",
|
|
@@ -12047,7 +12047,7 @@
|
|
|
12047
12047
|
};
|
|
12048
12048
|
Nav.displayName = "Nav";
|
|
12049
12049
|
|
|
12050
|
-
var _excluded$
|
|
12050
|
+
var _excluded$G = ["children", "as", "disablePointerEvents"];
|
|
12051
12051
|
var InputAdornmentBase = styled__default["default"].div.withConfig({
|
|
12052
12052
|
displayName: "InputAdornment__InputAdornmentBase",
|
|
12053
12053
|
componentId: "sc-1xfjx1z-0"
|
|
@@ -12064,7 +12064,7 @@
|
|
|
12064
12064
|
var children = _ref.children,
|
|
12065
12065
|
as = _ref.as,
|
|
12066
12066
|
disablePointerEvents = _ref.disablePointerEvents,
|
|
12067
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12067
|
+
rest = _objectWithoutProperties(_ref, _excluded$G);
|
|
12068
12068
|
var Component = as || "div";
|
|
12069
12069
|
return /*#__PURE__*/React__default["default"].createElement(InputAdornmentBase, _extends({}, rest, {
|
|
12070
12070
|
as: Component,
|
|
@@ -12074,11 +12074,11 @@
|
|
|
12074
12074
|
});
|
|
12075
12075
|
InputAdornment.displayName = "InputAdornment";
|
|
12076
12076
|
|
|
12077
|
-
var _excluded$
|
|
12077
|
+
var _excluded$F = ["expanded"];
|
|
12078
12078
|
var ExpandAll = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12079
12079
|
var _ref$expanded = _ref.expanded,
|
|
12080
12080
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
12081
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12081
|
+
rest = _objectWithoutProperties(_ref, _excluded$F);
|
|
12082
12082
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpand, _extends({
|
|
12083
12083
|
ref: ref,
|
|
12084
12084
|
viewBox: "0 0 24 24"
|
|
@@ -12196,14 +12196,14 @@
|
|
|
12196
12196
|
});
|
|
12197
12197
|
StyledTextarea.displayName = "StyledTextarea";
|
|
12198
12198
|
|
|
12199
|
-
var _excluded$
|
|
12199
|
+
var _excluded$E = ["className", "disabled", "invalid"];
|
|
12200
12200
|
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12201
12201
|
var className = _ref.className,
|
|
12202
12202
|
_ref$disabled = _ref.disabled,
|
|
12203
12203
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
12204
12204
|
_ref$invalid = _ref.invalid,
|
|
12205
12205
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
12206
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12206
|
+
rest = _objectWithoutProperties(_ref, _excluded$E);
|
|
12207
12207
|
return /*#__PURE__*/React__default["default"].createElement(StyledTextarea, _extends({}, rest, {
|
|
12208
12208
|
$invalid: invalid,
|
|
12209
12209
|
ref: ref,
|
|
@@ -12235,7 +12235,7 @@
|
|
|
12235
12235
|
function () {});
|
|
12236
12236
|
}
|
|
12237
12237
|
|
|
12238
|
-
var _excluded$
|
|
12238
|
+
var _excluded$D = ["children", "disableFocusLock", "disableScrollLock", "disableBackgroundClick", "disableBackgroundColor", "disableCloseOnEsc", "open", "onClose", "onClickOutside"];
|
|
12239
12239
|
var getHasTransition = function getHasTransition(children) {
|
|
12240
12240
|
return children.props ? Object.prototype.hasOwnProperty.call(children.props, "in") : false;
|
|
12241
12241
|
};
|
|
@@ -12254,7 +12254,8 @@
|
|
|
12254
12254
|
_ref$open = _ref.open,
|
|
12255
12255
|
defaultOpen = _ref$open === void 0 ? false : _ref$open,
|
|
12256
12256
|
onClose = _ref.onClose,
|
|
12257
|
-
|
|
12257
|
+
onClickOutside = _ref.onClickOutside,
|
|
12258
|
+
rest = _objectWithoutProperties(_ref, _excluded$D);
|
|
12258
12259
|
var _useState = React.useState(defaultOpen),
|
|
12259
12260
|
_useState2 = _slicedToArray(_useState, 2),
|
|
12260
12261
|
open = _useState2[0],
|
|
@@ -12280,9 +12281,12 @@
|
|
|
12280
12281
|
var handleBackgroundClick = React.useCallback(function (event) {
|
|
12281
12282
|
if (!disableBackgroundClick) {
|
|
12282
12283
|
event.preventDefault();
|
|
12283
|
-
handleClose();
|
|
12284
|
+
return handleClose();
|
|
12284
12285
|
}
|
|
12285
|
-
|
|
12286
|
+
if (onClickOutside) {
|
|
12287
|
+
onClickOutside(event);
|
|
12288
|
+
}
|
|
12289
|
+
}, [disableBackgroundClick, onClickOutside, handleClose]);
|
|
12286
12290
|
var handleEnter = React.useCallback(function () {
|
|
12287
12291
|
setExited(false);
|
|
12288
12292
|
}, []);
|
|
@@ -12392,7 +12396,7 @@
|
|
|
12392
12396
|
});
|
|
12393
12397
|
StyledCssTransition.displayName = "StyledCssTransition";
|
|
12394
12398
|
|
|
12395
|
-
var _excluded$
|
|
12399
|
+
var _excluded$C = ["children", "onClose", "controls", "open", "animation", "position", "mode", "disableFocusLock", "disableScrollLock", "disableBackgroundColor", "bodyStyle", "bodyClassName", "disableBackgroundClick"];
|
|
12396
12400
|
var Sheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12397
12401
|
var children = _ref.children,
|
|
12398
12402
|
onClose = _ref.onClose,
|
|
@@ -12416,7 +12420,7 @@
|
|
|
12416
12420
|
bodyClassName = _ref.bodyClassName,
|
|
12417
12421
|
_ref$disableBackgroun2 = _ref.disableBackgroundClick,
|
|
12418
12422
|
disableBackgroundClick = _ref$disableBackgroun2 === void 0 ? false : _ref$disableBackgroun2,
|
|
12419
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12423
|
+
rest = _objectWithoutProperties(_ref, _excluded$C);
|
|
12420
12424
|
var _useState = React.useState(defaultOpen),
|
|
12421
12425
|
_useState2 = _slicedToArray(_useState, 2),
|
|
12422
12426
|
open = _useState2[0],
|
|
@@ -12509,13 +12513,13 @@
|
|
|
12509
12513
|
});
|
|
12510
12514
|
StyledHeader.displayName = "StyledHeader";
|
|
12511
12515
|
|
|
12512
|
-
var _excluded$
|
|
12516
|
+
var _excluded$B = ["className", "size", "children"];
|
|
12513
12517
|
var Header = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12514
12518
|
var className = _ref.className,
|
|
12515
12519
|
_ref$size = _ref.size,
|
|
12516
12520
|
size = _ref$size === void 0 ? "small" : _ref$size,
|
|
12517
12521
|
children = _ref.children,
|
|
12518
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12522
|
+
rest = _objectWithoutProperties(_ref, _excluded$B);
|
|
12519
12523
|
return /*#__PURE__*/React__default["default"].createElement(StyledHeader, _extends({
|
|
12520
12524
|
type: "paper-2",
|
|
12521
12525
|
className: classNames__default["default"]("c-header", className),
|
|
@@ -12531,7 +12535,7 @@
|
|
|
12531
12535
|
})(["white-space:pre-wrap;overflow-wrap:break-word;resize:none;"]);
|
|
12532
12536
|
StyledAutoResizeTextarea.displayName = "StyledAutoResizeTextarea";
|
|
12533
12537
|
|
|
12534
|
-
var _excluded$
|
|
12538
|
+
var _excluded$A = ["minRows", "maxRows", "lineHeight", "onChange", "className", "preventNewRowOnEnter", "cursorAtTextEnd", "onKeyDown", "value"];
|
|
12535
12539
|
var AutoResizeTextarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12536
12540
|
var _ref$minRows = _ref.minRows,
|
|
12537
12541
|
minRows = _ref$minRows === void 0 ? 1 : _ref$minRows,
|
|
@@ -12547,7 +12551,7 @@
|
|
|
12547
12551
|
cursorAtTextEnd = _ref$cursorAtTextEnd === void 0 ? false : _ref$cursorAtTextEnd,
|
|
12548
12552
|
onKeyDown = _ref.onKeyDown,
|
|
12549
12553
|
value = _ref.value,
|
|
12550
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12554
|
+
rest = _objectWithoutProperties(_ref, _excluded$A);
|
|
12551
12555
|
var innerRef = React.useRef(null);
|
|
12552
12556
|
var _useState = React.useState(minRows),
|
|
12553
12557
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -12823,7 +12827,7 @@
|
|
|
12823
12827
|
});
|
|
12824
12828
|
StyledChoose.displayName = "StyledChoose";
|
|
12825
12829
|
|
|
12826
|
-
var _excluded$
|
|
12830
|
+
var _excluded$z = ["children", "disabled", "active", "className"];
|
|
12827
12831
|
/**
|
|
12828
12832
|
* Choose component
|
|
12829
12833
|
*/
|
|
@@ -12834,7 +12838,7 @@
|
|
|
12834
12838
|
_ref$active = _ref.active,
|
|
12835
12839
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
12836
12840
|
className = _ref.className,
|
|
12837
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
12841
|
+
args = _objectWithoutProperties(_ref, _excluded$z);
|
|
12838
12842
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose, _extends({
|
|
12839
12843
|
disabled: disabled,
|
|
12840
12844
|
className: classNames__default["default"]("c-choose", className),
|
|
@@ -12930,21 +12934,21 @@
|
|
|
12930
12934
|
StyledLinkElements.displayName = "StyledLinkElements";
|
|
12931
12935
|
StyledLink.displayName = "StyledLink";
|
|
12932
12936
|
|
|
12933
|
-
var _excluded$
|
|
12937
|
+
var _excluded$y = ["children", "className"];
|
|
12934
12938
|
/**
|
|
12935
12939
|
* Back link component
|
|
12936
12940
|
*/
|
|
12937
12941
|
var BackLink = function BackLink(_ref) {
|
|
12938
12942
|
var children = _ref.children,
|
|
12939
12943
|
className = _ref.className,
|
|
12940
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
12944
|
+
args = _objectWithoutProperties(_ref, _excluded$y);
|
|
12941
12945
|
return /*#__PURE__*/React__default["default"].createElement(StyledBackLink, _extends({
|
|
12942
12946
|
className: classNames__default["default"]("c-back-link", className)
|
|
12943
12947
|
}, args), children);
|
|
12944
12948
|
};
|
|
12945
12949
|
BackLink.displayName = "BackLink";
|
|
12946
12950
|
|
|
12947
|
-
var _excluded$
|
|
12951
|
+
var _excluded$x = ["as", "children", "variant", "size", "disabled", "className"];
|
|
12948
12952
|
/**
|
|
12949
12953
|
* Link component
|
|
12950
12954
|
*/
|
|
@@ -12957,7 +12961,7 @@
|
|
|
12957
12961
|
_ref$disabled = _ref.disabled,
|
|
12958
12962
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
12959
12963
|
className = _ref.className,
|
|
12960
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
12964
|
+
args = _objectWithoutProperties(_ref, _excluded$x);
|
|
12961
12965
|
var Component = as || "a";
|
|
12962
12966
|
return /*#__PURE__*/React__default["default"].createElement(StyledLink, _extends({
|
|
12963
12967
|
ref: ref,
|
|
@@ -13068,7 +13072,7 @@
|
|
|
13068
13072
|
})(["padding:20px 30px;", " ", ""], FontStyle, BoxSizingStyle);
|
|
13069
13073
|
StyledDialogActions.displayName = "StyledDialogActions";
|
|
13070
13074
|
|
|
13071
|
-
var _excluded$
|
|
13075
|
+
var _excluded$w = ["in", "children", "style", "timeout"];
|
|
13072
13076
|
var defaultStyle$1 = function defaultStyle(duration) {
|
|
13073
13077
|
return {
|
|
13074
13078
|
transition: "all ".concat(duration, "ms ease-in-out"),
|
|
@@ -13096,7 +13100,7 @@
|
|
|
13096
13100
|
style = _ref.style,
|
|
13097
13101
|
_ref$timeout = _ref.timeout,
|
|
13098
13102
|
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout,
|
|
13099
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13103
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
13100
13104
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
13101
13105
|
appear: true,
|
|
13102
13106
|
in: inProp,
|
|
@@ -13111,7 +13115,7 @@
|
|
|
13111
13115
|
};
|
|
13112
13116
|
Fade.displayName = "Fade";
|
|
13113
13117
|
|
|
13114
|
-
var _excluded$
|
|
13118
|
+
var _excluded$v = ["in", "children", "style", "timeout", "initialDirection"];
|
|
13115
13119
|
var Slide = function Slide(_ref) {
|
|
13116
13120
|
var _ref$in = _ref.in,
|
|
13117
13121
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
@@ -13121,7 +13125,7 @@
|
|
|
13121
13125
|
timeout = _ref$timeout === void 0 ? 300 : _ref$timeout,
|
|
13122
13126
|
_ref$initialDirection = _ref.initialDirection,
|
|
13123
13127
|
initialDirection = _ref$initialDirection === void 0 ? "left" : _ref$initialDirection,
|
|
13124
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13128
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
13125
13129
|
var directionSign;
|
|
13126
13130
|
switch (initialDirection) {
|
|
13127
13131
|
case "right":
|
|
@@ -13174,12 +13178,12 @@
|
|
|
13174
13178
|
return props.$direction === "right" && styled.css(["&.c-slide-enter{position:absolute;transform:translateX(-100%);}&.c-slide-enter-active{transform:translateX(0%);transition:all 200ms ease;}&.c-slide-exit{position:absolute;}&.c-slide-exit-active{transform:translateX(100%);transition:all 200ms ease;}"]);
|
|
13175
13179
|
});
|
|
13176
13180
|
|
|
13177
|
-
var _excluded$
|
|
13181
|
+
var _excluded$u = ["children", "direction"];
|
|
13178
13182
|
var SlideLeftRightTransition = function SlideLeftRightTransition(_ref) {
|
|
13179
13183
|
var children = _ref.children,
|
|
13180
13184
|
_ref$direction = _ref.direction,
|
|
13181
13185
|
direction = _ref$direction === void 0 ? "left" : _ref$direction,
|
|
13182
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13186
|
+
props = _objectWithoutProperties(_ref, _excluded$u);
|
|
13183
13187
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.CSSTransition, _extends({
|
|
13184
13188
|
timeout: 200,
|
|
13185
13189
|
classNames: "c-slide",
|
|
@@ -13222,7 +13226,7 @@
|
|
|
13222
13226
|
};
|
|
13223
13227
|
ResizeTransition.displayName = "ResizeTransition";
|
|
13224
13228
|
|
|
13225
|
-
var _excluded$
|
|
13229
|
+
var _excluded$t = ["in", "children", "style", "timeout"];
|
|
13226
13230
|
var defaultStyle = function defaultStyle(duration) {
|
|
13227
13231
|
return {
|
|
13228
13232
|
transition: "all ".concat(duration, "ms ease-in"),
|
|
@@ -13256,7 +13260,7 @@
|
|
|
13256
13260
|
style = _ref.style,
|
|
13257
13261
|
_ref$timeout = _ref.timeout,
|
|
13258
13262
|
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout,
|
|
13259
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13263
|
+
rest = _objectWithoutProperties(_ref, _excluded$t);
|
|
13260
13264
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
13261
13265
|
appear: true,
|
|
13262
13266
|
in: inProp,
|
|
@@ -13306,13 +13310,13 @@
|
|
|
13306
13310
|
};
|
|
13307
13311
|
Scale.displayName = "Scale";
|
|
13308
13312
|
|
|
13309
|
-
var _excluded$
|
|
13313
|
+
var _excluded$s = ["className", "children"];
|
|
13310
13314
|
// import { useDialogContext } from "./DialogContext";
|
|
13311
13315
|
|
|
13312
13316
|
var DialogActions = function DialogActions(_ref) {
|
|
13313
13317
|
var className = _ref.className,
|
|
13314
13318
|
children = _ref.children,
|
|
13315
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13319
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
13316
13320
|
// useDialogContext();
|
|
13317
13321
|
|
|
13318
13322
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogActions, _extends({
|
|
@@ -13321,13 +13325,13 @@
|
|
|
13321
13325
|
};
|
|
13322
13326
|
DialogActions.displayName = "DialogActions";
|
|
13323
13327
|
|
|
13324
|
-
var _excluded$
|
|
13328
|
+
var _excluded$r = ["className", "children"];
|
|
13325
13329
|
// import { useDialogContext } from "./DialogContext";
|
|
13326
13330
|
|
|
13327
13331
|
var DialogContent = function DialogContent(_ref) {
|
|
13328
13332
|
var className = _ref.className,
|
|
13329
13333
|
children = _ref.children,
|
|
13330
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13334
|
+
rest = _objectWithoutProperties(_ref, _excluded$r);
|
|
13331
13335
|
// useDialogContext();
|
|
13332
13336
|
|
|
13333
13337
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogContent, _extends({
|
|
@@ -13348,7 +13352,7 @@
|
|
|
13348
13352
|
};
|
|
13349
13353
|
DialogContentDivider.displayName = "DialogContentDivider";
|
|
13350
13354
|
|
|
13351
|
-
var _excluded$
|
|
13355
|
+
var _excluded$q = ["children", "className", "disableDefaultHeading"];
|
|
13352
13356
|
// import { useDialogContext } from "./DialogContext";
|
|
13353
13357
|
|
|
13354
13358
|
var DialogTitle = function DialogTitle(_ref) {
|
|
@@ -13356,7 +13360,7 @@
|
|
|
13356
13360
|
className = _ref.className,
|
|
13357
13361
|
_ref$disableDefaultHe = _ref.disableDefaultHeading,
|
|
13358
13362
|
disableDefaultHeading = _ref$disableDefaultHe === void 0 ? false : _ref$disableDefaultHe,
|
|
13359
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13363
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
13360
13364
|
// useDialogContext();
|
|
13361
13365
|
|
|
13362
13366
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogTitle, _extends({
|
|
@@ -13365,6 +13369,7 @@
|
|
|
13365
13369
|
};
|
|
13366
13370
|
DialogTitle.displayName = "DialogTitle";
|
|
13367
13371
|
|
|
13372
|
+
var _excluded$p = ["children", "open", "onClose", "className", "enableBackgroundClick", "disableCloseOnEsc", "animate", "onClickOutside"];
|
|
13368
13373
|
var _Dialog = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
13369
13374
|
var children = _ref.children,
|
|
13370
13375
|
_ref$open = _ref.open,
|
|
@@ -13376,7 +13381,9 @@
|
|
|
13376
13381
|
_ref$disableCloseOnEs = _ref.disableCloseOnEsc,
|
|
13377
13382
|
disableCloseOnEsc = _ref$disableCloseOnEs === void 0 ? false : _ref$disableCloseOnEs,
|
|
13378
13383
|
_ref$animate = _ref.animate,
|
|
13379
|
-
animate = _ref$animate === void 0 ? "slide" : _ref$animate
|
|
13384
|
+
animate = _ref$animate === void 0 ? "slide" : _ref$animate,
|
|
13385
|
+
onClickOutside = _ref.onClickOutside,
|
|
13386
|
+
rest = _objectWithoutProperties(_ref, _excluded$p);
|
|
13380
13387
|
var animateDialog = function animateDialog() {
|
|
13381
13388
|
switch (animate) {
|
|
13382
13389
|
case "fade":
|
|
@@ -13396,13 +13403,14 @@
|
|
|
13396
13403
|
return (
|
|
13397
13404
|
/*#__PURE__*/
|
|
13398
13405
|
// <DialogContext.Provider value={{}}>
|
|
13399
|
-
React__default["default"].createElement(Modal, {
|
|
13406
|
+
React__default["default"].createElement(Modal, _extends({
|
|
13400
13407
|
ref: ref,
|
|
13401
13408
|
open: open,
|
|
13402
13409
|
onClose: onClose,
|
|
13403
13410
|
disableBackgroundClick: !enableBackgroundClick,
|
|
13404
|
-
disableCloseOnEsc: disableCloseOnEsc
|
|
13405
|
-
|
|
13411
|
+
disableCloseOnEsc: disableCloseOnEsc,
|
|
13412
|
+
onClickOutside: onClickOutside
|
|
13413
|
+
}, rest), animateDialog())
|
|
13406
13414
|
// </DialogContext.Provider>
|
|
13407
13415
|
);
|
|
13408
13416
|
});
|
|
@@ -15564,7 +15572,7 @@
|
|
|
15564
15572
|
});
|
|
15565
15573
|
Label.displayName = "Label";
|
|
15566
15574
|
|
|
15567
|
-
var GlobalStyle = styled.createGlobalStyle([":root{--color-primary:#5d2bff;--color-secondary:#5d2bff;--color-theme-100:#ffffff;--color-theme-200:#f6f6f9;--color-theme-300:#ebebee;--color-theme-400:#d7d7da;--color-theme-500:#b9b9bd;--color-theme-600:#89898e;--color-theme-700:#6d6d73;--color-theme-800:#5b5b61;--color-theme-900:#303037;--color-primary-200:rgba(93,43,255,0.05);--color-primary-300:rgba(93,43,255,0.1);--color-primary-400:rgba(93,43,255,0.25);--color-primary-500:rgba(93,43,255,0.5);--color-primary-600:rgba(93,43,255,0.75);--color-primary-700:#5d2bff;--color-primary-800:#4a21cd;--color-primary-900:#32178b;--color-secondary-200:rgba(93,43,255,0.05);--color-secondary-300:rgba(93,43,255,0.1);--color-secondary-400:rgba(93,43,255,0.25);--color-secondary-500:rgba(93,43,255,0.5);--color-secondary-600:rgba(93,43,255,0.75);--color-secondary-700:#5d2bff;--color-secondary-800:#4a21cd;--color-secondary-900:#32178b;--color-theme-transparent-200:rgba(36,36,76,0.04);--color-theme-transparent-300:rgba(48,48,55,0.1);--color-theme-transparent-400:rgba(48,48,55,0.2);--color-theme-transparent-500:rgba(48,48,55,0.34);--color-theme-transparent-600:rgba(48,48,55,0.57);--color-theme-transparent-700:rgba(48,48,55,0.7);--color-theme-transparent-800:rgba(48,48,55,0.8);--color-primary-opaque-300:#efeaff;--color-primary-opaque-400:#d6caff;--color-secondary-opaque-300:#efeaff;--color-secondary-opaque-400:#d6caff;--color-sucess-green:#64cd93;--body-bg-main:rgb(244,245,247);--body-bg-main-transparent:rgba(244,245,247,0);--page-paper-main:#ffffff;--border-primary:#d7d7da;--note-bg:#fff9f1;--shadow-primary-hover:0 64px 64px 0 rgba(0,0,0,0.1),0 32px 32px 0 rgba(0,0,0,0.06),0 16px 16px 0 rgba(0,0,0,0.04),0 4px 4px 0 rgba(0,0,0,0.04),0 2px 2px 0 rgba(0,0,0,0.04);--shadow-primary:0 64px 64px 0 rgba(0,0,0,0.06),0 32px 32px 0 rgba(0,0,0,0.03),0 16px 16px 0 rgba(0,0,0,0.02),0 4px 4px 0 rgba(0,0,0,0.02),0 2px 2px 0 rgba(0,0,0,0.02);--shadow-secondary:0 4px 14px 0 rgba(0,0,0,0.17);--shadow-tertiary:0 4px 6px -2px rgba(0,0,0,0.05),0 10px 15px -3px rgba(0,0,0,0.1);--shadow-tertiary-hover:0 4px 10px -2px rgba(0,0,0,0.1),0 12px 20px -3px rgba(0,0,0,0.2);--page-paper-main-shadow:rgba( 255,255,255,0 );--modal-background:rgba(244,245,247,0.6);--highlight-dark:rgba(0,0,0,0.03);--input-background-color:#ffffff;--red-alert:rgb(237,97,97);--warning:#ffcc6b;--only-white:#ffffff;--only-black:#000000;--ac-br-4:4px;--ac-br-6:6px;--ac-br-8:8px;--ac-br-rounded:999px;}.cupcake{--color-primary:#29bcdd;--color-secondary:#fe6fa7;--color-primary-200:rgba(41,188,221,0.07);--color-primary-300:rgba(41,188,221,0.12);--color-primary-400:rgba(41,188,221,0.26);--color-primary-500:rgba(41,188,221,0.52);--color-primary-600:rgba(41,188,221,0.75);--color-primary-700:#29bcdd;--color-primary-800:#219fbb;--color-primary-900:#1a768b;--color-secondary-200:rgba(254,111,167,0.07);--color-secondary-300:rgba(254,111,167,0.13);--color-secondary-400:rgba(254,111,167,0.27);--color-secondary-500:rgba(254,111,167,0.52);--color-secondary-600:rgba(254,111,167,0.75);--color-secondary-700:#fe6fa7;--color-secondary-800:#dd6091;--color-secondary-900:#ab496f;--color-primary-opaque-300:#e5f7fb;--color-primary-opaque-400:#c8eef6;--color-secondary-opaque-300:#ffecf4;--color-secondary-opaque-400:#ffd8e7;}.classic{--color-primary:#4182f2;--color-secondary:#4182f2;--color-primary-200:rgba(65,130,242,0.07);--color-primary-300:rgba(65,130,242,0.13);--color-primary-400:rgba(65,130,242,0.26);--color-primary-500:rgba(65,130,242,0.52);--color-primary-600:rgba(65,130,242,0.75);--color-primary-700:#4182f2;--color-primary-800:#356bc8;--color-primary-900:#244a8a;--color-secondary-200:rgba(65,130,242,0.07);--color-secondary-300:rgba(65,130,242,0.13);--color-secondary-400:rgba(65,130,242,0.26);--color-secondary-500:rgba(65,130,242,0.52);--color-secondary-600:rgba(65,130,242,0.75);--color-secondary-700:#4182f2;--color-secondary-800:#356bc8;--color-secondary-900:#244a8a;--color-primary-opaque-300:#e6effd;--color-primary-opaque-400:#cedffc;--color-secondary-opaque-300:#e6effd;--color-secondary-opaque-400:#cedffc;}.neon{--color-primary:#67ffc8;--color-secondary:#67ffc8;--color-theme-100:#000000;--color-theme-200:#31333e;--color-theme-300:#2b2d37;--color-theme-400:#1f2024;--color-theme-500:#6D6D73;--color-theme-600:#89898e;--color-theme-700:#b0b0b5;--color-theme-800:#dfdfe5;--color-theme-900:#ffffff;--color-primary-200:rgba(103,255,200,0.05);--color-primary-300:rgba(103,255,200,0.1);--color-primary-400:rgba(103,255,200,0.25);--color-primary-500:rgba(103,255,200,0.5);--color-primary-600:rgba(103,255,200,0.75);--color-primary-700:#67ffc8;--color-primary-800:#a5ffdf;--color-primary-900:#d0fdec;--color-secondary-200:rgba(103,255,200,0.05);--color-secondary-300:rgba(103,255,200,0.1);--color-secondary-400:rgba(103,255,200,0.25);--color-secondary-500:rgba(103,255,200,0.5);--color-secondary-600:rgba(103,255,200,0.75);--color-secondary-700:#67ffc8;--color-secondary-800:#a5ffdf;--color-secondary-900:#d0fdec;--color-theme-transparent-200:rgba(6,7,8,0.12);--color-theme-transparent-300:rgba(6,7,8,0.22);--color-theme-transparent-400:rgba(6,7,8,0.5);--color-theme-transparent-500:rgba(255,255,255,0.27);--color-theme-transparent-600:rgba(255,255,255,0.4);--color-theme-transparent-700:rgba(255,255,255,0.6);--color-theme-transparent-800:rgba(255,255,255,0.85);--color-primary-opaque-300:#3b4e51;--color-primary-opaque-400:#436b64;--color-secondary-opaque-300:#3b4e51;--color-secondary-opaque-400:#436b64;--body-bg-main:rgb(44,46,56);--body-bg-main-transparent:rgba(44,46,56,0);--page-paper-main:#373a44;--border-primary:#1f2024;--note-bg:#464545;--shadow-primary-hover:0 64px 64px 0 rgba(0,0,0,0.2),0 32px 32px 0 rgba(0,0,0,0.2),0 16px 16px 0 rgba(0,0,0,0.2),0 4px 4px 0 rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.2);--shadow-primary:0 64px 64px 0 rgba(0,0,0,0.1),0 32px 32px 0 rgba(0,0,0,0.1),0 16px 16px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);--shadow-secondary:0 4px 14px 0 rgba(0,0,0,0.3);--shadow-tertiary:0 4px 6px -2px rgba(0,0,0,0.1),0 10px 15px -3px rgba(0,0,0,0.15);--shadow-tertiary-hover:0 4px 12px -2px rgba(0,0,0,0.4),0 10px 30px -3px rgba(0,0,0,0.5);--page-paper-main-shadow:rgba( 55,58,68,0 );--modal-background:rgba(44,46,56,0.7);--highlight-dark:rgba(0,0,0,0.06);--input-background-color:#2c2e38;--only-white:#ffffff;--only-black:#000000;}.ac-shadow,.ac-shadow--raised{&--lg{box-shadow:var(--shadow-primary);}&--sm{box-shadow:var(--shadow-tertiary);}}.ac-shadow--raised{&--lg{transition:box-shadow 0.3s;&:hover{box-shadow:var(--shadow-primary-hover);}}&--sm{transition:box-shadow 0.3s;&:hover{box-shadow:var(--shadow-tertiary-hover);}}}.ac-shadow-optimized--sm{position:relative;box-shadow:var(--shadow-tertiary);&::before{position:absolute;top:0;left:0;width:100%;height:100%;content:\"\";box-shadow:var(--shadow-tertiary);opacity:0;border-radius:var(--ac-br-6);transition:opacity 0.3s ease;z-index:-1;}@media (hover:hover){&:hover::before{opacity:1;}}}.ac-shadow-optimized--lg{position:relative;box-shadow:var(--shadow-primary);&::before{position:absolute;top:0;left:0;width:100%;height:100%;content:\"\";box-shadow:var(--shadow-primary);opacity:0;border-radius:var(--ac-br-8);transition:opacity 0.3s ease;z-index:-1;}@media (hover:hover){&:hover::before{opacity:1;}}}.ac-border-radius{&-4{border-radius:var(--ac-br-4);}&-6{border-radius:var(--ac-br-6);}&-8{border-radius:var(--ac-br-8);}&-rounded{border-radius:var(--ac-br-rounded);}}.c-cooltip{position:relative;--cooltip-spacing:0.5rem;--cooltip-padding:0.25rem 0.625rem;--cooltip-max-width:12.5rem;--cooltip-transition-duration:0.15s,0.1s,0.15s;--cooltip-transition-delay:0.6s;--cooltip-timing:ease,ease,cubic-bezier(0.39,0.575,0.565,1);}.c-cooltip::after{pointer-events:none;content:attr(data-tooltip);position:absolute;color:#fff;opacity:0;background-color:rgba(0,0,0,0.9);border-radius:0.5rem;font-size:0.75rem;font-weight:500;line-height:1.3;max-width:var(--cooltip-max-width);padding:var(--cooltip-padding);text-align:center;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}.c-cooltip--top::after{bottom:calc(100% + var(--cooltip-spacing));left:50%;transform:scale(0.85) translateX(-50%);transform-origin:0;}.c-cooltip--right::after{left:calc(100% + var(--cooltip-spacing));transform:scale(0.85);}.c-cooltip--bottom::after{top:calc(100% + var(--cooltip-spacing));left:50%;transform:scale(0.85) translateX(-50%);transform-origin:0;}.c-cooltip--left::after{right:calc(100% + var(--cooltip-spacing));transform:scale(0.85);}.c-cooltip:disabled::after,[aria-pressed=\"true\"]::after{display:none;}@media (hover:hover){.c-cooltip--top:not(:focus):hover::after,.c-cooltip--bottom:not(:focus):hover::after{transition-property:opacity,transform;transition-duration:var(--cooltip-transition-duration);transition-delay:var(--cooltip-transition-delay);transition-timing-function:var(--cooltip-timing);transform:scale(1) translateX(-50%);opacity:1;}.c-cooltip--right:not(:focus):hover::after,.c-cooltip--left:not(:focus):hover::after{transition-property:opacity,transform;transition-duration:var(--cooltip-transition-duration);transition-delay:var(--cooltip-transition-delay);transition-timing-function:var(--cooltip-timing);transform:scale(1);opacity:1;}}"]);
|
|
15575
|
+
var GlobalStyle = styled.createGlobalStyle([":root{--color-primary:#5d2bff;--color-secondary:#5d2bff;--color-theme-100:#ffffff;--color-theme-200:#f6f6f9;--color-theme-300:#ebebee;--color-theme-400:#d7d7da;--color-theme-500:#b9b9bd;--color-theme-600:#89898e;--color-theme-700:#6d6d73;--color-theme-800:#5b5b61;--color-theme-900:#303037;--color-primary-200:rgba(93,43,255,0.05);--color-primary-300:rgba(93,43,255,0.1);--color-primary-400:rgba(93,43,255,0.25);--color-primary-500:rgba(93,43,255,0.5);--color-primary-600:rgba(93,43,255,0.75);--color-primary-700:#5d2bff;--color-primary-800:#4a21cd;--color-primary-900:#32178b;--color-secondary-200:rgba(93,43,255,0.05);--color-secondary-300:rgba(93,43,255,0.1);--color-secondary-400:rgba(93,43,255,0.25);--color-secondary-500:rgba(93,43,255,0.5);--color-secondary-600:rgba(93,43,255,0.75);--color-secondary-700:#5d2bff;--color-secondary-800:#4a21cd;--color-secondary-900:#32178b;--color-theme-transparent-200:rgba(36,36,76,0.04);--color-theme-transparent-300:rgba(48,48,55,0.1);--color-theme-transparent-400:rgba(48,48,55,0.2);--color-theme-transparent-500:rgba(48,48,55,0.34);--color-theme-transparent-600:rgba(48,48,55,0.57);--color-theme-transparent-700:rgba(48,48,55,0.7);--color-theme-transparent-800:rgba(48,48,55,0.8);--color-primary-opaque-300:#efeaff;--color-primary-opaque-400:#d6caff;--color-secondary-opaque-300:#efeaff;--color-secondary-opaque-400:#d6caff;--color-sucess-green:#64cd93;--body-bg-main:rgb(244,245,247);--body-bg-main-transparent:rgba(244,245,247,0);--page-paper-main:#ffffff;--border-primary:#d7d7da;--note-bg:#fff9f1;--shadow-primary-hover:0 64px 64px 0 rgba(0,0,0,0.1),0 32px 32px 0 rgba(0,0,0,0.06),0 16px 16px 0 rgba(0,0,0,0.04),0 4px 4px 0 rgba(0,0,0,0.04),0 2px 2px 0 rgba(0,0,0,0.04);--shadow-primary:0 64px 64px 0 rgba(0,0,0,0.06),0 32px 32px 0 rgba(0,0,0,0.03),0 16px 16px 0 rgba(0,0,0,0.02),0 4px 4px 0 rgba(0,0,0,0.02),0 2px 2px 0 rgba(0,0,0,0.02);--shadow-secondary:0 4px 14px 0 rgba(0,0,0,0.17);--shadow-tertiary:0 4px 6px -2px rgba(0,0,0,0.05),0 10px 15px -3px rgba(0,0,0,0.1);--shadow-tertiary-hover:0 4px 10px -2px rgba(0,0,0,0.1),0 12px 20px -3px rgba(0,0,0,0.2);--page-paper-main-shadow:rgba( 255,255,255,0 );--modal-background:rgba(244,245,247,0.6);--highlight-dark:rgba(0,0,0,0.03);--input-background-color:#ffffff;--red-alert:rgb(237,97,97);--warning:#ffcc6b;--only-white:#ffffff;--only-black:#000000;--ac-br-4:4px;--ac-br-6:6px;--ac-br-8:8px;--ac-br-rounded:999px;}.cupcake{--color-primary:#29bcdd;--color-secondary:#fe6fa7;--color-primary-200:rgba(41,188,221,0.07);--color-primary-300:rgba(41,188,221,0.12);--color-primary-400:rgba(41,188,221,0.26);--color-primary-500:rgba(41,188,221,0.52);--color-primary-600:rgba(41,188,221,0.75);--color-primary-700:#29bcdd;--color-primary-800:#219fbb;--color-primary-900:#1a768b;--color-secondary-200:rgba(254,111,167,0.07);--color-secondary-300:rgba(254,111,167,0.13);--color-secondary-400:rgba(254,111,167,0.27);--color-secondary-500:rgba(254,111,167,0.52);--color-secondary-600:rgba(254,111,167,0.75);--color-secondary-700:#fe6fa7;--color-secondary-800:#dd6091;--color-secondary-900:#ab496f;--color-primary-opaque-300:#e5f7fb;--color-primary-opaque-400:#c8eef6;--color-secondary-opaque-300:#ffecf4;--color-secondary-opaque-400:#ffd8e7;}.classic{--color-primary:#4182f2;--color-secondary:#4182f2;--color-primary-200:rgba(65,130,242,0.07);--color-primary-300:rgba(65,130,242,0.13);--color-primary-400:rgba(65,130,242,0.26);--color-primary-500:rgba(65,130,242,0.52);--color-primary-600:rgba(65,130,242,0.75);--color-primary-700:#4182f2;--color-primary-800:#356bc8;--color-primary-900:#244a8a;--color-secondary-200:rgba(65,130,242,0.07);--color-secondary-300:rgba(65,130,242,0.13);--color-secondary-400:rgba(65,130,242,0.26);--color-secondary-500:rgba(65,130,242,0.52);--color-secondary-600:rgba(65,130,242,0.75);--color-secondary-700:#4182f2;--color-secondary-800:#356bc8;--color-secondary-900:#244a8a;--color-primary-opaque-300:#e6effd;--color-primary-opaque-400:#cedffc;--color-secondary-opaque-300:#e6effd;--color-secondary-opaque-400:#cedffc;}.neon{--color-primary:#67ffc8;--color-secondary:#67ffc8;--color-theme-100:#000000;--color-theme-200:#31333e;--color-theme-300:#2b2d37;--color-theme-400:#1f2024;--color-theme-500:#6D6D73;--color-theme-600:#89898e;--color-theme-700:#b0b0b5;--color-theme-800:#dfdfe5;--color-theme-900:#ffffff;--color-primary-200:rgba(103,255,200,0.05);--color-primary-300:rgba(103,255,200,0.1);--color-primary-400:rgba(103,255,200,0.25);--color-primary-500:rgba(103,255,200,0.5);--color-primary-600:rgba(103,255,200,0.75);--color-primary-700:#67ffc8;--color-primary-800:#a5ffdf;--color-primary-900:#d0fdec;--color-secondary-200:rgba(103,255,200,0.05);--color-secondary-300:rgba(103,255,200,0.1);--color-secondary-400:rgba(103,255,200,0.25);--color-secondary-500:rgba(103,255,200,0.5);--color-secondary-600:rgba(103,255,200,0.75);--color-secondary-700:#67ffc8;--color-secondary-800:#a5ffdf;--color-secondary-900:#d0fdec;--color-theme-transparent-200:rgba(6,7,8,0.12);--color-theme-transparent-300:rgba(6,7,8,0.22);--color-theme-transparent-400:rgba(6,7,8,0.5);--color-theme-transparent-500:rgba(255,255,255,0.27);--color-theme-transparent-600:rgba(255,255,255,0.4);--color-theme-transparent-700:rgba(255,255,255,0.6);--color-theme-transparent-800:rgba(255,255,255,0.85);--color-primary-opaque-300:#3b4e51;--color-primary-opaque-400:#436b64;--color-secondary-opaque-300:#3b4e51;--color-secondary-opaque-400:#436b64;--body-bg-main:rgb(44,46,56);--body-bg-main-transparent:rgba(44,46,56,0);--page-paper-main:#373a44;--border-primary:#1f2024;--note-bg:#464545;--shadow-primary-hover:0 64px 64px 0 rgba(0,0,0,0.2),0 32px 32px 0 rgba(0,0,0,0.2),0 16px 16px 0 rgba(0,0,0,0.2),0 4px 4px 0 rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.2);--shadow-primary:0 64px 64px 0 rgba(0,0,0,0.1),0 32px 32px 0 rgba(0,0,0,0.1),0 16px 16px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);--shadow-secondary:0 4px 14px 0 rgba(0,0,0,0.3);--shadow-tertiary:0 4px 6px -2px rgba(0,0,0,0.1),0 10px 15px -3px rgba(0,0,0,0.15);--shadow-tertiary-hover:0 4px 12px -2px rgba(0,0,0,0.4),0 10px 30px -3px rgba(0,0,0,0.5);--page-paper-main-shadow:rgba( 55,58,68,0 );--modal-background:rgba(44,46,56,0.7);--highlight-dark:rgba(0,0,0,0.06);--input-background-color:#2c2e38;--only-white:#ffffff;--only-black:#000000;}html{color-scheme:light;}html{&.neon{color-scheme:dark;}}.ac-shadow,.ac-shadow--raised{&--lg{box-shadow:var(--shadow-primary);}&--sm{box-shadow:var(--shadow-tertiary);}}.ac-shadow--raised{&--lg{transition:box-shadow 0.3s;&:hover{box-shadow:var(--shadow-primary-hover);}}&--sm{transition:box-shadow 0.3s;&:hover{box-shadow:var(--shadow-tertiary-hover);}}}.ac-shadow-optimized--sm{position:relative;box-shadow:var(--shadow-tertiary);&::before{position:absolute;top:0;left:0;width:100%;height:100%;content:\"\";box-shadow:var(--shadow-tertiary);opacity:0;border-radius:var(--ac-br-6);transition:opacity 0.3s ease;z-index:-1;}@media (hover:hover){&:hover::before{opacity:1;}}}.ac-shadow-optimized--lg{position:relative;box-shadow:var(--shadow-primary);&::before{position:absolute;top:0;left:0;width:100%;height:100%;content:\"\";box-shadow:var(--shadow-primary);opacity:0;border-radius:var(--ac-br-8);transition:opacity 0.3s ease;z-index:-1;}@media (hover:hover){&:hover::before{opacity:1;}}}.ac-border-radius{&-4{border-radius:var(--ac-br-4);}&-6{border-radius:var(--ac-br-6);}&-8{border-radius:var(--ac-br-8);}&-rounded{border-radius:var(--ac-br-rounded);}}.c-cooltip{position:relative;--cooltip-spacing:0.5rem;--cooltip-padding:0.25rem 0.625rem;--cooltip-max-width:12.5rem;--cooltip-transition-duration:0.15s,0.1s,0.15s;--cooltip-transition-delay:0.6s;--cooltip-timing:ease,ease,cubic-bezier(0.39,0.575,0.565,1);}.c-cooltip::after{pointer-events:none;content:attr(data-tooltip);position:absolute;color:#fff;opacity:0;background-color:rgba(0,0,0,0.9);border-radius:0.5rem;font-size:0.75rem;font-weight:500;line-height:1.3;max-width:var(--cooltip-max-width);padding:var(--cooltip-padding);text-align:center;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}.c-cooltip--top::after{bottom:calc(100% + var(--cooltip-spacing));left:50%;transform:scale(0.85) translateX(-50%);transform-origin:0;}.c-cooltip--right::after{left:calc(100% + var(--cooltip-spacing));transform:scale(0.85);}.c-cooltip--bottom::after{top:calc(100% + var(--cooltip-spacing));left:50%;transform:scale(0.85) translateX(-50%);transform-origin:0;}.c-cooltip--left::after{right:calc(100% + var(--cooltip-spacing));transform:scale(0.85);}.c-cooltip:disabled::after,[aria-pressed=\"true\"]::after{display:none;}@media (hover:hover){.c-cooltip--top:not(:focus):hover::after,.c-cooltip--bottom:not(:focus):hover::after{transition-property:opacity,transform;transition-duration:var(--cooltip-transition-duration);transition-delay:var(--cooltip-transition-delay);transition-timing-function:var(--cooltip-timing);transform:scale(1) translateX(-50%);opacity:1;}.c-cooltip--right:not(:focus):hover::after,.c-cooltip--left:not(:focus):hover::after{transition-property:opacity,transform;transition-duration:var(--cooltip-transition-duration);transition-delay:var(--cooltip-transition-delay);transition-timing-function:var(--cooltip-timing);transform:scale(1);opacity:1;}}"]);
|
|
15568
15576
|
|
|
15569
15577
|
var StyledDiv = styled__default["default"].div.withConfig({
|
|
15570
15578
|
displayName: "Styles__StyledDiv",
|