@activecollab/components 1.0.336 → 1.0.339
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/Entity/EntityGroup.js.map +1 -1
- package/dist/cjs/components/Entity/EntitySeparator.js +23 -0
- package/dist/cjs/components/Entity/EntitySeparator.js.map +1 -0
- package/dist/cjs/components/Entity/index.js +10 -2
- package/dist/cjs/components/Entity/index.js.map +1 -1
- package/dist/cjs/components/Icons/collection/MessageSolid.js +47 -0
- package/dist/cjs/components/Icons/collection/MessageSolid.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +7 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Entity/EntityGroup.d.ts +1 -2
- package/dist/esm/components/Entity/EntityGroup.d.ts.map +1 -1
- package/dist/esm/components/Entity/EntityGroup.js.map +1 -1
- package/dist/esm/components/Entity/EntitySeparator.d.ts +3 -0
- package/dist/esm/components/Entity/EntitySeparator.d.ts.map +1 -0
- package/dist/esm/components/Entity/EntitySeparator.js +14 -0
- package/dist/esm/components/Entity/EntitySeparator.js.map +1 -0
- package/dist/esm/components/Entity/index.d.ts +3 -0
- package/dist/esm/components/Entity/index.d.ts.map +1 -1
- package/dist/esm/components/Entity/index.js +8 -2
- package/dist/esm/components/Entity/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/MessageSolid.d.ts +23 -0
- package/dist/esm/components/Icons/collection/MessageSolid.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/MessageSolid.js +40 -0
- package/dist/esm/components/Icons/collection/MessageSolid.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +1 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +211 -157
- 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$1l = ["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$1l);
|
|
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$1k = ["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$1k);
|
|
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$1j = ["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$1j);
|
|
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$1i = ["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$1i);
|
|
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$1h = ["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$1h);
|
|
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$1g = ["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$1g);
|
|
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$1f = ["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$1f);
|
|
721
721
|
return /*#__PURE__*/React__default["default"].createElement(StyledBubble, _extends({}, rest, {
|
|
722
722
|
ref: innerRef,
|
|
723
723
|
className: classNames__default["default"]("c-bubble", className),
|
|
@@ -1035,7 +1035,7 @@
|
|
|
1035
1035
|
});
|
|
1036
1036
|
StyledTypography.displayName = "StyledTypography";
|
|
1037
1037
|
|
|
1038
|
-
var _excluded$
|
|
1038
|
+
var _excluded$1e = ["variant", "as", "color", "italic", "tabularNums", "letterSpacing", "lineHeight", "align", "decoration", "transform", "overflow", "whitespace", "wordBreak", "weight", "className", "children"];
|
|
1039
1039
|
var Typography = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1040
1040
|
var _ref$variant = _ref.variant,
|
|
1041
1041
|
variant = _ref$variant === void 0 ? "Title 1" : _ref$variant,
|
|
@@ -1066,7 +1066,7 @@
|
|
|
1066
1066
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
1067
1067
|
className = _ref.className,
|
|
1068
1068
|
children = _ref.children,
|
|
1069
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1069
|
+
props = _objectWithoutProperties(_ref, _excluded$1e);
|
|
1070
1070
|
var Component = as || "div";
|
|
1071
1071
|
return /*#__PURE__*/React__default["default"].createElement(StyledTypography, _extends({
|
|
1072
1072
|
as: Component,
|
|
@@ -1089,13 +1089,13 @@
|
|
|
1089
1089
|
});
|
|
1090
1090
|
Typography.displayName = "Typography";
|
|
1091
1091
|
|
|
1092
|
-
var _excluded$
|
|
1092
|
+
var _excluded$1d = ["title", "className", "leftElement", "rightElement"];
|
|
1093
1093
|
var MenuHeader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1094
1094
|
var title = _ref.title,
|
|
1095
1095
|
className = _ref.className,
|
|
1096
1096
|
leftElement = _ref.leftElement,
|
|
1097
1097
|
rightElement = _ref.rightElement,
|
|
1098
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1098
|
+
props = _objectWithoutProperties(_ref, _excluded$1d);
|
|
1099
1099
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuHeader, _extends({}, props, {
|
|
1100
1100
|
className: classNames__default["default"]("c-menu-header", className),
|
|
1101
1101
|
ref: ref
|
|
@@ -1120,11 +1120,11 @@
|
|
|
1120
1120
|
});
|
|
1121
1121
|
MenuHeader.displayName = "MenuHeader";
|
|
1122
1122
|
|
|
1123
|
-
var _excluded$
|
|
1123
|
+
var _excluded$1c = ["children", "className"];
|
|
1124
1124
|
var MenuFooter = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1125
1125
|
var children = _ref.children,
|
|
1126
1126
|
className = _ref.className,
|
|
1127
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1127
|
+
props = _objectWithoutProperties(_ref, _excluded$1c);
|
|
1128
1128
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuFooter$1, _extends({}, props, {
|
|
1129
1129
|
className: classNames__default["default"]("c-menu-footer", className),
|
|
1130
1130
|
ref: ref
|
|
@@ -1148,11 +1148,11 @@
|
|
|
1148
1148
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
1149
1149
|
StyledListSeparator.displayName = "StyledListSeparator";
|
|
1150
1150
|
|
|
1151
|
-
var _excluded$
|
|
1151
|
+
var _excluded$1b = ["children", "className"];
|
|
1152
1152
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1153
1153
|
var children = _ref.children,
|
|
1154
1154
|
className = _ref.className,
|
|
1155
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1155
|
+
props = _objectWithoutProperties(_ref, _excluded$1b);
|
|
1156
1156
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem, _extends({
|
|
1157
1157
|
className: classNames__default["default"]("c-list-item", className),
|
|
1158
1158
|
ref: ref,
|
|
@@ -1161,21 +1161,21 @@
|
|
|
1161
1161
|
});
|
|
1162
1162
|
ListItem.displayName = "ListItem";
|
|
1163
1163
|
|
|
1164
|
-
var _excluded$
|
|
1164
|
+
var _excluded$1a = ["className"];
|
|
1165
1165
|
var ListSeparator = function ListSeparator(_ref) {
|
|
1166
1166
|
var className = _ref.className,
|
|
1167
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1167
|
+
props = _objectWithoutProperties(_ref, _excluded$1a);
|
|
1168
1168
|
return /*#__PURE__*/React__default["default"].createElement(StyledListSeparator, _extends({
|
|
1169
1169
|
className: classNames__default["default"]("c-list-separator", className)
|
|
1170
1170
|
}, props));
|
|
1171
1171
|
};
|
|
1172
1172
|
ListSeparator.displayName = "ListSeparator";
|
|
1173
1173
|
|
|
1174
|
-
var _excluded$
|
|
1174
|
+
var _excluded$19 = ["children", "className"];
|
|
1175
1175
|
var _List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1176
1176
|
var children = _ref.children,
|
|
1177
1177
|
className = _ref.className,
|
|
1178
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1178
|
+
props = _objectWithoutProperties(_ref, _excluded$19);
|
|
1179
1179
|
return /*#__PURE__*/React__default["default"].createElement(StyledList, _extends({
|
|
1180
1180
|
className: className,
|
|
1181
1181
|
ref: ref,
|
|
@@ -1201,7 +1201,7 @@
|
|
|
1201
1201
|
return size === "big" && styled.css(["width:40px;"]);
|
|
1202
1202
|
});
|
|
1203
1203
|
|
|
1204
|
-
var _excluded$
|
|
1204
|
+
var _excluded$18 = ["children", "className", "variant", "size", "active"];
|
|
1205
1205
|
|
|
1206
1206
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
1207
1207
|
|
|
@@ -1231,7 +1231,7 @@
|
|
|
1231
1231
|
variant = _ref.variant,
|
|
1232
1232
|
size = _ref.size,
|
|
1233
1233
|
active = _ref.active,
|
|
1234
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
1234
|
+
args = _objectWithoutProperties(_ref, _excluded$18);
|
|
1235
1235
|
return /*#__PURE__*/React__default["default"].createElement(StyledIconButton, _extends({
|
|
1236
1236
|
className: className,
|
|
1237
1237
|
variant: variant,
|
|
@@ -4799,6 +4799,43 @@
|
|
|
4799
4799
|
MessageSmallIcon.displayName = "MessageSmallIcon";
|
|
4800
4800
|
var MessageSmallIcon$1 = MessageSmallIcon;
|
|
4801
4801
|
|
|
4802
|
+
/**
|
|
4803
|
+
* @component MessageSolidIcon
|
|
4804
|
+
* @description
|
|
4805
|
+
*
|
|
4806
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
4807
|
+
* The Icon component is
|
|
4808
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
4809
|
+
*
|
|
4810
|
+
*
|
|
4811
|
+
* @example
|
|
4812
|
+
* return (
|
|
4813
|
+
* <MessageSolidIcon className="mr-2" />
|
|
4814
|
+
* )
|
|
4815
|
+
*
|
|
4816
|
+
* @see
|
|
4817
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
4818
|
+
* @see
|
|
4819
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
4820
|
+
*/
|
|
4821
|
+
var MessageSolidIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
4822
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4823
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4824
|
+
width: 24,
|
|
4825
|
+
height: 24,
|
|
4826
|
+
"data-testid": "MessageSolidIcon",
|
|
4827
|
+
fill: "var(--color-theme-600)",
|
|
4828
|
+
focusable: false,
|
|
4829
|
+
ref: svgRef
|
|
4830
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
4831
|
+
fillRule: "evenodd",
|
|
4832
|
+
d: "M22 4v12a2 2 0 01-2 2H7.995L2 22V4a2 2 0 012-2h16a2 2 0 012 2z",
|
|
4833
|
+
clipRule: "evenodd"
|
|
4834
|
+
}));
|
|
4835
|
+
});
|
|
4836
|
+
MessageSolidIcon.displayName = "MessageSolidIcon";
|
|
4837
|
+
var MessageSolidIcon$1 = MessageSolidIcon;
|
|
4838
|
+
|
|
4802
4839
|
/**
|
|
4803
4840
|
* @component MessageIcon
|
|
4804
4841
|
* @description
|
|
@@ -7483,14 +7520,14 @@
|
|
|
7483
7520
|
});
|
|
7484
7521
|
StyledBreadcrumbListItem.displayName = "StyledBreadcrumbListItem";
|
|
7485
7522
|
|
|
7486
|
-
var _excluded$
|
|
7523
|
+
var _excluded$17 = ["children", "className", "separator"];
|
|
7487
7524
|
var Breadcrumbs = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7488
7525
|
var _dimensions$width, _childDimensions$widt;
|
|
7489
7526
|
var children = _ref.children,
|
|
7490
7527
|
className = _ref.className,
|
|
7491
7528
|
_ref$separator = _ref.separator,
|
|
7492
7529
|
separator = _ref$separator === void 0 ? "/" : _ref$separator,
|
|
7493
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7530
|
+
rest = _objectWithoutProperties(_ref, _excluded$17);
|
|
7494
7531
|
var internalRef = React.useRef(null);
|
|
7495
7532
|
var listWrapperRef = React.useRef(null);
|
|
7496
7533
|
var olRef = React.useRef(null);
|
|
@@ -7657,10 +7694,10 @@
|
|
|
7657
7694
|
return props.$isLight && styled.css(["background-color:var(--page-paper-main);box-shadow:var(--shadow-secondary);color:var(--color-theme-700);"]);
|
|
7658
7695
|
});
|
|
7659
7696
|
|
|
7660
|
-
var _excluded$
|
|
7697
|
+
var _excluded$16 = ["children"];
|
|
7661
7698
|
var TooltipAnimation = function TooltipAnimation(_ref) {
|
|
7662
7699
|
var children = _ref.children,
|
|
7663
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7700
|
+
props = _objectWithoutProperties(_ref, _excluded$16);
|
|
7664
7701
|
return /*#__PURE__*/React__default["default"].createElement(FromElement, _extends({
|
|
7665
7702
|
timeout: 0
|
|
7666
7703
|
}, props), children);
|
|
@@ -7735,12 +7772,12 @@
|
|
|
7735
7772
|
});
|
|
7736
7773
|
Tooltip.displayName = "Tooltip";
|
|
7737
7774
|
|
|
7738
|
-
var _excluded$
|
|
7775
|
+
var _excluded$15 = ["weight", "children"];
|
|
7739
7776
|
var Body2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7740
7777
|
var _ref$weight = _ref.weight,
|
|
7741
7778
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
7742
7779
|
children = _ref.children,
|
|
7743
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7780
|
+
props = _objectWithoutProperties(_ref, _excluded$15);
|
|
7744
7781
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
7745
7782
|
variant: "Body 2",
|
|
7746
7783
|
weight: weight,
|
|
@@ -7789,7 +7826,7 @@
|
|
|
7789
7826
|
});
|
|
7790
7827
|
StyledCounterButtonLabel.displayName = "StyledCounterButtonLabel";
|
|
7791
7828
|
|
|
7792
|
-
var _excluded$
|
|
7829
|
+
var _excluded$14 = ["label", "icon", "active", "counter", "tooltipText", "onClearAll", "className", "disabled"];
|
|
7793
7830
|
var CounterButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7794
7831
|
var label = _ref.label,
|
|
7795
7832
|
icon = _ref.icon,
|
|
@@ -7801,7 +7838,7 @@
|
|
|
7801
7838
|
className = _ref.className,
|
|
7802
7839
|
_ref$disabled = _ref.disabled,
|
|
7803
7840
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7804
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
7841
|
+
args = _objectWithoutProperties(_ref, _excluded$14);
|
|
7805
7842
|
return /*#__PURE__*/React__default["default"].createElement(StyledCounterButtonWrapper, {
|
|
7806
7843
|
ref: ref,
|
|
7807
7844
|
className: className
|
|
@@ -8112,7 +8149,7 @@
|
|
|
8112
8149
|
StyledDatePicker.displayName = "StyledDatePicker";
|
|
8113
8150
|
StyledDayPicker.displayName = "StyledDayPicker";
|
|
8114
8151
|
|
|
8115
|
-
var _excluded$
|
|
8152
|
+
var _excluded$13 = ["className", "onChange", "onDayClick", "selectedDays", "disabledDays", "selectionMode", "month", "onMonthChange", "dateRequired", "firstDayOfWeek", "fixedWeeks", "modifiers"];
|
|
8116
8153
|
var DatePicker = function DatePicker(_ref) {
|
|
8117
8154
|
var className = _ref.className,
|
|
8118
8155
|
onChange = _ref.onChange,
|
|
@@ -8134,7 +8171,7 @@
|
|
|
8134
8171
|
_ref$fixedWeeks = _ref.fixedWeeks,
|
|
8135
8172
|
fixedWeeks = _ref$fixedWeeks === void 0 ? true : _ref$fixedWeeks,
|
|
8136
8173
|
defaultModifiers = _ref.modifiers,
|
|
8137
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8174
|
+
rest = _objectWithoutProperties(_ref, _excluded$13);
|
|
8138
8175
|
var _useState = React.useState(),
|
|
8139
8176
|
_useState2 = _slicedToArray(_useState, 2),
|
|
8140
8177
|
enteredTo = _useState2[0],
|
|
@@ -9026,10 +9063,10 @@
|
|
|
9026
9063
|
componentId: "sc-x4ge7a-0"
|
|
9027
9064
|
})(["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);
|
|
9028
9065
|
|
|
9029
|
-
var _excluded$
|
|
9066
|
+
var _excluded$12 = ["className"];
|
|
9030
9067
|
var LinearLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9031
9068
|
var className = _ref.className,
|
|
9032
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9069
|
+
rest = _objectWithoutProperties(_ref, _excluded$12);
|
|
9033
9070
|
return /*#__PURE__*/React__default["default"].createElement(StyledLinearLoader, _extends({
|
|
9034
9071
|
ref: ref,
|
|
9035
9072
|
className: classNames__default["default"]("c-loader c-loader--linear", className)
|
|
@@ -9043,10 +9080,10 @@
|
|
|
9043
9080
|
componentId: "sc-1f35d5h-0"
|
|
9044
9081
|
})(["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);
|
|
9045
9082
|
|
|
9046
|
-
var _excluded$
|
|
9083
|
+
var _excluded$11 = ["className"];
|
|
9047
9084
|
var DotsLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9048
9085
|
var className = _ref.className,
|
|
9049
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9086
|
+
rest = _objectWithoutProperties(_ref, _excluded$11);
|
|
9050
9087
|
return /*#__PURE__*/React__default["default"].createElement(StyledDotsLoader, _extends({
|
|
9051
9088
|
ref: ref,
|
|
9052
9089
|
className: classNames__default["default"]("c-loader c-loader--dots", className)
|
|
@@ -9068,7 +9105,7 @@
|
|
|
9068
9105
|
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);
|
|
9069
9106
|
});
|
|
9070
9107
|
|
|
9071
|
-
var _excluded
|
|
9108
|
+
var _excluded$10 = ["radius", "stroke", "activeStrokeColor", "inactiveStrokeColor", "activeColorPercentage", "rotateDurationInSeconds", "className"];
|
|
9072
9109
|
var SpinnerLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9073
9110
|
var _ref$radius = _ref.radius,
|
|
9074
9111
|
radius = _ref$radius === void 0 ? 10 : _ref$radius,
|
|
@@ -9083,7 +9120,7 @@
|
|
|
9083
9120
|
_ref$rotateDurationIn = _ref.rotateDurationInSeconds,
|
|
9084
9121
|
rotateDurationInSeconds = _ref$rotateDurationIn === void 0 ? 0.75 : _ref$rotateDurationIn,
|
|
9085
9122
|
className = _ref.className,
|
|
9086
|
-
rest = _objectWithoutProperties(_ref, _excluded
|
|
9123
|
+
rest = _objectWithoutProperties(_ref, _excluded$10);
|
|
9087
9124
|
return /*#__PURE__*/React__default["default"].createElement(StyledSpinnerLoader$1, _extends({
|
|
9088
9125
|
ref: ref,
|
|
9089
9126
|
className: className,
|
|
@@ -9097,7 +9134,7 @@
|
|
|
9097
9134
|
});
|
|
9098
9135
|
SpinnerLoader.displayName = "SpinnerLoader";
|
|
9099
9136
|
|
|
9100
|
-
var _excluded
|
|
9137
|
+
var _excluded$$ = ["header", "rows", "className", "sortBy", "sortDirection", "onSortCallback", "theadClass", "noResultsCallback", "groupBy", "groupHead", "isCollapsible", "emptyValue", "loading", "loadingRows"];
|
|
9101
9138
|
exports.SortDirection = void 0;
|
|
9102
9139
|
(function (SortDirection) {
|
|
9103
9140
|
SortDirection["None"] = "none";
|
|
@@ -9145,7 +9182,7 @@
|
|
|
9145
9182
|
loading = _ref.loading,
|
|
9146
9183
|
_ref$loadingRows = _ref.loadingRows,
|
|
9147
9184
|
loadingRows = _ref$loadingRows === void 0 ? 7 : _ref$loadingRows,
|
|
9148
|
-
args = _objectWithoutProperties(_ref, _excluded
|
|
9185
|
+
args = _objectWithoutProperties(_ref, _excluded$$);
|
|
9149
9186
|
var _useState = React.useState(sortDirection),
|
|
9150
9187
|
_useState2 = _slicedToArray(_useState, 2),
|
|
9151
9188
|
columnDirection = _useState2[0],
|
|
@@ -9547,7 +9584,7 @@
|
|
|
9547
9584
|
});
|
|
9548
9585
|
StyledPaper.displayName = "StyledPaper";
|
|
9549
9586
|
|
|
9550
|
-
var _excluded$
|
|
9587
|
+
var _excluded$_ = ["children", "className", "type", "hover", "useOptimizedShadow"];
|
|
9551
9588
|
/**
|
|
9552
9589
|
* This is a component description and should sit directly above your component
|
|
9553
9590
|
*/
|
|
@@ -9560,7 +9597,7 @@
|
|
|
9560
9597
|
hover = _ref$hover === void 0 ? false : _ref$hover,
|
|
9561
9598
|
_ref$useOptimizedShad = _ref.useOptimizedShadow,
|
|
9562
9599
|
useOptimizedShadow = _ref$useOptimizedShad === void 0 ? false : _ref$useOptimizedShad,
|
|
9563
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9600
|
+
rest = _objectWithoutProperties(_ref, _excluded$_);
|
|
9564
9601
|
return /*#__PURE__*/React__default["default"].createElement(StyledPaper, _extends({
|
|
9565
9602
|
className: classNames__default["default"](className, {
|
|
9566
9603
|
"ac-shadow--raised--lg": !useOptimizedShadow && hover && type === "paper-1",
|
|
@@ -9613,7 +9650,7 @@
|
|
|
9613
9650
|
});
|
|
9614
9651
|
StyledCard.displayName = "StyledCard";
|
|
9615
9652
|
|
|
9616
|
-
var _excluded$
|
|
9653
|
+
var _excluded$Z = ["children", "className", "hoverable", "paperType"];
|
|
9617
9654
|
var Card = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9618
9655
|
var children = _ref.children,
|
|
9619
9656
|
className = _ref.className,
|
|
@@ -9621,7 +9658,7 @@
|
|
|
9621
9658
|
hoverable = _ref$hoverable === void 0 ? false : _ref$hoverable,
|
|
9622
9659
|
_ref$paperType = _ref.paperType,
|
|
9623
9660
|
paperType = _ref$paperType === void 0 ? "paper-2" : _ref$paperType,
|
|
9624
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9661
|
+
rest = _objectWithoutProperties(_ref, _excluded$Z);
|
|
9625
9662
|
return /*#__PURE__*/React__default["default"].createElement(StyledCard, _extends({}, rest, {
|
|
9626
9663
|
type: paperType,
|
|
9627
9664
|
className: classNames__default["default"]("c-card", className),
|
|
@@ -9700,12 +9737,12 @@
|
|
|
9700
9737
|
});
|
|
9701
9738
|
EntityCard$1.displayName = "EntityCard";
|
|
9702
9739
|
|
|
9703
|
-
var _excluded$
|
|
9740
|
+
var _excluded$Y = ["weight", "children"];
|
|
9704
9741
|
var Title1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9705
9742
|
var _ref$weight = _ref.weight,
|
|
9706
9743
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
9707
9744
|
children = _ref.children,
|
|
9708
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9745
|
+
props = _objectWithoutProperties(_ref, _excluded$Y);
|
|
9709
9746
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9710
9747
|
weight: weight,
|
|
9711
9748
|
variant: "Title 1",
|
|
@@ -9714,12 +9751,12 @@
|
|
|
9714
9751
|
});
|
|
9715
9752
|
Title1.displayName = "Title1";
|
|
9716
9753
|
|
|
9717
|
-
var _excluded$
|
|
9754
|
+
var _excluded$X = ["weight", "children"];
|
|
9718
9755
|
var Title2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9719
9756
|
var _ref$weight = _ref.weight,
|
|
9720
9757
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
9721
9758
|
children = _ref.children,
|
|
9722
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9759
|
+
props = _objectWithoutProperties(_ref, _excluded$X);
|
|
9723
9760
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9724
9761
|
weight: weight,
|
|
9725
9762
|
variant: "Title 2",
|
|
@@ -9728,10 +9765,10 @@
|
|
|
9728
9765
|
});
|
|
9729
9766
|
Title2.displayName = "Title2";
|
|
9730
9767
|
|
|
9731
|
-
var _excluded$
|
|
9768
|
+
var _excluded$W = ["children"];
|
|
9732
9769
|
var Header2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9733
9770
|
var children = _ref.children,
|
|
9734
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9771
|
+
props = _objectWithoutProperties(_ref, _excluded$W);
|
|
9735
9772
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9736
9773
|
weight: "bold",
|
|
9737
9774
|
variant: "Header 2",
|
|
@@ -9740,10 +9777,10 @@
|
|
|
9740
9777
|
});
|
|
9741
9778
|
Header2.displayName = "Header2";
|
|
9742
9779
|
|
|
9743
|
-
var _excluded$
|
|
9780
|
+
var _excluded$V = ["children"];
|
|
9744
9781
|
var Header3 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9745
9782
|
var children = _ref.children,
|
|
9746
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9783
|
+
props = _objectWithoutProperties(_ref, _excluded$V);
|
|
9747
9784
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9748
9785
|
weight: "bold",
|
|
9749
9786
|
variant: "Header 3",
|
|
@@ -9752,12 +9789,12 @@
|
|
|
9752
9789
|
});
|
|
9753
9790
|
Header3.displayName = "Header3";
|
|
9754
9791
|
|
|
9755
|
-
var _excluded$
|
|
9792
|
+
var _excluded$U = ["weight", "children"];
|
|
9756
9793
|
var Body1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9757
9794
|
var _ref$weight = _ref.weight,
|
|
9758
9795
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
9759
9796
|
children = _ref.children,
|
|
9760
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9797
|
+
props = _objectWithoutProperties(_ref, _excluded$U);
|
|
9761
9798
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9762
9799
|
variant: "Body 1",
|
|
9763
9800
|
weight: weight,
|
|
@@ -9766,12 +9803,12 @@
|
|
|
9766
9803
|
});
|
|
9767
9804
|
Body1.displayName = "Body1";
|
|
9768
9805
|
|
|
9769
|
-
var _excluded$
|
|
9806
|
+
var _excluded$T = ["weight", "children"];
|
|
9770
9807
|
var Caption1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9771
9808
|
var _ref$weight = _ref.weight,
|
|
9772
9809
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
9773
9810
|
children = _ref.children,
|
|
9774
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9811
|
+
props = _objectWithoutProperties(_ref, _excluded$T);
|
|
9775
9812
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9776
9813
|
variant: "Caption 1",
|
|
9777
9814
|
weight: weight,
|
|
@@ -9780,12 +9817,12 @@
|
|
|
9780
9817
|
});
|
|
9781
9818
|
Caption1.displayName = "Caption1";
|
|
9782
9819
|
|
|
9783
|
-
var _excluded$
|
|
9820
|
+
var _excluded$S = ["weight", "children"];
|
|
9784
9821
|
var Caption2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9785
9822
|
var _ref$weight = _ref.weight,
|
|
9786
9823
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
9787
9824
|
children = _ref.children,
|
|
9788
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9825
|
+
props = _objectWithoutProperties(_ref, _excluded$S);
|
|
9789
9826
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
9790
9827
|
variant: "Caption 2",
|
|
9791
9828
|
weight: weight,
|
|
@@ -9897,7 +9934,7 @@
|
|
|
9897
9934
|
componentId: "sc-5x2tyd-1"
|
|
9898
9935
|
})(["border-radius:100%;object-fit:cover;"]);
|
|
9899
9936
|
|
|
9900
|
-
var _excluded$
|
|
9937
|
+
var _excluded$R = ["url", "alt", "size", "className", "imgClassName", "children"];
|
|
9901
9938
|
/**
|
|
9902
9939
|
* @component Avatar
|
|
9903
9940
|
* @description
|
|
@@ -9932,7 +9969,7 @@
|
|
|
9932
9969
|
className = _ref.className,
|
|
9933
9970
|
imgClassName = _ref.imgClassName,
|
|
9934
9971
|
children = _ref.children,
|
|
9935
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9972
|
+
rest = _objectWithoutProperties(_ref, _excluded$R);
|
|
9936
9973
|
var _useState = React.useState(false),
|
|
9937
9974
|
_useState2 = _slicedToArray(_useState, 2),
|
|
9938
9975
|
imageLoaded = _useState2[0],
|
|
@@ -9973,13 +10010,13 @@
|
|
|
9973
10010
|
return props.$color && styled.css(["background-color:", ";"], props.$color);
|
|
9974
10011
|
});
|
|
9975
10012
|
|
|
9976
|
-
var _excluded$
|
|
10013
|
+
var _excluded$Q = ["color", "size", "className"];
|
|
9977
10014
|
var Dot = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9978
10015
|
var color = _ref.color,
|
|
9979
10016
|
_ref$size = _ref.size,
|
|
9980
10017
|
size = _ref$size === void 0 ? 8 : _ref$size,
|
|
9981
10018
|
className = _ref.className,
|
|
9982
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10019
|
+
rest = _objectWithoutProperties(_ref, _excluded$Q);
|
|
9983
10020
|
return /*#__PURE__*/React__default["default"].createElement(StyledDot, _extends({
|
|
9984
10021
|
className: classNames__default["default"]("c-dot", className),
|
|
9985
10022
|
ref: ref,
|
|
@@ -10016,7 +10053,7 @@
|
|
|
10016
10053
|
});
|
|
10017
10054
|
StyledTagText.displayName = "StyledTagText";
|
|
10018
10055
|
|
|
10019
|
-
var _excluded$
|
|
10056
|
+
var _excluded$P = ["name", "color", "showText", "showDot", "className"];
|
|
10020
10057
|
var Tag = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10021
10058
|
var name = _ref.name,
|
|
10022
10059
|
color = _ref.color,
|
|
@@ -10025,7 +10062,7 @@
|
|
|
10025
10062
|
_ref$showDot = _ref.showDot,
|
|
10026
10063
|
showDot = _ref$showDot === void 0 ? true : _ref$showDot,
|
|
10027
10064
|
className = _ref.className,
|
|
10028
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10065
|
+
rest = _objectWithoutProperties(_ref, _excluded$P);
|
|
10029
10066
|
return /*#__PURE__*/React__default["default"].createElement(StyledTag, _extends({
|
|
10030
10067
|
className: classNames__default["default"]("c-tag", className),
|
|
10031
10068
|
ref: ref
|
|
@@ -10155,7 +10192,7 @@
|
|
|
10155
10192
|
});
|
|
10156
10193
|
StyledCheckbox$1.displayName = "StyledCheckbox";
|
|
10157
10194
|
|
|
10158
|
-
var _excluded$
|
|
10195
|
+
var _excluded$O = ["isIndeterminate", "data-testid"];
|
|
10159
10196
|
|
|
10160
10197
|
/**
|
|
10161
10198
|
* @component CheckboxIcon
|
|
@@ -10179,7 +10216,7 @@
|
|
|
10179
10216
|
var CheckboxIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
10180
10217
|
var isIndeterminate = _ref.isIndeterminate,
|
|
10181
10218
|
testId = _ref["data-testid"],
|
|
10182
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10219
|
+
props = _objectWithoutProperties(_ref, _excluded$O);
|
|
10183
10220
|
var _useState = React.useState(false),
|
|
10184
10221
|
_useState2 = _slicedToArray(_useState, 2),
|
|
10185
10222
|
animate = _useState2[0],
|
|
@@ -10248,7 +10285,7 @@
|
|
|
10248
10285
|
CheckboxIcon.displayName = "CheckboxIcon";
|
|
10249
10286
|
var CheckboxIcon$1 = CheckboxIcon;
|
|
10250
10287
|
|
|
10251
|
-
var _excluded$
|
|
10288
|
+
var _excluded$N = ["className", "hover", "id", "isIndeterminate"];
|
|
10252
10289
|
/**
|
|
10253
10290
|
* Checkbox component
|
|
10254
10291
|
*/
|
|
@@ -10258,7 +10295,7 @@
|
|
|
10258
10295
|
_ref$id = _ref.id,
|
|
10259
10296
|
id = _ref$id === void 0 ? "checkbox" : _ref$id,
|
|
10260
10297
|
isIndeterminate = _ref.isIndeterminate,
|
|
10261
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10298
|
+
rest = _objectWithoutProperties(_ref, _excluded$N);
|
|
10262
10299
|
return /*#__PURE__*/React__default["default"].createElement(StyledCheckbox$1, {
|
|
10263
10300
|
className: classNames__default["default"]("c-checkbox", {
|
|
10264
10301
|
"c-checkbox__hover": hover,
|
|
@@ -10460,7 +10497,7 @@
|
|
|
10460
10497
|
StyledScrollShadowLeft.displayName = "StyledScrollShadowLeft";
|
|
10461
10498
|
StyledScrollShadowRight.displayName = "StyledScrollShadowRight";
|
|
10462
10499
|
|
|
10463
|
-
var _excluded$
|
|
10500
|
+
var _excluded$M = ["children", "className", "disableVertical", "disableHorizontal", "invertHorizontal", "invertVertical", "innerColor", "outerColor"];
|
|
10464
10501
|
var ScrollShadow = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10465
10502
|
var children = _ref.children,
|
|
10466
10503
|
className = _ref.className,
|
|
@@ -10474,7 +10511,7 @@
|
|
|
10474
10511
|
invertVertical = _ref$invertVertical === void 0 ? false : _ref$invertVertical,
|
|
10475
10512
|
innerColor = _ref.innerColor,
|
|
10476
10513
|
outerColor = _ref.outerColor,
|
|
10477
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10514
|
+
rest = _objectWithoutProperties(_ref, _excluded$M);
|
|
10478
10515
|
var _useState = React.useState({
|
|
10479
10516
|
top: 0,
|
|
10480
10517
|
right: 0,
|
|
@@ -10594,7 +10631,7 @@
|
|
|
10594
10631
|
return height;
|
|
10595
10632
|
};
|
|
10596
10633
|
|
|
10597
|
-
var _excluded$
|
|
10634
|
+
var _excluded$L = ["as", "className", "invert", "style"];
|
|
10598
10635
|
var ScrollElement = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10599
10636
|
var _ref$as = _ref.as,
|
|
10600
10637
|
as = _ref$as === void 0 ? "div" : _ref$as,
|
|
@@ -10602,7 +10639,7 @@
|
|
|
10602
10639
|
_ref$invert = _ref.invert,
|
|
10603
10640
|
invert = _ref$invert === void 0 ? false : _ref$invert,
|
|
10604
10641
|
style = _ref.style,
|
|
10605
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10642
|
+
rest = _objectWithoutProperties(_ref, _excluded$L);
|
|
10606
10643
|
var internalRef = useInitScrollRef(null, invert);
|
|
10607
10644
|
var handleRef = useForkRef(internalRef, ref);
|
|
10608
10645
|
var props = _objectSpread2(_objectSpread2({}, rest), {}, {
|
|
@@ -11084,7 +11121,7 @@
|
|
|
11084
11121
|
});
|
|
11085
11122
|
StyledInput$2.displayName = "StyledInput";
|
|
11086
11123
|
|
|
11087
|
-
var _excluded$
|
|
11124
|
+
var _excluded$K = ["className", "style", "type", "disabled", "size", "invalid", "startAdornment", "endAdornment", "wrapRef", "wrapperClick"];
|
|
11088
11125
|
var Input = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11089
11126
|
var _ref$className = _ref.className,
|
|
11090
11127
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
@@ -11101,7 +11138,7 @@
|
|
|
11101
11138
|
endAdornment = _ref.endAdornment,
|
|
11102
11139
|
wrapRef = _ref.wrapRef,
|
|
11103
11140
|
wrapperClick = _ref.wrapperClick,
|
|
11104
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11141
|
+
rest = _objectWithoutProperties(_ref, _excluded$K);
|
|
11105
11142
|
var intInputRef = React.useRef(null);
|
|
11106
11143
|
var handleRef = useForkRef(ref, intInputRef);
|
|
11107
11144
|
var handleWrapperClick = React.useCallback(function () {
|
|
@@ -11155,14 +11192,14 @@
|
|
|
11155
11192
|
}, StyledRadioLabel);
|
|
11156
11193
|
StyledRadioButton$1.displayName = "StyledRadioButton";
|
|
11157
11194
|
|
|
11158
|
-
var _excluded$
|
|
11195
|
+
var _excluded$J = ["className", "id", "hover"];
|
|
11159
11196
|
var RadioButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11160
11197
|
var _ref$className = _ref.className,
|
|
11161
11198
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
11162
11199
|
_ref$id = _ref.id,
|
|
11163
11200
|
id = _ref$id === void 0 ? "radio" : _ref$id,
|
|
11164
11201
|
hover = _ref.hover,
|
|
11165
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11202
|
+
props = _objectWithoutProperties(_ref, _excluded$J);
|
|
11166
11203
|
return /*#__PURE__*/React__default["default"].createElement(StyledRadioButton$1, {
|
|
11167
11204
|
className: classNames__default["default"]("c-radio-btn", {
|
|
11168
11205
|
"c-radio-btn__hover": hover,
|
|
@@ -11370,7 +11407,7 @@
|
|
|
11370
11407
|
};
|
|
11371
11408
|
OptionContent.displayName = "OptionContent";
|
|
11372
11409
|
|
|
11373
|
-
var _excluded$
|
|
11410
|
+
var _excluded$I = ["type", "mode", "target", "options", "selected", "position", "onChange", "actionIcon", "actionLabel", "placeholder", "emptyAction", "disableSearch", "forceCloseMenu", "selectClassName", "keepSameOptionsOrder", "onSelectOpen", "onSelectClose", "renderOption", "handleDefaultOptionChange", "preselectDefaultValue"];
|
|
11374
11411
|
var Select = function Select(_ref) {
|
|
11375
11412
|
var _ref$type = _ref.type,
|
|
11376
11413
|
type = _ref$type === void 0 ? "single" : _ref$type,
|
|
@@ -11404,7 +11441,7 @@
|
|
|
11404
11441
|
handleDefaultOptionChange = _ref.handleDefaultOptionChange,
|
|
11405
11442
|
_ref$preselectDefault = _ref.preselectDefaultValue,
|
|
11406
11443
|
preselectDefaultValue = _ref$preselectDefault === void 0 ? type === "single" : _ref$preselectDefault,
|
|
11407
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
11444
|
+
prop = _objectWithoutProperties(_ref, _excluded$I);
|
|
11408
11445
|
var childNode = React.useRef();
|
|
11409
11446
|
var elementRef = React.useRef(null);
|
|
11410
11447
|
var handleRef = useForkRef(childNode, elementRef);
|
|
@@ -11659,7 +11696,7 @@
|
|
|
11659
11696
|
});
|
|
11660
11697
|
StyledNavAsMoreTarget.displayName = "StyledNavAsMoreTarget";
|
|
11661
11698
|
|
|
11662
|
-
var _excluded$
|
|
11699
|
+
var _excluded$H = ["children", "active", "disabled", "className", "role"];
|
|
11663
11700
|
var Item = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
11664
11701
|
var children = _ref.children,
|
|
11665
11702
|
_ref$active = _ref.active,
|
|
@@ -11668,7 +11705,7 @@
|
|
|
11668
11705
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
11669
11706
|
className = _ref.className,
|
|
11670
11707
|
role = _ref.role,
|
|
11671
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11708
|
+
rest = _objectWithoutProperties(_ref, _excluded$H);
|
|
11672
11709
|
return /*#__PURE__*/React__default["default"].createElement(StyledNavListItem, _extends({
|
|
11673
11710
|
className: classNames__default["default"]("c-nav__item", {
|
|
11674
11711
|
"c-nav__item--active": active
|
|
@@ -11709,11 +11746,11 @@
|
|
|
11709
11746
|
});
|
|
11710
11747
|
StyledExpandSingle.displayName = "StyledExpandSingle";
|
|
11711
11748
|
|
|
11712
|
-
var _excluded$
|
|
11749
|
+
var _excluded$G = ["expanded"];
|
|
11713
11750
|
var ExpandSingle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11714
11751
|
var _ref$expanded = _ref.expanded,
|
|
11715
11752
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
11716
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
11753
|
+
rest = _objectWithoutProperties(_ref, _excluded$G);
|
|
11717
11754
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpandSingle, _extends({
|
|
11718
11755
|
ref: ref,
|
|
11719
11756
|
viewBox: "0 0 24 24",
|
|
@@ -12003,7 +12040,7 @@
|
|
|
12003
12040
|
};
|
|
12004
12041
|
Nav.displayName = "Nav";
|
|
12005
12042
|
|
|
12006
|
-
var _excluded$
|
|
12043
|
+
var _excluded$F = ["children", "as", "disablePointerEvents"];
|
|
12007
12044
|
var InputAdornmentBase = styled__default["default"].div.withConfig({
|
|
12008
12045
|
displayName: "InputAdornment__InputAdornmentBase",
|
|
12009
12046
|
componentId: "sc-1xfjx1z-0"
|
|
@@ -12020,7 +12057,7 @@
|
|
|
12020
12057
|
var children = _ref.children,
|
|
12021
12058
|
as = _ref.as,
|
|
12022
12059
|
disablePointerEvents = _ref.disablePointerEvents,
|
|
12023
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12060
|
+
rest = _objectWithoutProperties(_ref, _excluded$F);
|
|
12024
12061
|
var Component = as || "div";
|
|
12025
12062
|
return /*#__PURE__*/React__default["default"].createElement(InputAdornmentBase, _extends({}, rest, {
|
|
12026
12063
|
as: Component,
|
|
@@ -12030,11 +12067,11 @@
|
|
|
12030
12067
|
});
|
|
12031
12068
|
InputAdornment.displayName = "InputAdornment";
|
|
12032
12069
|
|
|
12033
|
-
var _excluded$
|
|
12070
|
+
var _excluded$E = ["expanded"];
|
|
12034
12071
|
var ExpandAll = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12035
12072
|
var _ref$expanded = _ref.expanded,
|
|
12036
12073
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
12037
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12074
|
+
rest = _objectWithoutProperties(_ref, _excluded$E);
|
|
12038
12075
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpand, _extends({
|
|
12039
12076
|
ref: ref,
|
|
12040
12077
|
viewBox: "0 0 24 24"
|
|
@@ -12152,14 +12189,14 @@
|
|
|
12152
12189
|
});
|
|
12153
12190
|
StyledTextarea.displayName = "StyledTextarea";
|
|
12154
12191
|
|
|
12155
|
-
var _excluded$
|
|
12192
|
+
var _excluded$D = ["className", "disabled", "invalid"];
|
|
12156
12193
|
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12157
12194
|
var className = _ref.className,
|
|
12158
12195
|
_ref$disabled = _ref.disabled,
|
|
12159
12196
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
12160
12197
|
_ref$invalid = _ref.invalid,
|
|
12161
12198
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
12162
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12199
|
+
rest = _objectWithoutProperties(_ref, _excluded$D);
|
|
12163
12200
|
return /*#__PURE__*/React__default["default"].createElement(StyledTextarea, _extends({}, rest, {
|
|
12164
12201
|
$invalid: invalid,
|
|
12165
12202
|
ref: ref,
|
|
@@ -12191,7 +12228,7 @@
|
|
|
12191
12228
|
function () {});
|
|
12192
12229
|
}
|
|
12193
12230
|
|
|
12194
|
-
var _excluded$
|
|
12231
|
+
var _excluded$C = ["children", "disableFocusLock", "disableScrollLock", "disableBackgroundClick", "disableBackgroundColor", "disableCloseOnEsc", "open", "onClose"];
|
|
12195
12232
|
var getHasTransition = function getHasTransition(children) {
|
|
12196
12233
|
return children.props ? Object.prototype.hasOwnProperty.call(children.props, "in") : false;
|
|
12197
12234
|
};
|
|
@@ -12210,7 +12247,7 @@
|
|
|
12210
12247
|
_ref$open = _ref.open,
|
|
12211
12248
|
defaultOpen = _ref$open === void 0 ? false : _ref$open,
|
|
12212
12249
|
onClose = _ref.onClose,
|
|
12213
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12250
|
+
rest = _objectWithoutProperties(_ref, _excluded$C);
|
|
12214
12251
|
var _useState = React.useState(defaultOpen),
|
|
12215
12252
|
_useState2 = _slicedToArray(_useState, 2),
|
|
12216
12253
|
open = _useState2[0],
|
|
@@ -12348,7 +12385,7 @@
|
|
|
12348
12385
|
});
|
|
12349
12386
|
StyledCssTransition.displayName = "StyledCssTransition";
|
|
12350
12387
|
|
|
12351
|
-
var _excluded$
|
|
12388
|
+
var _excluded$B = ["children", "onClose", "controls", "open", "animation", "position", "mode", "disableFocusLock", "disableScrollLock", "disableBackgroundColor", "bodyStyle", "bodyClassName", "disableBackgroundClick"];
|
|
12352
12389
|
var Sheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12353
12390
|
var children = _ref.children,
|
|
12354
12391
|
onClose = _ref.onClose,
|
|
@@ -12372,7 +12409,7 @@
|
|
|
12372
12409
|
bodyClassName = _ref.bodyClassName,
|
|
12373
12410
|
_ref$disableBackgroun2 = _ref.disableBackgroundClick,
|
|
12374
12411
|
disableBackgroundClick = _ref$disableBackgroun2 === void 0 ? false : _ref$disableBackgroun2,
|
|
12375
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12412
|
+
rest = _objectWithoutProperties(_ref, _excluded$B);
|
|
12376
12413
|
var _useState = React.useState(defaultOpen),
|
|
12377
12414
|
_useState2 = _slicedToArray(_useState, 2),
|
|
12378
12415
|
open = _useState2[0],
|
|
@@ -12465,13 +12502,13 @@
|
|
|
12465
12502
|
});
|
|
12466
12503
|
StyledHeader.displayName = "StyledHeader";
|
|
12467
12504
|
|
|
12468
|
-
var _excluded$
|
|
12505
|
+
var _excluded$A = ["className", "size", "children"];
|
|
12469
12506
|
var Header = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12470
12507
|
var className = _ref.className,
|
|
12471
12508
|
_ref$size = _ref.size,
|
|
12472
12509
|
size = _ref$size === void 0 ? "small" : _ref$size,
|
|
12473
12510
|
children = _ref.children,
|
|
12474
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12511
|
+
rest = _objectWithoutProperties(_ref, _excluded$A);
|
|
12475
12512
|
return /*#__PURE__*/React__default["default"].createElement(StyledHeader, _extends({
|
|
12476
12513
|
type: "paper-2",
|
|
12477
12514
|
className: classNames__default["default"]("c-header", className),
|
|
@@ -12487,7 +12524,7 @@
|
|
|
12487
12524
|
})(["white-space:pre-wrap;overflow-wrap:break-word;resize:none;"]);
|
|
12488
12525
|
StyledAutoResizeTextarea.displayName = "StyledAutoResizeTextarea";
|
|
12489
12526
|
|
|
12490
|
-
var _excluded$
|
|
12527
|
+
var _excluded$z = ["minRows", "maxRows", "lineHeight", "onChange", "className", "preventNewRowOnEnter", "cursorAtTextEnd", "onKeyDown", "value"];
|
|
12491
12528
|
var AutoResizeTextarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
12492
12529
|
var _ref$minRows = _ref.minRows,
|
|
12493
12530
|
minRows = _ref$minRows === void 0 ? 1 : _ref$minRows,
|
|
@@ -12503,7 +12540,7 @@
|
|
|
12503
12540
|
cursorAtTextEnd = _ref$cursorAtTextEnd === void 0 ? false : _ref$cursorAtTextEnd,
|
|
12504
12541
|
onKeyDown = _ref.onKeyDown,
|
|
12505
12542
|
value = _ref.value,
|
|
12506
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
12543
|
+
rest = _objectWithoutProperties(_ref, _excluded$z);
|
|
12507
12544
|
var innerRef = React.useRef(null);
|
|
12508
12545
|
var _useState = React.useState(minRows),
|
|
12509
12546
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -12779,7 +12816,7 @@
|
|
|
12779
12816
|
});
|
|
12780
12817
|
StyledChoose.displayName = "StyledChoose";
|
|
12781
12818
|
|
|
12782
|
-
var _excluded$
|
|
12819
|
+
var _excluded$y = ["children", "disabled", "active", "className"];
|
|
12783
12820
|
/**
|
|
12784
12821
|
* Choose component
|
|
12785
12822
|
*/
|
|
@@ -12790,7 +12827,7 @@
|
|
|
12790
12827
|
_ref$active = _ref.active,
|
|
12791
12828
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
12792
12829
|
className = _ref.className,
|
|
12793
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
12830
|
+
args = _objectWithoutProperties(_ref, _excluded$y);
|
|
12794
12831
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose, _extends({
|
|
12795
12832
|
disabled: disabled,
|
|
12796
12833
|
className: classNames__default["default"]("c-choose", className),
|
|
@@ -12886,21 +12923,21 @@
|
|
|
12886
12923
|
StyledLinkElements.displayName = "StyledLinkElements";
|
|
12887
12924
|
StyledLink.displayName = "StyledLink";
|
|
12888
12925
|
|
|
12889
|
-
var _excluded$
|
|
12926
|
+
var _excluded$x = ["children", "className"];
|
|
12890
12927
|
/**
|
|
12891
12928
|
* Back link component
|
|
12892
12929
|
*/
|
|
12893
12930
|
var BackLink = function BackLink(_ref) {
|
|
12894
12931
|
var children = _ref.children,
|
|
12895
12932
|
className = _ref.className,
|
|
12896
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
12933
|
+
args = _objectWithoutProperties(_ref, _excluded$x);
|
|
12897
12934
|
return /*#__PURE__*/React__default["default"].createElement(StyledBackLink, _extends({
|
|
12898
12935
|
className: classNames__default["default"]("c-back-link", className)
|
|
12899
12936
|
}, args), children);
|
|
12900
12937
|
};
|
|
12901
12938
|
BackLink.displayName = "BackLink";
|
|
12902
12939
|
|
|
12903
|
-
var _excluded$
|
|
12940
|
+
var _excluded$w = ["as", "children", "variant", "size", "disabled", "className"];
|
|
12904
12941
|
/**
|
|
12905
12942
|
* Link component
|
|
12906
12943
|
*/
|
|
@@ -12913,7 +12950,7 @@
|
|
|
12913
12950
|
_ref$disabled = _ref.disabled,
|
|
12914
12951
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
12915
12952
|
className = _ref.className,
|
|
12916
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
12953
|
+
args = _objectWithoutProperties(_ref, _excluded$w);
|
|
12917
12954
|
var Component = as || "a";
|
|
12918
12955
|
return /*#__PURE__*/React__default["default"].createElement(StyledLink, _extends({
|
|
12919
12956
|
ref: ref,
|
|
@@ -13024,7 +13061,7 @@
|
|
|
13024
13061
|
})(["padding:20px 30px;", " ", ""], FontStyle, BoxSizingStyle);
|
|
13025
13062
|
StyledDialogActions.displayName = "StyledDialogActions";
|
|
13026
13063
|
|
|
13027
|
-
var _excluded$
|
|
13064
|
+
var _excluded$v = ["in", "children", "style", "timeout"];
|
|
13028
13065
|
var defaultStyle$1 = function defaultStyle(duration) {
|
|
13029
13066
|
return {
|
|
13030
13067
|
transition: "all ".concat(duration, "ms ease-in-out"),
|
|
@@ -13052,7 +13089,7 @@
|
|
|
13052
13089
|
style = _ref.style,
|
|
13053
13090
|
_ref$timeout = _ref.timeout,
|
|
13054
13091
|
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout,
|
|
13055
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13092
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
13056
13093
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
13057
13094
|
appear: true,
|
|
13058
13095
|
in: inProp,
|
|
@@ -13067,7 +13104,7 @@
|
|
|
13067
13104
|
};
|
|
13068
13105
|
Fade.displayName = "Fade";
|
|
13069
13106
|
|
|
13070
|
-
var _excluded$
|
|
13107
|
+
var _excluded$u = ["in", "children", "style", "timeout", "initialDirection"];
|
|
13071
13108
|
var Slide = function Slide(_ref) {
|
|
13072
13109
|
var _ref$in = _ref.in,
|
|
13073
13110
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
@@ -13077,7 +13114,7 @@
|
|
|
13077
13114
|
timeout = _ref$timeout === void 0 ? 300 : _ref$timeout,
|
|
13078
13115
|
_ref$initialDirection = _ref.initialDirection,
|
|
13079
13116
|
initialDirection = _ref$initialDirection === void 0 ? "left" : _ref$initialDirection,
|
|
13080
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13117
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
13081
13118
|
var directionSign;
|
|
13082
13119
|
switch (initialDirection) {
|
|
13083
13120
|
case "right":
|
|
@@ -13130,12 +13167,12 @@
|
|
|
13130
13167
|
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;}"]);
|
|
13131
13168
|
});
|
|
13132
13169
|
|
|
13133
|
-
var _excluded$
|
|
13170
|
+
var _excluded$t = ["children", "direction"];
|
|
13134
13171
|
var SlideLeftRightTransition = function SlideLeftRightTransition(_ref) {
|
|
13135
13172
|
var children = _ref.children,
|
|
13136
13173
|
_ref$direction = _ref.direction,
|
|
13137
13174
|
direction = _ref$direction === void 0 ? "left" : _ref$direction,
|
|
13138
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
13175
|
+
props = _objectWithoutProperties(_ref, _excluded$t);
|
|
13139
13176
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.CSSTransition, _extends({
|
|
13140
13177
|
timeout: 200,
|
|
13141
13178
|
classNames: "c-slide",
|
|
@@ -13178,7 +13215,7 @@
|
|
|
13178
13215
|
};
|
|
13179
13216
|
ResizeTransition.displayName = "ResizeTransition";
|
|
13180
13217
|
|
|
13181
|
-
var _excluded$
|
|
13218
|
+
var _excluded$s = ["in", "children", "style", "timeout"];
|
|
13182
13219
|
var defaultStyle = function defaultStyle(duration) {
|
|
13183
13220
|
return {
|
|
13184
13221
|
transition: "all ".concat(duration, "ms ease-in"),
|
|
@@ -13212,7 +13249,7 @@
|
|
|
13212
13249
|
style = _ref.style,
|
|
13213
13250
|
_ref$timeout = _ref.timeout,
|
|
13214
13251
|
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout,
|
|
13215
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13252
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
13216
13253
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
13217
13254
|
appear: true,
|
|
13218
13255
|
in: inProp,
|
|
@@ -13262,13 +13299,13 @@
|
|
|
13262
13299
|
};
|
|
13263
13300
|
Scale.displayName = "Scale";
|
|
13264
13301
|
|
|
13265
|
-
var _excluded$
|
|
13302
|
+
var _excluded$r = ["className", "children"];
|
|
13266
13303
|
// import { useDialogContext } from "./DialogContext";
|
|
13267
13304
|
|
|
13268
13305
|
var DialogActions = function DialogActions(_ref) {
|
|
13269
13306
|
var className = _ref.className,
|
|
13270
13307
|
children = _ref.children,
|
|
13271
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13308
|
+
rest = _objectWithoutProperties(_ref, _excluded$r);
|
|
13272
13309
|
// useDialogContext();
|
|
13273
13310
|
|
|
13274
13311
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogActions, _extends({
|
|
@@ -13277,13 +13314,13 @@
|
|
|
13277
13314
|
};
|
|
13278
13315
|
DialogActions.displayName = "DialogActions";
|
|
13279
13316
|
|
|
13280
|
-
var _excluded$
|
|
13317
|
+
var _excluded$q = ["className", "children"];
|
|
13281
13318
|
// import { useDialogContext } from "./DialogContext";
|
|
13282
13319
|
|
|
13283
13320
|
var DialogContent = function DialogContent(_ref) {
|
|
13284
13321
|
var className = _ref.className,
|
|
13285
13322
|
children = _ref.children,
|
|
13286
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13323
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
13287
13324
|
// useDialogContext();
|
|
13288
13325
|
|
|
13289
13326
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogContent, _extends({
|
|
@@ -13304,7 +13341,7 @@
|
|
|
13304
13341
|
};
|
|
13305
13342
|
DialogContentDivider.displayName = "DialogContentDivider";
|
|
13306
13343
|
|
|
13307
|
-
var _excluded$
|
|
13344
|
+
var _excluded$p = ["children", "className", "disableDefaultHeading"];
|
|
13308
13345
|
// import { useDialogContext } from "./DialogContext";
|
|
13309
13346
|
|
|
13310
13347
|
var DialogTitle = function DialogTitle(_ref) {
|
|
@@ -13312,7 +13349,7 @@
|
|
|
13312
13349
|
className = _ref.className,
|
|
13313
13350
|
_ref$disableDefaultHe = _ref.disableDefaultHeading,
|
|
13314
13351
|
disableDefaultHeading = _ref$disableDefaultHe === void 0 ? false : _ref$disableDefaultHe,
|
|
13315
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13352
|
+
rest = _objectWithoutProperties(_ref, _excluded$p);
|
|
13316
13353
|
// useDialogContext();
|
|
13317
13354
|
|
|
13318
13355
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogTitle, _extends({
|
|
@@ -13580,7 +13617,7 @@
|
|
|
13580
13617
|
});
|
|
13581
13618
|
StyledPressed.displayName = "StyledPressed";
|
|
13582
13619
|
|
|
13583
|
-
var _excluded$
|
|
13620
|
+
var _excluded$o = ["children", "active", "className"];
|
|
13584
13621
|
/**
|
|
13585
13622
|
* Pressed wrapper for button component
|
|
13586
13623
|
* @deprecated
|
|
@@ -13590,7 +13627,7 @@
|
|
|
13590
13627
|
_ref$active = _ref.active,
|
|
13591
13628
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
13592
13629
|
className = _ref.className,
|
|
13593
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
13630
|
+
args = _objectWithoutProperties(_ref, _excluded$o);
|
|
13594
13631
|
return /*#__PURE__*/React__default["default"].createElement(StyledPressed, _extends({
|
|
13595
13632
|
active: active,
|
|
13596
13633
|
ref: ref,
|
|
@@ -14087,7 +14124,7 @@
|
|
|
14087
14124
|
StyledToastMessage.displayName = "StyledToastMessage";
|
|
14088
14125
|
StyledCloseSmallIcon.displayName = "StyledCloseSmallIcon";
|
|
14089
14126
|
|
|
14090
|
-
var _excluded$
|
|
14127
|
+
var _excluded$n = ["text", "type", "onClose", "dismissible", "dropShadow", "timeout"];
|
|
14091
14128
|
var ToastMessage = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14092
14129
|
var text = _ref.text,
|
|
14093
14130
|
type = _ref.type,
|
|
@@ -14098,7 +14135,7 @@
|
|
|
14098
14135
|
dropShadow = _ref$dropShadow === void 0 ? false : _ref$dropShadow,
|
|
14099
14136
|
_ref$timeout = _ref.timeout,
|
|
14100
14137
|
timeout = _ref$timeout === void 0 ? 0 : _ref$timeout,
|
|
14101
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14138
|
+
rest = _objectWithoutProperties(_ref, _excluded$n);
|
|
14102
14139
|
var handleOnClose = React.useCallback(function () {
|
|
14103
14140
|
if (typeof onClose === "function") {
|
|
14104
14141
|
onClose();
|
|
@@ -14146,7 +14183,7 @@
|
|
|
14146
14183
|
});
|
|
14147
14184
|
StyledValueButton.displayName = "StyledValueButton";
|
|
14148
14185
|
|
|
14149
|
-
var _excluded$
|
|
14186
|
+
var _excluded$m = ["active", "alwaysShowIcon", "icon", "label", "value"];
|
|
14150
14187
|
var ValueButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14151
14188
|
var _ref$active = _ref.active,
|
|
14152
14189
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
@@ -14155,7 +14192,7 @@
|
|
|
14155
14192
|
icon = _ref.icon,
|
|
14156
14193
|
label = _ref.label,
|
|
14157
14194
|
value = _ref.value,
|
|
14158
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
14195
|
+
args = _objectWithoutProperties(_ref, _excluded$m);
|
|
14159
14196
|
return /*#__PURE__*/React__default["default"].createElement(StyledValueButton, _extends({
|
|
14160
14197
|
className: "c-value-button"
|
|
14161
14198
|
}, args, {
|
|
@@ -14184,12 +14221,12 @@
|
|
|
14184
14221
|
})(["border:none;margin:0;padding:0;width:auto;overflow:visible;cursor:pointer;background:transparent;outline:none;color:inherit;font:inherit;line-height:inherit;-webkit-font-smoothing:inherit;-moz-osx-font-smoothing:inherit;-webkit-appearance:none;&::-moz-focus-inner{border:0;padding:0;}"]);
|
|
14185
14222
|
StyledButton.displayName = "StyledButton";
|
|
14186
14223
|
|
|
14187
|
-
var _excluded$
|
|
14224
|
+
var _excluded$l = ["children", "type"];
|
|
14188
14225
|
var Trigger = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14189
14226
|
var children = _ref.children,
|
|
14190
14227
|
_ref$type = _ref.type,
|
|
14191
14228
|
type = _ref$type === void 0 ? "button" : _ref$type,
|
|
14192
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14229
|
+
rest = _objectWithoutProperties(_ref, _excluded$l);
|
|
14193
14230
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton, _extends({
|
|
14194
14231
|
ref: ref,
|
|
14195
14232
|
role: "button",
|
|
@@ -14235,7 +14272,7 @@
|
|
|
14235
14272
|
});
|
|
14236
14273
|
StyledCaretIcon.displayName = "StyledCaretIcon";
|
|
14237
14274
|
|
|
14238
|
-
var _excluded$
|
|
14275
|
+
var _excluded$k = ["children", "type", "size", "invalid", "open", "endAdornment", "typographyProps"];
|
|
14239
14276
|
var SelectTrigger = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14240
14277
|
var children = _ref.children,
|
|
14241
14278
|
_ref$type = _ref.type,
|
|
@@ -14248,7 +14285,7 @@
|
|
|
14248
14285
|
open = _ref$open === void 0 ? false : _ref$open,
|
|
14249
14286
|
endAdornment = _ref.endAdornment,
|
|
14250
14287
|
typographyProps = _ref.typographyProps,
|
|
14251
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14288
|
+
rest = _objectWithoutProperties(_ref, _excluded$k);
|
|
14252
14289
|
return /*#__PURE__*/React__default["default"].createElement(StyledSelectTrigger, _extends({
|
|
14253
14290
|
ref: ref,
|
|
14254
14291
|
role: "button",
|
|
@@ -14295,11 +14332,11 @@
|
|
|
14295
14332
|
});
|
|
14296
14333
|
StyledToggle.displayName = "StyledToggle";
|
|
14297
14334
|
|
|
14298
|
-
var _excluded$
|
|
14335
|
+
var _excluded$j = ["hovered", "className"];
|
|
14299
14336
|
var Toggle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14300
14337
|
var hovered = _ref.hovered,
|
|
14301
14338
|
className = _ref.className,
|
|
14302
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
14339
|
+
args = _objectWithoutProperties(_ref, _excluded$j);
|
|
14303
14340
|
return /*#__PURE__*/React__default["default"].createElement(StyledToggle, {
|
|
14304
14341
|
className: classNames__default["default"]("c-toggle", className),
|
|
14305
14342
|
$isHovered: hovered,
|
|
@@ -14452,7 +14489,7 @@
|
|
|
14452
14489
|
});
|
|
14453
14490
|
ChipCloseIcon.displayName = "ChipCloseIcon";
|
|
14454
14491
|
|
|
14455
|
-
var _excluded$
|
|
14492
|
+
var _excluded$i = ["leftAdornment", "label", "onClose", "size", "color", "backgroundColor", "closeClassName", "variant", "typographyProps"];
|
|
14456
14493
|
var Chip = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
14457
14494
|
var leftAdornment = _ref.leftAdornment,
|
|
14458
14495
|
label = _ref.label,
|
|
@@ -14464,7 +14501,7 @@
|
|
|
14464
14501
|
closeClassName = _ref.closeClassName,
|
|
14465
14502
|
variant = _ref.variant,
|
|
14466
14503
|
typographyProps = _ref.typographyProps,
|
|
14467
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
14504
|
+
rest = _objectWithoutProperties(_ref, _excluded$i);
|
|
14468
14505
|
var showClose = typeof onClose === "function";
|
|
14469
14506
|
var _variant = React.useMemo(function () {
|
|
14470
14507
|
if (typeof variant !== "undefined") {
|
|
@@ -14540,7 +14577,7 @@
|
|
|
14540
14577
|
return isFirst.current;
|
|
14541
14578
|
};
|
|
14542
14579
|
|
|
14543
|
-
var _excluded$
|
|
14580
|
+
var _excluded$h = ["options", "selected", "loading", "loadingText", "onChange", "placeholder", "handleEmptyAction", "disabled", "size", "invalid", "type", "renderChip", "forceCloseMenu", "renderOption", "limitChips", "hiddenNumberText", "inPortal", "inputWrapperClassName", "scrollWrapper", "onClose", "onClear"];
|
|
14544
14581
|
var ComboBox = function ComboBox(_ref) {
|
|
14545
14582
|
var _comboBoxRef$current2, _comboBoxRef$current3;
|
|
14546
14583
|
var _ref$options = _ref.options,
|
|
@@ -14573,7 +14610,7 @@
|
|
|
14573
14610
|
scrollWrapper = _ref.scrollWrapper,
|
|
14574
14611
|
onClose = _ref.onClose,
|
|
14575
14612
|
onClear = _ref.onClear,
|
|
14576
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
14613
|
+
prop = _objectWithoutProperties(_ref, _excluded$h);
|
|
14577
14614
|
var selectedName = React.useMemo(function () {
|
|
14578
14615
|
var value = "";
|
|
14579
14616
|
if (!selected) {
|
|
@@ -14977,11 +15014,11 @@
|
|
|
14977
15014
|
})(["display:flex;justify-content:center;gap:12px;align-items:center;height:32px;padding:4px 16px 4px 4px;position:relative;background:none;border:none;cursor:pointer;&:before{content:\"\";display:block;height:2px;width:0%;position:absolute;left:16px;background:var(--color-primary);transition:ease 0.3s all;border-radius:30px;opacity:0;}&:hover{", "{color:var(--page-paper-main);}&:before{height:32px;width:100%;left:0;opacity:1;}", "{fill:var(--page-paper-main);transform:rotate(90deg);transition:ease 0.3s;}}"], StyledText, StyledAddCrossIcon);
|
|
14978
15015
|
StyledAddToListButton.displayName = "StyledAddToListButton";
|
|
14979
15016
|
|
|
14980
|
-
var _excluded$
|
|
15017
|
+
var _excluded$g = ["text", "className"];
|
|
14981
15018
|
var AddToListButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
14982
15019
|
var text = _ref.text,
|
|
14983
15020
|
className = _ref.className,
|
|
14984
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15021
|
+
rest = _objectWithoutProperties(_ref, _excluded$g);
|
|
14985
15022
|
return /*#__PURE__*/React__default["default"].createElement(StyledAddToListButton, _extends({
|
|
14986
15023
|
ref: ref,
|
|
14987
15024
|
className: classNames__default["default"]("c--add-to-list-btn", className)
|
|
@@ -15164,11 +15201,11 @@
|
|
|
15164
15201
|
};
|
|
15165
15202
|
ProgressRing.displayName = "ProgressRing";
|
|
15166
15203
|
|
|
15167
|
-
var _excluded$
|
|
15204
|
+
var _excluded$f = ["radius"];
|
|
15168
15205
|
var ProgressPie = function ProgressPie(_ref) {
|
|
15169
15206
|
var _ref$radius = _ref.radius,
|
|
15170
15207
|
radius = _ref$radius === void 0 ? 20 : _ref$radius,
|
|
15171
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15208
|
+
rest = _objectWithoutProperties(_ref, _excluded$f);
|
|
15172
15209
|
return /*#__PURE__*/React__default["default"].createElement(ProgressRing, _extends({}, rest, {
|
|
15173
15210
|
stroke: radius,
|
|
15174
15211
|
radius: radius
|
|
@@ -15492,7 +15529,7 @@
|
|
|
15492
15529
|
ThumbsDownIcon.displayName = "ThumbsDownIcon";
|
|
15493
15530
|
var ThumbsDownIcon$1 = ThumbsDownIcon;
|
|
15494
15531
|
|
|
15495
|
-
var _excluded$
|
|
15532
|
+
var _excluded$e = ["invalid", "required", "size", "children", "className", "weight", "htmlFor"];
|
|
15496
15533
|
var Label = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15497
15534
|
var _ref$invalid = _ref.invalid,
|
|
15498
15535
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
@@ -15505,7 +15542,7 @@
|
|
|
15505
15542
|
_ref$weight = _ref.weight,
|
|
15506
15543
|
weight = _ref$weight === void 0 ? "bold" : _ref$weight,
|
|
15507
15544
|
htmlFor = _ref.htmlFor,
|
|
15508
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15545
|
+
props = _objectWithoutProperties(_ref, _excluded$e);
|
|
15509
15546
|
var color = invalid ? "alert" : "primary";
|
|
15510
15547
|
var variant = size === "regular" ? "Body 2" : "Caption 1";
|
|
15511
15548
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
@@ -15565,7 +15602,7 @@
|
|
|
15565
15602
|
});
|
|
15566
15603
|
StyledInput$1.displayName = "StyledInput";
|
|
15567
15604
|
|
|
15568
|
-
var _excluded$
|
|
15605
|
+
var _excluded$d = ["className", "variant", "weight", "disabled", "inputProps", "wrapRef"];
|
|
15569
15606
|
var EditableContent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15570
15607
|
var className = _ref.className,
|
|
15571
15608
|
_ref$variant = _ref.variant,
|
|
@@ -15575,7 +15612,7 @@
|
|
|
15575
15612
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
15576
15613
|
inputProps = _ref.inputProps,
|
|
15577
15614
|
wrapRef = _ref.wrapRef,
|
|
15578
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15615
|
+
props = _objectWithoutProperties(_ref, _excluded$d);
|
|
15579
15616
|
var intInputRef = React.useRef(null);
|
|
15580
15617
|
var handleRef = useForkRef(ref, intInputRef);
|
|
15581
15618
|
var handleBlur = React.useCallback(function (evt) {
|
|
@@ -15605,13 +15642,13 @@
|
|
|
15605
15642
|
});
|
|
15606
15643
|
EditableContent.displayName = "EditableContent";
|
|
15607
15644
|
|
|
15608
|
-
var _excluded$
|
|
15645
|
+
var _excluded$c = ["onSave", "onCancel", "value", "inputProps"];
|
|
15609
15646
|
var EditableText = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15610
15647
|
var onSave = _ref.onSave,
|
|
15611
15648
|
onCancel = _ref.onCancel,
|
|
15612
15649
|
value = _ref.value,
|
|
15613
15650
|
inputProps = _ref.inputProps,
|
|
15614
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15651
|
+
props = _objectWithoutProperties(_ref, _excluded$c);
|
|
15615
15652
|
var _useState = React.useState(value),
|
|
15616
15653
|
_useState2 = _slicedToArray(_useState, 2),
|
|
15617
15654
|
currentValue = _useState2[0],
|
|
@@ -15669,11 +15706,11 @@
|
|
|
15669
15706
|
});
|
|
15670
15707
|
EditableText.displayName = "EditableText";
|
|
15671
15708
|
|
|
15672
|
-
var _excluded$
|
|
15709
|
+
var _excluded$b = ["withDocuments"];
|
|
15673
15710
|
var FolderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
15674
15711
|
var _ref$withDocuments = _ref.withDocuments,
|
|
15675
15712
|
withDocuments = _ref$withDocuments === void 0 ? false : _ref$withDocuments,
|
|
15676
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15713
|
+
props = _objectWithoutProperties(_ref, _excluded$b);
|
|
15677
15714
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
15678
15715
|
width: 100,
|
|
15679
15716
|
height: 100,
|
|
@@ -15816,7 +15853,7 @@
|
|
|
15816
15853
|
return $renderAs === "list" && styled.css(["justify-self:flex-end;"]);
|
|
15817
15854
|
});
|
|
15818
15855
|
|
|
15819
|
-
var _excluded$
|
|
15856
|
+
var _excluded$a = ["children", "gap", "renderAs"];
|
|
15820
15857
|
var EntityGroupContext = /*#__PURE__*/React__default["default"].createContext({
|
|
15821
15858
|
renderAs: "grid"
|
|
15822
15859
|
});
|
|
@@ -15825,7 +15862,7 @@
|
|
|
15825
15862
|
gap = _ref.gap,
|
|
15826
15863
|
_ref$renderAs = _ref.renderAs,
|
|
15827
15864
|
renderAs = _ref$renderAs === void 0 ? "grid" : _ref$renderAs,
|
|
15828
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15865
|
+
rest = _objectWithoutProperties(_ref, _excluded$a);
|
|
15829
15866
|
return /*#__PURE__*/React__default["default"].createElement(EntityGroupContext.Provider, {
|
|
15830
15867
|
value: {
|
|
15831
15868
|
renderAs: renderAs
|
|
@@ -15837,14 +15874,14 @@
|
|
|
15837
15874
|
};
|
|
15838
15875
|
EntityGroup.displayName = "EntityGroup";
|
|
15839
15876
|
|
|
15840
|
-
var _excluded$
|
|
15877
|
+
var _excluded$9 = ["children", "isCollection", "background", "className", "as"];
|
|
15841
15878
|
var EntityCard = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
15842
15879
|
var children = _ref.children,
|
|
15843
15880
|
isCollection = _ref.isCollection,
|
|
15844
15881
|
background = _ref.background,
|
|
15845
15882
|
className = _ref.className,
|
|
15846
15883
|
as = _ref.as,
|
|
15847
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
15884
|
+
rest = _objectWithoutProperties(_ref, _excluded$9);
|
|
15848
15885
|
var _useContext = React.useContext(EntityGroupContext),
|
|
15849
15886
|
renderAs = _useContext.renderAs;
|
|
15850
15887
|
var classSuffix = "c-entity-card-".concat(renderAs);
|
|
@@ -15863,13 +15900,13 @@
|
|
|
15863
15900
|
});
|
|
15864
15901
|
EntityCard.displayName = "EntityCard";
|
|
15865
15902
|
|
|
15866
|
-
var _excluded$
|
|
15903
|
+
var _excluded$8 = ["listOrder", "listWidth", "visibleFromBreakpoint", "className"];
|
|
15867
15904
|
var EntityProperty = function EntityProperty(_ref) {
|
|
15868
15905
|
var listOrder = _ref.listOrder,
|
|
15869
15906
|
listWidth = _ref.listWidth,
|
|
15870
15907
|
visibleFromBreakpoint = _ref.visibleFromBreakpoint,
|
|
15871
15908
|
className = _ref.className,
|
|
15872
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15909
|
+
props = _objectWithoutProperties(_ref, _excluded$8);
|
|
15873
15910
|
var _useContext = React.useContext(EntityGroupContext),
|
|
15874
15911
|
renderAs = _useContext.renderAs;
|
|
15875
15912
|
var classSuffix = "c-entity-property-".concat(renderAs);
|
|
@@ -15884,10 +15921,25 @@
|
|
|
15884
15921
|
};
|
|
15885
15922
|
EntityProperty.displayName = "EntityProperty";
|
|
15886
15923
|
|
|
15924
|
+
var _excluded$7 = ["children"];
|
|
15925
|
+
var EntitySeparator = function EntitySeparator(_ref) {
|
|
15926
|
+
var children = _ref.children,
|
|
15927
|
+
rest = _objectWithoutProperties(_ref, _excluded$7);
|
|
15928
|
+
return /*#__PURE__*/React__default["default"].createElement(_StyledDiv, rest, children);
|
|
15929
|
+
};
|
|
15930
|
+
var _StyledDiv = styled__default["default"]("div").withConfig({
|
|
15931
|
+
displayName: "EntitySeparator___StyledDiv",
|
|
15932
|
+
componentId: "sc-5xbpkw-0"
|
|
15933
|
+
})(["grid-column:1 / -1;"]);
|
|
15934
|
+
|
|
15887
15935
|
var Entity = {
|
|
15888
15936
|
Group: EntityGroup,
|
|
15889
15937
|
Card: EntityCard,
|
|
15890
|
-
Property: EntityProperty
|
|
15938
|
+
Property: EntityProperty,
|
|
15939
|
+
Separator: EntitySeparator
|
|
15940
|
+
};
|
|
15941
|
+
var useEntityGroupContext = function useEntityGroupContext() {
|
|
15942
|
+
return React__default["default"].useContext(EntityGroupContext);
|
|
15891
15943
|
};
|
|
15892
15944
|
|
|
15893
15945
|
var StyledMenu = styled__default["default"](Menu).withConfig({
|
|
@@ -17291,6 +17343,7 @@
|
|
|
17291
17343
|
exports.MessageEmptyIcon = MessageEmptyIcon$1;
|
|
17292
17344
|
exports.MessageIcon = MessageIcon$1;
|
|
17293
17345
|
exports.MessageSmallIcon = MessageSmallIcon$1;
|
|
17346
|
+
exports.MessageSolidIcon = MessageSolidIcon$1;
|
|
17294
17347
|
exports.MinusIcon = MinusIcon$1;
|
|
17295
17348
|
exports.Modal = Modal;
|
|
17296
17349
|
exports.MoveIcon = MoveIcon$1;
|
|
@@ -17419,6 +17472,7 @@
|
|
|
17419
17472
|
exports.isOptionGroup = isOptionGroup;
|
|
17420
17473
|
exports.layers = layers;
|
|
17421
17474
|
exports.signifierTypes = signifierTypes;
|
|
17475
|
+
exports.useEntityGroupContext = useEntityGroupContext;
|
|
17422
17476
|
exports.useForkRef = useForkRef;
|
|
17423
17477
|
exports.useHeight = useHeight;
|
|
17424
17478
|
exports.useInitScrollRef = useInitScrollRef;
|