@activecollab/components 1.0.30 → 1.0.34
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/Accordion/AccordionItemBody.js +2 -2
- package/dist/cjs/components/Accordion/AccordionItemBody.js.map +1 -1
- 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 +16 -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/cjs/hooks/useHeight.js +2 -3
- package/dist/cjs/hooks/useHeight.js.map +1 -1
- package/dist/esm/components/Accordion/AccordionItemBody.js +1 -1
- package/dist/esm/components/Accordion/AccordionItemBody.js.map +1 -1
- 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 +2 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +2 -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/esm/hooks/useHeight.d.ts +1 -2
- package/dist/esm/hooks/useHeight.d.ts.map +1 -1
- package/dist/esm/hooks/useHeight.js +1 -4
- package/dist/esm/hooks/useHeight.js.map +1 -1
- package/dist/index.js +180 -147
- 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,36 @@
|
|
|
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 _excluded$q = ["as", "className", "invert"];
|
|
4124
4146
|
var ScrollElement = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4125
4147
|
var _ref$as = _ref.as,
|
|
4126
4148
|
as = _ref$as === void 0 ? "div" : _ref$as,
|
|
4127
4149
|
className = _ref.className,
|
|
4128
4150
|
_ref$invert = _ref.invert,
|
|
4129
4151
|
invert = _ref$invert === void 0 ? false : _ref$invert,
|
|
4130
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4152
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
4131
4153
|
|
|
4132
4154
|
var internalRef = useInitScrollRef(null, invert);
|
|
4133
4155
|
var handleRef = useForkRef(internalRef, ref);
|
|
@@ -4561,7 +4583,7 @@
|
|
|
4561
4583
|
});
|
|
4562
4584
|
StyledInput.displayName = "StyledInput";
|
|
4563
4585
|
|
|
4564
|
-
var _excluded$
|
|
4586
|
+
var _excluded$p = ["className", "type", "disabled"];
|
|
4565
4587
|
var Input = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4566
4588
|
var _ref$className = _ref.className,
|
|
4567
4589
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
@@ -4569,7 +4591,7 @@
|
|
|
4569
4591
|
type = _ref$type === void 0 ? "text" : _ref$type,
|
|
4570
4592
|
_ref$disabled = _ref.disabled,
|
|
4571
4593
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
4572
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4594
|
+
rest = _objectWithoutProperties(_ref, _excluded$p);
|
|
4573
4595
|
|
|
4574
4596
|
return /*#__PURE__*/React__default["default"].createElement(StyledInput, _extends({
|
|
4575
4597
|
ref: ref,
|
|
@@ -4628,7 +4650,7 @@
|
|
|
4628
4650
|
};
|
|
4629
4651
|
OptionContent.displayName = "OptionContent";
|
|
4630
4652
|
|
|
4631
|
-
var _excluded$
|
|
4653
|
+
var _excluded$o = ["type", "mode", "target", "options", "selected", "position", "onChange", "actionIcon", "actionLabel", "placeholder", "emptyAction", "disableSearch", "forceCloseMenu", "selectClassName", "keepSameOptionsOrder", "onSelectOpen", "onSelectClose"];
|
|
4632
4654
|
var Select = function Select(_ref) {
|
|
4633
4655
|
var _ref$type = _ref.type,
|
|
4634
4656
|
type = _ref$type === void 0 ? "single" : _ref$type,
|
|
@@ -4658,7 +4680,7 @@
|
|
|
4658
4680
|
keepSameOptionsOrder = _ref$keepSameOptionsO === void 0 ? false : _ref$keepSameOptionsO,
|
|
4659
4681
|
onSelectOpen = _ref.onSelectOpen,
|
|
4660
4682
|
onSelectClose = _ref.onSelectClose,
|
|
4661
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
4683
|
+
prop = _objectWithoutProperties(_ref, _excluded$o);
|
|
4662
4684
|
|
|
4663
4685
|
var _useState = React.useState(),
|
|
4664
4686
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -4933,7 +4955,7 @@
|
|
|
4933
4955
|
});
|
|
4934
4956
|
StyledNavAsMoreTarget.displayName = "StyledNavAsMoreTarget";
|
|
4935
4957
|
|
|
4936
|
-
var _excluded$
|
|
4958
|
+
var _excluded$n = ["children", "active", "disabled", "className", "role"];
|
|
4937
4959
|
var Item = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4938
4960
|
var children = _ref.children,
|
|
4939
4961
|
_ref$active = _ref.active,
|
|
@@ -4942,7 +4964,7 @@
|
|
|
4942
4964
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
4943
4965
|
className = _ref.className,
|
|
4944
4966
|
role = _ref.role,
|
|
4945
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4967
|
+
rest = _objectWithoutProperties(_ref, _excluded$n);
|
|
4946
4968
|
|
|
4947
4969
|
return /*#__PURE__*/React__default["default"].createElement(StyledNavListItem, _extends({
|
|
4948
4970
|
className: classnames__default["default"]("c-nav__item", {
|
|
@@ -4984,11 +5006,11 @@
|
|
|
4984
5006
|
});
|
|
4985
5007
|
StyledExpandSingle.displayName = "StyledExpandSingle";
|
|
4986
5008
|
|
|
4987
|
-
var _excluded$
|
|
5009
|
+
var _excluded$m = ["expanded"];
|
|
4988
5010
|
var ExpandSingle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4989
5011
|
var _ref$expanded = _ref.expanded,
|
|
4990
5012
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
4991
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5013
|
+
rest = _objectWithoutProperties(_ref, _excluded$m);
|
|
4992
5014
|
|
|
4993
5015
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpandSingle, _extends({
|
|
4994
5016
|
ref: ref,
|
|
@@ -5301,11 +5323,11 @@
|
|
|
5301
5323
|
};
|
|
5302
5324
|
Nav.displayName = "Nav";
|
|
5303
5325
|
|
|
5304
|
-
var _excluded$
|
|
5326
|
+
var _excluded$l = ["expanded"];
|
|
5305
5327
|
var ExpandAll = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5306
5328
|
var _ref$expanded = _ref.expanded,
|
|
5307
5329
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
5308
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5330
|
+
rest = _objectWithoutProperties(_ref, _excluded$l);
|
|
5309
5331
|
|
|
5310
5332
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpand, _extends({
|
|
5311
5333
|
ref: ref,
|
|
@@ -5350,11 +5372,11 @@
|
|
|
5350
5372
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
5351
5373
|
StyledListSeparator.displayName = "StyledListSeparator";
|
|
5352
5374
|
|
|
5353
|
-
var _excluded$
|
|
5375
|
+
var _excluded$k = ["children", "className"];
|
|
5354
5376
|
var List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5355
5377
|
var children = _ref.children,
|
|
5356
5378
|
className = _ref.className,
|
|
5357
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5379
|
+
props = _objectWithoutProperties(_ref, _excluded$k);
|
|
5358
5380
|
|
|
5359
5381
|
return /*#__PURE__*/React__default["default"].createElement(StyledList, _extends({}, props, {
|
|
5360
5382
|
className: className,
|
|
@@ -5363,11 +5385,11 @@
|
|
|
5363
5385
|
});
|
|
5364
5386
|
List.displayName = "List";
|
|
5365
5387
|
|
|
5366
|
-
var _excluded$
|
|
5388
|
+
var _excluded$j = ["children", "className"];
|
|
5367
5389
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5368
5390
|
var children = _ref.children,
|
|
5369
5391
|
className = _ref.className,
|
|
5370
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5392
|
+
props = _objectWithoutProperties(_ref, _excluded$j);
|
|
5371
5393
|
|
|
5372
5394
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem, _extends({}, props, {
|
|
5373
5395
|
className: classnames__default["default"]("c-list-item", className),
|
|
@@ -6808,6 +6830,22 @@
|
|
|
6808
6830
|
OpenExpandedIcon.displayName = "OpenExpandedIcon";
|
|
6809
6831
|
var OpenExpandedIcon$1 = OpenExpandedIcon;
|
|
6810
6832
|
|
|
6833
|
+
var OrderFirstIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6834
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6835
|
+
width: 24,
|
|
6836
|
+
height: 24,
|
|
6837
|
+
viewBox: "0 0 24 24",
|
|
6838
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6839
|
+
fill: "var(--color-theme-600)",
|
|
6840
|
+
ref: svgRef
|
|
6841
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6842
|
+
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",
|
|
6843
|
+
fillRule: "evenodd"
|
|
6844
|
+
}));
|
|
6845
|
+
});
|
|
6846
|
+
OrderFirstIcon.displayName = "OrderFirstIcon";
|
|
6847
|
+
var OrderFirstIcon$1 = OrderFirstIcon;
|
|
6848
|
+
|
|
6811
6849
|
var PaidSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6812
6850
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6813
6851
|
width: 12,
|
|
@@ -7215,6 +7253,22 @@
|
|
|
7215
7253
|
TaskAddIcon.displayName = "TaskAddIcon";
|
|
7216
7254
|
var TaskAddIcon$1 = TaskAddIcon;
|
|
7217
7255
|
|
|
7256
|
+
var TaskListAddIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7257
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7258
|
+
width: 24,
|
|
7259
|
+
height: 24,
|
|
7260
|
+
viewBox: "0 0 24 24",
|
|
7261
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7262
|
+
fill: "var(--color-theme-600)",
|
|
7263
|
+
ref: svgRef
|
|
7264
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7265
|
+
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",
|
|
7266
|
+
fillRule: "evenodd"
|
|
7267
|
+
}));
|
|
7268
|
+
});
|
|
7269
|
+
TaskListAddIcon.displayName = "TaskListAddIcon";
|
|
7270
|
+
var TaskListAddIcon$1 = TaskListAddIcon;
|
|
7271
|
+
|
|
7218
7272
|
var TextFormatGeneralAltIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7219
7273
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7220
7274
|
width: 24,
|
|
@@ -7417,12 +7471,12 @@
|
|
|
7417
7471
|
});
|
|
7418
7472
|
StyledTextarea.displayName = "StyledTextarea";
|
|
7419
7473
|
|
|
7420
|
-
var _excluded$
|
|
7474
|
+
var _excluded$i = ["className", "disabled"];
|
|
7421
7475
|
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7422
7476
|
var className = _ref.className,
|
|
7423
7477
|
_ref$disabled = _ref.disabled,
|
|
7424
7478
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7425
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7479
|
+
rest = _objectWithoutProperties(_ref, _excluded$i);
|
|
7426
7480
|
|
|
7427
7481
|
return /*#__PURE__*/React__default["default"].createElement(StyledTextarea, _extends({}, rest, {
|
|
7428
7482
|
ref: ref,
|
|
@@ -7468,7 +7522,7 @@
|
|
|
7468
7522
|
});
|
|
7469
7523
|
StyledModalOverlay.displayName = "StyledModalOverlay";
|
|
7470
7524
|
|
|
7471
|
-
var _excluded$
|
|
7525
|
+
var _excluded$h = ["children", "disableFocusLock", "disableScrollLock", "disableBackgroundClick", "disableBackgroundColor", "open", "onClose"];
|
|
7472
7526
|
|
|
7473
7527
|
var getHasTransition = function getHasTransition(children) {
|
|
7474
7528
|
return children.props ? Object.prototype.hasOwnProperty.call(children.props, "in") : false;
|
|
@@ -7487,7 +7541,7 @@
|
|
|
7487
7541
|
_ref$open = _ref.open,
|
|
7488
7542
|
defaultOpen = _ref$open === void 0 ? false : _ref$open,
|
|
7489
7543
|
onClose = _ref.onClose,
|
|
7490
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7544
|
+
rest = _objectWithoutProperties(_ref, _excluded$h);
|
|
7491
7545
|
|
|
7492
7546
|
var _useState = React.useState(defaultOpen),
|
|
7493
7547
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -7634,7 +7688,7 @@
|
|
|
7634
7688
|
});
|
|
7635
7689
|
StyledCssTransition.displayName = "StyledCssTransition";
|
|
7636
7690
|
|
|
7637
|
-
var _excluded$
|
|
7691
|
+
var _excluded$g = ["children", "onClose", "controls", "open", "animation", "position", "mode", "disableFocusLock", "disableScrollLock", "disableBackgroundColor", "bodyStyle", "bodyClassName", "disableBackgroundClick"];
|
|
7638
7692
|
var Sheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7639
7693
|
var children = _ref.children,
|
|
7640
7694
|
onClose = _ref.onClose,
|
|
@@ -7658,7 +7712,7 @@
|
|
|
7658
7712
|
bodyClassName = _ref.bodyClassName,
|
|
7659
7713
|
_ref$disableBackgroun2 = _ref.disableBackgroundClick,
|
|
7660
7714
|
disableBackgroundClick = _ref$disableBackgroun2 === void 0 ? false : _ref$disableBackgroun2,
|
|
7661
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7715
|
+
rest = _objectWithoutProperties(_ref, _excluded$g);
|
|
7662
7716
|
|
|
7663
7717
|
var _useState = React.useState(defaultOpen),
|
|
7664
7718
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -7752,11 +7806,11 @@
|
|
|
7752
7806
|
})(["height:4rem;padding:0 1rem;display:flex;overflow:hidden;min-width:350px;@media screen and (max-width:350px){overflow:auto;}"]);
|
|
7753
7807
|
StyledHeader.displayName = "StyledHeader";
|
|
7754
7808
|
|
|
7755
|
-
var _excluded$
|
|
7809
|
+
var _excluded$f = ["className", "children"];
|
|
7756
7810
|
var Header = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7757
7811
|
var className = _ref.className,
|
|
7758
7812
|
children = _ref.children,
|
|
7759
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7813
|
+
rest = _objectWithoutProperties(_ref, _excluded$f);
|
|
7760
7814
|
|
|
7761
7815
|
return /*#__PURE__*/React__default["default"].createElement(StyledHeader, _extends({
|
|
7762
7816
|
type: "paper-2",
|
|
@@ -7772,7 +7826,7 @@
|
|
|
7772
7826
|
})(["white-space:pre-wrap;overflow-wrap:break-word;resize:none;"]);
|
|
7773
7827
|
StyledAutoResizeTextarea.displayName = "StyledAutoResizeTextarea";
|
|
7774
7828
|
|
|
7775
|
-
var _excluded$
|
|
7829
|
+
var _excluded$e = ["minRows", "maxRows", "lineHeight", "onChange", "className", "preventNewRowOnEnter", "cursorAtTextEnd", "onKeyDown", "value"];
|
|
7776
7830
|
var AutoResizeTextarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7777
7831
|
var _ref$minRows = _ref.minRows,
|
|
7778
7832
|
minRows = _ref$minRows === void 0 ? 1 : _ref$minRows,
|
|
@@ -7788,7 +7842,7 @@
|
|
|
7788
7842
|
cursorAtTextEnd = _ref$cursorAtTextEnd === void 0 ? false : _ref$cursorAtTextEnd,
|
|
7789
7843
|
onKeyDown = _ref.onKeyDown,
|
|
7790
7844
|
value = _ref.value,
|
|
7791
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7845
|
+
rest = _objectWithoutProperties(_ref, _excluded$e);
|
|
7792
7846
|
|
|
7793
7847
|
var innerRef = React.useRef(null);
|
|
7794
7848
|
|
|
@@ -8013,37 +8067,13 @@
|
|
|
8013
8067
|
};
|
|
8014
8068
|
AccordionItemHead.displayName = "AccordionItemHead";
|
|
8015
8069
|
|
|
8016
|
-
var useHeight = function useHeight(ref) {
|
|
8017
|
-
var _useState = React.useState(0),
|
|
8018
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
8019
|
-
height = _useState2[0],
|
|
8020
|
-
setHeight = _useState2[1];
|
|
8021
|
-
|
|
8022
|
-
React.useEffect(function () {
|
|
8023
|
-
if (ref && ref.current) {
|
|
8024
|
-
var element = ref.current;
|
|
8025
|
-
var prevMaxHeight = element.style.maxHeight;
|
|
8026
|
-
var prevVisibility = element.style.visibility;
|
|
8027
|
-
element.style.visibility = "hidden";
|
|
8028
|
-
element.style.maxHeight = "none";
|
|
8029
|
-
var elementHeight = element.clientHeight;
|
|
8030
|
-
element.style.visibility = prevVisibility;
|
|
8031
|
-
element.style.maxHeight = prevMaxHeight;
|
|
8032
|
-
return setHeight(elementHeight);
|
|
8033
|
-
}
|
|
8034
|
-
}, [ref]);
|
|
8035
|
-
return height;
|
|
8036
|
-
};
|
|
8037
|
-
|
|
8038
|
-
var useHeight$1 = useHeight;
|
|
8039
|
-
|
|
8040
8070
|
var AccordionItemBody = function AccordionItemBody(_ref) {
|
|
8041
8071
|
var children = _ref.children,
|
|
8042
8072
|
className = _ref.className;
|
|
8043
8073
|
var itemContext = React.useContext(ItemContext);
|
|
8044
8074
|
var divRef = React.useRef(null);
|
|
8045
8075
|
var duration = 200;
|
|
8046
|
-
var height = useHeight
|
|
8076
|
+
var height = useHeight(divRef);
|
|
8047
8077
|
var defaultStyle = {
|
|
8048
8078
|
transition: "max-height ".concat(duration, "ms linear"),
|
|
8049
8079
|
maxHeight: 0
|
|
@@ -8103,7 +8133,7 @@
|
|
|
8103
8133
|
});
|
|
8104
8134
|
StyledChoose.displayName = "StyledChoose";
|
|
8105
8135
|
|
|
8106
|
-
var _excluded$
|
|
8136
|
+
var _excluded$d = ["children", "disabled", "active", "className"];
|
|
8107
8137
|
|
|
8108
8138
|
/**
|
|
8109
8139
|
* Choose component
|
|
@@ -8115,7 +8145,7 @@
|
|
|
8115
8145
|
_ref$active = _ref.active,
|
|
8116
8146
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
8117
8147
|
className = _ref.className,
|
|
8118
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8148
|
+
args = _objectWithoutProperties(_ref, _excluded$d);
|
|
8119
8149
|
|
|
8120
8150
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose, _extends({
|
|
8121
8151
|
disabled: disabled,
|
|
@@ -8208,7 +8238,7 @@
|
|
|
8208
8238
|
StyledLinkElements.displayName = "StyledLinkElements";
|
|
8209
8239
|
StyledLink.displayName = "StyledLink";
|
|
8210
8240
|
|
|
8211
|
-
var _excluded$
|
|
8241
|
+
var _excluded$c = ["children", "className"];
|
|
8212
8242
|
|
|
8213
8243
|
/**
|
|
8214
8244
|
* Back link component
|
|
@@ -8216,7 +8246,7 @@
|
|
|
8216
8246
|
var BackLink = function BackLink(_ref) {
|
|
8217
8247
|
var children = _ref.children,
|
|
8218
8248
|
className = _ref.className,
|
|
8219
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8249
|
+
args = _objectWithoutProperties(_ref, _excluded$c);
|
|
8220
8250
|
|
|
8221
8251
|
return /*#__PURE__*/React__default["default"].createElement(StyledBackLink, _extends({
|
|
8222
8252
|
className: classnames__default["default"]("c-back-link", className)
|
|
@@ -8224,7 +8254,7 @@
|
|
|
8224
8254
|
};
|
|
8225
8255
|
BackLink.displayName = "BackLink";
|
|
8226
8256
|
|
|
8227
|
-
var _excluded$
|
|
8257
|
+
var _excluded$b = ["children", "variant", "size", "disabled", "className"];
|
|
8228
8258
|
|
|
8229
8259
|
/**
|
|
8230
8260
|
* Link component
|
|
@@ -8237,7 +8267,7 @@
|
|
|
8237
8267
|
_ref$disabled = _ref.disabled,
|
|
8238
8268
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
8239
8269
|
className = _ref.className,
|
|
8240
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8270
|
+
args = _objectWithoutProperties(_ref, _excluded$b);
|
|
8241
8271
|
|
|
8242
8272
|
return /*#__PURE__*/React__default["default"].createElement(StyledLink, _extends({
|
|
8243
8273
|
disabled: disabled,
|
|
@@ -8367,11 +8397,11 @@
|
|
|
8367
8397
|
});
|
|
8368
8398
|
Dialog.displayName = "Dialog";
|
|
8369
8399
|
|
|
8370
|
-
var _excluded$
|
|
8400
|
+
var _excluded$a = ["className", "children"];
|
|
8371
8401
|
var DialogContent = function DialogContent(_ref) {
|
|
8372
8402
|
var className = _ref.className,
|
|
8373
8403
|
children = _ref.children,
|
|
8374
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8404
|
+
rest = _objectWithoutProperties(_ref, _excluded$a);
|
|
8375
8405
|
|
|
8376
8406
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogContent, _extends({
|
|
8377
8407
|
className: classnames__default["default"]("c-dialog-content", className)
|
|
@@ -8387,13 +8417,13 @@
|
|
|
8387
8417
|
};
|
|
8388
8418
|
DialogContentDivider.displayName = "DialogContentDivider";
|
|
8389
8419
|
|
|
8390
|
-
var _excluded$
|
|
8420
|
+
var _excluded$9 = ["children", "className", "disableDefaultHeading"];
|
|
8391
8421
|
var DialogTitle = function DialogTitle(_ref) {
|
|
8392
8422
|
var children = _ref.children,
|
|
8393
8423
|
className = _ref.className,
|
|
8394
8424
|
_ref$disableDefaultHe = _ref.disableDefaultHeading,
|
|
8395
8425
|
disableDefaultHeading = _ref$disableDefaultHe === void 0 ? false : _ref$disableDefaultHe,
|
|
8396
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8426
|
+
rest = _objectWithoutProperties(_ref, _excluded$9);
|
|
8397
8427
|
|
|
8398
8428
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogTitle, _extends({
|
|
8399
8429
|
className: classnames__default["default"]("c-dialog-title-wrapper", className)
|
|
@@ -8401,11 +8431,11 @@
|
|
|
8401
8431
|
};
|
|
8402
8432
|
DialogTitle.displayName = "DialogTitle";
|
|
8403
8433
|
|
|
8404
|
-
var _excluded$
|
|
8434
|
+
var _excluded$8 = ["className", "children"];
|
|
8405
8435
|
var DialogActions = function DialogActions(_ref) {
|
|
8406
8436
|
var className = _ref.className,
|
|
8407
8437
|
children = _ref.children,
|
|
8408
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8438
|
+
rest = _objectWithoutProperties(_ref, _excluded$8);
|
|
8409
8439
|
|
|
8410
8440
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogActions, _extends({
|
|
8411
8441
|
className: classnames__default["default"]("c-dialog-actions", className)
|
|
@@ -8614,7 +8644,7 @@
|
|
|
8614
8644
|
});
|
|
8615
8645
|
StyledPressed.displayName = "StyledPressed";
|
|
8616
8646
|
|
|
8617
|
-
var _excluded$
|
|
8647
|
+
var _excluded$7 = ["children", "active", "className"];
|
|
8618
8648
|
|
|
8619
8649
|
/**
|
|
8620
8650
|
* Pressed wrapper for button component
|
|
@@ -8624,7 +8654,7 @@
|
|
|
8624
8654
|
_ref$active = _ref.active,
|
|
8625
8655
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
8626
8656
|
className = _ref.className,
|
|
8627
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8657
|
+
args = _objectWithoutProperties(_ref, _excluded$7);
|
|
8628
8658
|
|
|
8629
8659
|
return /*#__PURE__*/React__default["default"].createElement(StyledPressed, _extends({
|
|
8630
8660
|
active: active,
|
|
@@ -9066,6 +9096,8 @@
|
|
|
9066
9096
|
};
|
|
9067
9097
|
SelectDate.displayName = "SelectDate";
|
|
9068
9098
|
|
|
9099
|
+
var _excluded$6 = ["in", "children", "style", "timeout"];
|
|
9100
|
+
|
|
9069
9101
|
var defaultStyle$1 = function defaultStyle(duration) {
|
|
9070
9102
|
return {
|
|
9071
9103
|
transition: "all ".concat(duration, "ms ease-in-out"),
|
|
@@ -9090,19 +9122,17 @@
|
|
|
9090
9122
|
var Fade = function Fade(_ref) {
|
|
9091
9123
|
var _ref$in = _ref.in,
|
|
9092
9124
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
9093
|
-
onEnter = _ref.onEnter,
|
|
9094
|
-
onExited = _ref.onExited,
|
|
9095
9125
|
children = _ref.children,
|
|
9096
9126
|
style = _ref.style,
|
|
9097
9127
|
_ref$timeout = _ref.timeout,
|
|
9098
|
-
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout
|
|
9099
|
-
|
|
9128
|
+
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout,
|
|
9129
|
+
rest = _objectWithoutProperties(_ref, _excluded$6);
|
|
9130
|
+
|
|
9131
|
+
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
9100
9132
|
appear: true,
|
|
9101
9133
|
in: inProp,
|
|
9102
|
-
timeout: timeout
|
|
9103
|
-
|
|
9104
|
-
onExited: onExited
|
|
9105
|
-
}, function (state) {
|
|
9134
|
+
timeout: timeout
|
|
9135
|
+
}, rest), function (state) {
|
|
9106
9136
|
return /*#__PURE__*/React.cloneElement(children, {
|
|
9107
9137
|
style: _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({
|
|
9108
9138
|
visibility: state === "exited" && !inProp ? "hidden" : undefined
|
|
@@ -9112,7 +9142,7 @@
|
|
|
9112
9142
|
};
|
|
9113
9143
|
Fade.displayName = "Fade";
|
|
9114
9144
|
|
|
9115
|
-
var _excluded$
|
|
9145
|
+
var _excluded$5 = ["in", "children", "style", "timeout", "initialDirection"];
|
|
9116
9146
|
var Slide = function Slide(_ref) {
|
|
9117
9147
|
var _ref$in = _ref.in,
|
|
9118
9148
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
@@ -9122,7 +9152,7 @@
|
|
|
9122
9152
|
timeout = _ref$timeout === void 0 ? 300 : _ref$timeout,
|
|
9123
9153
|
_ref$initialDirection = _ref.initialDirection,
|
|
9124
9154
|
initialDirection = _ref$initialDirection === void 0 ? "left" : _ref$initialDirection,
|
|
9125
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9155
|
+
rest = _objectWithoutProperties(_ref, _excluded$5);
|
|
9126
9156
|
|
|
9127
9157
|
var directionSign;
|
|
9128
9158
|
|
|
@@ -9182,12 +9212,12 @@
|
|
|
9182
9212
|
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;}"]);
|
|
9183
9213
|
});
|
|
9184
9214
|
|
|
9185
|
-
var _excluded$
|
|
9215
|
+
var _excluded$4 = ["children", "direction"];
|
|
9186
9216
|
var SlideLeftRightTransition = function SlideLeftRightTransition(_ref) {
|
|
9187
9217
|
var children = _ref.children,
|
|
9188
9218
|
_ref$direction = _ref.direction,
|
|
9189
9219
|
direction = _ref$direction === void 0 ? "left" : _ref$direction,
|
|
9190
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9220
|
+
props = _objectWithoutProperties(_ref, _excluded$4);
|
|
9191
9221
|
|
|
9192
9222
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.CSSTransition, _extends({
|
|
9193
9223
|
timeout: 200,
|
|
@@ -9231,6 +9261,8 @@
|
|
|
9231
9261
|
};
|
|
9232
9262
|
ResizeTransition.displayName = "ResizeTransition";
|
|
9233
9263
|
|
|
9264
|
+
var _excluded$3 = ["in", "children", "style", "timeout"];
|
|
9265
|
+
|
|
9234
9266
|
var defaultStyle = function defaultStyle(duration) {
|
|
9235
9267
|
return {
|
|
9236
9268
|
transition: "all ".concat(duration, "ms ease-in"),
|
|
@@ -9261,19 +9293,17 @@
|
|
|
9261
9293
|
var Reveal = function Reveal(_ref) {
|
|
9262
9294
|
var _ref$in = _ref.in,
|
|
9263
9295
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
9264
|
-
onEnter = _ref.onEnter,
|
|
9265
|
-
onExited = _ref.onExited,
|
|
9266
9296
|
children = _ref.children,
|
|
9267
9297
|
style = _ref.style,
|
|
9268
9298
|
_ref$timeout = _ref.timeout,
|
|
9269
|
-
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout
|
|
9270
|
-
|
|
9299
|
+
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout,
|
|
9300
|
+
rest = _objectWithoutProperties(_ref, _excluded$3);
|
|
9301
|
+
|
|
9302
|
+
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
9271
9303
|
appear: true,
|
|
9272
9304
|
in: inProp,
|
|
9273
|
-
timeout: timeout
|
|
9274
|
-
|
|
9275
|
-
onExited: onExited
|
|
9276
|
-
}, function (state) {
|
|
9305
|
+
timeout: timeout
|
|
9306
|
+
}, rest), function (state) {
|
|
9277
9307
|
return /*#__PURE__*/React.cloneElement(children, {
|
|
9278
9308
|
style: _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, defaultStyle(inProp ? timeout : 0)), transitionStyles$1[state]), style), children.props.style)
|
|
9279
9309
|
});
|
|
@@ -10140,6 +10170,7 @@
|
|
|
10140
10170
|
exports.OpenExpandedIcon = OpenExpandedIcon$1;
|
|
10141
10171
|
exports.Option = Option;
|
|
10142
10172
|
exports.OptionGroup = OptionGroup;
|
|
10173
|
+
exports.OrderFirstIcon = OrderFirstIcon$1;
|
|
10143
10174
|
exports.Overlay = Overlay;
|
|
10144
10175
|
exports.PaidSmallIcon = PaidSmallIcon$1;
|
|
10145
10176
|
exports.Paper = Paper;
|
|
@@ -10192,6 +10223,7 @@
|
|
|
10192
10223
|
exports.Steps = Steps;
|
|
10193
10224
|
exports.Table = Table;
|
|
10194
10225
|
exports.TaskAddIcon = TaskAddIcon$1;
|
|
10226
|
+
exports.TaskListAddIcon = TaskListAddIcon$1;
|
|
10195
10227
|
exports.Tbody = Tbody;
|
|
10196
10228
|
exports.TextFormatGeneralAltIcon = TextFormatGeneralAltIcon$1;
|
|
10197
10229
|
exports.Textarea = Textarea;
|
|
@@ -10217,6 +10249,7 @@
|
|
|
10217
10249
|
exports.WorkloadIcon = WorkloadIcon$1;
|
|
10218
10250
|
exports.YearMonthPicker = YearMonthPicker;
|
|
10219
10251
|
exports.signifierTypes = signifierTypes;
|
|
10252
|
+
exports.useHeight = useHeight;
|
|
10220
10253
|
exports.useInitScrollRef = useInitScrollRef;
|
|
10221
10254
|
exports.useLayerContext = useLayerContext;
|
|
10222
10255
|
exports.useMenuContext = useMenuContext;
|