@activecollab/components 1.0.29 → 1.0.33
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/Icons/collection/CollapsIcon.js +31 -0
- package/dist/cjs/components/Icons/collection/CollapsIcon.js.map +1 -0
- package/dist/cjs/components/Icons/collection/OrderFirst.js +31 -0
- package/dist/cjs/components/Icons/collection/OrderFirst.js.map +1 -0
- package/dist/cjs/components/Icons/collection/TaskListAdd.js +31 -0
- package/dist/cjs/components/Icons/collection/TaskListAdd.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +24 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/cjs/components/Transitions/Fade/Fade.js +14 -8
- package/dist/cjs/components/Transitions/Fade/Fade.js.map +1 -1
- package/dist/cjs/components/Transitions/Reveal/Reveal.js +14 -8
- package/dist/cjs/components/Transitions/Reveal/Reveal.js.map +1 -1
- package/dist/cjs/hooks/index.js +13 -0
- package/dist/cjs/hooks/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/CollapsIcon.d.ts +4 -0
- package/dist/esm/components/Icons/collection/CollapsIcon.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/CollapsIcon.js +18 -0
- package/dist/esm/components/Icons/collection/CollapsIcon.js.map +1 -0
- package/dist/esm/components/Icons/collection/OrderFirst.d.ts +4 -0
- package/dist/esm/components/Icons/collection/OrderFirst.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/OrderFirst.js +18 -0
- package/dist/esm/components/Icons/collection/OrderFirst.js.map +1 -0
- package/dist/esm/components/Icons/collection/TaskListAdd.d.ts +4 -0
- package/dist/esm/components/Icons/collection/TaskListAdd.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/TaskListAdd.js +18 -0
- package/dist/esm/components/Icons/collection/TaskListAdd.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +3 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +3 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Transitions/Fade/Fade.d.ts.map +1 -1
- package/dist/esm/components/Transitions/Fade/Fade.js +8 -8
- package/dist/esm/components/Transitions/Fade/Fade.js.map +1 -1
- package/dist/esm/components/Transitions/Reveal/Reveal.d.ts.map +1 -1
- package/dist/esm/components/Transitions/Reveal/Reveal.js +8 -8
- package/dist/esm/components/Transitions/Reveal/Reveal.js.map +1 -1
- package/dist/esm/hooks/index.d.ts +1 -0
- package/dist/esm/hooks/index.d.ts.map +1 -1
- package/dist/esm/hooks/index.js +1 -0
- package/dist/esm/hooks/index.js.map +1 -1
- package/dist/index.js +197 -146
- 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$V = ["children", "variant", "size", "disabled", "className"];
|
|
318
318
|
|
|
319
319
|
/**
|
|
320
320
|
* Button component
|
|
@@ -327,7 +327,7 @@
|
|
|
327
327
|
_ref$disabled = _ref.disabled,
|
|
328
328
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
329
329
|
className = _ref.className,
|
|
330
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
330
|
+
args = _objectWithoutProperties(_ref, _excluded$V);
|
|
331
331
|
|
|
332
332
|
return /*#__PURE__*/React__default["default"].createElement(StyledButton$1, _extends({
|
|
333
333
|
disabled: disabled,
|
|
@@ -380,12 +380,12 @@
|
|
|
380
380
|
})(["svg{fill:var(--color-theme-100);}&:hover svg{transform:rotate(90deg);transition:ease 0.3s;}"]);
|
|
381
381
|
StyledGlobalAddButton.displayName = "StyledGlobalAddButton";
|
|
382
382
|
|
|
383
|
-
var _excluded$
|
|
383
|
+
var _excluded$U = ["className", "disabled"];
|
|
384
384
|
var GlobalAddButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
385
385
|
var className = _ref.className,
|
|
386
386
|
_ref$disabled = _ref.disabled,
|
|
387
387
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
388
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
388
|
+
rest = _objectWithoutProperties(_ref, _excluded$U);
|
|
389
389
|
|
|
390
390
|
return /*#__PURE__*/React__default["default"].createElement(StyledGlobalAddButton, _extends({
|
|
391
391
|
ref: ref,
|
|
@@ -418,11 +418,11 @@
|
|
|
418
418
|
});
|
|
419
419
|
StyledButtonGroup$1.displayName = "StyledButtonGroup";
|
|
420
420
|
|
|
421
|
-
var _excluded$
|
|
421
|
+
var _excluded$T = ["children", "className"];
|
|
422
422
|
var ButtonGroup = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
423
423
|
var children = _ref.children,
|
|
424
424
|
className = _ref.className,
|
|
425
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
425
|
+
rest = _objectWithoutProperties(_ref, _excluded$T);
|
|
426
426
|
|
|
427
427
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonGroup$1, _extends({
|
|
428
428
|
ref: ref,
|
|
@@ -448,7 +448,7 @@
|
|
|
448
448
|
}, [refA, refB]);
|
|
449
449
|
}
|
|
450
450
|
|
|
451
|
-
var _excluded$
|
|
451
|
+
var _excluded$S = ["children", "anchorEl", "open", "style", "transition", "placement"];
|
|
452
452
|
var Popper = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
453
453
|
var children = _ref.children,
|
|
454
454
|
anchorEl = _ref.anchorEl,
|
|
@@ -459,7 +459,7 @@
|
|
|
459
459
|
transition = _ref$transition === void 0 ? false : _ref$transition,
|
|
460
460
|
_ref$placement = _ref.placement,
|
|
461
461
|
initialPlacement = _ref$placement === void 0 ? "bottom" : _ref$placement,
|
|
462
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
462
|
+
rest = _objectWithoutProperties(_ref, _excluded$S);
|
|
463
463
|
|
|
464
464
|
var _useState = React.useState(true),
|
|
465
465
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -631,11 +631,11 @@
|
|
|
631
631
|
return props.$isLight && styled.css(["background-color:var(--page-paper-main);box-shadow:var(--shadow-secondary);color:var(--color-theme-700);"]);
|
|
632
632
|
});
|
|
633
633
|
|
|
634
|
-
var _excluded$
|
|
634
|
+
var _excluded$R = ["children"];
|
|
635
635
|
|
|
636
636
|
var TooltipAnimation = function TooltipAnimation(_ref) {
|
|
637
637
|
var children = _ref.children,
|
|
638
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
638
|
+
props = _objectWithoutProperties(_ref, _excluded$R);
|
|
639
639
|
|
|
640
640
|
return /*#__PURE__*/React__default["default"].createElement(FromElement, _extends({
|
|
641
641
|
timeout: 0
|
|
@@ -855,7 +855,7 @@
|
|
|
855
855
|
});
|
|
856
856
|
StyledTypography.displayName = "StyledTypography";
|
|
857
857
|
|
|
858
|
-
var _excluded$
|
|
858
|
+
var _excluded$Q = ["variant", "Tag", "color", "italic", "tabularNums", "letterSpacing", "lineHeight", "align", "decoration", "transform", "overflow", "whitespace", "wordBreak", "weight", "className", "children"];
|
|
859
859
|
var Typography = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
860
860
|
var _ref$variant = _ref.variant,
|
|
861
861
|
variant = _ref$variant === void 0 ? "Title 1" : _ref$variant,
|
|
@@ -887,7 +887,7 @@
|
|
|
887
887
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
888
888
|
className = _ref.className,
|
|
889
889
|
children = _ref.children,
|
|
890
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
890
|
+
props = _objectWithoutProperties(_ref, _excluded$Q);
|
|
891
891
|
|
|
892
892
|
var innerRef = React.useRef(null);
|
|
893
893
|
var handleRef = useForkRef(ref, innerRef);
|
|
@@ -912,12 +912,12 @@
|
|
|
912
912
|
});
|
|
913
913
|
Typography.displayName = "Typography";
|
|
914
914
|
|
|
915
|
-
var _excluded$
|
|
915
|
+
var _excluded$P = ["weight", "children"];
|
|
916
916
|
var Body2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
917
917
|
var _ref$weight = _ref.weight,
|
|
918
918
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
919
919
|
children = _ref.children,
|
|
920
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
920
|
+
props = _objectWithoutProperties(_ref, _excluded$P);
|
|
921
921
|
|
|
922
922
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
923
923
|
variant: "Body 2",
|
|
@@ -958,7 +958,7 @@
|
|
|
958
958
|
});
|
|
959
959
|
StyledCounterButtonLabel.displayName = "StyledCounterButtonLabel";
|
|
960
960
|
|
|
961
|
-
var _excluded$
|
|
961
|
+
var _excluded$O = ["label", "icon", "active", "counter", "tooltipText", "onClearAll", "className"];
|
|
962
962
|
var CounterButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
963
963
|
var label = _ref.label,
|
|
964
964
|
icon = _ref.icon,
|
|
@@ -968,7 +968,7 @@
|
|
|
968
968
|
tooltipText = _ref.tooltipText,
|
|
969
969
|
onClearAll = _ref.onClearAll,
|
|
970
970
|
className = _ref.className,
|
|
971
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
971
|
+
args = _objectWithoutProperties(_ref, _excluded$O);
|
|
972
972
|
|
|
973
973
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
974
974
|
className: classnames__default["default"]("tw-flex ac-font box-sizing", className)
|
|
@@ -1338,7 +1338,7 @@
|
|
|
1338
1338
|
StyledDatePicker.displayName = "StyledDatePicker";
|
|
1339
1339
|
StyledDayPicker.displayName = "StyledDayPicker";
|
|
1340
1340
|
|
|
1341
|
-
var _excluded$
|
|
1341
|
+
var _excluded$N = ["className", "onChange", "onDayClick", "selectedDays", "disabledDays", "selectionMode", "month", "onMonthChange", "dateRequired", "firstDayOfWeek", "fixedWeeks", "modifiers"];
|
|
1342
1342
|
var DatePicker = function DatePicker(_ref) {
|
|
1343
1343
|
var className = _ref.className,
|
|
1344
1344
|
onChange = _ref.onChange,
|
|
@@ -1360,7 +1360,7 @@
|
|
|
1360
1360
|
_ref$fixedWeeks = _ref.fixedWeeks,
|
|
1361
1361
|
fixedWeeks = _ref$fixedWeeks === void 0 ? true : _ref$fixedWeeks,
|
|
1362
1362
|
defaultModifiers = _ref.modifiers,
|
|
1363
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1363
|
+
rest = _objectWithoutProperties(_ref, _excluded$N);
|
|
1364
1364
|
|
|
1365
1365
|
var _useState = React.useState(),
|
|
1366
1366
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -1703,10 +1703,10 @@
|
|
|
1703
1703
|
})(["position:fixed;top:0;right:0;bottom:0;left:0;"]);
|
|
1704
1704
|
StyledOverlay.displayName = "StyledOverlay";
|
|
1705
1705
|
|
|
1706
|
-
var _excluded$
|
|
1706
|
+
var _excluded$M = ["className"];
|
|
1707
1707
|
var Overlay = function Overlay(_ref) {
|
|
1708
1708
|
var className = _ref.className,
|
|
1709
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1709
|
+
rest = _objectWithoutProperties(_ref, _excluded$M);
|
|
1710
1710
|
|
|
1711
1711
|
return /*#__PURE__*/React__default["default"].createElement(StyledOverlay, _extends({
|
|
1712
1712
|
className: classnames__default["default"]("c-overlay", className)
|
|
@@ -1720,7 +1720,7 @@
|
|
|
1720
1720
|
})(["", " ", " position:fixed;top:0;right:0;bottom:0;left:0;"], FontStyle, BoxSizingStyle);
|
|
1721
1721
|
StyledWindow.displayName = "StyledWindow";
|
|
1722
1722
|
|
|
1723
|
-
var _excluded$
|
|
1723
|
+
var _excluded$L = ["children", "onClose", "className", "style", "onKeyDown", "disableFocusLock", "disableScrollLock"];
|
|
1724
1724
|
var returnFocus = {
|
|
1725
1725
|
preventScroll: true
|
|
1726
1726
|
};
|
|
@@ -1734,7 +1734,7 @@
|
|
|
1734
1734
|
disableFocusLock = _ref$disableFocusLock === void 0 ? false : _ref$disableFocusLock,
|
|
1735
1735
|
_ref$disableScrollLoc = _ref.disableScrollLock,
|
|
1736
1736
|
disableScrollLock = _ref$disableScrollLoc === void 0 ? false : _ref$disableScrollLoc,
|
|
1737
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1737
|
+
rest = _objectWithoutProperties(_ref, _excluded$L);
|
|
1738
1738
|
|
|
1739
1739
|
var innerRef = React.useRef(null);
|
|
1740
1740
|
var handleRef = useForkRef(innerRef, ref);
|
|
@@ -1800,7 +1800,7 @@
|
|
|
1800
1800
|
}, FontStyle, BoxSizingStyle);
|
|
1801
1801
|
StyledBubble.displayName = "StyledBubble";
|
|
1802
1802
|
|
|
1803
|
-
var _excluded$
|
|
1803
|
+
var _excluded$K = ["children", "className", "innerRef", "style"];
|
|
1804
1804
|
var Bubble = function Bubble(_ref) {
|
|
1805
1805
|
var children = _ref.children,
|
|
1806
1806
|
className = _ref.className,
|
|
@@ -1808,7 +1808,7 @@
|
|
|
1808
1808
|
innerRef = _ref$innerRef === void 0 ? null : _ref$innerRef,
|
|
1809
1809
|
_ref$style = _ref.style,
|
|
1810
1810
|
style = _ref$style === void 0 ? {} : _ref$style,
|
|
1811
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1811
|
+
rest = _objectWithoutProperties(_ref, _excluded$K);
|
|
1812
1812
|
|
|
1813
1813
|
return /*#__PURE__*/React__default["default"].createElement(StyledBubble, _extends({}, rest, {
|
|
1814
1814
|
ref: innerRef,
|
|
@@ -1951,13 +1951,13 @@
|
|
|
1951
1951
|
};
|
|
1952
1952
|
Menu.displayName = "Menu";
|
|
1953
1953
|
|
|
1954
|
-
var _excluded$
|
|
1954
|
+
var _excluded$J = ["title", "className", "leftElement", "rightElement"];
|
|
1955
1955
|
var MenuHeader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1956
1956
|
var title = _ref.title,
|
|
1957
1957
|
className = _ref.className,
|
|
1958
1958
|
leftElement = _ref.leftElement,
|
|
1959
1959
|
rightElement = _ref.rightElement,
|
|
1960
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1960
|
+
props = _objectWithoutProperties(_ref, _excluded$J);
|
|
1961
1961
|
|
|
1962
1962
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuHeader, _extends({}, props, {
|
|
1963
1963
|
className: classnames__default["default"]("c-menu-header", className),
|
|
@@ -1980,11 +1980,11 @@
|
|
|
1980
1980
|
});
|
|
1981
1981
|
MenuHeader.displayName = "MenuHeader";
|
|
1982
1982
|
|
|
1983
|
-
var _excluded$
|
|
1983
|
+
var _excluded$I = ["children", "className"];
|
|
1984
1984
|
var MenuFooter = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1985
1985
|
var children = _ref.children,
|
|
1986
1986
|
className = _ref.className,
|
|
1987
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1987
|
+
props = _objectWithoutProperties(_ref, _excluded$I);
|
|
1988
1988
|
|
|
1989
1989
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuFooter, _extends({}, props, {
|
|
1990
1990
|
className: classnames__default["default"]("c-menu-footer", className),
|
|
@@ -2652,7 +2652,7 @@
|
|
|
2652
2652
|
SortIcon.displayName = "SortIcon";
|
|
2653
2653
|
var SortIcon$1 = SortIcon;
|
|
2654
2654
|
|
|
2655
|
-
var _excluded$
|
|
2655
|
+
var _excluded$H = ["header", "rows", "className", "sortBy", "sortDirection", "onSortCallback", "theadClass", "noResultsCallback", "groupBy", "groupHead", "isCollapsible", "emptyValue"];
|
|
2656
2656
|
exports.SortDirection = void 0;
|
|
2657
2657
|
|
|
2658
2658
|
(function (SortDirection) {
|
|
@@ -2702,7 +2702,7 @@
|
|
|
2702
2702
|
} : _ref$groupHead,
|
|
2703
2703
|
isCollapsible = _ref.isCollapsible,
|
|
2704
2704
|
emptyValue = _ref.emptyValue,
|
|
2705
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
2705
|
+
args = _objectWithoutProperties(_ref, _excluded$H);
|
|
2706
2706
|
|
|
2707
2707
|
var _useState = React.useState(sortDirection),
|
|
2708
2708
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -3116,7 +3116,7 @@
|
|
|
3116
3116
|
});
|
|
3117
3117
|
StyledPaper.displayName = "StyledPaper";
|
|
3118
3118
|
|
|
3119
|
-
var _excluded$
|
|
3119
|
+
var _excluded$G = ["children", "className", "type", "hover", "useOptimizedShadow"];
|
|
3120
3120
|
|
|
3121
3121
|
/**
|
|
3122
3122
|
* This is a component description and should sit directly above your component
|
|
@@ -3130,7 +3130,7 @@
|
|
|
3130
3130
|
hover = _ref$hover === void 0 ? false : _ref$hover,
|
|
3131
3131
|
_ref$useOptimizedShad = _ref.useOptimizedShadow,
|
|
3132
3132
|
useOptimizedShadow = _ref$useOptimizedShad === void 0 ? false : _ref$useOptimizedShad,
|
|
3133
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3133
|
+
rest = _objectWithoutProperties(_ref, _excluded$G);
|
|
3134
3134
|
|
|
3135
3135
|
return /*#__PURE__*/React__default["default"].createElement(StyledPaper, _extends({
|
|
3136
3136
|
className: classnames__default["default"](className, {
|
|
@@ -3184,7 +3184,7 @@
|
|
|
3184
3184
|
});
|
|
3185
3185
|
StyledCard.displayName = "StyledCard";
|
|
3186
3186
|
|
|
3187
|
-
var _excluded$
|
|
3187
|
+
var _excluded$F = ["children", "className", "hoverable", "paperType"];
|
|
3188
3188
|
var Card = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3189
3189
|
var children = _ref.children,
|
|
3190
3190
|
className = _ref.className,
|
|
@@ -3192,7 +3192,7 @@
|
|
|
3192
3192
|
hoverable = _ref$hoverable === void 0 ? false : _ref$hoverable,
|
|
3193
3193
|
_ref$paperType = _ref.paperType,
|
|
3194
3194
|
paperType = _ref$paperType === void 0 ? "paper-2" : _ref$paperType,
|
|
3195
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3195
|
+
rest = _objectWithoutProperties(_ref, _excluded$F);
|
|
3196
3196
|
|
|
3197
3197
|
return /*#__PURE__*/React__default["default"].createElement(StyledCard, _extends({}, rest, {
|
|
3198
3198
|
type: paperType,
|
|
@@ -3285,12 +3285,12 @@
|
|
|
3285
3285
|
});
|
|
3286
3286
|
EntityCard.displayName = "EntityCard";
|
|
3287
3287
|
|
|
3288
|
-
var _excluded$
|
|
3288
|
+
var _excluded$E = ["weight", "children"];
|
|
3289
3289
|
var Title1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3290
3290
|
var _ref$weight = _ref.weight,
|
|
3291
3291
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
3292
3292
|
children = _ref.children,
|
|
3293
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3293
|
+
props = _objectWithoutProperties(_ref, _excluded$E);
|
|
3294
3294
|
|
|
3295
3295
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3296
3296
|
weight: weight,
|
|
@@ -3300,10 +3300,10 @@
|
|
|
3300
3300
|
});
|
|
3301
3301
|
Title1.displayName = "Title1";
|
|
3302
3302
|
|
|
3303
|
-
var _excluded$
|
|
3303
|
+
var _excluded$D = ["children"];
|
|
3304
3304
|
var Header2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3305
3305
|
var children = _ref.children,
|
|
3306
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3306
|
+
props = _objectWithoutProperties(_ref, _excluded$D);
|
|
3307
3307
|
|
|
3308
3308
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3309
3309
|
weight: "bold",
|
|
@@ -3313,10 +3313,10 @@
|
|
|
3313
3313
|
});
|
|
3314
3314
|
Header2.displayName = "Header2";
|
|
3315
3315
|
|
|
3316
|
-
var _excluded$
|
|
3316
|
+
var _excluded$C = ["children"];
|
|
3317
3317
|
var Header3 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3318
3318
|
var children = _ref.children,
|
|
3319
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3319
|
+
props = _objectWithoutProperties(_ref, _excluded$C);
|
|
3320
3320
|
|
|
3321
3321
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3322
3322
|
weight: "bold",
|
|
@@ -3326,12 +3326,12 @@
|
|
|
3326
3326
|
});
|
|
3327
3327
|
Header3.displayName = "Header3";
|
|
3328
3328
|
|
|
3329
|
-
var _excluded$
|
|
3329
|
+
var _excluded$B = ["weight", "children"];
|
|
3330
3330
|
var Body1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3331
3331
|
var _ref$weight = _ref.weight,
|
|
3332
3332
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
3333
3333
|
children = _ref.children,
|
|
3334
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3334
|
+
props = _objectWithoutProperties(_ref, _excluded$B);
|
|
3335
3335
|
|
|
3336
3336
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3337
3337
|
variant: "Body 1",
|
|
@@ -3341,12 +3341,12 @@
|
|
|
3341
3341
|
});
|
|
3342
3342
|
Body1.displayName = "Body1";
|
|
3343
3343
|
|
|
3344
|
-
var _excluded$
|
|
3344
|
+
var _excluded$A = ["weight", "children"];
|
|
3345
3345
|
var Caption1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3346
3346
|
var _ref$weight = _ref.weight,
|
|
3347
3347
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
3348
3348
|
children = _ref.children,
|
|
3349
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3349
|
+
props = _objectWithoutProperties(_ref, _excluded$A);
|
|
3350
3350
|
|
|
3351
3351
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3352
3352
|
variant: "Caption 1",
|
|
@@ -3356,12 +3356,12 @@
|
|
|
3356
3356
|
});
|
|
3357
3357
|
Caption1.displayName = "Caption1";
|
|
3358
3358
|
|
|
3359
|
-
var _excluded$
|
|
3359
|
+
var _excluded$z = ["weight", "children"];
|
|
3360
3360
|
var Caption2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3361
3361
|
var _ref$weight = _ref.weight,
|
|
3362
3362
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
3363
3363
|
children = _ref.children,
|
|
3364
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3364
|
+
props = _objectWithoutProperties(_ref, _excluded$z);
|
|
3365
3365
|
|
|
3366
3366
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3367
3367
|
variant: "Caption 2",
|
|
@@ -3480,7 +3480,7 @@
|
|
|
3480
3480
|
"borderRadius": "9999px"
|
|
3481
3481
|
});
|
|
3482
3482
|
|
|
3483
|
-
var _excluded$
|
|
3483
|
+
var _excluded$y = ["url", "alt", "size", "className"];
|
|
3484
3484
|
var Avatar = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3485
3485
|
var url = _ref.url,
|
|
3486
3486
|
_ref$alt = _ref.alt,
|
|
@@ -3488,7 +3488,7 @@
|
|
|
3488
3488
|
_ref$size = _ref.size,
|
|
3489
3489
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
3490
3490
|
className = _ref.className,
|
|
3491
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3491
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
3492
3492
|
|
|
3493
3493
|
return /*#__PURE__*/React__default["default"].createElement(StyledAvatar, _extends({}, rest, {
|
|
3494
3494
|
ref: ref,
|
|
@@ -3535,7 +3535,7 @@
|
|
|
3535
3535
|
});
|
|
3536
3536
|
StyledLabelText.displayName = "StyledLabelText";
|
|
3537
3537
|
|
|
3538
|
-
var _excluded$
|
|
3538
|
+
var _excluded$x = ["name", "color", "showText", "showDot", "className"];
|
|
3539
3539
|
var Label = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3540
3540
|
var name = _ref.name,
|
|
3541
3541
|
color = _ref.color,
|
|
@@ -3544,7 +3544,7 @@
|
|
|
3544
3544
|
_ref$showDot = _ref.showDot,
|
|
3545
3545
|
showDot = _ref$showDot === void 0 ? true : _ref$showDot,
|
|
3546
3546
|
className = _ref.className,
|
|
3547
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3547
|
+
rest = _objectWithoutProperties(_ref, _excluded$x);
|
|
3548
3548
|
|
|
3549
3549
|
return /*#__PURE__*/React__default["default"].createElement(StyledLabel$1, _extends({
|
|
3550
3550
|
className: classnames__default["default"]("c-label", className),
|
|
@@ -3564,10 +3564,10 @@
|
|
|
3564
3564
|
componentId: "sc-x4ge7a-0"
|
|
3565
3565
|
})(["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);
|
|
3566
3566
|
|
|
3567
|
-
var _excluded$
|
|
3567
|
+
var _excluded$w = ["className"];
|
|
3568
3568
|
var LinearLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3569
3569
|
var className = _ref.className,
|
|
3570
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3570
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
3571
3571
|
|
|
3572
3572
|
return /*#__PURE__*/React__default["default"].createElement(StyledLinearLoader, _extends({
|
|
3573
3573
|
ref: ref,
|
|
@@ -3582,10 +3582,10 @@
|
|
|
3582
3582
|
componentId: "sc-1f35d5h-0"
|
|
3583
3583
|
})(["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);
|
|
3584
3584
|
|
|
3585
|
-
var _excluded$
|
|
3585
|
+
var _excluded$v = ["className"];
|
|
3586
3586
|
var DotsLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3587
3587
|
var className = _ref.className,
|
|
3588
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3588
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
3589
3589
|
|
|
3590
3590
|
return /*#__PURE__*/React__default["default"].createElement(StyledDotsLoader, _extends({
|
|
3591
3591
|
ref: ref,
|
|
@@ -3601,10 +3601,10 @@
|
|
|
3601
3601
|
componentId: "sc-1ht53g9-0"
|
|
3602
3602
|
})(["position:relative;width:20px;&:before{content:\"\";display:block;padding-top:100%;}svg{animation:", " 2s linear infinite;height:100%;transform-origin:center center;width:100%;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;circle{stroke-dasharray:1,200;stroke-dashoffset:0;stroke:var(--color-theme-600);animation:", " 1.5s ease-in-out infinite;stroke-linecap:round;}}"], rotateAnimation, dashAnimation);
|
|
3603
3603
|
|
|
3604
|
-
var _excluded$
|
|
3604
|
+
var _excluded$u = ["className"];
|
|
3605
3605
|
var SpinnerLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3606
3606
|
var className = _ref.className,
|
|
3607
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3607
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
3608
3608
|
|
|
3609
3609
|
return /*#__PURE__*/React__default["default"].createElement(StyledSpinnerLoader, _extends({
|
|
3610
3610
|
ref: ref,
|
|
@@ -3666,7 +3666,7 @@
|
|
|
3666
3666
|
}, StyledInput$1, StyledLabel);
|
|
3667
3667
|
StyledCheckbox.displayName = "StyledCheckbox";
|
|
3668
3668
|
|
|
3669
|
-
var _excluded$
|
|
3669
|
+
var _excluded$t = ["className", "hover", "id"];
|
|
3670
3670
|
|
|
3671
3671
|
/**
|
|
3672
3672
|
* Checkbox component
|
|
@@ -3676,7 +3676,7 @@
|
|
|
3676
3676
|
hover = _ref.hover,
|
|
3677
3677
|
_ref$id = _ref.id,
|
|
3678
3678
|
id = _ref$id === void 0 ? "checkbox" : _ref$id,
|
|
3679
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3679
|
+
rest = _objectWithoutProperties(_ref, _excluded$t);
|
|
3680
3680
|
|
|
3681
3681
|
return /*#__PURE__*/React__default["default"].createElement(StyledCheckbox, {
|
|
3682
3682
|
className: classnames__default["default"]("c-checkbox", {
|
|
@@ -3749,14 +3749,14 @@
|
|
|
3749
3749
|
}, StyledRadioLabel);
|
|
3750
3750
|
StyledRadioButton.displayName = "StyledRadioButton";
|
|
3751
3751
|
|
|
3752
|
-
var _excluded$
|
|
3752
|
+
var _excluded$s = ["className", "id", "hover"];
|
|
3753
3753
|
var RadioButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3754
3754
|
var _ref$className = _ref.className,
|
|
3755
3755
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
3756
3756
|
_ref$id = _ref.id,
|
|
3757
3757
|
id = _ref$id === void 0 ? "radio" : _ref$id,
|
|
3758
3758
|
hover = _ref.hover,
|
|
3759
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3759
|
+
props = _objectWithoutProperties(_ref, _excluded$s);
|
|
3760
3760
|
|
|
3761
3761
|
return /*#__PURE__*/React__default["default"].createElement(StyledRadioButton, {
|
|
3762
3762
|
className: classnames__default["default"]("c-radio-btn", {
|
|
@@ -4008,7 +4008,7 @@
|
|
|
4008
4008
|
StyledScrollShadowLeft.displayName = "StyledScrollShadowLeft";
|
|
4009
4009
|
StyledScrollShadowRight.displayName = "StyledScrollShadowRight";
|
|
4010
4010
|
|
|
4011
|
-
var _excluded$
|
|
4011
|
+
var _excluded$r = ["children", "className", "disableVertical", "disableHorizontal", "invertHorizontal", "invertVertical"];
|
|
4012
4012
|
var ScrollShadow = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4013
4013
|
var children = _ref.children,
|
|
4014
4014
|
className = _ref.className,
|
|
@@ -4020,7 +4020,7 @@
|
|
|
4020
4020
|
invertHorizontal = _ref$invertHorizontal === void 0 ? false : _ref$invertHorizontal,
|
|
4021
4021
|
_ref$invertVertical = _ref.invertVertical,
|
|
4022
4022
|
invertVertical = _ref$invertVertical === void 0 ? false : _ref$invertVertical,
|
|
4023
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4023
|
+
rest = _objectWithoutProperties(_ref, _excluded$r);
|
|
4024
4024
|
|
|
4025
4025
|
var _useState = React.useState({
|
|
4026
4026
|
top: 0,
|
|
@@ -4120,14 +4120,38 @@
|
|
|
4120
4120
|
return ref;
|
|
4121
4121
|
};
|
|
4122
4122
|
|
|
4123
|
-
var
|
|
4123
|
+
var useHeight = function useHeight(ref) {
|
|
4124
|
+
var _useState = React.useState(0),
|
|
4125
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
4126
|
+
height = _useState2[0],
|
|
4127
|
+
setHeight = _useState2[1];
|
|
4128
|
+
|
|
4129
|
+
React.useEffect(function () {
|
|
4130
|
+
if (ref && ref.current) {
|
|
4131
|
+
var element = ref.current;
|
|
4132
|
+
var prevMaxHeight = element.style.maxHeight;
|
|
4133
|
+
var prevVisibility = element.style.visibility;
|
|
4134
|
+
element.style.visibility = "hidden";
|
|
4135
|
+
element.style.maxHeight = "none";
|
|
4136
|
+
var elementHeight = element.clientHeight;
|
|
4137
|
+
element.style.visibility = prevVisibility;
|
|
4138
|
+
element.style.maxHeight = prevMaxHeight;
|
|
4139
|
+
return setHeight(elementHeight);
|
|
4140
|
+
}
|
|
4141
|
+
}, [ref]);
|
|
4142
|
+
return height;
|
|
4143
|
+
};
|
|
4144
|
+
|
|
4145
|
+
var useHeight$1 = useHeight;
|
|
4146
|
+
|
|
4147
|
+
var _excluded$q = ["as", "className", "invert"];
|
|
4124
4148
|
var ScrollElement = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4125
4149
|
var _ref$as = _ref.as,
|
|
4126
4150
|
as = _ref$as === void 0 ? "div" : _ref$as,
|
|
4127
4151
|
className = _ref.className,
|
|
4128
4152
|
_ref$invert = _ref.invert,
|
|
4129
4153
|
invert = _ref$invert === void 0 ? false : _ref$invert,
|
|
4130
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4154
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
4131
4155
|
|
|
4132
4156
|
var internalRef = useInitScrollRef(null, invert);
|
|
4133
4157
|
var handleRef = useForkRef(internalRef, ref);
|
|
@@ -4561,7 +4585,7 @@
|
|
|
4561
4585
|
});
|
|
4562
4586
|
StyledInput.displayName = "StyledInput";
|
|
4563
4587
|
|
|
4564
|
-
var _excluded$
|
|
4588
|
+
var _excluded$p = ["className", "type", "disabled"];
|
|
4565
4589
|
var Input = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4566
4590
|
var _ref$className = _ref.className,
|
|
4567
4591
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
@@ -4569,7 +4593,7 @@
|
|
|
4569
4593
|
type = _ref$type === void 0 ? "text" : _ref$type,
|
|
4570
4594
|
_ref$disabled = _ref.disabled,
|
|
4571
4595
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
4572
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4596
|
+
rest = _objectWithoutProperties(_ref, _excluded$p);
|
|
4573
4597
|
|
|
4574
4598
|
return /*#__PURE__*/React__default["default"].createElement(StyledInput, _extends({
|
|
4575
4599
|
ref: ref,
|
|
@@ -4628,7 +4652,7 @@
|
|
|
4628
4652
|
};
|
|
4629
4653
|
OptionContent.displayName = "OptionContent";
|
|
4630
4654
|
|
|
4631
|
-
var _excluded$
|
|
4655
|
+
var _excluded$o = ["type", "mode", "target", "options", "selected", "position", "onChange", "actionIcon", "actionLabel", "placeholder", "emptyAction", "disableSearch", "forceCloseMenu", "selectClassName", "keepSameOptionsOrder", "onSelectOpen", "onSelectClose"];
|
|
4632
4656
|
var Select = function Select(_ref) {
|
|
4633
4657
|
var _ref$type = _ref.type,
|
|
4634
4658
|
type = _ref$type === void 0 ? "single" : _ref$type,
|
|
@@ -4658,7 +4682,7 @@
|
|
|
4658
4682
|
keepSameOptionsOrder = _ref$keepSameOptionsO === void 0 ? false : _ref$keepSameOptionsO,
|
|
4659
4683
|
onSelectOpen = _ref.onSelectOpen,
|
|
4660
4684
|
onSelectClose = _ref.onSelectClose,
|
|
4661
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
4685
|
+
prop = _objectWithoutProperties(_ref, _excluded$o);
|
|
4662
4686
|
|
|
4663
4687
|
var _useState = React.useState(),
|
|
4664
4688
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -4933,7 +4957,7 @@
|
|
|
4933
4957
|
});
|
|
4934
4958
|
StyledNavAsMoreTarget.displayName = "StyledNavAsMoreTarget";
|
|
4935
4959
|
|
|
4936
|
-
var _excluded$
|
|
4960
|
+
var _excluded$n = ["children", "active", "disabled", "className", "role"];
|
|
4937
4961
|
var Item = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4938
4962
|
var children = _ref.children,
|
|
4939
4963
|
_ref$active = _ref.active,
|
|
@@ -4942,7 +4966,7 @@
|
|
|
4942
4966
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
4943
4967
|
className = _ref.className,
|
|
4944
4968
|
role = _ref.role,
|
|
4945
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4969
|
+
rest = _objectWithoutProperties(_ref, _excluded$n);
|
|
4946
4970
|
|
|
4947
4971
|
return /*#__PURE__*/React__default["default"].createElement(StyledNavListItem, _extends({
|
|
4948
4972
|
className: classnames__default["default"]("c-nav__item", {
|
|
@@ -4984,11 +5008,11 @@
|
|
|
4984
5008
|
});
|
|
4985
5009
|
StyledExpandSingle.displayName = "StyledExpandSingle";
|
|
4986
5010
|
|
|
4987
|
-
var _excluded$
|
|
5011
|
+
var _excluded$m = ["expanded"];
|
|
4988
5012
|
var ExpandSingle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4989
5013
|
var _ref$expanded = _ref.expanded,
|
|
4990
5014
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
4991
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5015
|
+
rest = _objectWithoutProperties(_ref, _excluded$m);
|
|
4992
5016
|
|
|
4993
5017
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpandSingle, _extends({
|
|
4994
5018
|
ref: ref,
|
|
@@ -5301,11 +5325,11 @@
|
|
|
5301
5325
|
};
|
|
5302
5326
|
Nav.displayName = "Nav";
|
|
5303
5327
|
|
|
5304
|
-
var _excluded$
|
|
5328
|
+
var _excluded$l = ["expanded"];
|
|
5305
5329
|
var ExpandAll = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5306
5330
|
var _ref$expanded = _ref.expanded,
|
|
5307
5331
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
5308
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5332
|
+
rest = _objectWithoutProperties(_ref, _excluded$l);
|
|
5309
5333
|
|
|
5310
5334
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpand, _extends({
|
|
5311
5335
|
ref: ref,
|
|
@@ -5350,11 +5374,11 @@
|
|
|
5350
5374
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
5351
5375
|
StyledListSeparator.displayName = "StyledListSeparator";
|
|
5352
5376
|
|
|
5353
|
-
var _excluded$
|
|
5377
|
+
var _excluded$k = ["children", "className"];
|
|
5354
5378
|
var List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5355
5379
|
var children = _ref.children,
|
|
5356
5380
|
className = _ref.className,
|
|
5357
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5381
|
+
props = _objectWithoutProperties(_ref, _excluded$k);
|
|
5358
5382
|
|
|
5359
5383
|
return /*#__PURE__*/React__default["default"].createElement(StyledList, _extends({}, props, {
|
|
5360
5384
|
className: className,
|
|
@@ -5363,11 +5387,11 @@
|
|
|
5363
5387
|
});
|
|
5364
5388
|
List.displayName = "List";
|
|
5365
5389
|
|
|
5366
|
-
var _excluded$
|
|
5390
|
+
var _excluded$j = ["children", "className"];
|
|
5367
5391
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5368
5392
|
var children = _ref.children,
|
|
5369
5393
|
className = _ref.className,
|
|
5370
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5394
|
+
props = _objectWithoutProperties(_ref, _excluded$j);
|
|
5371
5395
|
|
|
5372
5396
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem, _extends({}, props, {
|
|
5373
5397
|
className: classnames__default["default"]("c-list-item", className),
|
|
@@ -6027,6 +6051,22 @@
|
|
|
6027
6051
|
ClockIcon.displayName = "ClockIcon";
|
|
6028
6052
|
var ClockIcon$1 = ClockIcon;
|
|
6029
6053
|
|
|
6054
|
+
var CollapsIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6055
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6056
|
+
width: 6,
|
|
6057
|
+
height: 9,
|
|
6058
|
+
viewBox: "0 0 6 9",
|
|
6059
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6060
|
+
fill: "var(--color-theme-600)",
|
|
6061
|
+
ref: svgRef
|
|
6062
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6063
|
+
d: "M4.243.22L0 4.462l4.243 4.243a.75.75 0 101.06-1.06l-3.18-3.183 3.18-3.182A.75.75 0 004.243.22z",
|
|
6064
|
+
fillRule: "evenodd"
|
|
6065
|
+
}));
|
|
6066
|
+
});
|
|
6067
|
+
CollapsIcon.displayName = "CollapsIcon";
|
|
6068
|
+
var CollapsIcon$1 = CollapsIcon;
|
|
6069
|
+
|
|
6030
6070
|
var CommentIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6031
6071
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6032
6072
|
width: 12,
|
|
@@ -6792,6 +6832,22 @@
|
|
|
6792
6832
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
6793
6833
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
6794
6834
|
|
|
6835
|
+
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6836
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6837
|
+
width: 24,
|
|
6838
|
+
height: 24,
|
|
6839
|
+
viewBox: "0 0 24 24",
|
|
6840
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6841
|
+
fill: "var(--color-theme-600)",
|
|
6842
|
+
ref: svgRef
|
|
6843
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6844
|
+
d: "M4 4h16a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V5a1 1 0 011-1zm2 14h12a1 1 0 010 2H6a1 1 0 010-2zm0-4h12a1 1 0 010 2H6a1 1 0 010-2zm0-4h12a1 1 0 010 2H6a1 1 0 010-2z",
|
|
6845
|
+
fillRule: "evenodd"
|
|
6846
|
+
}));
|
|
6847
|
+
});
|
|
6848
|
+
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
6849
|
+
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
6850
|
+
|
|
6795
6851
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6796
6852
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6797
6853
|
width: 12,
|
|
@@ -7199,6 +7255,22 @@
|
|
|
7199
7255
|
TaskAddIcon.displayName = "TaskAddIcon";
|
|
7200
7256
|
var TaskAddIcon$1 = TaskAddIcon;
|
|
7201
7257
|
|
|
7258
|
+
var TaskListAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7259
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7260
|
+
width: 24,
|
|
7261
|
+
height: 24,
|
|
7262
|
+
viewBox: "0 0 24 24",
|
|
7263
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7264
|
+
fill: "var(--color-theme-600)",
|
|
7265
|
+
ref: svgRef
|
|
7266
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7267
|
+
d: "M20 14v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zm-8 4a1 1 0 010 2H5a1 1 0 010-2h7zm0-4a1 1 0 010 2H5a1 1 0 010-2h7zm7-4a1 1 0 010 2H5a1 1 0 010-2h14zm0-6a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5a1 1 0 011-1h14z",
|
|
7268
|
+
fillRule: "evenodd"
|
|
7269
|
+
}));
|
|
7270
|
+
});
|
|
7271
|
+
TaskListAddIcon.displayName = "TaskListAddIcon";
|
|
7272
|
+
var TaskListAddIcon$1 = TaskListAddIcon;
|
|
7273
|
+
|
|
7202
7274
|
var TextFormatGeneralAltIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7203
7275
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7204
7276
|
width: 24,
|
|
@@ -7401,12 +7473,12 @@
|
|
|
7401
7473
|
});
|
|
7402
7474
|
StyledTextarea.displayName = "StyledTextarea";
|
|
7403
7475
|
|
|
7404
|
-
var _excluded$
|
|
7476
|
+
var _excluded$i = ["className", "disabled"];
|
|
7405
7477
|
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7406
7478
|
var className = _ref.className,
|
|
7407
7479
|
_ref$disabled = _ref.disabled,
|
|
7408
7480
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7409
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7481
|
+
rest = _objectWithoutProperties(_ref, _excluded$i);
|
|
7410
7482
|
|
|
7411
7483
|
return /*#__PURE__*/React__default["default"].createElement(StyledTextarea, _extends({}, rest, {
|
|
7412
7484
|
ref: ref,
|
|
@@ -7452,7 +7524,7 @@
|
|
|
7452
7524
|
});
|
|
7453
7525
|
StyledModalOverlay.displayName = "StyledModalOverlay";
|
|
7454
7526
|
|
|
7455
|
-
var _excluded$
|
|
7527
|
+
var _excluded$h = ["children", "disableFocusLock", "disableScrollLock", "disableBackgroundClick", "disableBackgroundColor", "open", "onClose"];
|
|
7456
7528
|
|
|
7457
7529
|
var getHasTransition = function getHasTransition(children) {
|
|
7458
7530
|
return children.props ? Object.prototype.hasOwnProperty.call(children.props, "in") : false;
|
|
@@ -7471,7 +7543,7 @@
|
|
|
7471
7543
|
_ref$open = _ref.open,
|
|
7472
7544
|
defaultOpen = _ref$open === void 0 ? false : _ref$open,
|
|
7473
7545
|
onClose = _ref.onClose,
|
|
7474
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7546
|
+
rest = _objectWithoutProperties(_ref, _excluded$h);
|
|
7475
7547
|
|
|
7476
7548
|
var _useState = React.useState(defaultOpen),
|
|
7477
7549
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -7618,7 +7690,7 @@
|
|
|
7618
7690
|
});
|
|
7619
7691
|
StyledCssTransition.displayName = "StyledCssTransition";
|
|
7620
7692
|
|
|
7621
|
-
var _excluded$
|
|
7693
|
+
var _excluded$g = ["children", "onClose", "controls", "open", "animation", "position", "mode", "disableFocusLock", "disableScrollLock", "disableBackgroundColor", "bodyStyle", "bodyClassName", "disableBackgroundClick"];
|
|
7622
7694
|
var Sheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7623
7695
|
var children = _ref.children,
|
|
7624
7696
|
onClose = _ref.onClose,
|
|
@@ -7642,7 +7714,7 @@
|
|
|
7642
7714
|
bodyClassName = _ref.bodyClassName,
|
|
7643
7715
|
_ref$disableBackgroun2 = _ref.disableBackgroundClick,
|
|
7644
7716
|
disableBackgroundClick = _ref$disableBackgroun2 === void 0 ? false : _ref$disableBackgroun2,
|
|
7645
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7717
|
+
rest = _objectWithoutProperties(_ref, _excluded$g);
|
|
7646
7718
|
|
|
7647
7719
|
var _useState = React.useState(defaultOpen),
|
|
7648
7720
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -7736,11 +7808,11 @@
|
|
|
7736
7808
|
})(["height:4rem;padding:0 1rem;display:flex;overflow:hidden;min-width:350px;@media screen and (max-width:350px){overflow:auto;}"]);
|
|
7737
7809
|
StyledHeader.displayName = "StyledHeader";
|
|
7738
7810
|
|
|
7739
|
-
var _excluded$
|
|
7811
|
+
var _excluded$f = ["className", "children"];
|
|
7740
7812
|
var Header = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7741
7813
|
var className = _ref.className,
|
|
7742
7814
|
children = _ref.children,
|
|
7743
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7815
|
+
rest = _objectWithoutProperties(_ref, _excluded$f);
|
|
7744
7816
|
|
|
7745
7817
|
return /*#__PURE__*/React__default["default"].createElement(StyledHeader, _extends({
|
|
7746
7818
|
type: "paper-2",
|
|
@@ -7756,7 +7828,7 @@
|
|
|
7756
7828
|
})(["white-space:pre-wrap;overflow-wrap:break-word;resize:none;"]);
|
|
7757
7829
|
StyledAutoResizeTextarea.displayName = "StyledAutoResizeTextarea";
|
|
7758
7830
|
|
|
7759
|
-
var _excluded$
|
|
7831
|
+
var _excluded$e = ["minRows", "maxRows", "lineHeight", "onChange", "className", "preventNewRowOnEnter", "cursorAtTextEnd", "onKeyDown", "value"];
|
|
7760
7832
|
var AutoResizeTextarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7761
7833
|
var _ref$minRows = _ref.minRows,
|
|
7762
7834
|
minRows = _ref$minRows === void 0 ? 1 : _ref$minRows,
|
|
@@ -7772,7 +7844,7 @@
|
|
|
7772
7844
|
cursorAtTextEnd = _ref$cursorAtTextEnd === void 0 ? false : _ref$cursorAtTextEnd,
|
|
7773
7845
|
onKeyDown = _ref.onKeyDown,
|
|
7774
7846
|
value = _ref.value,
|
|
7775
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7847
|
+
rest = _objectWithoutProperties(_ref, _excluded$e);
|
|
7776
7848
|
|
|
7777
7849
|
var innerRef = React.useRef(null);
|
|
7778
7850
|
|
|
@@ -7997,30 +8069,6 @@
|
|
|
7997
8069
|
};
|
|
7998
8070
|
AccordionItemHead.displayName = "AccordionItemHead";
|
|
7999
8071
|
|
|
8000
|
-
var useHeight = function useHeight(ref) {
|
|
8001
|
-
var _useState = React.useState(0),
|
|
8002
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
8003
|
-
height = _useState2[0],
|
|
8004
|
-
setHeight = _useState2[1];
|
|
8005
|
-
|
|
8006
|
-
React.useEffect(function () {
|
|
8007
|
-
if (ref && ref.current) {
|
|
8008
|
-
var element = ref.current;
|
|
8009
|
-
var prevMaxHeight = element.style.maxHeight;
|
|
8010
|
-
var prevVisibility = element.style.visibility;
|
|
8011
|
-
element.style.visibility = "hidden";
|
|
8012
|
-
element.style.maxHeight = "none";
|
|
8013
|
-
var elementHeight = element.clientHeight;
|
|
8014
|
-
element.style.visibility = prevVisibility;
|
|
8015
|
-
element.style.maxHeight = prevMaxHeight;
|
|
8016
|
-
return setHeight(elementHeight);
|
|
8017
|
-
}
|
|
8018
|
-
}, [ref]);
|
|
8019
|
-
return height;
|
|
8020
|
-
};
|
|
8021
|
-
|
|
8022
|
-
var useHeight$1 = useHeight;
|
|
8023
|
-
|
|
8024
8072
|
var AccordionItemBody = function AccordionItemBody(_ref) {
|
|
8025
8073
|
var children = _ref.children,
|
|
8026
8074
|
className = _ref.className;
|
|
@@ -8087,7 +8135,7 @@
|
|
|
8087
8135
|
});
|
|
8088
8136
|
StyledChoose.displayName = "StyledChoose";
|
|
8089
8137
|
|
|
8090
|
-
var _excluded$
|
|
8138
|
+
var _excluded$d = ["children", "disabled", "active", "className"];
|
|
8091
8139
|
|
|
8092
8140
|
/**
|
|
8093
8141
|
* Choose component
|
|
@@ -8099,7 +8147,7 @@
|
|
|
8099
8147
|
_ref$active = _ref.active,
|
|
8100
8148
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
8101
8149
|
className = _ref.className,
|
|
8102
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8150
|
+
args = _objectWithoutProperties(_ref, _excluded$d);
|
|
8103
8151
|
|
|
8104
8152
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose, _extends({
|
|
8105
8153
|
disabled: disabled,
|
|
@@ -8192,7 +8240,7 @@
|
|
|
8192
8240
|
StyledLinkElements.displayName = "StyledLinkElements";
|
|
8193
8241
|
StyledLink.displayName = "StyledLink";
|
|
8194
8242
|
|
|
8195
|
-
var _excluded$
|
|
8243
|
+
var _excluded$c = ["children", "className"];
|
|
8196
8244
|
|
|
8197
8245
|
/**
|
|
8198
8246
|
* Back link component
|
|
@@ -8200,7 +8248,7 @@
|
|
|
8200
8248
|
var BackLink = function BackLink(_ref) {
|
|
8201
8249
|
var children = _ref.children,
|
|
8202
8250
|
className = _ref.className,
|
|
8203
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8251
|
+
args = _objectWithoutProperties(_ref, _excluded$c);
|
|
8204
8252
|
|
|
8205
8253
|
return /*#__PURE__*/React__default["default"].createElement(StyledBackLink, _extends({
|
|
8206
8254
|
className: classnames__default["default"]("c-back-link", className)
|
|
@@ -8208,7 +8256,7 @@
|
|
|
8208
8256
|
};
|
|
8209
8257
|
BackLink.displayName = "BackLink";
|
|
8210
8258
|
|
|
8211
|
-
var _excluded$
|
|
8259
|
+
var _excluded$b = ["children", "variant", "size", "disabled", "className"];
|
|
8212
8260
|
|
|
8213
8261
|
/**
|
|
8214
8262
|
* Link component
|
|
@@ -8221,7 +8269,7 @@
|
|
|
8221
8269
|
_ref$disabled = _ref.disabled,
|
|
8222
8270
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
8223
8271
|
className = _ref.className,
|
|
8224
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8272
|
+
args = _objectWithoutProperties(_ref, _excluded$b);
|
|
8225
8273
|
|
|
8226
8274
|
return /*#__PURE__*/React__default["default"].createElement(StyledLink, _extends({
|
|
8227
8275
|
disabled: disabled,
|
|
@@ -8351,11 +8399,11 @@
|
|
|
8351
8399
|
});
|
|
8352
8400
|
Dialog.displayName = "Dialog";
|
|
8353
8401
|
|
|
8354
|
-
var _excluded$
|
|
8402
|
+
var _excluded$a = ["className", "children"];
|
|
8355
8403
|
var DialogContent = function DialogContent(_ref) {
|
|
8356
8404
|
var className = _ref.className,
|
|
8357
8405
|
children = _ref.children,
|
|
8358
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8406
|
+
rest = _objectWithoutProperties(_ref, _excluded$a);
|
|
8359
8407
|
|
|
8360
8408
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogContent, _extends({
|
|
8361
8409
|
className: classnames__default["default"]("c-dialog-content", className)
|
|
@@ -8371,13 +8419,13 @@
|
|
|
8371
8419
|
};
|
|
8372
8420
|
DialogContentDivider.displayName = "DialogContentDivider";
|
|
8373
8421
|
|
|
8374
|
-
var _excluded$
|
|
8422
|
+
var _excluded$9 = ["children", "className", "disableDefaultHeading"];
|
|
8375
8423
|
var DialogTitle = function DialogTitle(_ref) {
|
|
8376
8424
|
var children = _ref.children,
|
|
8377
8425
|
className = _ref.className,
|
|
8378
8426
|
_ref$disableDefaultHe = _ref.disableDefaultHeading,
|
|
8379
8427
|
disableDefaultHeading = _ref$disableDefaultHe === void 0 ? false : _ref$disableDefaultHe,
|
|
8380
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8428
|
+
rest = _objectWithoutProperties(_ref, _excluded$9);
|
|
8381
8429
|
|
|
8382
8430
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogTitle, _extends({
|
|
8383
8431
|
className: classnames__default["default"]("c-dialog-title-wrapper", className)
|
|
@@ -8385,11 +8433,11 @@
|
|
|
8385
8433
|
};
|
|
8386
8434
|
DialogTitle.displayName = "DialogTitle";
|
|
8387
8435
|
|
|
8388
|
-
var _excluded$
|
|
8436
|
+
var _excluded$8 = ["className", "children"];
|
|
8389
8437
|
var DialogActions = function DialogActions(_ref) {
|
|
8390
8438
|
var className = _ref.className,
|
|
8391
8439
|
children = _ref.children,
|
|
8392
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8440
|
+
rest = _objectWithoutProperties(_ref, _excluded$8);
|
|
8393
8441
|
|
|
8394
8442
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogActions, _extends({
|
|
8395
8443
|
className: classnames__default["default"]("c-dialog-actions", className)
|
|
@@ -8598,7 +8646,7 @@
|
|
|
8598
8646
|
});
|
|
8599
8647
|
StyledPressed.displayName = "StyledPressed";
|
|
8600
8648
|
|
|
8601
|
-
var _excluded$
|
|
8649
|
+
var _excluded$7 = ["children", "active", "className"];
|
|
8602
8650
|
|
|
8603
8651
|
/**
|
|
8604
8652
|
* Pressed wrapper for button component
|
|
@@ -8608,7 +8656,7 @@
|
|
|
8608
8656
|
_ref$active = _ref.active,
|
|
8609
8657
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
8610
8658
|
className = _ref.className,
|
|
8611
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8659
|
+
args = _objectWithoutProperties(_ref, _excluded$7);
|
|
8612
8660
|
|
|
8613
8661
|
return /*#__PURE__*/React__default["default"].createElement(StyledPressed, _extends({
|
|
8614
8662
|
active: active,
|
|
@@ -9050,6 +9098,8 @@
|
|
|
9050
9098
|
};
|
|
9051
9099
|
SelectDate.displayName = "SelectDate";
|
|
9052
9100
|
|
|
9101
|
+
var _excluded$6 = ["in", "children", "style", "timeout"];
|
|
9102
|
+
|
|
9053
9103
|
var defaultStyle$1 = function defaultStyle(duration) {
|
|
9054
9104
|
return {
|
|
9055
9105
|
transition: "all ".concat(duration, "ms ease-in-out"),
|
|
@@ -9074,19 +9124,17 @@
|
|
|
9074
9124
|
var Fade = function Fade(_ref) {
|
|
9075
9125
|
var _ref$in = _ref.in,
|
|
9076
9126
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
9077
|
-
onEnter = _ref.onEnter,
|
|
9078
|
-
onExited = _ref.onExited,
|
|
9079
9127
|
children = _ref.children,
|
|
9080
9128
|
style = _ref.style,
|
|
9081
9129
|
_ref$timeout = _ref.timeout,
|
|
9082
|
-
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout
|
|
9083
|
-
|
|
9130
|
+
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout,
|
|
9131
|
+
rest = _objectWithoutProperties(_ref, _excluded$6);
|
|
9132
|
+
|
|
9133
|
+
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
9084
9134
|
appear: true,
|
|
9085
9135
|
in: inProp,
|
|
9086
|
-
timeout: timeout
|
|
9087
|
-
|
|
9088
|
-
onExited: onExited
|
|
9089
|
-
}, function (state) {
|
|
9136
|
+
timeout: timeout
|
|
9137
|
+
}, rest), function (state) {
|
|
9090
9138
|
return /*#__PURE__*/React.cloneElement(children, {
|
|
9091
9139
|
style: _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({
|
|
9092
9140
|
visibility: state === "exited" && !inProp ? "hidden" : undefined
|
|
@@ -9096,7 +9144,7 @@
|
|
|
9096
9144
|
};
|
|
9097
9145
|
Fade.displayName = "Fade";
|
|
9098
9146
|
|
|
9099
|
-
var _excluded$
|
|
9147
|
+
var _excluded$5 = ["in", "children", "style", "timeout", "initialDirection"];
|
|
9100
9148
|
var Slide = function Slide(_ref) {
|
|
9101
9149
|
var _ref$in = _ref.in,
|
|
9102
9150
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
@@ -9106,7 +9154,7 @@
|
|
|
9106
9154
|
timeout = _ref$timeout === void 0 ? 300 : _ref$timeout,
|
|
9107
9155
|
_ref$initialDirection = _ref.initialDirection,
|
|
9108
9156
|
initialDirection = _ref$initialDirection === void 0 ? "left" : _ref$initialDirection,
|
|
9109
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9157
|
+
rest = _objectWithoutProperties(_ref, _excluded$5);
|
|
9110
9158
|
|
|
9111
9159
|
var directionSign;
|
|
9112
9160
|
|
|
@@ -9166,12 +9214,12 @@
|
|
|
9166
9214
|
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;}"]);
|
|
9167
9215
|
});
|
|
9168
9216
|
|
|
9169
|
-
var _excluded$
|
|
9217
|
+
var _excluded$4 = ["children", "direction"];
|
|
9170
9218
|
var SlideLeftRightTransition = function SlideLeftRightTransition(_ref) {
|
|
9171
9219
|
var children = _ref.children,
|
|
9172
9220
|
_ref$direction = _ref.direction,
|
|
9173
9221
|
direction = _ref$direction === void 0 ? "left" : _ref$direction,
|
|
9174
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9222
|
+
props = _objectWithoutProperties(_ref, _excluded$4);
|
|
9175
9223
|
|
|
9176
9224
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.CSSTransition, _extends({
|
|
9177
9225
|
timeout: 200,
|
|
@@ -9215,6 +9263,8 @@
|
|
|
9215
9263
|
};
|
|
9216
9264
|
ResizeTransition.displayName = "ResizeTransition";
|
|
9217
9265
|
|
|
9266
|
+
var _excluded$3 = ["in", "children", "style", "timeout"];
|
|
9267
|
+
|
|
9218
9268
|
var defaultStyle = function defaultStyle(duration) {
|
|
9219
9269
|
return {
|
|
9220
9270
|
transition: "all ".concat(duration, "ms ease-in"),
|
|
@@ -9245,19 +9295,17 @@
|
|
|
9245
9295
|
var Reveal = function Reveal(_ref) {
|
|
9246
9296
|
var _ref$in = _ref.in,
|
|
9247
9297
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
9248
|
-
onEnter = _ref.onEnter,
|
|
9249
|
-
onExited = _ref.onExited,
|
|
9250
9298
|
children = _ref.children,
|
|
9251
9299
|
style = _ref.style,
|
|
9252
9300
|
_ref$timeout = _ref.timeout,
|
|
9253
|
-
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout
|
|
9254
|
-
|
|
9301
|
+
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout,
|
|
9302
|
+
rest = _objectWithoutProperties(_ref, _excluded$3);
|
|
9303
|
+
|
|
9304
|
+
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
9255
9305
|
appear: true,
|
|
9256
9306
|
in: inProp,
|
|
9257
|
-
timeout: timeout
|
|
9258
|
-
|
|
9259
|
-
onExited: onExited
|
|
9260
|
-
}, function (state) {
|
|
9307
|
+
timeout: timeout
|
|
9308
|
+
}, rest), function (state) {
|
|
9261
9309
|
return /*#__PURE__*/React.cloneElement(children, {
|
|
9262
9310
|
style: _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, defaultStyle(inProp ? timeout : 0)), transitionStyles$1[state]), style), children.props.style)
|
|
9263
9311
|
});
|
|
@@ -10026,6 +10074,7 @@
|
|
|
10026
10074
|
exports.ClockStopwatchIcon = ClockStopwatchIcon$1;
|
|
10027
10075
|
exports.ClockStopwatchSmallIcon = ClockStopwatchSmallIcon$1;
|
|
10028
10076
|
exports.CloseSmallIcon = CloseSmallIcon$1;
|
|
10077
|
+
exports.CollapsIcon = CollapsIcon$1;
|
|
10029
10078
|
exports.CollapseAllIcon = CollapseAllIcon$1;
|
|
10030
10079
|
exports.CollapseExpandSingleIcon = CollapseExpandSingleIcon$1;
|
|
10031
10080
|
exports.ComboBox = ComboBox;
|
|
@@ -10123,6 +10172,7 @@
|
|
|
10123
10172
|
exports.OpenExpandedIcon = OpenExpandedIcon$1;
|
|
10124
10173
|
exports.Option = Option;
|
|
10125
10174
|
exports.OptionGroup = OptionGroup;
|
|
10175
|
+
exports.OrderFirstIcon = OrderFirstIcon$1;
|
|
10126
10176
|
exports.Overlay = Overlay;
|
|
10127
10177
|
exports.PaidSmallIcon = PaidSmallIcon$1;
|
|
10128
10178
|
exports.Paper = Paper;
|
|
@@ -10175,6 +10225,7 @@
|
|
|
10175
10225
|
exports.Steps = Steps;
|
|
10176
10226
|
exports.Table = Table;
|
|
10177
10227
|
exports.TaskAddIcon = TaskAddIcon$1;
|
|
10228
|
+
exports.TaskListAddIcon = TaskListAddIcon$1;
|
|
10178
10229
|
exports.Tbody = Tbody;
|
|
10179
10230
|
exports.TextFormatGeneralAltIcon = TextFormatGeneralAltIcon$1;
|
|
10180
10231
|
exports.Textarea = Textarea;
|