@activecollab/components 1.0.151 → 1.0.152
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/EntityCard.js.map +1 -1
- package/dist/cjs/components/Entity/EntityGroup.js.map +1 -1
- package/dist/cjs/components/Entity/EntityProperty.js.map +1 -1
- package/dist/cjs/components/index.js +13 -0
- package/dist/cjs/components/index.js.map +1 -1
- package/dist/esm/components/Entity/EntityCard.d.ts +4 -3
- package/dist/esm/components/Entity/EntityCard.d.ts.map +1 -1
- package/dist/esm/components/Entity/EntityCard.js.map +1 -1
- package/dist/esm/components/Entity/EntityGroup.d.ts +2 -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/EntityProperty.d.ts +2 -2
- package/dist/esm/components/Entity/EntityProperty.d.ts.map +1 -1
- package/dist/esm/components/Entity/EntityProperty.js.map +1 -1
- package/dist/esm/components/Entity/index.d.ts +3 -3
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/index.js +1 -0
- package/dist/esm/components/index.js.map +1 -1
- package/dist/index.js +284 -142
- 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
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
})(["display:inline-flex;svg{margin:0 4px;}"]);
|
|
315
315
|
StyledButtonElement.displayName = "StyledButtonElement";
|
|
316
316
|
|
|
317
|
-
var _excluded$
|
|
317
|
+
var _excluded$16 = ["children", "variant", "size", "disabled", "className"];
|
|
318
318
|
|
|
319
319
|
/**
|
|
320
320
|
* Button component
|
|
@@ -328,7 +328,7 @@
|
|
|
328
328
|
_ref$disabled = _ref.disabled,
|
|
329
329
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
330
330
|
className = _ref.className,
|
|
331
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
331
|
+
args = _objectWithoutProperties(_ref, _excluded$16);
|
|
332
332
|
|
|
333
333
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton$2, _extends({
|
|
334
334
|
disabled: disabled,
|
|
@@ -381,12 +381,12 @@
|
|
|
381
381
|
})(["svg{fill:var(--color-theme-100);}&:hover svg{transform:rotate(90deg);transition:ease 0.3s;}"]);
|
|
382
382
|
StyledGlobalAddButton.displayName = "StyledGlobalAddButton";
|
|
383
383
|
|
|
384
|
-
var _excluded$
|
|
384
|
+
var _excluded$15 = ["className", "disabled"];
|
|
385
385
|
var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
386
386
|
var className = _ref.className,
|
|
387
387
|
_ref$disabled = _ref.disabled,
|
|
388
388
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
389
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
389
|
+
rest = _objectWithoutProperties(_ref, _excluded$15);
|
|
390
390
|
|
|
391
391
|
return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
|
|
392
392
|
ref: ref,
|
|
@@ -419,11 +419,11 @@
|
|
|
419
419
|
});
|
|
420
420
|
StyledButtonGroup$1.displayName = "StyledButtonGroup";
|
|
421
421
|
|
|
422
|
-
var _excluded$
|
|
422
|
+
var _excluded$14 = ["children", "className"];
|
|
423
423
|
var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
424
424
|
var children = _ref.children,
|
|
425
425
|
className = _ref.className,
|
|
426
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
426
|
+
rest = _objectWithoutProperties(_ref, _excluded$14);
|
|
427
427
|
|
|
428
428
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
|
|
429
429
|
ref: ref,
|
|
@@ -486,7 +486,7 @@
|
|
|
486
486
|
return React.useContext(MenuContext);
|
|
487
487
|
};
|
|
488
488
|
|
|
489
|
-
var _excluded$
|
|
489
|
+
var _excluded$13 = ["children", "anchorEl", "open", "style", "transition", "placement", "strategy"];
|
|
490
490
|
var Popper = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
491
491
|
var children = _ref.children,
|
|
492
492
|
anchorEl = _ref.anchorEl,
|
|
@@ -499,7 +499,7 @@
|
|
|
499
499
|
initialPlacement = _ref$placement === void 0 ? "bottom" : _ref$placement,
|
|
500
500
|
_ref$strategy = _ref.strategy,
|
|
501
501
|
strategy = _ref$strategy === void 0 ? "absolute" : _ref$strategy,
|
|
502
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
502
|
+
rest = _objectWithoutProperties(_ref, _excluded$13);
|
|
503
503
|
|
|
504
504
|
var _useState = React.useState(true),
|
|
505
505
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -605,12 +605,12 @@
|
|
|
605
605
|
});
|
|
606
606
|
StyledOverlay.displayName = "StyledOverlay";
|
|
607
607
|
|
|
608
|
-
var _excluded
|
|
608
|
+
var _excluded$12 = ["className", "disableBackgroundColor"];
|
|
609
609
|
var Overlay = function Overlay(_ref) {
|
|
610
610
|
var className = _ref.className,
|
|
611
611
|
_ref$disableBackgroun = _ref.disableBackgroundColor,
|
|
612
612
|
disableBackgroundColor = _ref$disableBackgroun === void 0 ? false : _ref$disableBackgroun,
|
|
613
|
-
rest = _objectWithoutProperties(_ref, _excluded
|
|
613
|
+
rest = _objectWithoutProperties(_ref, _excluded$12);
|
|
614
614
|
|
|
615
615
|
return /*#__PURE__*/React__default["default"].createElement(StyledOverlay, _extends({
|
|
616
616
|
className: classNames__default["default"]("c-overlay", className),
|
|
@@ -654,7 +654,7 @@
|
|
|
654
654
|
})(["", " ", " position:fixed;top:0;right:0;bottom:0;left:0;"], FontStyle, BoxSizingStyle);
|
|
655
655
|
StyledWindow.displayName = "StyledWindow";
|
|
656
656
|
|
|
657
|
-
var _excluded$
|
|
657
|
+
var _excluded$11 = ["children", "onClose", "className", "style", "onKeyDown", "disableFocusLock", "disableScrollLock", "preventClickEventBubbling", "onClick"];
|
|
658
658
|
var returnFocus = {
|
|
659
659
|
preventScroll: true
|
|
660
660
|
};
|
|
@@ -671,7 +671,7 @@
|
|
|
671
671
|
_ref$preventClickEven = _ref.preventClickEventBubbling,
|
|
672
672
|
preventClickEventBubbling = _ref$preventClickEven === void 0 ? false : _ref$preventClickEven,
|
|
673
673
|
onClick = _ref.onClick,
|
|
674
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
674
|
+
rest = _objectWithoutProperties(_ref, _excluded$11);
|
|
675
675
|
|
|
676
676
|
var innerRef = React.useRef(null);
|
|
677
677
|
var handleRef = useForkRef(innerRef, ref);
|
|
@@ -745,7 +745,7 @@
|
|
|
745
745
|
}, FontStyle, BoxSizingStyle);
|
|
746
746
|
StyledBubble.displayName = "StyledBubble";
|
|
747
747
|
|
|
748
|
-
var _excluded$
|
|
748
|
+
var _excluded$10 = ["children", "className", "innerRef", "style"];
|
|
749
749
|
var Bubble = function Bubble(_ref) {
|
|
750
750
|
var children = _ref.children,
|
|
751
751
|
className = _ref.className,
|
|
@@ -753,7 +753,7 @@
|
|
|
753
753
|
innerRef = _ref$innerRef === void 0 ? null : _ref$innerRef,
|
|
754
754
|
_ref$style = _ref.style,
|
|
755
755
|
style = _ref$style === void 0 ? {} : _ref$style,
|
|
756
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
756
|
+
rest = _objectWithoutProperties(_ref, _excluded$10);
|
|
757
757
|
|
|
758
758
|
return /*#__PURE__*/React__default["default"].createElement(StyledBubble, _extends({}, rest, {
|
|
759
759
|
ref: innerRef,
|
|
@@ -1072,7 +1072,7 @@
|
|
|
1072
1072
|
});
|
|
1073
1073
|
StyledTypography.displayName = "StyledTypography";
|
|
1074
1074
|
|
|
1075
|
-
var _excluded
|
|
1075
|
+
var _excluded$$ = ["variant", "as", "color", "italic", "tabularNums", "letterSpacing", "lineHeight", "align", "decoration", "transform", "overflow", "whitespace", "wordBreak", "weight", "className", "children"];
|
|
1076
1076
|
var Typography = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1077
1077
|
var _ref$variant = _ref.variant,
|
|
1078
1078
|
variant = _ref$variant === void 0 ? "Title 1" : _ref$variant,
|
|
@@ -1103,7 +1103,7 @@
|
|
|
1103
1103
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
1104
1104
|
className = _ref.className,
|
|
1105
1105
|
children = _ref.children,
|
|
1106
|
-
props = _objectWithoutProperties(_ref, _excluded
|
|
1106
|
+
props = _objectWithoutProperties(_ref, _excluded$$);
|
|
1107
1107
|
|
|
1108
1108
|
var Component = as || "div";
|
|
1109
1109
|
return /*#__PURE__*/React__default["default"].createElement(StyledTypography, _extends({
|
|
@@ -1127,13 +1127,13 @@
|
|
|
1127
1127
|
});
|
|
1128
1128
|
Typography.displayName = "Typography";
|
|
1129
1129
|
|
|
1130
|
-
var _excluded$
|
|
1130
|
+
var _excluded$_ = ["title", "className", "leftElement", "rightElement"];
|
|
1131
1131
|
var MenuHeader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1132
1132
|
var title = _ref.title,
|
|
1133
1133
|
className = _ref.className,
|
|
1134
1134
|
leftElement = _ref.leftElement,
|
|
1135
1135
|
rightElement = _ref.rightElement,
|
|
1136
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1136
|
+
props = _objectWithoutProperties(_ref, _excluded$_);
|
|
1137
1137
|
|
|
1138
1138
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuHeader, _extends({}, props, {
|
|
1139
1139
|
className: classNames__default["default"]("c-menu-header", className),
|
|
@@ -1159,11 +1159,11 @@
|
|
|
1159
1159
|
});
|
|
1160
1160
|
MenuHeader.displayName = "MenuHeader";
|
|
1161
1161
|
|
|
1162
|
-
var _excluded$
|
|
1162
|
+
var _excluded$Z = ["children", "className"];
|
|
1163
1163
|
var MenuFooter = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1164
1164
|
var children = _ref.children,
|
|
1165
1165
|
className = _ref.className,
|
|
1166
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1166
|
+
props = _objectWithoutProperties(_ref, _excluded$Z);
|
|
1167
1167
|
|
|
1168
1168
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuFooter, _extends({}, props, {
|
|
1169
1169
|
className: classNames__default["default"]("c-menu-footer", className),
|
|
@@ -1204,11 +1204,11 @@
|
|
|
1204
1204
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
1205
1205
|
StyledListSeparator.displayName = "StyledListSeparator";
|
|
1206
1206
|
|
|
1207
|
-
var _excluded$
|
|
1207
|
+
var _excluded$Y = ["children", "className"];
|
|
1208
1208
|
var List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1209
1209
|
var children = _ref.children,
|
|
1210
1210
|
className = _ref.className,
|
|
1211
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1211
|
+
props = _objectWithoutProperties(_ref, _excluded$Y);
|
|
1212
1212
|
|
|
1213
1213
|
return /*#__PURE__*/React__default["default"].createElement(StyledList, _extends({}, props, {
|
|
1214
1214
|
className: className,
|
|
@@ -1217,11 +1217,11 @@
|
|
|
1217
1217
|
});
|
|
1218
1218
|
List.displayName = "List";
|
|
1219
1219
|
|
|
1220
|
-
var _excluded$
|
|
1220
|
+
var _excluded$X = ["children", "className"];
|
|
1221
1221
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1222
1222
|
var children = _ref.children,
|
|
1223
1223
|
className = _ref.className,
|
|
1224
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1224
|
+
props = _objectWithoutProperties(_ref, _excluded$X);
|
|
1225
1225
|
|
|
1226
1226
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem, _extends({}, props, {
|
|
1227
1227
|
className: classNames__default["default"]("c-list-item", className),
|
|
@@ -3713,7 +3713,7 @@
|
|
|
3713
3713
|
});
|
|
3714
3714
|
StyledBreadcrumbListItem.displayName = "StyledBreadcrumbListItem";
|
|
3715
3715
|
|
|
3716
|
-
var _excluded$
|
|
3716
|
+
var _excluded$W = ["children", "className", "separator"];
|
|
3717
3717
|
var Breadcrumbs = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
3718
3718
|
var _dimensions$width, _childDimensions$widt;
|
|
3719
3719
|
|
|
@@ -3721,7 +3721,7 @@
|
|
|
3721
3721
|
className = _ref.className,
|
|
3722
3722
|
_ref$separator = _ref.separator,
|
|
3723
3723
|
separator = _ref$separator === void 0 ? "/" : _ref$separator,
|
|
3724
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3724
|
+
rest = _objectWithoutProperties(_ref, _excluded$W);
|
|
3725
3725
|
|
|
3726
3726
|
var internalRef = React.useRef(null);
|
|
3727
3727
|
var listWrapperRef = React.useRef(null);
|
|
@@ -3908,11 +3908,11 @@
|
|
|
3908
3908
|
return props.$isLight && styled.css(["background-color:var(--page-paper-main);box-shadow:var(--shadow-secondary);color:var(--color-theme-700);"]);
|
|
3909
3909
|
});
|
|
3910
3910
|
|
|
3911
|
-
var _excluded$
|
|
3911
|
+
var _excluded$V = ["children"];
|
|
3912
3912
|
|
|
3913
3913
|
var TooltipAnimation = function TooltipAnimation(_ref) {
|
|
3914
3914
|
var children = _ref.children,
|
|
3915
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3915
|
+
props = _objectWithoutProperties(_ref, _excluded$V);
|
|
3916
3916
|
|
|
3917
3917
|
return /*#__PURE__*/React__default["default"].createElement(FromElement, _extends({
|
|
3918
3918
|
timeout: 0
|
|
@@ -3999,12 +3999,12 @@
|
|
|
3999
3999
|
});
|
|
4000
4000
|
Tooltip.displayName = "Tooltip";
|
|
4001
4001
|
|
|
4002
|
-
var _excluded$
|
|
4002
|
+
var _excluded$U = ["weight", "children"];
|
|
4003
4003
|
var Body2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4004
4004
|
var _ref$weight = _ref.weight,
|
|
4005
4005
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
4006
4006
|
children = _ref.children,
|
|
4007
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
4007
|
+
props = _objectWithoutProperties(_ref, _excluded$U);
|
|
4008
4008
|
|
|
4009
4009
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
4010
4010
|
variant: "Body 2",
|
|
@@ -4052,7 +4052,7 @@
|
|
|
4052
4052
|
});
|
|
4053
4053
|
StyledCounterButtonLabel.displayName = "StyledCounterButtonLabel";
|
|
4054
4054
|
|
|
4055
|
-
var _excluded$
|
|
4055
|
+
var _excluded$T = ["label", "icon", "active", "counter", "tooltipText", "onClearAll", "className"];
|
|
4056
4056
|
var CounterButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4057
4057
|
var label = _ref.label,
|
|
4058
4058
|
icon = _ref.icon,
|
|
@@ -4062,7 +4062,7 @@
|
|
|
4062
4062
|
tooltipText = _ref.tooltipText,
|
|
4063
4063
|
onClearAll = _ref.onClearAll,
|
|
4064
4064
|
className = _ref.className,
|
|
4065
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
4065
|
+
args = _objectWithoutProperties(_ref, _excluded$T);
|
|
4066
4066
|
|
|
4067
4067
|
return /*#__PURE__*/React__default["default"].createElement(StyledCounterButtonWrapper, {
|
|
4068
4068
|
className: className
|
|
@@ -4377,7 +4377,7 @@
|
|
|
4377
4377
|
StyledDatePicker.displayName = "StyledDatePicker";
|
|
4378
4378
|
StyledDayPicker.displayName = "StyledDayPicker";
|
|
4379
4379
|
|
|
4380
|
-
var _excluded$
|
|
4380
|
+
var _excluded$S = ["className", "onChange", "onDayClick", "selectedDays", "disabledDays", "selectionMode", "month", "onMonthChange", "dateRequired", "firstDayOfWeek", "fixedWeeks", "modifiers"];
|
|
4381
4381
|
var DatePicker = function DatePicker(_ref) {
|
|
4382
4382
|
var className = _ref.className,
|
|
4383
4383
|
onChange = _ref.onChange,
|
|
@@ -4399,7 +4399,7 @@
|
|
|
4399
4399
|
_ref$fixedWeeks = _ref.fixedWeeks,
|
|
4400
4400
|
fixedWeeks = _ref$fixedWeeks === void 0 ? true : _ref$fixedWeeks,
|
|
4401
4401
|
defaultModifiers = _ref.modifiers,
|
|
4402
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4402
|
+
rest = _objectWithoutProperties(_ref, _excluded$S);
|
|
4403
4403
|
|
|
4404
4404
|
var _useState = React.useState(),
|
|
4405
4405
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -5324,7 +5324,7 @@
|
|
|
5324
5324
|
};
|
|
5325
5325
|
Tbody.displayName = "Tbody";
|
|
5326
5326
|
|
|
5327
|
-
var _excluded$
|
|
5327
|
+
var _excluded$R = ["header", "rows", "className", "sortBy", "sortDirection", "onSortCallback", "theadClass", "noResultsCallback", "groupBy", "groupHead", "isCollapsible", "emptyValue"];
|
|
5328
5328
|
exports.SortDirection = void 0;
|
|
5329
5329
|
|
|
5330
5330
|
(function (SortDirection) {
|
|
@@ -5374,7 +5374,7 @@
|
|
|
5374
5374
|
} : _ref$groupHead,
|
|
5375
5375
|
isCollapsible = _ref.isCollapsible,
|
|
5376
5376
|
emptyValue = _ref.emptyValue,
|
|
5377
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
5377
|
+
args = _objectWithoutProperties(_ref, _excluded$R);
|
|
5378
5378
|
|
|
5379
5379
|
var _useState = React.useState(sortDirection),
|
|
5380
5380
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -5795,7 +5795,7 @@
|
|
|
5795
5795
|
});
|
|
5796
5796
|
StyledPaper.displayName = "StyledPaper";
|
|
5797
5797
|
|
|
5798
|
-
var _excluded$
|
|
5798
|
+
var _excluded$Q = ["children", "className", "type", "hover", "useOptimizedShadow"];
|
|
5799
5799
|
|
|
5800
5800
|
/**
|
|
5801
5801
|
* This is a component description and should sit directly above your component
|
|
@@ -5809,7 +5809,7 @@
|
|
|
5809
5809
|
hover = _ref$hover === void 0 ? false : _ref$hover,
|
|
5810
5810
|
_ref$useOptimizedShad = _ref.useOptimizedShadow,
|
|
5811
5811
|
useOptimizedShadow = _ref$useOptimizedShad === void 0 ? false : _ref$useOptimizedShad,
|
|
5812
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5812
|
+
rest = _objectWithoutProperties(_ref, _excluded$Q);
|
|
5813
5813
|
|
|
5814
5814
|
return /*#__PURE__*/React__default["default"].createElement(StyledPaper, _extends({
|
|
5815
5815
|
className: classNames__default["default"](className, {
|
|
@@ -5863,7 +5863,7 @@
|
|
|
5863
5863
|
});
|
|
5864
5864
|
StyledCard.displayName = "StyledCard";
|
|
5865
5865
|
|
|
5866
|
-
var _excluded$
|
|
5866
|
+
var _excluded$P = ["children", "className", "hoverable", "paperType"];
|
|
5867
5867
|
var Card = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5868
5868
|
var children = _ref.children,
|
|
5869
5869
|
className = _ref.className,
|
|
@@ -5871,7 +5871,7 @@
|
|
|
5871
5871
|
hoverable = _ref$hoverable === void 0 ? false : _ref$hoverable,
|
|
5872
5872
|
_ref$paperType = _ref.paperType,
|
|
5873
5873
|
paperType = _ref$paperType === void 0 ? "paper-2" : _ref$paperType,
|
|
5874
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5874
|
+
rest = _objectWithoutProperties(_ref, _excluded$P);
|
|
5875
5875
|
|
|
5876
5876
|
return /*#__PURE__*/React__default["default"].createElement(StyledCard, _extends({}, rest, {
|
|
5877
5877
|
type: paperType,
|
|
@@ -5883,7 +5883,7 @@
|
|
|
5883
5883
|
});
|
|
5884
5884
|
Card.displayName = "Card";
|
|
5885
5885
|
|
|
5886
|
-
var StyledEntityCard = styled__default["default"](Card).withConfig({
|
|
5886
|
+
var StyledEntityCard$1 = styled__default["default"](Card).withConfig({
|
|
5887
5887
|
displayName: "Styles__StyledEntityCard",
|
|
5888
5888
|
componentId: "sc-3vmxf-0"
|
|
5889
5889
|
})(["padding:12px;line-height:1.375;", " ", ""], function (props) {
|
|
@@ -5891,9 +5891,9 @@
|
|
|
5891
5891
|
}, function (props) {
|
|
5892
5892
|
return props.$renderAs === "grid-item" && styled.css(["display:flex;flex-direction:column;height:250px;width:250px;.card-body{flex-grow:1;}"]);
|
|
5893
5893
|
});
|
|
5894
|
-
StyledEntityCard.displayName = "StyledEntityCard";
|
|
5894
|
+
StyledEntityCard$1.displayName = "StyledEntityCard";
|
|
5895
5895
|
|
|
5896
|
-
var EntityCard = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5896
|
+
var EntityCard$1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5897
5897
|
var _ref$renderAs = _ref.renderAs,
|
|
5898
5898
|
renderAs = _ref$renderAs === void 0 ? "list-item" : _ref$renderAs,
|
|
5899
5899
|
properties = _ref.properties,
|
|
@@ -5940,7 +5940,7 @@
|
|
|
5940
5940
|
return renderProperty(p);
|
|
5941
5941
|
})));
|
|
5942
5942
|
}, []);
|
|
5943
|
-
return /*#__PURE__*/React__default["default"].createElement(StyledEntityCard, {
|
|
5943
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledEntityCard$1, {
|
|
5944
5944
|
ref: ref,
|
|
5945
5945
|
hoverable: true,
|
|
5946
5946
|
className: classNames__default["default"]("entity-card-wrapper", {
|
|
@@ -5951,14 +5951,14 @@
|
|
|
5951
5951
|
$renderAs: renderAs
|
|
5952
5952
|
}, renderAs === "list-item" ? renderAsListItem(properties) : null, renderAs === "grid-item" ? renderAsGridItem(properties) : null);
|
|
5953
5953
|
});
|
|
5954
|
-
EntityCard.displayName = "EntityCard";
|
|
5954
|
+
EntityCard$1.displayName = "EntityCard";
|
|
5955
5955
|
|
|
5956
|
-
var _excluded$
|
|
5956
|
+
var _excluded$O = ["weight", "children"];
|
|
5957
5957
|
var Title1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5958
5958
|
var _ref$weight = _ref.weight,
|
|
5959
5959
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
5960
5960
|
children = _ref.children,
|
|
5961
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5961
|
+
props = _objectWithoutProperties(_ref, _excluded$O);
|
|
5962
5962
|
|
|
5963
5963
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
5964
5964
|
weight: weight,
|
|
@@ -5968,12 +5968,12 @@
|
|
|
5968
5968
|
});
|
|
5969
5969
|
Title1.displayName = "Title1";
|
|
5970
5970
|
|
|
5971
|
-
var _excluded$
|
|
5971
|
+
var _excluded$N = ["weight", "children"];
|
|
5972
5972
|
var Title2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5973
5973
|
var _ref$weight = _ref.weight,
|
|
5974
5974
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
5975
5975
|
children = _ref.children,
|
|
5976
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5976
|
+
props = _objectWithoutProperties(_ref, _excluded$N);
|
|
5977
5977
|
|
|
5978
5978
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
5979
5979
|
weight: weight,
|
|
@@ -5983,10 +5983,10 @@
|
|
|
5983
5983
|
});
|
|
5984
5984
|
Title2.displayName = "Title2";
|
|
5985
5985
|
|
|
5986
|
-
var _excluded$
|
|
5986
|
+
var _excluded$M = ["children"];
|
|
5987
5987
|
var Header2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5988
5988
|
var children = _ref.children,
|
|
5989
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5989
|
+
props = _objectWithoutProperties(_ref, _excluded$M);
|
|
5990
5990
|
|
|
5991
5991
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
5992
5992
|
weight: "bold",
|
|
@@ -5996,10 +5996,10 @@
|
|
|
5996
5996
|
});
|
|
5997
5997
|
Header2.displayName = "Header2";
|
|
5998
5998
|
|
|
5999
|
-
var _excluded$
|
|
5999
|
+
var _excluded$L = ["children"];
|
|
6000
6000
|
var Header3 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6001
6001
|
var children = _ref.children,
|
|
6002
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6002
|
+
props = _objectWithoutProperties(_ref, _excluded$L);
|
|
6003
6003
|
|
|
6004
6004
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
6005
6005
|
weight: "bold",
|
|
@@ -6009,12 +6009,12 @@
|
|
|
6009
6009
|
});
|
|
6010
6010
|
Header3.displayName = "Header3";
|
|
6011
6011
|
|
|
6012
|
-
var _excluded$
|
|
6012
|
+
var _excluded$K = ["weight", "children"];
|
|
6013
6013
|
var Body1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6014
6014
|
var _ref$weight = _ref.weight,
|
|
6015
6015
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
6016
6016
|
children = _ref.children,
|
|
6017
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6017
|
+
props = _objectWithoutProperties(_ref, _excluded$K);
|
|
6018
6018
|
|
|
6019
6019
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
6020
6020
|
variant: "Body 1",
|
|
@@ -6024,12 +6024,12 @@
|
|
|
6024
6024
|
});
|
|
6025
6025
|
Body1.displayName = "Body1";
|
|
6026
6026
|
|
|
6027
|
-
var _excluded$
|
|
6027
|
+
var _excluded$J = ["weight", "children"];
|
|
6028
6028
|
var Caption1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6029
6029
|
var _ref$weight = _ref.weight,
|
|
6030
6030
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
6031
6031
|
children = _ref.children,
|
|
6032
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6032
|
+
props = _objectWithoutProperties(_ref, _excluded$J);
|
|
6033
6033
|
|
|
6034
6034
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
6035
6035
|
variant: "Caption 1",
|
|
@@ -6039,12 +6039,12 @@
|
|
|
6039
6039
|
});
|
|
6040
6040
|
Caption1.displayName = "Caption1";
|
|
6041
6041
|
|
|
6042
|
-
var _excluded$
|
|
6042
|
+
var _excluded$I = ["weight", "children"];
|
|
6043
6043
|
var Caption2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6044
6044
|
var _ref$weight = _ref.weight,
|
|
6045
6045
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
6046
6046
|
children = _ref.children,
|
|
6047
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
6047
|
+
props = _objectWithoutProperties(_ref, _excluded$I);
|
|
6048
6048
|
|
|
6049
6049
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
6050
6050
|
variant: "Caption 2",
|
|
@@ -6163,7 +6163,7 @@
|
|
|
6163
6163
|
"borderRadius": "9999px"
|
|
6164
6164
|
});
|
|
6165
6165
|
|
|
6166
|
-
var _excluded$
|
|
6166
|
+
var _excluded$H = ["url", "alt", "size", "className"];
|
|
6167
6167
|
var Avatar = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6168
6168
|
var url = _ref.url,
|
|
6169
6169
|
_ref$alt = _ref.alt,
|
|
@@ -6171,7 +6171,7 @@
|
|
|
6171
6171
|
_ref$size = _ref.size,
|
|
6172
6172
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
6173
6173
|
className = _ref.className,
|
|
6174
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6174
|
+
rest = _objectWithoutProperties(_ref, _excluded$H);
|
|
6175
6175
|
|
|
6176
6176
|
return /*#__PURE__*/React__default["default"].createElement(StyledAvatar, _extends({}, rest, {
|
|
6177
6177
|
ref: ref,
|
|
@@ -6193,13 +6193,13 @@
|
|
|
6193
6193
|
return props.$color && styled.css(["background-color:", ";"], props.$color);
|
|
6194
6194
|
});
|
|
6195
6195
|
|
|
6196
|
-
var _excluded$
|
|
6196
|
+
var _excluded$G = ["color", "size", "className"];
|
|
6197
6197
|
var Dot = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6198
6198
|
var color = _ref.color,
|
|
6199
6199
|
_ref$size = _ref.size,
|
|
6200
6200
|
size = _ref$size === void 0 ? 8 : _ref$size,
|
|
6201
6201
|
className = _ref.className,
|
|
6202
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6202
|
+
rest = _objectWithoutProperties(_ref, _excluded$G);
|
|
6203
6203
|
|
|
6204
6204
|
return /*#__PURE__*/React__default["default"].createElement(StyledDot, _extends({
|
|
6205
6205
|
className: classNames__default["default"]("c-dot", className),
|
|
@@ -6237,7 +6237,7 @@
|
|
|
6237
6237
|
});
|
|
6238
6238
|
StyledTagText.displayName = "StyledTagText";
|
|
6239
6239
|
|
|
6240
|
-
var _excluded$
|
|
6240
|
+
var _excluded$F = ["name", "color", "showText", "showDot", "className"];
|
|
6241
6241
|
var Tag = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6242
6242
|
var name = _ref.name,
|
|
6243
6243
|
color = _ref.color,
|
|
@@ -6246,7 +6246,7 @@
|
|
|
6246
6246
|
_ref$showDot = _ref.showDot,
|
|
6247
6247
|
showDot = _ref$showDot === void 0 ? true : _ref$showDot,
|
|
6248
6248
|
className = _ref.className,
|
|
6249
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6249
|
+
rest = _objectWithoutProperties(_ref, _excluded$F);
|
|
6250
6250
|
|
|
6251
6251
|
return /*#__PURE__*/React__default["default"].createElement(StyledTag, _extends({
|
|
6252
6252
|
className: classNames__default["default"]("c-tag", className),
|
|
@@ -6266,10 +6266,10 @@
|
|
|
6266
6266
|
componentId: "sc-x4ge7a-0"
|
|
6267
6267
|
})(["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);
|
|
6268
6268
|
|
|
6269
|
-
var _excluded$
|
|
6269
|
+
var _excluded$E = ["className"];
|
|
6270
6270
|
var LinearLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6271
6271
|
var className = _ref.className,
|
|
6272
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6272
|
+
rest = _objectWithoutProperties(_ref, _excluded$E);
|
|
6273
6273
|
|
|
6274
6274
|
return /*#__PURE__*/React__default["default"].createElement(StyledLinearLoader, _extends({
|
|
6275
6275
|
ref: ref,
|
|
@@ -6284,10 +6284,10 @@
|
|
|
6284
6284
|
componentId: "sc-1f35d5h-0"
|
|
6285
6285
|
})(["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);
|
|
6286
6286
|
|
|
6287
|
-
var _excluded$
|
|
6287
|
+
var _excluded$D = ["className"];
|
|
6288
6288
|
var DotsLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6289
6289
|
var className = _ref.className,
|
|
6290
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6290
|
+
rest = _objectWithoutProperties(_ref, _excluded$D);
|
|
6291
6291
|
|
|
6292
6292
|
return /*#__PURE__*/React__default["default"].createElement(StyledDotsLoader, _extends({
|
|
6293
6293
|
ref: ref,
|
|
@@ -6310,7 +6310,7 @@
|
|
|
6310
6310
|
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);
|
|
6311
6311
|
});
|
|
6312
6312
|
|
|
6313
|
-
var _excluded$
|
|
6313
|
+
var _excluded$C = ["radius", "stroke", "activeStrokeColor", "inactiveStrokeColor", "activeColorPercentage", "rotateDurationInSeconds", "className"];
|
|
6314
6314
|
var SpinnerLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6315
6315
|
var _ref$radius = _ref.radius,
|
|
6316
6316
|
radius = _ref$radius === void 0 ? 10 : _ref$radius,
|
|
@@ -6325,7 +6325,7 @@
|
|
|
6325
6325
|
_ref$rotateDurationIn = _ref.rotateDurationInSeconds,
|
|
6326
6326
|
rotateDurationInSeconds = _ref$rotateDurationIn === void 0 ? 0.75 : _ref$rotateDurationIn,
|
|
6327
6327
|
className = _ref.className,
|
|
6328
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6328
|
+
rest = _objectWithoutProperties(_ref, _excluded$C);
|
|
6329
6329
|
|
|
6330
6330
|
return /*#__PURE__*/React__default["default"].createElement(StyledSpinnerLoader, _extends({
|
|
6331
6331
|
ref: ref,
|
|
@@ -6455,7 +6455,7 @@
|
|
|
6455
6455
|
}, StyledInput$1, StyledLabel);
|
|
6456
6456
|
StyledCheckbox$1.displayName = "StyledCheckbox";
|
|
6457
6457
|
|
|
6458
|
-
var _excluded$
|
|
6458
|
+
var _excluded$B = ["className", "hover", "id"];
|
|
6459
6459
|
|
|
6460
6460
|
/**
|
|
6461
6461
|
* Checkbox component
|
|
@@ -6465,7 +6465,7 @@
|
|
|
6465
6465
|
hover = _ref.hover,
|
|
6466
6466
|
_ref$id = _ref.id,
|
|
6467
6467
|
id = _ref$id === void 0 ? "checkbox" : _ref$id,
|
|
6468
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6468
|
+
rest = _objectWithoutProperties(_ref, _excluded$B);
|
|
6469
6469
|
|
|
6470
6470
|
return /*#__PURE__*/React__default["default"].createElement(StyledCheckbox$1, {
|
|
6471
6471
|
className: classNames__default["default"]("c-checkbox", {
|
|
@@ -6655,7 +6655,7 @@
|
|
|
6655
6655
|
StyledScrollShadowLeft.displayName = "StyledScrollShadowLeft";
|
|
6656
6656
|
StyledScrollShadowRight.displayName = "StyledScrollShadowRight";
|
|
6657
6657
|
|
|
6658
|
-
var _excluded$
|
|
6658
|
+
var _excluded$A = ["children", "className", "disableVertical", "disableHorizontal", "invertHorizontal", "invertVertical", "innerColor", "outerColor"];
|
|
6659
6659
|
var ScrollShadow = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6660
6660
|
var children = _ref.children,
|
|
6661
6661
|
className = _ref.className,
|
|
@@ -6669,7 +6669,7 @@
|
|
|
6669
6669
|
invertVertical = _ref$invertVertical === void 0 ? false : _ref$invertVertical,
|
|
6670
6670
|
innerColor = _ref.innerColor,
|
|
6671
6671
|
outerColor = _ref.outerColor,
|
|
6672
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6672
|
+
rest = _objectWithoutProperties(_ref, _excluded$A);
|
|
6673
6673
|
|
|
6674
6674
|
var _useState = React.useState({
|
|
6675
6675
|
top: 0,
|
|
@@ -6799,7 +6799,7 @@
|
|
|
6799
6799
|
return height;
|
|
6800
6800
|
};
|
|
6801
6801
|
|
|
6802
|
-
var _excluded$
|
|
6802
|
+
var _excluded$z = ["as", "className", "invert", "style"];
|
|
6803
6803
|
var ScrollElement = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
6804
6804
|
var _ref$as = _ref.as,
|
|
6805
6805
|
as = _ref$as === void 0 ? "div" : _ref$as,
|
|
@@ -6807,7 +6807,7 @@
|
|
|
6807
6807
|
_ref$invert = _ref.invert,
|
|
6808
6808
|
invert = _ref$invert === void 0 ? false : _ref$invert,
|
|
6809
6809
|
style = _ref.style,
|
|
6810
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
6810
|
+
rest = _objectWithoutProperties(_ref, _excluded$z);
|
|
6811
6811
|
|
|
6812
6812
|
var internalRef = useInitScrollRef(null, invert);
|
|
6813
6813
|
var handleRef = useForkRef(internalRef, ref);
|
|
@@ -7314,7 +7314,7 @@
|
|
|
7314
7314
|
});
|
|
7315
7315
|
StyledInput.displayName = "StyledInput";
|
|
7316
7316
|
|
|
7317
|
-
var _excluded$
|
|
7317
|
+
var _excluded$y = ["className", "style", "type", "disabled", "size", "invalid", "startAdornment", "endAdornment", "wrapRef"];
|
|
7318
7318
|
var Input = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7319
7319
|
var _ref$className = _ref.className,
|
|
7320
7320
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
@@ -7330,7 +7330,7 @@
|
|
|
7330
7330
|
startAdornment = _ref.startAdornment,
|
|
7331
7331
|
endAdornment = _ref.endAdornment,
|
|
7332
7332
|
wrapRef = _ref.wrapRef,
|
|
7333
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7333
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
7334
7334
|
|
|
7335
7335
|
var intInputRef = React.useRef(null);
|
|
7336
7336
|
var handleRef = useForkRef(ref, intInputRef);
|
|
@@ -7383,14 +7383,14 @@
|
|
|
7383
7383
|
}, StyledRadioLabel);
|
|
7384
7384
|
StyledRadioButton$1.displayName = "StyledRadioButton";
|
|
7385
7385
|
|
|
7386
|
-
var _excluded$
|
|
7386
|
+
var _excluded$x = ["className", "id", "hover"];
|
|
7387
7387
|
var RadioButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7388
7388
|
var _ref$className = _ref.className,
|
|
7389
7389
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
7390
7390
|
_ref$id = _ref.id,
|
|
7391
7391
|
id = _ref$id === void 0 ? "radio" : _ref$id,
|
|
7392
7392
|
hover = _ref.hover,
|
|
7393
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
7393
|
+
props = _objectWithoutProperties(_ref, _excluded$x);
|
|
7394
7394
|
|
|
7395
7395
|
return /*#__PURE__*/React__default["default"].createElement(StyledRadioButton$1, {
|
|
7396
7396
|
className: classNames__default["default"]("c-radio-btn", {
|
|
@@ -7483,7 +7483,7 @@
|
|
|
7483
7483
|
};
|
|
7484
7484
|
OptionContent.displayName = "OptionContent";
|
|
7485
7485
|
|
|
7486
|
-
var _excluded$
|
|
7486
|
+
var _excluded$w = ["type", "mode", "target", "options", "selected", "position", "onChange", "actionIcon", "actionLabel", "placeholder", "emptyAction", "disableSearch", "forceCloseMenu", "selectClassName", "keepSameOptionsOrder", "onSelectOpen", "onSelectClose", "renderOption", "handleDefaultOptionChange", "preselectDefaultValue"];
|
|
7487
7487
|
var Select = function Select(_ref) {
|
|
7488
7488
|
var _ref$type = _ref.type,
|
|
7489
7489
|
type = _ref$type === void 0 ? "single" : _ref$type,
|
|
@@ -7517,7 +7517,7 @@
|
|
|
7517
7517
|
handleDefaultOptionChange = _ref.handleDefaultOptionChange,
|
|
7518
7518
|
_ref$preselectDefault = _ref.preselectDefaultValue,
|
|
7519
7519
|
preselectDefaultValue = _ref$preselectDefault === void 0 ? type === "single" : _ref$preselectDefault,
|
|
7520
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
7520
|
+
prop = _objectWithoutProperties(_ref, _excluded$w);
|
|
7521
7521
|
|
|
7522
7522
|
var _useState = React.useState(),
|
|
7523
7523
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -7776,7 +7776,7 @@
|
|
|
7776
7776
|
});
|
|
7777
7777
|
StyledNavAsMoreTarget.displayName = "StyledNavAsMoreTarget";
|
|
7778
7778
|
|
|
7779
|
-
var _excluded$
|
|
7779
|
+
var _excluded$v = ["children", "active", "disabled", "className", "role"];
|
|
7780
7780
|
var Item = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
7781
7781
|
var children = _ref.children,
|
|
7782
7782
|
_ref$active = _ref.active,
|
|
@@ -7785,7 +7785,7 @@
|
|
|
7785
7785
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7786
7786
|
className = _ref.className,
|
|
7787
7787
|
role = _ref.role,
|
|
7788
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7788
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
7789
7789
|
|
|
7790
7790
|
return /*#__PURE__*/React__default["default"].createElement(StyledNavListItem, _extends({
|
|
7791
7791
|
className: classNames__default["default"]("c-nav__item", {
|
|
@@ -7827,11 +7827,11 @@
|
|
|
7827
7827
|
});
|
|
7828
7828
|
StyledExpandSingle.displayName = "StyledExpandSingle";
|
|
7829
7829
|
|
|
7830
|
-
var _excluded$
|
|
7830
|
+
var _excluded$u = ["expanded"];
|
|
7831
7831
|
var ExpandSingle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7832
7832
|
var _ref$expanded = _ref.expanded,
|
|
7833
7833
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
7834
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7834
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
7835
7835
|
|
|
7836
7836
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpandSingle, _extends({
|
|
7837
7837
|
ref: ref,
|
|
@@ -8144,7 +8144,7 @@
|
|
|
8144
8144
|
};
|
|
8145
8145
|
Nav.displayName = "Nav";
|
|
8146
8146
|
|
|
8147
|
-
var _excluded$
|
|
8147
|
+
var _excluded$t = ["children", "as", "disablePointerEvents"];
|
|
8148
8148
|
var InputAdornmentBase = styled__default["default"].div.withConfig({
|
|
8149
8149
|
displayName: "InputAdornment__InputAdornmentBase",
|
|
8150
8150
|
componentId: "sc-1xfjx1z-0"
|
|
@@ -8161,7 +8161,7 @@
|
|
|
8161
8161
|
var children = _ref.children,
|
|
8162
8162
|
as = _ref.as,
|
|
8163
8163
|
disablePointerEvents = _ref.disablePointerEvents,
|
|
8164
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8164
|
+
rest = _objectWithoutProperties(_ref, _excluded$t);
|
|
8165
8165
|
|
|
8166
8166
|
var Component = as || "div";
|
|
8167
8167
|
return /*#__PURE__*/React__default["default"].createElement(InputAdornmentBase, _extends({}, rest, {
|
|
@@ -8172,11 +8172,11 @@
|
|
|
8172
8172
|
});
|
|
8173
8173
|
InputAdornment.displayName = "InputAdornment";
|
|
8174
8174
|
|
|
8175
|
-
var _excluded$
|
|
8175
|
+
var _excluded$s = ["expanded"];
|
|
8176
8176
|
var ExpandAll = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
8177
8177
|
var _ref$expanded = _ref.expanded,
|
|
8178
8178
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
8179
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8179
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
8180
8180
|
|
|
8181
8181
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpand, _extends({
|
|
8182
8182
|
ref: ref,
|
|
@@ -8383,14 +8383,14 @@
|
|
|
8383
8383
|
});
|
|
8384
8384
|
StyledTextarea.displayName = "StyledTextarea";
|
|
8385
8385
|
|
|
8386
|
-
var _excluded$
|
|
8386
|
+
var _excluded$r = ["className", "disabled", "invalid"];
|
|
8387
8387
|
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
8388
8388
|
var className = _ref.className,
|
|
8389
8389
|
_ref$disabled = _ref.disabled,
|
|
8390
8390
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
8391
8391
|
_ref$invalid = _ref.invalid,
|
|
8392
8392
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
8393
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8393
|
+
rest = _objectWithoutProperties(_ref, _excluded$r);
|
|
8394
8394
|
|
|
8395
8395
|
return /*#__PURE__*/React__default["default"].createElement(StyledTextarea, _extends({}, rest, {
|
|
8396
8396
|
$invalid: invalid,
|
|
@@ -8425,7 +8425,7 @@
|
|
|
8425
8425
|
function () {});
|
|
8426
8426
|
}
|
|
8427
8427
|
|
|
8428
|
-
var _excluded$
|
|
8428
|
+
var _excluded$q = ["children", "disableFocusLock", "disableScrollLock", "disableBackgroundClick", "disableBackgroundColor", "preventClickEventBubbling", "open", "onClose"];
|
|
8429
8429
|
|
|
8430
8430
|
var getHasTransition = function getHasTransition(children) {
|
|
8431
8431
|
return children.props ? Object.prototype.hasOwnProperty.call(children.props, "in") : false;
|
|
@@ -8446,7 +8446,7 @@
|
|
|
8446
8446
|
_ref$open = _ref.open,
|
|
8447
8447
|
defaultOpen = _ref$open === void 0 ? false : _ref$open,
|
|
8448
8448
|
onClose = _ref.onClose,
|
|
8449
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8449
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
8450
8450
|
|
|
8451
8451
|
var _useState = React.useState(defaultOpen),
|
|
8452
8452
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -8586,7 +8586,7 @@
|
|
|
8586
8586
|
});
|
|
8587
8587
|
StyledCssTransition.displayName = "StyledCssTransition";
|
|
8588
8588
|
|
|
8589
|
-
var _excluded$
|
|
8589
|
+
var _excluded$p = ["children", "onClose", "controls", "open", "animation", "position", "mode", "disableFocusLock", "disableScrollLock", "disableBackgroundColor", "bodyStyle", "bodyClassName", "disableBackgroundClick", "preventClickEventBubbling"];
|
|
8590
8590
|
var Sheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
8591
8591
|
var children = _ref.children,
|
|
8592
8592
|
onClose = _ref.onClose,
|
|
@@ -8612,7 +8612,7 @@
|
|
|
8612
8612
|
disableBackgroundClick = _ref$disableBackgroun2 === void 0 ? false : _ref$disableBackgroun2,
|
|
8613
8613
|
_ref$preventClickEven = _ref.preventClickEventBubbling,
|
|
8614
8614
|
preventClickEventBubbling = _ref$preventClickEven === void 0 ? false : _ref$preventClickEven,
|
|
8615
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8615
|
+
rest = _objectWithoutProperties(_ref, _excluded$p);
|
|
8616
8616
|
|
|
8617
8617
|
var _useState = React.useState(defaultOpen),
|
|
8618
8618
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -8711,13 +8711,13 @@
|
|
|
8711
8711
|
});
|
|
8712
8712
|
StyledHeader.displayName = "StyledHeader";
|
|
8713
8713
|
|
|
8714
|
-
var _excluded$
|
|
8714
|
+
var _excluded$o = ["className", "size", "children"];
|
|
8715
8715
|
var Header = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
8716
8716
|
var className = _ref.className,
|
|
8717
8717
|
_ref$size = _ref.size,
|
|
8718
8718
|
size = _ref$size === void 0 ? "small" : _ref$size,
|
|
8719
8719
|
children = _ref.children,
|
|
8720
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8720
|
+
rest = _objectWithoutProperties(_ref, _excluded$o);
|
|
8721
8721
|
|
|
8722
8722
|
return /*#__PURE__*/React__default["default"].createElement(StyledHeader, _extends({
|
|
8723
8723
|
type: "paper-2",
|
|
@@ -8734,7 +8734,7 @@
|
|
|
8734
8734
|
})(["white-space:pre-wrap;overflow-wrap:break-word;resize:none;"]);
|
|
8735
8735
|
StyledAutoResizeTextarea.displayName = "StyledAutoResizeTextarea";
|
|
8736
8736
|
|
|
8737
|
-
var _excluded$
|
|
8737
|
+
var _excluded$n = ["minRows", "maxRows", "lineHeight", "onChange", "className", "preventNewRowOnEnter", "cursorAtTextEnd", "onKeyDown", "value"];
|
|
8738
8738
|
var AutoResizeTextarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
8739
8739
|
var _ref$minRows = _ref.minRows,
|
|
8740
8740
|
minRows = _ref$minRows === void 0 ? 1 : _ref$minRows,
|
|
@@ -8750,7 +8750,7 @@
|
|
|
8750
8750
|
cursorAtTextEnd = _ref$cursorAtTextEnd === void 0 ? false : _ref$cursorAtTextEnd,
|
|
8751
8751
|
onKeyDown = _ref.onKeyDown,
|
|
8752
8752
|
value = _ref.value,
|
|
8753
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8753
|
+
rest = _objectWithoutProperties(_ref, _excluded$n);
|
|
8754
8754
|
|
|
8755
8755
|
var innerRef = React.useRef(null);
|
|
8756
8756
|
|
|
@@ -9041,7 +9041,7 @@
|
|
|
9041
9041
|
});
|
|
9042
9042
|
StyledChoose.displayName = "StyledChoose";
|
|
9043
9043
|
|
|
9044
|
-
var _excluded$
|
|
9044
|
+
var _excluded$m = ["children", "disabled", "active", "className"];
|
|
9045
9045
|
|
|
9046
9046
|
/**
|
|
9047
9047
|
* Choose component
|
|
@@ -9053,7 +9053,7 @@
|
|
|
9053
9053
|
_ref$active = _ref.active,
|
|
9054
9054
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
9055
9055
|
className = _ref.className,
|
|
9056
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
9056
|
+
args = _objectWithoutProperties(_ref, _excluded$m);
|
|
9057
9057
|
|
|
9058
9058
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose, _extends({
|
|
9059
9059
|
disabled: disabled,
|
|
@@ -9146,7 +9146,7 @@
|
|
|
9146
9146
|
StyledLinkElements.displayName = "StyledLinkElements";
|
|
9147
9147
|
StyledLink.displayName = "StyledLink";
|
|
9148
9148
|
|
|
9149
|
-
var _excluded$
|
|
9149
|
+
var _excluded$l = ["children", "className"];
|
|
9150
9150
|
|
|
9151
9151
|
/**
|
|
9152
9152
|
* Back link component
|
|
@@ -9154,7 +9154,7 @@
|
|
|
9154
9154
|
var BackLink = function BackLink(_ref) {
|
|
9155
9155
|
var children = _ref.children,
|
|
9156
9156
|
className = _ref.className,
|
|
9157
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
9157
|
+
args = _objectWithoutProperties(_ref, _excluded$l);
|
|
9158
9158
|
|
|
9159
9159
|
return /*#__PURE__*/React__default["default"].createElement(StyledBackLink, _extends({
|
|
9160
9160
|
className: classNames__default["default"]("c-back-link", className)
|
|
@@ -9162,7 +9162,7 @@
|
|
|
9162
9162
|
};
|
|
9163
9163
|
BackLink.displayName = "BackLink";
|
|
9164
9164
|
|
|
9165
|
-
var _excluded$
|
|
9165
|
+
var _excluded$k = ["children", "variant", "size", "disabled", "className"];
|
|
9166
9166
|
|
|
9167
9167
|
/**
|
|
9168
9168
|
* Link component
|
|
@@ -9175,7 +9175,7 @@
|
|
|
9175
9175
|
_ref$disabled = _ref.disabled,
|
|
9176
9176
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
9177
9177
|
className = _ref.className,
|
|
9178
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
9178
|
+
args = _objectWithoutProperties(_ref, _excluded$k);
|
|
9179
9179
|
|
|
9180
9180
|
return /*#__PURE__*/React__default["default"].createElement(StyledLink, _extends({
|
|
9181
9181
|
disabled: disabled,
|
|
@@ -9320,11 +9320,11 @@
|
|
|
9320
9320
|
});
|
|
9321
9321
|
Dialog.displayName = "Dialog";
|
|
9322
9322
|
|
|
9323
|
-
var _excluded$
|
|
9323
|
+
var _excluded$j = ["className", "children"];
|
|
9324
9324
|
var DialogContent = function DialogContent(_ref) {
|
|
9325
9325
|
var className = _ref.className,
|
|
9326
9326
|
children = _ref.children,
|
|
9327
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9327
|
+
rest = _objectWithoutProperties(_ref, _excluded$j);
|
|
9328
9328
|
|
|
9329
9329
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogContent, _extends({
|
|
9330
9330
|
className: classNames__default["default"]("c-dialog-content", className)
|
|
@@ -9340,13 +9340,13 @@
|
|
|
9340
9340
|
};
|
|
9341
9341
|
DialogContentDivider.displayName = "DialogContentDivider";
|
|
9342
9342
|
|
|
9343
|
-
var _excluded$
|
|
9343
|
+
var _excluded$i = ["children", "className", "disableDefaultHeading"];
|
|
9344
9344
|
var DialogTitle = function DialogTitle(_ref) {
|
|
9345
9345
|
var children = _ref.children,
|
|
9346
9346
|
className = _ref.className,
|
|
9347
9347
|
_ref$disableDefaultHe = _ref.disableDefaultHeading,
|
|
9348
9348
|
disableDefaultHeading = _ref$disableDefaultHe === void 0 ? false : _ref$disableDefaultHe,
|
|
9349
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9349
|
+
rest = _objectWithoutProperties(_ref, _excluded$i);
|
|
9350
9350
|
|
|
9351
9351
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogTitle, _extends({
|
|
9352
9352
|
className: classNames__default["default"]("c-dialog-title-wrapper", className)
|
|
@@ -9354,11 +9354,11 @@
|
|
|
9354
9354
|
};
|
|
9355
9355
|
DialogTitle.displayName = "DialogTitle";
|
|
9356
9356
|
|
|
9357
|
-
var _excluded$
|
|
9357
|
+
var _excluded$h = ["className", "children"];
|
|
9358
9358
|
var DialogActions = function DialogActions(_ref) {
|
|
9359
9359
|
var className = _ref.className,
|
|
9360
9360
|
children = _ref.children,
|
|
9361
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9361
|
+
rest = _objectWithoutProperties(_ref, _excluded$h);
|
|
9362
9362
|
|
|
9363
9363
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogActions, _extends({
|
|
9364
9364
|
className: classNames__default["default"]("c-dialog-actions", className)
|
|
@@ -9568,7 +9568,7 @@
|
|
|
9568
9568
|
});
|
|
9569
9569
|
StyledPressed.displayName = "StyledPressed";
|
|
9570
9570
|
|
|
9571
|
-
var _excluded$
|
|
9571
|
+
var _excluded$g = ["children", "active", "className"];
|
|
9572
9572
|
|
|
9573
9573
|
/**
|
|
9574
9574
|
* Pressed wrapper for button component
|
|
@@ -9578,7 +9578,7 @@
|
|
|
9578
9578
|
_ref$active = _ref.active,
|
|
9579
9579
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
9580
9580
|
className = _ref.className,
|
|
9581
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
9581
|
+
args = _objectWithoutProperties(_ref, _excluded$g);
|
|
9582
9582
|
|
|
9583
9583
|
return /*#__PURE__*/React__default["default"].createElement(StyledPressed, _extends({
|
|
9584
9584
|
active: active,
|
|
@@ -10064,7 +10064,7 @@
|
|
|
10064
10064
|
StyledToastMessage.displayName = "StyledToastMessage";
|
|
10065
10065
|
StyledCloseSmallIcon.displayName = "StyledCloseSmallIcon";
|
|
10066
10066
|
|
|
10067
|
-
var _excluded$
|
|
10067
|
+
var _excluded$f = ["text", "type", "onClose", "dismissible", "dropShadow", "timeout"];
|
|
10068
10068
|
var ToastMessage = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10069
10069
|
var text = _ref.text,
|
|
10070
10070
|
type = _ref.type,
|
|
@@ -10075,7 +10075,7 @@
|
|
|
10075
10075
|
dropShadow = _ref$dropShadow === void 0 ? false : _ref$dropShadow,
|
|
10076
10076
|
_ref$timeout = _ref.timeout,
|
|
10077
10077
|
timeout = _ref$timeout === void 0 ? 0 : _ref$timeout,
|
|
10078
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10078
|
+
rest = _objectWithoutProperties(_ref, _excluded$f);
|
|
10079
10079
|
|
|
10080
10080
|
var handleOnClose = React.useCallback(function () {
|
|
10081
10081
|
if (typeof onClose === "function") {
|
|
@@ -10100,7 +10100,7 @@
|
|
|
10100
10100
|
});
|
|
10101
10101
|
ToastMessage.displayName = "ToastMessage";
|
|
10102
10102
|
|
|
10103
|
-
var _excluded$
|
|
10103
|
+
var _excluded$e = ["in", "children", "style", "timeout"];
|
|
10104
10104
|
|
|
10105
10105
|
var defaultStyle$1 = function defaultStyle(duration) {
|
|
10106
10106
|
return {
|
|
@@ -10130,7 +10130,7 @@
|
|
|
10130
10130
|
style = _ref.style,
|
|
10131
10131
|
_ref$timeout = _ref.timeout,
|
|
10132
10132
|
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout,
|
|
10133
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10133
|
+
rest = _objectWithoutProperties(_ref, _excluded$e);
|
|
10134
10134
|
|
|
10135
10135
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
10136
10136
|
appear: true,
|
|
@@ -10146,7 +10146,7 @@
|
|
|
10146
10146
|
};
|
|
10147
10147
|
Fade.displayName = "Fade";
|
|
10148
10148
|
|
|
10149
|
-
var _excluded$
|
|
10149
|
+
var _excluded$d = ["in", "children", "style", "timeout", "initialDirection"];
|
|
10150
10150
|
var Slide = function Slide(_ref) {
|
|
10151
10151
|
var _ref$in = _ref.in,
|
|
10152
10152
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
@@ -10156,7 +10156,7 @@
|
|
|
10156
10156
|
timeout = _ref$timeout === void 0 ? 300 : _ref$timeout,
|
|
10157
10157
|
_ref$initialDirection = _ref.initialDirection,
|
|
10158
10158
|
initialDirection = _ref$initialDirection === void 0 ? "left" : _ref$initialDirection,
|
|
10159
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10159
|
+
rest = _objectWithoutProperties(_ref, _excluded$d);
|
|
10160
10160
|
|
|
10161
10161
|
var directionSign;
|
|
10162
10162
|
|
|
@@ -10216,12 +10216,12 @@
|
|
|
10216
10216
|
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;}"]);
|
|
10217
10217
|
});
|
|
10218
10218
|
|
|
10219
|
-
var _excluded$
|
|
10219
|
+
var _excluded$c = ["children", "direction"];
|
|
10220
10220
|
var SlideLeftRightTransition = function SlideLeftRightTransition(_ref) {
|
|
10221
10221
|
var children = _ref.children,
|
|
10222
10222
|
_ref$direction = _ref.direction,
|
|
10223
10223
|
direction = _ref$direction === void 0 ? "left" : _ref$direction,
|
|
10224
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
10224
|
+
props = _objectWithoutProperties(_ref, _excluded$c);
|
|
10225
10225
|
|
|
10226
10226
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.CSSTransition, _extends({
|
|
10227
10227
|
timeout: 200,
|
|
@@ -10265,7 +10265,7 @@
|
|
|
10265
10265
|
};
|
|
10266
10266
|
ResizeTransition.displayName = "ResizeTransition";
|
|
10267
10267
|
|
|
10268
|
-
var _excluded$
|
|
10268
|
+
var _excluded$b = ["in", "children", "style", "timeout"];
|
|
10269
10269
|
|
|
10270
10270
|
var defaultStyle = function defaultStyle(duration) {
|
|
10271
10271
|
return {
|
|
@@ -10301,7 +10301,7 @@
|
|
|
10301
10301
|
style = _ref.style,
|
|
10302
10302
|
_ref$timeout = _ref.timeout,
|
|
10303
10303
|
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout,
|
|
10304
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10304
|
+
rest = _objectWithoutProperties(_ref, _excluded$b);
|
|
10305
10305
|
|
|
10306
10306
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
10307
10307
|
appear: true,
|
|
@@ -10376,7 +10376,7 @@
|
|
|
10376
10376
|
});
|
|
10377
10377
|
StyledValueButton.displayName = "StyledValueButton";
|
|
10378
10378
|
|
|
10379
|
-
var _excluded$
|
|
10379
|
+
var _excluded$a = ["active", "alwaysShowIcon", "icon", "label", "value"];
|
|
10380
10380
|
var ValueButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10381
10381
|
var _ref$active = _ref.active,
|
|
10382
10382
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
@@ -10385,7 +10385,7 @@
|
|
|
10385
10385
|
icon = _ref.icon,
|
|
10386
10386
|
label = _ref.label,
|
|
10387
10387
|
value = _ref.value,
|
|
10388
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
10388
|
+
args = _objectWithoutProperties(_ref, _excluded$a);
|
|
10389
10389
|
|
|
10390
10390
|
return /*#__PURE__*/React__default["default"].createElement(StyledValueButton, _extends({
|
|
10391
10391
|
className: "c-value-button"
|
|
@@ -10415,12 +10415,12 @@
|
|
|
10415
10415
|
})(["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;}"]);
|
|
10416
10416
|
StyledButton.displayName = "StyledButton";
|
|
10417
10417
|
|
|
10418
|
-
var _excluded$
|
|
10418
|
+
var _excluded$9 = ["children", "type"];
|
|
10419
10419
|
var Trigger = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10420
10420
|
var children = _ref.children,
|
|
10421
10421
|
_ref$type = _ref.type,
|
|
10422
10422
|
type = _ref$type === void 0 ? "button" : _ref$type,
|
|
10423
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10423
|
+
rest = _objectWithoutProperties(_ref, _excluded$9);
|
|
10424
10424
|
|
|
10425
10425
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton, _extends({
|
|
10426
10426
|
ref: ref,
|
|
@@ -10464,7 +10464,7 @@
|
|
|
10464
10464
|
})(["transform:rotate(180deg);margin-left:8px;flex-shrink:0;"]);
|
|
10465
10465
|
StyledCaretIcon.displayName = "StyledCaretIcon";
|
|
10466
10466
|
|
|
10467
|
-
var _excluded$
|
|
10467
|
+
var _excluded$8 = ["children", "type", "size", "invalid", "endAdornment"];
|
|
10468
10468
|
var SelectTrigger = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10469
10469
|
var children = _ref.children,
|
|
10470
10470
|
_ref$type = _ref.type,
|
|
@@ -10474,7 +10474,7 @@
|
|
|
10474
10474
|
_ref$invalid = _ref.invalid,
|
|
10475
10475
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
10476
10476
|
endAdornment = _ref.endAdornment,
|
|
10477
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10477
|
+
rest = _objectWithoutProperties(_ref, _excluded$8);
|
|
10478
10478
|
|
|
10479
10479
|
return /*#__PURE__*/React__default["default"].createElement(StyledSelectTrigger, _extends({
|
|
10480
10480
|
ref: ref,
|
|
@@ -10520,11 +10520,11 @@
|
|
|
10520
10520
|
});
|
|
10521
10521
|
StyledToggle.displayName = "StyledToggle";
|
|
10522
10522
|
|
|
10523
|
-
var _excluded$
|
|
10523
|
+
var _excluded$7 = ["hovered", "className"];
|
|
10524
10524
|
var Toggle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10525
10525
|
var hovered = _ref.hovered,
|
|
10526
10526
|
className = _ref.className,
|
|
10527
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
10527
|
+
args = _objectWithoutProperties(_ref, _excluded$7);
|
|
10528
10528
|
|
|
10529
10529
|
return /*#__PURE__*/React__default["default"].createElement(StyledToggle, {
|
|
10530
10530
|
className: classNames__default["default"]("c-toggle", className),
|
|
@@ -10640,14 +10640,14 @@
|
|
|
10640
10640
|
});
|
|
10641
10641
|
ChipCloseIcon.displayName = "ChipCloseIcon";
|
|
10642
10642
|
|
|
10643
|
-
var _excluded$
|
|
10643
|
+
var _excluded$6 = ["leftAdornment", "label", "onClose", "size"];
|
|
10644
10644
|
var Chip = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
10645
10645
|
var leftAdornment = _ref.leftAdornment,
|
|
10646
10646
|
label = _ref.label,
|
|
10647
10647
|
onClose = _ref.onClose,
|
|
10648
10648
|
_ref$size = _ref.size,
|
|
10649
10649
|
size = _ref$size === void 0 ? "regular" : _ref$size,
|
|
10650
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10650
|
+
rest = _objectWithoutProperties(_ref, _excluded$6);
|
|
10651
10651
|
|
|
10652
10652
|
var showClose = typeof onClose === "function";
|
|
10653
10653
|
var variant = React.useMemo(function () {
|
|
@@ -10705,7 +10705,7 @@
|
|
|
10705
10705
|
[ref, handler]);
|
|
10706
10706
|
}
|
|
10707
10707
|
|
|
10708
|
-
var _excluded$
|
|
10708
|
+
var _excluded$5 = ["options", "selected", "loading", "loadingText", "onChange", "placeholder", "handleEmptyAction", "disabled", "size", "invalid", "type", "renderChip", "forceCloseMenu", "renderOption", "limitChips", "hiddenNumberText"];
|
|
10709
10709
|
var ComboBox = function ComboBox(_ref) {
|
|
10710
10710
|
var _comboBoxRef$current;
|
|
10711
10711
|
|
|
@@ -10733,7 +10733,7 @@
|
|
|
10733
10733
|
_ref$limitChips = _ref.limitChips,
|
|
10734
10734
|
limitChips = _ref$limitChips === void 0 ? 2 : _ref$limitChips,
|
|
10735
10735
|
hiddenNumberText = _ref.hiddenNumberText,
|
|
10736
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
10736
|
+
prop = _objectWithoutProperties(_ref, _excluded$5);
|
|
10737
10737
|
|
|
10738
10738
|
var selectedName = React.useMemo(function () {
|
|
10739
10739
|
var value = "";
|
|
@@ -11437,7 +11437,7 @@
|
|
|
11437
11437
|
ThumbsDownIcon.displayName = "ThumbsDownIcon";
|
|
11438
11438
|
var ThumbsDownIcon$1 = ThumbsDownIcon;
|
|
11439
11439
|
|
|
11440
|
-
var _excluded$
|
|
11440
|
+
var _excluded$4 = ["invalid", "required", "size", "children", "className", "weight"];
|
|
11441
11441
|
var Label = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11442
11442
|
var _ref$invalid = _ref.invalid,
|
|
11443
11443
|
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
@@ -11449,7 +11449,7 @@
|
|
|
11449
11449
|
className = _ref.className,
|
|
11450
11450
|
_ref$weight = _ref.weight,
|
|
11451
11451
|
weight = _ref$weight === void 0 ? "bold" : _ref$weight,
|
|
11452
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11452
|
+
props = _objectWithoutProperties(_ref, _excluded$4);
|
|
11453
11453
|
|
|
11454
11454
|
var color = invalid ? "alert" : "primary";
|
|
11455
11455
|
var variant = size === "regular" ? "Body 2" : "Caption 1";
|
|
@@ -11568,11 +11568,11 @@
|
|
|
11568
11568
|
};
|
|
11569
11569
|
ProgressRing.displayName = "ProgressRing";
|
|
11570
11570
|
|
|
11571
|
-
var _excluded = ["withDocuments"];
|
|
11571
|
+
var _excluded$3 = ["withDocuments"];
|
|
11572
11572
|
var FolderIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
|
|
11573
11573
|
var _ref$withDocuments = _ref.withDocuments,
|
|
11574
11574
|
withDocuments = _ref$withDocuments === void 0 ? false : _ref$withDocuments,
|
|
11575
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
11575
|
+
props = _objectWithoutProperties(_ref, _excluded$3);
|
|
11576
11576
|
|
|
11577
11577
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
11578
11578
|
width: 100,
|
|
@@ -11624,6 +11624,147 @@
|
|
|
11624
11624
|
FolderIcon.displayName = "FolderIcon";
|
|
11625
11625
|
var FolderIcon$1 = FolderIcon;
|
|
11626
11626
|
|
|
11627
|
+
var StyledEntityCard = styled__default["default"](Card).withConfig({
|
|
11628
|
+
displayName: "Styles__StyledEntityCard",
|
|
11629
|
+
componentId: "sc-bjeea8-0"
|
|
11630
|
+
})(["line-height:1.375;", " ", " ", " ", " ", ""], function (_ref) {
|
|
11631
|
+
var $renderAs = _ref.$renderAs;
|
|
11632
|
+
return $renderAs === "list" && styled.css(["display:flex;flex-direction:row;align-items:center;min-height:48px;margin-bottom:4px;justify-content:space-between;padding:0 16px 0 16px;"]);
|
|
11633
|
+
}, function (_ref2) {
|
|
11634
|
+
var $renderAs = _ref2.$renderAs;
|
|
11635
|
+
return $renderAs === "grid" && styled.css(["display:flex;flex-direction:column;position:relative;padding:20px 24px;height:280px;"]);
|
|
11636
|
+
}, function (props) {
|
|
11637
|
+
return props.$gap && styled.css(["gap:", "px;"], props.$gap);
|
|
11638
|
+
}, function (props) {
|
|
11639
|
+
return props.$background && styled.css(["background-color:", ";"], props.$background);
|
|
11640
|
+
}, function (_ref3) {
|
|
11641
|
+
var $isCollection = _ref3.$isCollection,
|
|
11642
|
+
$background = _ref3.$background;
|
|
11643
|
+
return $isCollection && styled.css(["&::after{display:block;content:\"\";position:absolute;top:0;bottom:0;right:0;left:0;transform:rotate(-3deg);z-index:-1;", ";background-color:", ";}"], PaperStyles, $background);
|
|
11644
|
+
});
|
|
11645
|
+
StyledEntityCard.displayName = "StyledEntityCard";
|
|
11646
|
+
var StyledEntityProperty = styled__default["default"]("div").withConfig({
|
|
11647
|
+
displayName: "Styles__StyledEntityProperty",
|
|
11648
|
+
componentId: "sc-bjeea8-1"
|
|
11649
|
+
})(["", " ", " ", ""], function (_ref4) {
|
|
11650
|
+
var $renderAs = _ref4.$renderAs,
|
|
11651
|
+
$width = _ref4.$width;
|
|
11652
|
+
return $renderAs === "list" && styled.css(["display:flex;align-items:center;min-width:24px;flex:", ";"], $width ? "unset" : 1);
|
|
11653
|
+
}, function (props) {
|
|
11654
|
+
return props.$renderAs === "list" && props.$order && styled.css(["order:", ";"], props.$order);
|
|
11655
|
+
}, function (props) {
|
|
11656
|
+
return props.$renderAs === "list" && props.$width && styled.css(["width:", ";"], props.$width);
|
|
11657
|
+
});
|
|
11658
|
+
StyledEntityProperty.displayName = "StyledEntityProperty";
|
|
11659
|
+
var StyledEntityGroup = styled__default["default"]("div").withConfig({
|
|
11660
|
+
displayName: "Styles__StyledEntityGroup",
|
|
11661
|
+
componentId: "sc-bjeea8-2"
|
|
11662
|
+
})(["", " ", " ", ""], function (_ref5) {
|
|
11663
|
+
var $renderAs = _ref5.$renderAs,
|
|
11664
|
+
$gap = _ref5.$gap;
|
|
11665
|
+
return $renderAs === "grid" && styled.css(["display:grid;grid-gap:", ";grid-template-columns:repeat(auto-fill,minmax(260px,1fr));"], $gap ? "".concat($gap, "px") : "initial");
|
|
11666
|
+
}, function (props) {
|
|
11667
|
+
return props.$renderAs === "list" && styled.css(["display:flex;flex-direction:column;"]);
|
|
11668
|
+
}, function (props) {
|
|
11669
|
+
return props.$gap && props.$renderAs === "list" && styled.css(["", "{gap:", "px;}"], StyledEntityCard, props.$gap);
|
|
11670
|
+
});
|
|
11671
|
+
StyledEntityGroup.displayName = "StyledEntityGroup";
|
|
11672
|
+
var StyledEntityActions = styled__default["default"]("div").withConfig({
|
|
11673
|
+
displayName: "Styles__StyledEntityActions",
|
|
11674
|
+
componentId: "sc-bjeea8-3"
|
|
11675
|
+
})(["display:flex;flex-direction:column;align-items:center;", " ", ""], function (_ref6) {
|
|
11676
|
+
var $renderAs = _ref6.$renderAs;
|
|
11677
|
+
return $renderAs === "grid" && styled.css(["position:absolute;right:16px;top:20px;"]);
|
|
11678
|
+
}, function (_ref7) {
|
|
11679
|
+
var $renderAs = _ref7.$renderAs;
|
|
11680
|
+
return $renderAs === "list" && styled.css(["justify-self:flex-end;"]);
|
|
11681
|
+
});
|
|
11682
|
+
|
|
11683
|
+
var _excluded$2 = ["listOrder", "listWidth", "visibleFromBreakpoint", "className"];
|
|
11684
|
+
var EntityProperty = function EntityProperty(_ref) {
|
|
11685
|
+
var listOrder = _ref.listOrder,
|
|
11686
|
+
listWidth = _ref.listWidth,
|
|
11687
|
+
visibleFromBreakpoint = _ref.visibleFromBreakpoint,
|
|
11688
|
+
className = _ref.className,
|
|
11689
|
+
props = _objectWithoutProperties(_ref, _excluded$2);
|
|
11690
|
+
|
|
11691
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledEntityProperty, _extends({
|
|
11692
|
+
className: classNames__default["default"]("c_property", className, {
|
|
11693
|
+
"tw-hidden": visibleFromBreakpoint,
|
|
11694
|
+
"sm:tw-flex": visibleFromBreakpoint === "sm",
|
|
11695
|
+
"md:tw-flex": visibleFromBreakpoint === "md",
|
|
11696
|
+
"lg:tw-flex": visibleFromBreakpoint === "lg",
|
|
11697
|
+
"xl:tw-flex": visibleFromBreakpoint === "xl",
|
|
11698
|
+
"2xl:tw-flex": visibleFromBreakpoint === "2xl"
|
|
11699
|
+
})
|
|
11700
|
+
}, props, {
|
|
11701
|
+
$order: listOrder,
|
|
11702
|
+
$width: listWidth
|
|
11703
|
+
}));
|
|
11704
|
+
};
|
|
11705
|
+
EntityProperty.displayName = "EntityProperty";
|
|
11706
|
+
|
|
11707
|
+
var _excluded$1 = ["children", "actions", "renderAs", "isCollection", "background", "className"];
|
|
11708
|
+
var EntityCard = function EntityCard(_ref) {
|
|
11709
|
+
var children = _ref.children,
|
|
11710
|
+
actions = _ref.actions,
|
|
11711
|
+
_ref$renderAs = _ref.renderAs,
|
|
11712
|
+
renderAs = _ref$renderAs === void 0 ? "grid" : _ref$renderAs,
|
|
11713
|
+
isCollection = _ref.isCollection,
|
|
11714
|
+
background = _ref.background,
|
|
11715
|
+
className = _ref.className,
|
|
11716
|
+
rest = _objectWithoutProperties(_ref, _excluded$1);
|
|
11717
|
+
|
|
11718
|
+
var paperType = renderAs === "grid" ? "paper-1" : "paper-2";
|
|
11719
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledEntityCard, _extends({
|
|
11720
|
+
$renderAs: renderAs,
|
|
11721
|
+
$background: background,
|
|
11722
|
+
paperType: paperType,
|
|
11723
|
+
className: className,
|
|
11724
|
+
$isCollection: isCollection
|
|
11725
|
+
}, rest), React__default["default"].Children.map(children, function (child) {
|
|
11726
|
+
if ( /*#__PURE__*/React__default["default"].isValidElement(child) && child.type === EntityProperty) {
|
|
11727
|
+
return /*#__PURE__*/React__default["default"].cloneElement(child, {
|
|
11728
|
+
$renderAs: renderAs
|
|
11729
|
+
});
|
|
11730
|
+
}
|
|
11731
|
+
|
|
11732
|
+
return null;
|
|
11733
|
+
}), actions && /*#__PURE__*/React__default["default"].createElement(StyledEntityActions, {
|
|
11734
|
+
$renderAs: renderAs
|
|
11735
|
+
}, actions));
|
|
11736
|
+
};
|
|
11737
|
+
EntityCard.displayName = "EntityCard";
|
|
11738
|
+
|
|
11739
|
+
var _excluded = ["children", "gap", "renderAs"];
|
|
11740
|
+
var EntityGroup = function EntityGroup(_ref) {
|
|
11741
|
+
var children = _ref.children,
|
|
11742
|
+
gap = _ref.gap,
|
|
11743
|
+
_ref$renderAs = _ref.renderAs,
|
|
11744
|
+
renderAs = _ref$renderAs === void 0 ? "grid" : _ref$renderAs,
|
|
11745
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
11746
|
+
|
|
11747
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledEntityGroup, _extends({
|
|
11748
|
+
$renderAs: renderAs,
|
|
11749
|
+
$gap: gap
|
|
11750
|
+
}, rest), React__default["default"].Children.map(children, function (child) {
|
|
11751
|
+
if ( /*#__PURE__*/React__default["default"].isValidElement(child) && child.type === EntityCard) {
|
|
11752
|
+
return /*#__PURE__*/React__default["default"].cloneElement(child, {
|
|
11753
|
+
renderAs: renderAs
|
|
11754
|
+
});
|
|
11755
|
+
}
|
|
11756
|
+
|
|
11757
|
+
return null;
|
|
11758
|
+
}));
|
|
11759
|
+
};
|
|
11760
|
+
EntityGroup.displayName = "EntityGroup";
|
|
11761
|
+
|
|
11762
|
+
var Entity = {
|
|
11763
|
+
Group: EntityGroup,
|
|
11764
|
+
Card: EntityCard,
|
|
11765
|
+
Property: EntityProperty
|
|
11766
|
+
};
|
|
11767
|
+
|
|
11627
11768
|
exports.Accordion = Accordion;
|
|
11628
11769
|
exports.AccordionContext = AccordionContext;
|
|
11629
11770
|
exports.AccordionItem = AccordionItem;
|
|
@@ -11722,7 +11863,8 @@
|
|
|
11722
11863
|
exports.EditIcon = EditIcon$1;
|
|
11723
11864
|
exports.EditMultipleIcon = EditMultipleIcon$1;
|
|
11724
11865
|
exports.EmojiIcon = EmojiIcon$1;
|
|
11725
|
-
exports.
|
|
11866
|
+
exports.Entity = Entity;
|
|
11867
|
+
exports.EntityCard = EntityCard$1;
|
|
11726
11868
|
exports.EstimatesIcon = EstimatesIcon$1;
|
|
11727
11869
|
exports.ExpandAll = ExpandAll;
|
|
11728
11870
|
exports.ExpandAllIcon = ExpandAllIcon$1;
|