@activecollab/components 1.0.56 → 1.0.59
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/MessageEmpty.js +31 -0
- package/dist/cjs/components/Icons/collection/MessageEmpty.js.map +1 -0
- package/dist/cjs/components/Icons/collection/PersonCircle.js +31 -0
- package/dist/cjs/components/Icons/collection/PersonCircle.js.map +1 -0
- package/dist/cjs/components/Icons/collection/StarOutline.js +31 -0
- package/dist/cjs/components/Icons/collection/StarOutline.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/Label/Label.js +21 -19
- package/dist/cjs/components/Label/Label.js.map +1 -1
- package/dist/cjs/components/{Label → Tag}/Styles.js +16 -16
- package/dist/cjs/components/Tag/Styles.js.map +1 -0
- package/dist/cjs/components/Tag/Tag.js +52 -0
- package/dist/cjs/components/Tag/Tag.js.map +1 -0
- package/dist/cjs/components/Tag/index.js +19 -0
- package/dist/cjs/components/Tag/index.js.map +1 -0
- package/dist/cjs/components/index.js +17 -4
- package/dist/cjs/components/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/MessageEmpty.d.ts +4 -0
- package/dist/esm/components/Icons/collection/MessageEmpty.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/MessageEmpty.js +18 -0
- package/dist/esm/components/Icons/collection/MessageEmpty.js.map +1 -0
- package/dist/esm/components/Icons/collection/PersonCircle.d.ts +4 -0
- package/dist/esm/components/Icons/collection/PersonCircle.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/PersonCircle.js +18 -0
- package/dist/esm/components/Icons/collection/PersonCircle.js.map +1 -0
- package/dist/esm/components/Icons/collection/StarOutline.d.ts +4 -0
- package/dist/esm/components/Icons/collection/StarOutline.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/StarOutline.js +18 -0
- package/dist/esm/components/Icons/collection/StarOutline.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/Label/Label.d.ts +6 -9
- package/dist/esm/components/Label/Label.d.ts.map +1 -1
- package/dist/esm/components/Label/Label.js +20 -18
- package/dist/esm/components/Label/Label.js.map +1 -1
- package/dist/esm/components/Tag/Styles.d.ts +8 -0
- package/dist/esm/components/Tag/Styles.d.ts.map +1 -0
- package/dist/esm/components/{Label → Tag}/Styles.js +12 -12
- package/dist/esm/components/Tag/Styles.js.map +1 -0
- package/dist/esm/components/Tag/Tag.d.ts +13 -0
- package/dist/esm/components/Tag/Tag.d.ts.map +1 -0
- package/dist/esm/components/Tag/Tag.js +28 -0
- package/dist/esm/components/Tag/Tag.js.map +1 -0
- package/dist/esm/components/Tag/index.d.ts +2 -0
- package/dist/esm/components/Tag/index.d.ts.map +1 -0
- package/dist/esm/components/Tag/index.js +2 -0
- package/dist/esm/components/Tag/index.js.map +1 -0
- package/dist/esm/components/index.d.ts +2 -1
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/index.js +2 -1
- package/dist/esm/components/index.js.map +1 -1
- package/dist/index.js +211 -134
- 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/cjs/components/Label/Styles.js.map +0 -1
- package/dist/esm/components/Label/Styles.d.ts +0 -8
- package/dist/esm/components/Label/Styles.d.ts.map +0 -1
- package/dist/esm/components/Label/Styles.js.map +0 -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$W = ["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$W);
|
|
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$V = ["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$V);
|
|
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$U = ["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$U);
|
|
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$T = ["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$T);
|
|
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$S = ["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$S);
|
|
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$R = ["variant", "as", "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,
|
|
@@ -886,7 +886,7 @@
|
|
|
886
886
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
887
887
|
className = _ref.className,
|
|
888
888
|
children = _ref.children,
|
|
889
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
889
|
+
props = _objectWithoutProperties(_ref, _excluded$R);
|
|
890
890
|
|
|
891
891
|
var Component = as || "div";
|
|
892
892
|
return /*#__PURE__*/React__default["default"].createElement(StyledTypography, _extends({
|
|
@@ -910,12 +910,12 @@
|
|
|
910
910
|
});
|
|
911
911
|
Typography.displayName = "Typography";
|
|
912
912
|
|
|
913
|
-
var _excluded$
|
|
913
|
+
var _excluded$Q = ["weight", "children"];
|
|
914
914
|
var Body2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
915
915
|
var _ref$weight = _ref.weight,
|
|
916
916
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
917
917
|
children = _ref.children,
|
|
918
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
918
|
+
props = _objectWithoutProperties(_ref, _excluded$Q);
|
|
919
919
|
|
|
920
920
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
921
921
|
variant: "Body 2",
|
|
@@ -956,7 +956,7 @@
|
|
|
956
956
|
});
|
|
957
957
|
StyledCounterButtonLabel.displayName = "StyledCounterButtonLabel";
|
|
958
958
|
|
|
959
|
-
var _excluded$
|
|
959
|
+
var _excluded$P = ["label", "icon", "active", "counter", "tooltipText", "onClearAll", "className"];
|
|
960
960
|
var CounterButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
961
961
|
var label = _ref.label,
|
|
962
962
|
icon = _ref.icon,
|
|
@@ -966,7 +966,7 @@
|
|
|
966
966
|
tooltipText = _ref.tooltipText,
|
|
967
967
|
onClearAll = _ref.onClearAll,
|
|
968
968
|
className = _ref.className,
|
|
969
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
969
|
+
args = _objectWithoutProperties(_ref, _excluded$P);
|
|
970
970
|
|
|
971
971
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
972
972
|
className: classnames__default["default"]("tw-flex ac-font box-sizing", className)
|
|
@@ -1336,7 +1336,7 @@
|
|
|
1336
1336
|
StyledDatePicker.displayName = "StyledDatePicker";
|
|
1337
1337
|
StyledDayPicker.displayName = "StyledDayPicker";
|
|
1338
1338
|
|
|
1339
|
-
var _excluded$
|
|
1339
|
+
var _excluded$O = ["className", "onChange", "onDayClick", "selectedDays", "disabledDays", "selectionMode", "month", "onMonthChange", "dateRequired", "firstDayOfWeek", "fixedWeeks", "modifiers"];
|
|
1340
1340
|
var DatePicker = function DatePicker(_ref) {
|
|
1341
1341
|
var className = _ref.className,
|
|
1342
1342
|
onChange = _ref.onChange,
|
|
@@ -1358,7 +1358,7 @@
|
|
|
1358
1358
|
_ref$fixedWeeks = _ref.fixedWeeks,
|
|
1359
1359
|
fixedWeeks = _ref$fixedWeeks === void 0 ? true : _ref$fixedWeeks,
|
|
1360
1360
|
defaultModifiers = _ref.modifiers,
|
|
1361
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1361
|
+
rest = _objectWithoutProperties(_ref, _excluded$O);
|
|
1362
1362
|
|
|
1363
1363
|
var _useState = React.useState(),
|
|
1364
1364
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -1703,12 +1703,12 @@
|
|
|
1703
1703
|
});
|
|
1704
1704
|
StyledOverlay.displayName = "StyledOverlay";
|
|
1705
1705
|
|
|
1706
|
-
var _excluded$
|
|
1706
|
+
var _excluded$N = ["className", "disableBackgroundColor"];
|
|
1707
1707
|
var Overlay = function Overlay(_ref) {
|
|
1708
1708
|
var className = _ref.className,
|
|
1709
1709
|
_ref$disableBackgroun = _ref.disableBackgroundColor,
|
|
1710
1710
|
disableBackgroundColor = _ref$disableBackgroun === void 0 ? false : _ref$disableBackgroun,
|
|
1711
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1711
|
+
rest = _objectWithoutProperties(_ref, _excluded$N);
|
|
1712
1712
|
|
|
1713
1713
|
return /*#__PURE__*/React__default["default"].createElement(StyledOverlay, _extends({
|
|
1714
1714
|
className: classnames__default["default"]("c-overlay", className),
|
|
@@ -1723,7 +1723,7 @@
|
|
|
1723
1723
|
})(["", " ", " position:fixed;top:0;right:0;bottom:0;left:0;"], FontStyle, BoxSizingStyle);
|
|
1724
1724
|
StyledWindow.displayName = "StyledWindow";
|
|
1725
1725
|
|
|
1726
|
-
var _excluded$
|
|
1726
|
+
var _excluded$M = ["children", "onClose", "className", "style", "onKeyDown", "disableFocusLock", "disableScrollLock"];
|
|
1727
1727
|
var returnFocus = {
|
|
1728
1728
|
preventScroll: true
|
|
1729
1729
|
};
|
|
@@ -1737,7 +1737,7 @@
|
|
|
1737
1737
|
disableFocusLock = _ref$disableFocusLock === void 0 ? false : _ref$disableFocusLock,
|
|
1738
1738
|
_ref$disableScrollLoc = _ref.disableScrollLock,
|
|
1739
1739
|
disableScrollLock = _ref$disableScrollLoc === void 0 ? false : _ref$disableScrollLoc,
|
|
1740
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1740
|
+
rest = _objectWithoutProperties(_ref, _excluded$M);
|
|
1741
1741
|
|
|
1742
1742
|
var innerRef = React.useRef(null);
|
|
1743
1743
|
var handleRef = useForkRef(innerRef, ref);
|
|
@@ -1803,7 +1803,7 @@
|
|
|
1803
1803
|
}, FontStyle, BoxSizingStyle);
|
|
1804
1804
|
StyledBubble.displayName = "StyledBubble";
|
|
1805
1805
|
|
|
1806
|
-
var _excluded$
|
|
1806
|
+
var _excluded$L = ["children", "className", "innerRef", "style"];
|
|
1807
1807
|
var Bubble = function Bubble(_ref) {
|
|
1808
1808
|
var children = _ref.children,
|
|
1809
1809
|
className = _ref.className,
|
|
@@ -1811,7 +1811,7 @@
|
|
|
1811
1811
|
innerRef = _ref$innerRef === void 0 ? null : _ref$innerRef,
|
|
1812
1812
|
_ref$style = _ref.style,
|
|
1813
1813
|
style = _ref$style === void 0 ? {} : _ref$style,
|
|
1814
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
1814
|
+
rest = _objectWithoutProperties(_ref, _excluded$L);
|
|
1815
1815
|
|
|
1816
1816
|
return /*#__PURE__*/React__default["default"].createElement(StyledBubble, _extends({}, rest, {
|
|
1817
1817
|
ref: innerRef,
|
|
@@ -1955,13 +1955,13 @@
|
|
|
1955
1955
|
};
|
|
1956
1956
|
Menu.displayName = "Menu";
|
|
1957
1957
|
|
|
1958
|
-
var _excluded$
|
|
1958
|
+
var _excluded$K = ["title", "className", "leftElement", "rightElement"];
|
|
1959
1959
|
var MenuHeader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1960
1960
|
var title = _ref.title,
|
|
1961
1961
|
className = _ref.className,
|
|
1962
1962
|
leftElement = _ref.leftElement,
|
|
1963
1963
|
rightElement = _ref.rightElement,
|
|
1964
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1964
|
+
props = _objectWithoutProperties(_ref, _excluded$K);
|
|
1965
1965
|
|
|
1966
1966
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuHeader, _extends({}, props, {
|
|
1967
1967
|
className: classnames__default["default"]("c-menu-header", className),
|
|
@@ -1984,11 +1984,11 @@
|
|
|
1984
1984
|
});
|
|
1985
1985
|
MenuHeader.displayName = "MenuHeader";
|
|
1986
1986
|
|
|
1987
|
-
var _excluded$
|
|
1987
|
+
var _excluded$J = ["children", "className"];
|
|
1988
1988
|
var MenuFooter = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
1989
1989
|
var children = _ref.children,
|
|
1990
1990
|
className = _ref.className,
|
|
1991
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
1991
|
+
props = _objectWithoutProperties(_ref, _excluded$J);
|
|
1992
1992
|
|
|
1993
1993
|
return /*#__PURE__*/React__default["default"].createElement(StyledMenuFooter, _extends({}, props, {
|
|
1994
1994
|
className: classnames__default["default"]("c-menu-footer", className),
|
|
@@ -2656,7 +2656,7 @@
|
|
|
2656
2656
|
SortIcon.displayName = "SortIcon";
|
|
2657
2657
|
var SortIcon$1 = SortIcon;
|
|
2658
2658
|
|
|
2659
|
-
var _excluded$
|
|
2659
|
+
var _excluded$I = ["header", "rows", "className", "sortBy", "sortDirection", "onSortCallback", "theadClass", "noResultsCallback", "groupBy", "groupHead", "isCollapsible", "emptyValue"];
|
|
2660
2660
|
exports.SortDirection = void 0;
|
|
2661
2661
|
|
|
2662
2662
|
(function (SortDirection) {
|
|
@@ -2706,7 +2706,7 @@
|
|
|
2706
2706
|
} : _ref$groupHead,
|
|
2707
2707
|
isCollapsible = _ref.isCollapsible,
|
|
2708
2708
|
emptyValue = _ref.emptyValue,
|
|
2709
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
2709
|
+
args = _objectWithoutProperties(_ref, _excluded$I);
|
|
2710
2710
|
|
|
2711
2711
|
var _useState = React.useState(sortDirection),
|
|
2712
2712
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -3120,7 +3120,7 @@
|
|
|
3120
3120
|
});
|
|
3121
3121
|
StyledPaper.displayName = "StyledPaper";
|
|
3122
3122
|
|
|
3123
|
-
var _excluded$
|
|
3123
|
+
var _excluded$H = ["children", "className", "type", "hover", "useOptimizedShadow"];
|
|
3124
3124
|
|
|
3125
3125
|
/**
|
|
3126
3126
|
* This is a component description and should sit directly above your component
|
|
@@ -3134,7 +3134,7 @@
|
|
|
3134
3134
|
hover = _ref$hover === void 0 ? false : _ref$hover,
|
|
3135
3135
|
_ref$useOptimizedShad = _ref.useOptimizedShadow,
|
|
3136
3136
|
useOptimizedShadow = _ref$useOptimizedShad === void 0 ? false : _ref$useOptimizedShad,
|
|
3137
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3137
|
+
rest = _objectWithoutProperties(_ref, _excluded$H);
|
|
3138
3138
|
|
|
3139
3139
|
return /*#__PURE__*/React__default["default"].createElement(StyledPaper, _extends({
|
|
3140
3140
|
className: classnames__default["default"](className, {
|
|
@@ -3188,7 +3188,7 @@
|
|
|
3188
3188
|
});
|
|
3189
3189
|
StyledCard.displayName = "StyledCard";
|
|
3190
3190
|
|
|
3191
|
-
var _excluded$
|
|
3191
|
+
var _excluded$G = ["children", "className", "hoverable", "paperType"];
|
|
3192
3192
|
var Card = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3193
3193
|
var children = _ref.children,
|
|
3194
3194
|
className = _ref.className,
|
|
@@ -3196,7 +3196,7 @@
|
|
|
3196
3196
|
hoverable = _ref$hoverable === void 0 ? false : _ref$hoverable,
|
|
3197
3197
|
_ref$paperType = _ref.paperType,
|
|
3198
3198
|
paperType = _ref$paperType === void 0 ? "paper-2" : _ref$paperType,
|
|
3199
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3199
|
+
rest = _objectWithoutProperties(_ref, _excluded$G);
|
|
3200
3200
|
|
|
3201
3201
|
return /*#__PURE__*/React__default["default"].createElement(StyledCard, _extends({}, rest, {
|
|
3202
3202
|
type: paperType,
|
|
@@ -3278,12 +3278,12 @@
|
|
|
3278
3278
|
});
|
|
3279
3279
|
EntityCard.displayName = "EntityCard";
|
|
3280
3280
|
|
|
3281
|
-
var _excluded$
|
|
3281
|
+
var _excluded$F = ["weight", "children"];
|
|
3282
3282
|
var Title1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3283
3283
|
var _ref$weight = _ref.weight,
|
|
3284
3284
|
weight = _ref$weight === void 0 ? "light" : _ref$weight,
|
|
3285
3285
|
children = _ref.children,
|
|
3286
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3286
|
+
props = _objectWithoutProperties(_ref, _excluded$F);
|
|
3287
3287
|
|
|
3288
3288
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3289
3289
|
weight: weight,
|
|
@@ -3293,10 +3293,10 @@
|
|
|
3293
3293
|
});
|
|
3294
3294
|
Title1.displayName = "Title1";
|
|
3295
3295
|
|
|
3296
|
-
var _excluded$
|
|
3296
|
+
var _excluded$E = ["children"];
|
|
3297
3297
|
var Header2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3298
3298
|
var children = _ref.children,
|
|
3299
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3299
|
+
props = _objectWithoutProperties(_ref, _excluded$E);
|
|
3300
3300
|
|
|
3301
3301
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3302
3302
|
weight: "bold",
|
|
@@ -3306,10 +3306,10 @@
|
|
|
3306
3306
|
});
|
|
3307
3307
|
Header2.displayName = "Header2";
|
|
3308
3308
|
|
|
3309
|
-
var _excluded$
|
|
3309
|
+
var _excluded$D = ["children"];
|
|
3310
3310
|
var Header3 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3311
3311
|
var children = _ref.children,
|
|
3312
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3312
|
+
props = _objectWithoutProperties(_ref, _excluded$D);
|
|
3313
3313
|
|
|
3314
3314
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3315
3315
|
weight: "bold",
|
|
@@ -3319,12 +3319,12 @@
|
|
|
3319
3319
|
});
|
|
3320
3320
|
Header3.displayName = "Header3";
|
|
3321
3321
|
|
|
3322
|
-
var _excluded$
|
|
3322
|
+
var _excluded$C = ["weight", "children"];
|
|
3323
3323
|
var Body1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3324
3324
|
var _ref$weight = _ref.weight,
|
|
3325
3325
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
3326
3326
|
children = _ref.children,
|
|
3327
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3327
|
+
props = _objectWithoutProperties(_ref, _excluded$C);
|
|
3328
3328
|
|
|
3329
3329
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3330
3330
|
variant: "Body 1",
|
|
@@ -3334,12 +3334,12 @@
|
|
|
3334
3334
|
});
|
|
3335
3335
|
Body1.displayName = "Body1";
|
|
3336
3336
|
|
|
3337
|
-
var _excluded$
|
|
3337
|
+
var _excluded$B = ["weight", "children"];
|
|
3338
3338
|
var Caption1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3339
3339
|
var _ref$weight = _ref.weight,
|
|
3340
3340
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
3341
3341
|
children = _ref.children,
|
|
3342
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3342
|
+
props = _objectWithoutProperties(_ref, _excluded$B);
|
|
3343
3343
|
|
|
3344
3344
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3345
3345
|
variant: "Caption 1",
|
|
@@ -3349,12 +3349,12 @@
|
|
|
3349
3349
|
});
|
|
3350
3350
|
Caption1.displayName = "Caption1";
|
|
3351
3351
|
|
|
3352
|
-
var _excluded$
|
|
3352
|
+
var _excluded$A = ["weight", "children"];
|
|
3353
3353
|
var Caption2 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3354
3354
|
var _ref$weight = _ref.weight,
|
|
3355
3355
|
weight = _ref$weight === void 0 ? "regular" : _ref$weight,
|
|
3356
3356
|
children = _ref.children,
|
|
3357
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3357
|
+
props = _objectWithoutProperties(_ref, _excluded$A);
|
|
3358
3358
|
|
|
3359
3359
|
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
3360
3360
|
variant: "Caption 2",
|
|
@@ -3473,7 +3473,7 @@
|
|
|
3473
3473
|
"borderRadius": "9999px"
|
|
3474
3474
|
});
|
|
3475
3475
|
|
|
3476
|
-
var _excluded$
|
|
3476
|
+
var _excluded$z = ["url", "alt", "size", "className"];
|
|
3477
3477
|
var Avatar = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3478
3478
|
var url = _ref.url,
|
|
3479
3479
|
_ref$alt = _ref.alt,
|
|
@@ -3481,7 +3481,7 @@
|
|
|
3481
3481
|
_ref$size = _ref.size,
|
|
3482
3482
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
3483
3483
|
className = _ref.className,
|
|
3484
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3484
|
+
rest = _objectWithoutProperties(_ref, _excluded$z);
|
|
3485
3485
|
|
|
3486
3486
|
return /*#__PURE__*/React__default["default"].createElement(StyledAvatar, _extends({}, rest, {
|
|
3487
3487
|
ref: ref,
|
|
@@ -3494,17 +3494,17 @@
|
|
|
3494
3494
|
});
|
|
3495
3495
|
Avatar.displayName = "Avatar";
|
|
3496
3496
|
|
|
3497
|
-
var
|
|
3498
|
-
displayName: "
|
|
3499
|
-
componentId: "sc-
|
|
3497
|
+
var StyledTag = styled__default["default"].div.withConfig({
|
|
3498
|
+
displayName: "Styles__StyledTag",
|
|
3499
|
+
componentId: "sc-1chtb47-0"
|
|
3500
3500
|
})(["", " font-size:13px;line-height:1.375;", " ", ""], {
|
|
3501
3501
|
"display": "flex",
|
|
3502
3502
|
"alignItems": "center"
|
|
3503
3503
|
}, BoxSizingStyle, FontStyle);
|
|
3504
|
-
|
|
3505
|
-
var
|
|
3506
|
-
displayName: "
|
|
3507
|
-
componentId: "sc-
|
|
3504
|
+
StyledTag.displayName = "StyledTag";
|
|
3505
|
+
var StyledTagDot = styled__default["default"].div.withConfig({
|
|
3506
|
+
displayName: "Styles__StyledTagDot",
|
|
3507
|
+
componentId: "sc-1chtb47-1"
|
|
3508
3508
|
})(["", " ", " ", ""], {
|
|
3509
3509
|
"width": "0.5rem",
|
|
3510
3510
|
"height": "0.5rem",
|
|
@@ -3517,19 +3517,19 @@
|
|
|
3517
3517
|
}, function (props) {
|
|
3518
3518
|
return props.color && styled.css(["background-color:", ";"], props.color);
|
|
3519
3519
|
});
|
|
3520
|
-
|
|
3521
|
-
var
|
|
3522
|
-
displayName: "
|
|
3523
|
-
componentId: "sc-
|
|
3520
|
+
StyledTagDot.displayName = "StyledTagDot";
|
|
3521
|
+
var StyledTagText = styled__default["default"].div.withConfig({
|
|
3522
|
+
displayName: "Styles__StyledTagText",
|
|
3523
|
+
componentId: "sc-1chtb47-2"
|
|
3524
3524
|
})(["", " ", ""], {
|
|
3525
3525
|
"textTransform": "uppercase"
|
|
3526
3526
|
}, function (props) {
|
|
3527
3527
|
return props.color && styled.css(["color:", ";"], props.color);
|
|
3528
3528
|
});
|
|
3529
|
-
|
|
3529
|
+
StyledTagText.displayName = "StyledTagText";
|
|
3530
3530
|
|
|
3531
|
-
var _excluded$
|
|
3532
|
-
var
|
|
3531
|
+
var _excluded$y = ["name", "color", "showText", "showDot", "className"];
|
|
3532
|
+
var Tag = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3533
3533
|
var name = _ref.name,
|
|
3534
3534
|
color = _ref.color,
|
|
3535
3535
|
_ref$showText = _ref.showText,
|
|
@@ -3537,19 +3537,19 @@
|
|
|
3537
3537
|
_ref$showDot = _ref.showDot,
|
|
3538
3538
|
showDot = _ref$showDot === void 0 ? true : _ref$showDot,
|
|
3539
3539
|
className = _ref.className,
|
|
3540
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3540
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
3541
3541
|
|
|
3542
|
-
return /*#__PURE__*/React__default["default"].createElement(
|
|
3543
|
-
className: classnames__default["default"]("c-
|
|
3542
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledTag, _extends({
|
|
3543
|
+
className: classnames__default["default"]("c-tag", className),
|
|
3544
3544
|
ref: ref
|
|
3545
|
-
}, rest), showDot ? /*#__PURE__*/React__default["default"].createElement(
|
|
3545
|
+
}, rest), showDot ? /*#__PURE__*/React__default["default"].createElement(StyledTagDot, {
|
|
3546
3546
|
$showText: showText,
|
|
3547
3547
|
color: color
|
|
3548
|
-
}) : null, showText ? /*#__PURE__*/React__default["default"].createElement(
|
|
3548
|
+
}) : null, showText ? /*#__PURE__*/React__default["default"].createElement(StyledTagText, {
|
|
3549
3549
|
color: color
|
|
3550
3550
|
}, name) : null);
|
|
3551
3551
|
});
|
|
3552
|
-
|
|
3552
|
+
Tag.displayName = "Tag";
|
|
3553
3553
|
|
|
3554
3554
|
var linearAnimation = styled.keyframes(["0%{background-position:left;}100%{background-position:right;}"]);
|
|
3555
3555
|
var StyledLinearLoader = styled__default["default"].div.withConfig({
|
|
@@ -3557,10 +3557,10 @@
|
|
|
3557
3557
|
componentId: "sc-x4ge7a-0"
|
|
3558
3558
|
})(["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);
|
|
3559
3559
|
|
|
3560
|
-
var _excluded$
|
|
3560
|
+
var _excluded$x = ["className"];
|
|
3561
3561
|
var LinearLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3562
3562
|
var className = _ref.className,
|
|
3563
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3563
|
+
rest = _objectWithoutProperties(_ref, _excluded$x);
|
|
3564
3564
|
|
|
3565
3565
|
return /*#__PURE__*/React__default["default"].createElement(StyledLinearLoader, _extends({
|
|
3566
3566
|
ref: ref,
|
|
@@ -3575,10 +3575,10 @@
|
|
|
3575
3575
|
componentId: "sc-1f35d5h-0"
|
|
3576
3576
|
})(["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);
|
|
3577
3577
|
|
|
3578
|
-
var _excluded$
|
|
3578
|
+
var _excluded$w = ["className"];
|
|
3579
3579
|
var DotsLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3580
3580
|
var className = _ref.className,
|
|
3581
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3581
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
3582
3582
|
|
|
3583
3583
|
return /*#__PURE__*/React__default["default"].createElement(StyledDotsLoader, _extends({
|
|
3584
3584
|
ref: ref,
|
|
@@ -3594,10 +3594,10 @@
|
|
|
3594
3594
|
componentId: "sc-1ht53g9-0"
|
|
3595
3595
|
})(["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);
|
|
3596
3596
|
|
|
3597
|
-
var _excluded$
|
|
3597
|
+
var _excluded$v = ["className"];
|
|
3598
3598
|
var SpinnerLoader = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3599
3599
|
var className = _ref.className,
|
|
3600
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3600
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
3601
3601
|
|
|
3602
3602
|
return /*#__PURE__*/React__default["default"].createElement(StyledSpinnerLoader, _extends({
|
|
3603
3603
|
ref: ref,
|
|
@@ -3659,7 +3659,7 @@
|
|
|
3659
3659
|
}, StyledInput$1, StyledLabel);
|
|
3660
3660
|
StyledCheckbox.displayName = "StyledCheckbox";
|
|
3661
3661
|
|
|
3662
|
-
var _excluded$
|
|
3662
|
+
var _excluded$u = ["className", "hover", "id"];
|
|
3663
3663
|
|
|
3664
3664
|
/**
|
|
3665
3665
|
* Checkbox component
|
|
@@ -3669,7 +3669,7 @@
|
|
|
3669
3669
|
hover = _ref.hover,
|
|
3670
3670
|
_ref$id = _ref.id,
|
|
3671
3671
|
id = _ref$id === void 0 ? "checkbox" : _ref$id,
|
|
3672
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
3672
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
3673
3673
|
|
|
3674
3674
|
return /*#__PURE__*/React__default["default"].createElement(StyledCheckbox, {
|
|
3675
3675
|
className: classnames__default["default"]("c-checkbox", {
|
|
@@ -3742,14 +3742,14 @@
|
|
|
3742
3742
|
}, StyledRadioLabel);
|
|
3743
3743
|
StyledRadioButton.displayName = "StyledRadioButton";
|
|
3744
3744
|
|
|
3745
|
-
var _excluded$
|
|
3745
|
+
var _excluded$t = ["className", "id", "hover"];
|
|
3746
3746
|
var RadioButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3747
3747
|
var _ref$className = _ref.className,
|
|
3748
3748
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
3749
3749
|
_ref$id = _ref.id,
|
|
3750
3750
|
id = _ref$id === void 0 ? "radio" : _ref$id,
|
|
3751
3751
|
hover = _ref.hover,
|
|
3752
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3752
|
+
props = _objectWithoutProperties(_ref, _excluded$t);
|
|
3753
3753
|
|
|
3754
3754
|
return /*#__PURE__*/React__default["default"].createElement(StyledRadioButton, {
|
|
3755
3755
|
className: classnames__default["default"]("c-radio-btn", {
|
|
@@ -4017,7 +4017,7 @@
|
|
|
4017
4017
|
StyledScrollShadowLeft.displayName = "StyledScrollShadowLeft";
|
|
4018
4018
|
StyledScrollShadowRight.displayName = "StyledScrollShadowRight";
|
|
4019
4019
|
|
|
4020
|
-
var _excluded$
|
|
4020
|
+
var _excluded$s = ["children", "className", "disableVertical", "disableHorizontal", "invertHorizontal", "invertVertical", "innerColor", "outerColor"];
|
|
4021
4021
|
var ScrollShadow = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4022
4022
|
var children = _ref.children,
|
|
4023
4023
|
className = _ref.className,
|
|
@@ -4031,7 +4031,7 @@
|
|
|
4031
4031
|
invertVertical = _ref$invertVertical === void 0 ? false : _ref$invertVertical,
|
|
4032
4032
|
innerColor = _ref.innerColor,
|
|
4033
4033
|
outerColor = _ref.outerColor,
|
|
4034
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4034
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
4035
4035
|
|
|
4036
4036
|
var _useState = React.useState({
|
|
4037
4037
|
top: 0,
|
|
@@ -4161,14 +4161,14 @@
|
|
|
4161
4161
|
return height;
|
|
4162
4162
|
};
|
|
4163
4163
|
|
|
4164
|
-
var _excluded$
|
|
4164
|
+
var _excluded$r = ["as", "className", "invert"];
|
|
4165
4165
|
var ScrollElement = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4166
4166
|
var _ref$as = _ref.as,
|
|
4167
4167
|
as = _ref$as === void 0 ? "div" : _ref$as,
|
|
4168
4168
|
className = _ref.className,
|
|
4169
4169
|
_ref$invert = _ref.invert,
|
|
4170
4170
|
invert = _ref$invert === void 0 ? false : _ref$invert,
|
|
4171
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4171
|
+
rest = _objectWithoutProperties(_ref, _excluded$r);
|
|
4172
4172
|
|
|
4173
4173
|
var internalRef = useInitScrollRef(null, invert);
|
|
4174
4174
|
var handleRef = useForkRef(internalRef, ref);
|
|
@@ -4599,7 +4599,7 @@
|
|
|
4599
4599
|
});
|
|
4600
4600
|
StyledInput.displayName = "StyledInput";
|
|
4601
4601
|
|
|
4602
|
-
var _excluded$
|
|
4602
|
+
var _excluded$q = ["className", "type", "disabled"];
|
|
4603
4603
|
var Input = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
4604
4604
|
var _ref$className = _ref.className,
|
|
4605
4605
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
@@ -4607,7 +4607,7 @@
|
|
|
4607
4607
|
type = _ref$type === void 0 ? "text" : _ref$type,
|
|
4608
4608
|
_ref$disabled = _ref.disabled,
|
|
4609
4609
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
4610
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4610
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
4611
4611
|
|
|
4612
4612
|
return /*#__PURE__*/React__default["default"].createElement(StyledInput, _extends({
|
|
4613
4613
|
ref: ref,
|
|
@@ -4666,7 +4666,7 @@
|
|
|
4666
4666
|
};
|
|
4667
4667
|
OptionContent.displayName = "OptionContent";
|
|
4668
4668
|
|
|
4669
|
-
var _excluded$
|
|
4669
|
+
var _excluded$p = ["type", "mode", "target", "options", "selected", "position", "onChange", "actionIcon", "actionLabel", "placeholder", "emptyAction", "disableSearch", "forceCloseMenu", "selectClassName", "keepSameOptionsOrder", "onSelectOpen", "onSelectClose"];
|
|
4670
4670
|
var Select = function Select(_ref) {
|
|
4671
4671
|
var _ref$type = _ref.type,
|
|
4672
4672
|
type = _ref$type === void 0 ? "single" : _ref$type,
|
|
@@ -4696,7 +4696,7 @@
|
|
|
4696
4696
|
keepSameOptionsOrder = _ref$keepSameOptionsO === void 0 ? false : _ref$keepSameOptionsO,
|
|
4697
4697
|
onSelectOpen = _ref.onSelectOpen,
|
|
4698
4698
|
onSelectClose = _ref.onSelectClose,
|
|
4699
|
-
prop = _objectWithoutProperties(_ref, _excluded$
|
|
4699
|
+
prop = _objectWithoutProperties(_ref, _excluded$p);
|
|
4700
4700
|
|
|
4701
4701
|
var _useState = React.useState(),
|
|
4702
4702
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -4971,7 +4971,7 @@
|
|
|
4971
4971
|
});
|
|
4972
4972
|
StyledNavAsMoreTarget.displayName = "StyledNavAsMoreTarget";
|
|
4973
4973
|
|
|
4974
|
-
var _excluded$
|
|
4974
|
+
var _excluded$o = ["children", "active", "disabled", "className", "role"];
|
|
4975
4975
|
var Item = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
|
|
4976
4976
|
var children = _ref.children,
|
|
4977
4977
|
_ref$active = _ref.active,
|
|
@@ -4980,7 +4980,7 @@
|
|
|
4980
4980
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
4981
4981
|
className = _ref.className,
|
|
4982
4982
|
role = _ref.role,
|
|
4983
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
4983
|
+
rest = _objectWithoutProperties(_ref, _excluded$o);
|
|
4984
4984
|
|
|
4985
4985
|
return /*#__PURE__*/React__default["default"].createElement(StyledNavListItem, _extends({
|
|
4986
4986
|
className: classnames__default["default"]("c-nav__item", {
|
|
@@ -5022,11 +5022,11 @@
|
|
|
5022
5022
|
});
|
|
5023
5023
|
StyledExpandSingle.displayName = "StyledExpandSingle";
|
|
5024
5024
|
|
|
5025
|
-
var _excluded$
|
|
5025
|
+
var _excluded$n = ["expanded"];
|
|
5026
5026
|
var ExpandSingle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5027
5027
|
var _ref$expanded = _ref.expanded,
|
|
5028
5028
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
5029
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5029
|
+
rest = _objectWithoutProperties(_ref, _excluded$n);
|
|
5030
5030
|
|
|
5031
5031
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpandSingle, _extends({
|
|
5032
5032
|
ref: ref,
|
|
@@ -5339,11 +5339,11 @@
|
|
|
5339
5339
|
};
|
|
5340
5340
|
Nav.displayName = "Nav";
|
|
5341
5341
|
|
|
5342
|
-
var _excluded$
|
|
5342
|
+
var _excluded$m = ["expanded"];
|
|
5343
5343
|
var ExpandAll = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5344
5344
|
var _ref$expanded = _ref.expanded,
|
|
5345
5345
|
expanded = _ref$expanded === void 0 ? false : _ref$expanded,
|
|
5346
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
5346
|
+
rest = _objectWithoutProperties(_ref, _excluded$m);
|
|
5347
5347
|
|
|
5348
5348
|
return /*#__PURE__*/React__default["default"].createElement(StyledExpand, _extends({
|
|
5349
5349
|
ref: ref,
|
|
@@ -5388,11 +5388,11 @@
|
|
|
5388
5388
|
})(["border-top:1px solid var(--border-primary);margin:12px 16px;height:1px;"]);
|
|
5389
5389
|
StyledListSeparator.displayName = "StyledListSeparator";
|
|
5390
5390
|
|
|
5391
|
-
var _excluded$
|
|
5391
|
+
var _excluded$l = ["children", "className"];
|
|
5392
5392
|
var List = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5393
5393
|
var children = _ref.children,
|
|
5394
5394
|
className = _ref.className,
|
|
5395
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5395
|
+
props = _objectWithoutProperties(_ref, _excluded$l);
|
|
5396
5396
|
|
|
5397
5397
|
return /*#__PURE__*/React__default["default"].createElement(StyledList, _extends({}, props, {
|
|
5398
5398
|
className: className,
|
|
@@ -5401,11 +5401,11 @@
|
|
|
5401
5401
|
});
|
|
5402
5402
|
List.displayName = "List";
|
|
5403
5403
|
|
|
5404
|
-
var _excluded$
|
|
5404
|
+
var _excluded$k = ["children", "className"];
|
|
5405
5405
|
var ListItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
5406
5406
|
var children = _ref.children,
|
|
5407
5407
|
className = _ref.className,
|
|
5408
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
5408
|
+
props = _objectWithoutProperties(_ref, _excluded$k);
|
|
5409
5409
|
|
|
5410
5410
|
return /*#__PURE__*/React__default["default"].createElement(StyledListItem, _extends({}, props, {
|
|
5411
5411
|
className: classnames__default["default"]("c-list-item", className),
|
|
@@ -6747,6 +6747,22 @@
|
|
|
6747
6747
|
MessageAddIcon.displayName = "MessageAddIcon";
|
|
6748
6748
|
var MessageAddIcon$1 = MessageAddIcon;
|
|
6749
6749
|
|
|
6750
|
+
var MessageEmptyIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6751
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6752
|
+
width: 24,
|
|
6753
|
+
height: 24,
|
|
6754
|
+
viewBox: "0 0 24 24",
|
|
6755
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6756
|
+
fill: "var(--color-theme-600)",
|
|
6757
|
+
ref: svgRef
|
|
6758
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
6759
|
+
d: "M22 4v12a2 2 0 01-2 2H7.995L2 22V4a2 2 0 012-2h16a2 2 0 012 2zm-2 0H4v14.26L7.39 16H20V4z",
|
|
6760
|
+
fillRule: "evenodd"
|
|
6761
|
+
}));
|
|
6762
|
+
});
|
|
6763
|
+
MessageEmptyIcon.displayName = "MessageEmptyIcon";
|
|
6764
|
+
var MessageEmptyIcon$1 = MessageEmptyIcon;
|
|
6765
|
+
|
|
6750
6766
|
var MessageSmallIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
6751
6767
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
6752
6768
|
width: 12,
|
|
@@ -7028,6 +7044,22 @@
|
|
|
7028
7044
|
PeopleIcon.displayName = "PeopleIcon";
|
|
7029
7045
|
var PeopleIcon$1 = PeopleIcon;
|
|
7030
7046
|
|
|
7047
|
+
var PersonCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7048
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7049
|
+
width: 24,
|
|
7050
|
+
height: 24,
|
|
7051
|
+
viewBox: "0 0 24 24",
|
|
7052
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7053
|
+
fill: "var(--color-theme-600)",
|
|
7054
|
+
ref: svgRef
|
|
7055
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7056
|
+
d: "M12 2l.28.004.316.013.244.018.402.041.14.019.267.04.162.029.19.036a10.01 10.01 0 017.864 8.151L21.8 10l.046.244.056.352.031.244.017.154.022.257.02.367c.006.127.008.254.008.382l-.002.207-.01.299-.022.323-.04.397-.032.238-.059.354-.062.308-.05.22-.046.184a9.93 9.93 0 01-.12.422l-.092.283-.13.357-.113.283-.094.215-.161.341-.136.265-.178.32-.13.217c-.145.237-.302.47-.47.696l-.274.356-.229.273-.14.157-.258.274-.226.224-.104.099-.238.215-.312.262-.398.305-.284.199-.33.213a9.99 9.99 0 01-.35.208l-.266.145-.383.19-.291.132-.346.142-.358.132-.31.1-.402.116-.138.035-.187.045-.347.072-.443.074-.305.04-.16.016-.423.032-.271.011L12 22l-.2-.002-.331-.012-.373-.026-.167-.017-.164-.019-.246-.033-.336-.056-.3-.06-.31-.072-.415-.113-.297-.093-.323-.112-.284-.11-.343-.147-.266-.124-.28-.14-.159-.086-.328-.188-.177-.108-.297-.193-.383-.272-.316-.247-.316-.267-.333-.307-.208-.207-.247-.262-.17-.192-.245-.294-.18-.233a10.017 10.017 0 01-.361-.511l-.171-.27-.063-.103-.1-.17-.142-.259-.198-.392-.1-.213-.126-.295-.11-.281a9.91 9.91 0 01-.312-.984l-.096-.403-.062-.309-.059-.354-.06-.49-.028-.376-.013-.278A10.18 10.18 0 012 12C2 6.477 6.477 2 12 2zm0 16c-1.157 0-2.315.119-3.476.357a1.998 1.998 0 00-.831.385c.264.17.538.323.822.46l.287.133.295.122.356.13.292.09.146.042.27.068.248.055.281.051c.108.018.216.034.325.047l.38.037.28.017L12 20l.368-.008.167-.01.167-.012c.12-.01.24-.024.36-.04l.289-.044.24-.044.248-.054.313-.08.16-.047.234-.075.3-.107.395-.163.247-.114.304-.156.214-.12a8 8 0 00.3-.183 1.984 1.984 0 00-.83-.386A17.249 17.249 0 0012 18zm0-14a8 8 0 00-8 8l.008.352.014.24.025.28.024.196.04.265.043.236.063.29.046.184.083.29.034.11.113.329.17.42.07.158c.09.193.186.382.29.567l.202.34.126.194.241.34.18.23.134.162.235.264a3.988 3.988 0 011.981-1.05A19.248 19.248 0 0112 16c1.292 0 2.585.133 3.877.398.76.156 1.444.525 1.983 1.048l.236-.265.193-.236.125-.163.18-.25.17-.258.097-.157.094-.16.14-.257.131-.263.103-.225.133-.321.119-.328.098-.313.104-.39.063-.291.053-.297c.02-.12.036-.242.05-.365l.03-.32.01-.181c.008-.135.011-.27.011-.406l-.012-.443a8.034 8.034 0 00-.078-.762l-.081-.449a8.012 8.012 0 00-5.843-6.097l-.422-.096-.353-.062-.358-.046a8.054 8.054 0 00-.409-.033l.359.028-.213-.019-.214-.012L12 4zm0 3a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4z",
|
|
7057
|
+
fillRule: "evenodd"
|
|
7058
|
+
}));
|
|
7059
|
+
});
|
|
7060
|
+
PersonCircleIcon.displayName = "PersonCircleIcon";
|
|
7061
|
+
var PersonCircleIcon$1 = PersonCircleIcon;
|
|
7062
|
+
|
|
7031
7063
|
var PersonPlusIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7032
7064
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7033
7065
|
width: 24,
|
|
@@ -7369,6 +7401,22 @@
|
|
|
7369
7401
|
SortGeneralIcon.displayName = "SortGeneralIcon";
|
|
7370
7402
|
var SortGeneralIcon$1 = SortGeneralIcon;
|
|
7371
7403
|
|
|
7404
|
+
var StarOutlineIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7405
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7406
|
+
width: 24,
|
|
7407
|
+
height: 24,
|
|
7408
|
+
viewBox: "0 0 24 24",
|
|
7409
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7410
|
+
fill: "var(--color-theme-600)",
|
|
7411
|
+
ref: svgRef
|
|
7412
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7413
|
+
d: "M12.706 2.103a1 1 0 01.454.455l2.63 5.329 5.881.854a1 1 0 01.554 1.706l-4.255 4.148 1.005 5.857a1 1 0 01-1.451 1.054l-5.26-2.765-5.26 2.765a1 1 0 01-1.451-1.054l1.004-5.857-4.255-4.148a1 1 0 01.554-1.706l5.881-.854 2.63-5.33a1 1 0 011.34-.454zm1.756 7.612L12.263 5.26l-2.198 4.455-4.916.713 3.557 3.469-.84 4.895 4.398-2.31 4.396 2.31-.839-4.895 3.557-3.468-4.916-.714z",
|
|
7414
|
+
fillRule: "evenodd"
|
|
7415
|
+
}));
|
|
7416
|
+
});
|
|
7417
|
+
StarOutlineIcon.displayName = "StarOutlineIcon";
|
|
7418
|
+
var StarOutlineIcon$1 = StarOutlineIcon;
|
|
7419
|
+
|
|
7372
7420
|
var StarIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7373
7421
|
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7374
7422
|
width: 24,
|
|
@@ -7635,12 +7683,12 @@
|
|
|
7635
7683
|
});
|
|
7636
7684
|
StyledTextarea.displayName = "StyledTextarea";
|
|
7637
7685
|
|
|
7638
|
-
var _excluded$
|
|
7686
|
+
var _excluded$j = ["className", "disabled"];
|
|
7639
7687
|
var Textarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7640
7688
|
var className = _ref.className,
|
|
7641
7689
|
_ref$disabled = _ref.disabled,
|
|
7642
7690
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7643
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7691
|
+
rest = _objectWithoutProperties(_ref, _excluded$j);
|
|
7644
7692
|
|
|
7645
7693
|
return /*#__PURE__*/React__default["default"].createElement(StyledTextarea, _extends({}, rest, {
|
|
7646
7694
|
ref: ref,
|
|
@@ -7674,7 +7722,7 @@
|
|
|
7674
7722
|
function () {});
|
|
7675
7723
|
}
|
|
7676
7724
|
|
|
7677
|
-
var _excluded$
|
|
7725
|
+
var _excluded$i = ["children", "disableFocusLock", "disableScrollLock", "disableBackgroundClick", "disableBackgroundColor", "open", "onClose"];
|
|
7678
7726
|
|
|
7679
7727
|
var getHasTransition = function getHasTransition(children) {
|
|
7680
7728
|
return children.props ? Object.prototype.hasOwnProperty.call(children.props, "in") : false;
|
|
@@ -7693,7 +7741,7 @@
|
|
|
7693
7741
|
_ref$open = _ref.open,
|
|
7694
7742
|
defaultOpen = _ref$open === void 0 ? false : _ref$open,
|
|
7695
7743
|
onClose = _ref.onClose,
|
|
7696
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7744
|
+
rest = _objectWithoutProperties(_ref, _excluded$i);
|
|
7697
7745
|
|
|
7698
7746
|
var _useState = React.useState(defaultOpen),
|
|
7699
7747
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -7832,7 +7880,7 @@
|
|
|
7832
7880
|
});
|
|
7833
7881
|
StyledCssTransition.displayName = "StyledCssTransition";
|
|
7834
7882
|
|
|
7835
|
-
var _excluded$
|
|
7883
|
+
var _excluded$h = ["children", "onClose", "controls", "open", "animation", "position", "mode", "disableFocusLock", "disableScrollLock", "disableBackgroundColor", "bodyStyle", "bodyClassName", "disableBackgroundClick"];
|
|
7836
7884
|
var Sheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7837
7885
|
var children = _ref.children,
|
|
7838
7886
|
onClose = _ref.onClose,
|
|
@@ -7856,7 +7904,7 @@
|
|
|
7856
7904
|
bodyClassName = _ref.bodyClassName,
|
|
7857
7905
|
_ref$disableBackgroun2 = _ref.disableBackgroundClick,
|
|
7858
7906
|
disableBackgroundClick = _ref$disableBackgroun2 === void 0 ? false : _ref$disableBackgroun2,
|
|
7859
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
7907
|
+
rest = _objectWithoutProperties(_ref, _excluded$h);
|
|
7860
7908
|
|
|
7861
7909
|
var _useState = React.useState(defaultOpen),
|
|
7862
7910
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -7954,13 +8002,13 @@
|
|
|
7954
8002
|
});
|
|
7955
8003
|
StyledHeader.displayName = "StyledHeader";
|
|
7956
8004
|
|
|
7957
|
-
var _excluded$
|
|
8005
|
+
var _excluded$g = ["className", "size", "children"];
|
|
7958
8006
|
var Header = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7959
8007
|
var className = _ref.className,
|
|
7960
8008
|
_ref$size = _ref.size,
|
|
7961
8009
|
size = _ref$size === void 0 ? "small" : _ref$size,
|
|
7962
8010
|
children = _ref.children,
|
|
7963
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8011
|
+
rest = _objectWithoutProperties(_ref, _excluded$g);
|
|
7964
8012
|
|
|
7965
8013
|
return /*#__PURE__*/React__default["default"].createElement(StyledHeader, _extends({
|
|
7966
8014
|
type: "paper-2",
|
|
@@ -7977,7 +8025,7 @@
|
|
|
7977
8025
|
})(["white-space:pre-wrap;overflow-wrap:break-word;resize:none;"]);
|
|
7978
8026
|
StyledAutoResizeTextarea.displayName = "StyledAutoResizeTextarea";
|
|
7979
8027
|
|
|
7980
|
-
var _excluded$
|
|
8028
|
+
var _excluded$f = ["minRows", "maxRows", "lineHeight", "onChange", "className", "preventNewRowOnEnter", "cursorAtTextEnd", "onKeyDown", "value"];
|
|
7981
8029
|
var AutoResizeTextarea = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
7982
8030
|
var _ref$minRows = _ref.minRows,
|
|
7983
8031
|
minRows = _ref$minRows === void 0 ? 1 : _ref$minRows,
|
|
@@ -7993,7 +8041,7 @@
|
|
|
7993
8041
|
cursorAtTextEnd = _ref$cursorAtTextEnd === void 0 ? false : _ref$cursorAtTextEnd,
|
|
7994
8042
|
onKeyDown = _ref.onKeyDown,
|
|
7995
8043
|
value = _ref.value,
|
|
7996
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8044
|
+
rest = _objectWithoutProperties(_ref, _excluded$f);
|
|
7997
8045
|
|
|
7998
8046
|
var innerRef = React.useRef(null);
|
|
7999
8047
|
|
|
@@ -8284,7 +8332,7 @@
|
|
|
8284
8332
|
});
|
|
8285
8333
|
StyledChoose.displayName = "StyledChoose";
|
|
8286
8334
|
|
|
8287
|
-
var _excluded$
|
|
8335
|
+
var _excluded$e = ["children", "disabled", "active", "className"];
|
|
8288
8336
|
|
|
8289
8337
|
/**
|
|
8290
8338
|
* Choose component
|
|
@@ -8296,7 +8344,7 @@
|
|
|
8296
8344
|
_ref$active = _ref.active,
|
|
8297
8345
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
8298
8346
|
className = _ref.className,
|
|
8299
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8347
|
+
args = _objectWithoutProperties(_ref, _excluded$e);
|
|
8300
8348
|
|
|
8301
8349
|
return /*#__PURE__*/React__default["default"].createElement(StyledChoose, _extends({
|
|
8302
8350
|
disabled: disabled,
|
|
@@ -8389,7 +8437,7 @@
|
|
|
8389
8437
|
StyledLinkElements.displayName = "StyledLinkElements";
|
|
8390
8438
|
StyledLink.displayName = "StyledLink";
|
|
8391
8439
|
|
|
8392
|
-
var _excluded$
|
|
8440
|
+
var _excluded$d = ["children", "className"];
|
|
8393
8441
|
|
|
8394
8442
|
/**
|
|
8395
8443
|
* Back link component
|
|
@@ -8397,7 +8445,7 @@
|
|
|
8397
8445
|
var BackLink = function BackLink(_ref) {
|
|
8398
8446
|
var children = _ref.children,
|
|
8399
8447
|
className = _ref.className,
|
|
8400
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8448
|
+
args = _objectWithoutProperties(_ref, _excluded$d);
|
|
8401
8449
|
|
|
8402
8450
|
return /*#__PURE__*/React__default["default"].createElement(StyledBackLink, _extends({
|
|
8403
8451
|
className: classnames__default["default"]("c-back-link", className)
|
|
@@ -8405,7 +8453,7 @@
|
|
|
8405
8453
|
};
|
|
8406
8454
|
BackLink.displayName = "BackLink";
|
|
8407
8455
|
|
|
8408
|
-
var _excluded$
|
|
8456
|
+
var _excluded$c = ["children", "variant", "size", "disabled", "className"];
|
|
8409
8457
|
|
|
8410
8458
|
/**
|
|
8411
8459
|
* Link component
|
|
@@ -8418,7 +8466,7 @@
|
|
|
8418
8466
|
_ref$disabled = _ref.disabled,
|
|
8419
8467
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
8420
8468
|
className = _ref.className,
|
|
8421
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8469
|
+
args = _objectWithoutProperties(_ref, _excluded$c);
|
|
8422
8470
|
|
|
8423
8471
|
return /*#__PURE__*/React__default["default"].createElement(StyledLink, _extends({
|
|
8424
8472
|
disabled: disabled,
|
|
@@ -8548,11 +8596,11 @@
|
|
|
8548
8596
|
});
|
|
8549
8597
|
Dialog.displayName = "Dialog";
|
|
8550
8598
|
|
|
8551
|
-
var _excluded$
|
|
8599
|
+
var _excluded$b = ["className", "children"];
|
|
8552
8600
|
var DialogContent = function DialogContent(_ref) {
|
|
8553
8601
|
var className = _ref.className,
|
|
8554
8602
|
children = _ref.children,
|
|
8555
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8603
|
+
rest = _objectWithoutProperties(_ref, _excluded$b);
|
|
8556
8604
|
|
|
8557
8605
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogContent, _extends({
|
|
8558
8606
|
className: classnames__default["default"]("c-dialog-content", className)
|
|
@@ -8568,13 +8616,13 @@
|
|
|
8568
8616
|
};
|
|
8569
8617
|
DialogContentDivider.displayName = "DialogContentDivider";
|
|
8570
8618
|
|
|
8571
|
-
var _excluded$
|
|
8619
|
+
var _excluded$a = ["children", "className", "disableDefaultHeading"];
|
|
8572
8620
|
var DialogTitle = function DialogTitle(_ref) {
|
|
8573
8621
|
var children = _ref.children,
|
|
8574
8622
|
className = _ref.className,
|
|
8575
8623
|
_ref$disableDefaultHe = _ref.disableDefaultHeading,
|
|
8576
8624
|
disableDefaultHeading = _ref$disableDefaultHe === void 0 ? false : _ref$disableDefaultHe,
|
|
8577
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8625
|
+
rest = _objectWithoutProperties(_ref, _excluded$a);
|
|
8578
8626
|
|
|
8579
8627
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogTitle, _extends({
|
|
8580
8628
|
className: classnames__default["default"]("c-dialog-title-wrapper", className)
|
|
@@ -8582,11 +8630,11 @@
|
|
|
8582
8630
|
};
|
|
8583
8631
|
DialogTitle.displayName = "DialogTitle";
|
|
8584
8632
|
|
|
8585
|
-
var _excluded$
|
|
8633
|
+
var _excluded$9 = ["className", "children"];
|
|
8586
8634
|
var DialogActions = function DialogActions(_ref) {
|
|
8587
8635
|
var className = _ref.className,
|
|
8588
8636
|
children = _ref.children,
|
|
8589
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
8637
|
+
rest = _objectWithoutProperties(_ref, _excluded$9);
|
|
8590
8638
|
|
|
8591
8639
|
return /*#__PURE__*/React__default["default"].createElement(StyledDialogActions, _extends({
|
|
8592
8640
|
className: classnames__default["default"]("c-dialog-actions", className)
|
|
@@ -8795,7 +8843,7 @@
|
|
|
8795
8843
|
});
|
|
8796
8844
|
StyledPressed.displayName = "StyledPressed";
|
|
8797
8845
|
|
|
8798
|
-
var _excluded$
|
|
8846
|
+
var _excluded$8 = ["children", "active", "className"];
|
|
8799
8847
|
|
|
8800
8848
|
/**
|
|
8801
8849
|
* Pressed wrapper for button component
|
|
@@ -8805,7 +8853,7 @@
|
|
|
8805
8853
|
_ref$active = _ref.active,
|
|
8806
8854
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
8807
8855
|
className = _ref.className,
|
|
8808
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
8856
|
+
args = _objectWithoutProperties(_ref, _excluded$8);
|
|
8809
8857
|
|
|
8810
8858
|
return /*#__PURE__*/React__default["default"].createElement(StyledPressed, _extends({
|
|
8811
8859
|
active: active,
|
|
@@ -9247,7 +9295,7 @@
|
|
|
9247
9295
|
};
|
|
9248
9296
|
SelectDate.displayName = "SelectDate";
|
|
9249
9297
|
|
|
9250
|
-
var _excluded$
|
|
9298
|
+
var _excluded$7 = ["in", "children", "style", "timeout"];
|
|
9251
9299
|
|
|
9252
9300
|
var defaultStyle$1 = function defaultStyle(duration) {
|
|
9253
9301
|
return {
|
|
@@ -9277,7 +9325,7 @@
|
|
|
9277
9325
|
style = _ref.style,
|
|
9278
9326
|
_ref$timeout = _ref.timeout,
|
|
9279
9327
|
timeout = _ref$timeout === void 0 ? 500 : _ref$timeout,
|
|
9280
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9328
|
+
rest = _objectWithoutProperties(_ref, _excluded$7);
|
|
9281
9329
|
|
|
9282
9330
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
9283
9331
|
appear: true,
|
|
@@ -9293,7 +9341,7 @@
|
|
|
9293
9341
|
};
|
|
9294
9342
|
Fade.displayName = "Fade";
|
|
9295
9343
|
|
|
9296
|
-
var _excluded$
|
|
9344
|
+
var _excluded$6 = ["in", "children", "style", "timeout", "initialDirection"];
|
|
9297
9345
|
var Slide = function Slide(_ref) {
|
|
9298
9346
|
var _ref$in = _ref.in,
|
|
9299
9347
|
inProp = _ref$in === void 0 ? false : _ref$in,
|
|
@@ -9303,7 +9351,7 @@
|
|
|
9303
9351
|
timeout = _ref$timeout === void 0 ? 300 : _ref$timeout,
|
|
9304
9352
|
_ref$initialDirection = _ref.initialDirection,
|
|
9305
9353
|
initialDirection = _ref$initialDirection === void 0 ? "left" : _ref$initialDirection,
|
|
9306
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9354
|
+
rest = _objectWithoutProperties(_ref, _excluded$6);
|
|
9307
9355
|
|
|
9308
9356
|
var directionSign;
|
|
9309
9357
|
|
|
@@ -9363,12 +9411,12 @@
|
|
|
9363
9411
|
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;}"]);
|
|
9364
9412
|
});
|
|
9365
9413
|
|
|
9366
|
-
var _excluded$
|
|
9414
|
+
var _excluded$5 = ["children", "direction"];
|
|
9367
9415
|
var SlideLeftRightTransition = function SlideLeftRightTransition(_ref) {
|
|
9368
9416
|
var children = _ref.children,
|
|
9369
9417
|
_ref$direction = _ref.direction,
|
|
9370
9418
|
direction = _ref$direction === void 0 ? "left" : _ref$direction,
|
|
9371
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9419
|
+
props = _objectWithoutProperties(_ref, _excluded$5);
|
|
9372
9420
|
|
|
9373
9421
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.CSSTransition, _extends({
|
|
9374
9422
|
timeout: 200,
|
|
@@ -9412,7 +9460,7 @@
|
|
|
9412
9460
|
};
|
|
9413
9461
|
ResizeTransition.displayName = "ResizeTransition";
|
|
9414
9462
|
|
|
9415
|
-
var _excluded$
|
|
9463
|
+
var _excluded$4 = ["in", "children", "style", "timeout"];
|
|
9416
9464
|
|
|
9417
9465
|
var defaultStyle = function defaultStyle(duration) {
|
|
9418
9466
|
return {
|
|
@@ -9448,7 +9496,7 @@
|
|
|
9448
9496
|
style = _ref.style,
|
|
9449
9497
|
_ref$timeout = _ref.timeout,
|
|
9450
9498
|
timeout = _ref$timeout === void 0 ? 200 : _ref$timeout,
|
|
9451
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
9499
|
+
rest = _objectWithoutProperties(_ref, _excluded$4);
|
|
9452
9500
|
|
|
9453
9501
|
return /*#__PURE__*/React__default["default"].createElement(reactTransitionGroup.Transition, _extends({
|
|
9454
9502
|
appear: true,
|
|
@@ -9523,7 +9571,7 @@
|
|
|
9523
9571
|
});
|
|
9524
9572
|
StyledValueButton.displayName = "StyledValueButton";
|
|
9525
9573
|
|
|
9526
|
-
var _excluded$
|
|
9574
|
+
var _excluded$3 = ["active", "alwaysShowIcon", "icon", "label", "value"];
|
|
9527
9575
|
var ValueButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9528
9576
|
var _ref$active = _ref.active,
|
|
9529
9577
|
active = _ref$active === void 0 ? false : _ref$active,
|
|
@@ -9532,7 +9580,7 @@
|
|
|
9532
9580
|
icon = _ref.icon,
|
|
9533
9581
|
label = _ref.label,
|
|
9534
9582
|
value = _ref.value,
|
|
9535
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
9583
|
+
args = _objectWithoutProperties(_ref, _excluded$3);
|
|
9536
9584
|
|
|
9537
9585
|
return /*#__PURE__*/React__default["default"].createElement(StyledValueButton, _extends({
|
|
9538
9586
|
className: "c-value-button"
|
|
@@ -9585,11 +9633,11 @@
|
|
|
9585
9633
|
});
|
|
9586
9634
|
StyledToggle.displayName = "StyledToggle";
|
|
9587
9635
|
|
|
9588
|
-
var _excluded$
|
|
9636
|
+
var _excluded$2 = ["hovered", "className"];
|
|
9589
9637
|
var Toggle = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
9590
9638
|
var hovered = _ref.hovered,
|
|
9591
9639
|
className = _ref.className,
|
|
9592
|
-
args = _objectWithoutProperties(_ref, _excluded$
|
|
9640
|
+
args = _objectWithoutProperties(_ref, _excluded$2);
|
|
9593
9641
|
|
|
9594
9642
|
return /*#__PURE__*/React__default["default"].createElement(StyledToggle, {
|
|
9595
9643
|
className: classnames__default["default"]("c-toggle", className),
|
|
@@ -9647,7 +9695,7 @@
|
|
|
9647
9695
|
});
|
|
9648
9696
|
StyledComboBoxList.displayName = "StyledComboBoxList";
|
|
9649
9697
|
|
|
9650
|
-
var _excluded = ["options", "selected", "loading", "loadingText", "onChange", "placeholder", "handleEmptyAction", "disabled", "size"];
|
|
9698
|
+
var _excluded$1 = ["options", "selected", "loading", "loadingText", "onChange", "placeholder", "handleEmptyAction", "disabled", "size"];
|
|
9651
9699
|
var ComboBox = function ComboBox(_ref) {
|
|
9652
9700
|
var _formRef$current;
|
|
9653
9701
|
|
|
@@ -9663,7 +9711,7 @@
|
|
|
9663
9711
|
_ref$disabled = _ref.disabled,
|
|
9664
9712
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
9665
9713
|
size = _ref.size,
|
|
9666
|
-
prop = _objectWithoutProperties(_ref, _excluded);
|
|
9714
|
+
prop = _objectWithoutProperties(_ref, _excluded$1);
|
|
9667
9715
|
|
|
9668
9716
|
var selectedName = React.useMemo(function () {
|
|
9669
9717
|
var value = "";
|
|
@@ -10174,6 +10222,31 @@
|
|
|
10174
10222
|
ThumbsDownIcon.displayName = "ThumbsDownIcon";
|
|
10175
10223
|
var ThumbsDownIcon$1 = ThumbsDownIcon;
|
|
10176
10224
|
|
|
10225
|
+
var _excluded = ["invalid", "required", "size", "children", "className"];
|
|
10226
|
+
var Label = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
10227
|
+
var _ref$invalid = _ref.invalid,
|
|
10228
|
+
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
10229
|
+
_ref$required = _ref.required,
|
|
10230
|
+
required = _ref$required === void 0 ? false : _ref$required,
|
|
10231
|
+
_ref$size = _ref.size,
|
|
10232
|
+
size = _ref$size === void 0 ? "regular" : _ref$size,
|
|
10233
|
+
children = _ref.children,
|
|
10234
|
+
className = _ref.className,
|
|
10235
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
10236
|
+
|
|
10237
|
+
var color = invalid ? "alert" : "primary";
|
|
10238
|
+
var variant = size === "regular" ? "Body 2" : "Caption 1";
|
|
10239
|
+
return /*#__PURE__*/React__default["default"].createElement(Typography, _extends({
|
|
10240
|
+
as: "label",
|
|
10241
|
+
className: classnames__default["default"]("c-label", className),
|
|
10242
|
+
variant: variant,
|
|
10243
|
+
color: color,
|
|
10244
|
+
weight: "bold",
|
|
10245
|
+
ref: ref
|
|
10246
|
+
}, props), children, required ? "*" : null);
|
|
10247
|
+
});
|
|
10248
|
+
Label.displayName = "Label";
|
|
10249
|
+
|
|
10177
10250
|
var GlobalStyle = styled.createGlobalStyle([":root{--color-primary:#5d2bff;--color-secondary:#5d2bff;--color-theme-100:#ffffff;--color-theme-200:#f6f6f9;--color-theme-300:#ebebee;--color-theme-400:#d7d7da;--color-theme-500:#b9b9bd;--color-theme-600:#89898e;--color-theme-700:#6d6d73;--color-theme-800:#5b5b61;--color-theme-900:#303037;--color-primary-200:rgba(93,43,255,0.05);--color-primary-300:rgba(93,43,255,0.1);--color-primary-400:rgba(93,43,255,0.25);--color-primary-500:rgba(93,43,255,0.5);--color-primary-600:rgba(93,43,255,0.75);--color-primary-700:#5d2bff;--color-primary-800:#4a21cd;--color-primary-900:#32178b;--color-secondary-200:rgba(93,43,255,0.05);--color-secondary-300:rgba(93,43,255,0.1);--color-secondary-400:rgba(93,43,255,0.25);--color-secondary-500:rgba(93,43,255,0.5);--color-secondary-600:rgba(93,43,255,0.75);--color-secondary-700:#5d2bff;--color-secondary-800:#4a21cd;--color-secondary-900:#32178b;--color-primary-opaque-300:#efeaff;--color-primary-opaque-400:#d6caff;--color-secondary-opaque-300:#efeaff;--color-secondary-opaque-400:#d6caff;--color-sucess-green:#64cd93;--body-bg-main:rgb(244,245,247);--body-bg-main-transparent:rgba(244,245,247,0);--page-paper-main:#ffffff;--border-primary:#d7d7da;--note-bg:#fff9f1;--shadow-primary-hover:0 64px 64px 0 rgba(0,0,0,0.1),0 32px 32px 0 rgba(0,0,0,0.06),0 16px 16px 0 rgba(0,0,0,0.04),0 4px 4px 0 rgba(0,0,0,0.04),0 2px 2px 0 rgba(0,0,0,0.04);--shadow-primary:0 64px 64px 0 rgba(0,0,0,0.06),0 32px 32px 0 rgba(0,0,0,0.03),0 16px 16px 0 rgba(0,0,0,0.02),0 4px 4px 0 rgba(0,0,0,0.02),0 2px 2px 0 rgba(0,0,0,0.02);--shadow-secondary:0 4px 14px 0 rgba(0,0,0,0.17);--shadow-tertiary:0 4px 6px -2px rgba(0,0,0,0.05),0 10px 15px -3px rgba(0,0,0,0.1);--shadow-tertiary-hover:0 4px 10px -2px rgba(0,0,0,0.1),0 12px 20px -3px rgba(0,0,0,0.2);--page-paper-main-shadow:rgba( 255,255,255,0 );--modal-background:rgba(244,245,247,0.6);--highlight-dark:rgba(0,0,0,0.03);--input-background-color:#ffffff;--red-alert:rgb(237,97,97);--only-white:#ffffff;--only-black:#000000;--ac-br-4:4px;--ac-br-6:6px;--ac-br-8:8px;--ac-br-rounded:999px;}.cupcake{--color-primary:#29bcdd;--color-secondary:#fe6fa7;--color-primary-200:rgba(41,188,221,0.07);--color-primary-300:rgba(41,188,221,0.12);--color-primary-400:rgba(41,188,221,0.26);--color-primary-500:rgba(41,188,221,0.52);--color-primary-600:rgba(41,188,221,0.75);--color-primary-700:#29bcdd;--color-primary-800:#219fbb;--color-primary-900:#1a768b;--color-secondary-200:rgba(254,111,167,0.07);--color-secondary-300:rgba(254,111,167,0.13);--color-secondary-400:rgba(254,111,167,0.27);--color-secondary-500:rgba(254,111,167,0.52);--color-secondary-600:rgba(254,111,167,0.75);--color-secondary-700:#fe6fa7;--color-secondary-800:#dd6091;--color-secondary-900:#ab496f;--color-primary-opaque-300:#e5f7fb;--color-primary-opaque-400:#c8eef6;--color-secondary-opaque-300:#ffecf4;--color-secondary-opaque-400:#ffd8e7;}.classic{--color-primary:#4182f2;--color-secondary:#4182f2;--color-primary-200:rgba(65,130,242,0.07);--color-primary-300:rgba(65,130,242,0.13);--color-primary-400:rgba(65,130,242,0.26);--color-primary-500:rgba(65,130,242,0.52);--color-primary-600:rgba(65,130,242,0.75);--color-primary-700:#4182f2;--color-primary-800:#356bc8;--color-primary-900:#244a8a;--color-secondary-200:rgba(65,130,242,0.07);--color-secondary-300:rgba(65,130,242,0.13);--color-secondary-400:rgba(65,130,242,0.26);--color-secondary-500:rgba(65,130,242,0.52);--color-secondary-600:rgba(65,130,242,0.75);--color-secondary-700:#4182f2;--color-secondary-800:#356bc8;--color-secondary-900:#244a8a;--color-primary-opaque-300:#e6effd;--color-primary-opaque-400:#cedffc;--color-secondary-opaque-300:#e6effd;--color-secondary-opaque-400:#cedffc;}.neon{--color-primary:#67ffc8;--color-secondary:#67ffc8;--color-theme-100:#000000;--color-theme-200:#31333e;--color-theme-300:#2b2d37;--color-theme-400:#1f2024;--color-theme-500:#99999e;--color-theme-600:#89898e;--color-theme-700:#b0b0b5;--color-theme-800:#dfdfe5;--color-theme-900:#ffffff;--color-primary-200:rgba(103,255,200,0.05);--color-primary-300:rgba(103,255,200,0.1);--color-primary-400:rgba(103,255,200,0.25);--color-primary-500:rgba(103,255,200,0.5);--color-primary-600:rgba(103,255,200,0.75);--color-primary-700:#67ffc8;--color-primary-800:#a5ffdf;--color-primary-900:#d0fdec;--color-secondary-200:rgba(103,255,200,0.05);--color-secondary-300:rgba(103,255,200,0.1);--color-secondary-400:rgba(103,255,200,0.25);--color-secondary-500:rgba(103,255,200,0.5);--color-secondary-600:rgba(103,255,200,0.75);--color-secondary-700:#67ffc8;--color-secondary-800:#a5ffdf;--color-secondary-900:#d0fdec;--color-primary-opaque-300:#3b4e51;--color-primary-opaque-400:#436b64;--color-secondary-opaque-300:#3b4e51;--color-secondary-opaque-400:#436b64;--body-bg-main:rgb(44,46,56);--body-bg-main-transparent:rgba(44,46,56,0);--page-paper-main:#373a44;--border-primary:#1f2024;--note-bg:#464545;--shadow-primary-hover:0 64px 64px 0 rgba(0,0,0,0.2),0 32px 32px 0 rgba(0,0,0,0.2),0 16px 16px 0 rgba(0,0,0,0.2),0 4px 4px 0 rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.2);--shadow-primary:0 64px 64px 0 rgba(0,0,0,0.1),0 32px 32px 0 rgba(0,0,0,0.1),0 16px 16px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);--shadow-secondary:0 4px 14px 0 rgba(0,0,0,0.3);--shadow-tertiary:0 4px 6px -2px rgba(0,0,0,0.1),0 10px 15px -3px rgba(0,0,0,0.15);--shadow-tertiary-hover:0 4px 12px -2px rgba(0,0,0,0.4),0 10px 30px -3px rgba(0,0,0,0.5);--page-paper-main-shadow:rgba( 55,58,68,0 );--modal-background:rgba(44,46,56,0.7);--highlight-dark:rgba(0,0,0,0.06);--input-background-color:#2c2e38;--only-white:#ffffff;--only-black:#000000;}.ac-shadow,.ac-shadow--raised{&--lg{box-shadow:var(--shadow-primary);}&--sm{box-shadow:var(--shadow-tertiary);}}.ac-shadow--raised{&--lg{transition:box-shadow 0.3s;&:hover{box-shadow:var(--shadow-primary-hover);}}&--sm{transition:box-shadow 0.3s;&:hover{box-shadow:var(--shadow-tertiary-hover);}}}.ac-shadow-optimized--sm{position:relative;box-shadow:var(--shadow-tertiary);&::before{position:absolute;top:0;left:0;width:100%;height:100%;content:\"\";box-shadow:var(--shadow-tertiary);opacity:0;border-radius:var(--ac-br-6);transition:opacity 0.3s ease;z-index:-1;}@media (hover:hover){&:hover::before{opacity:1;}}}.ac-shadow-optimized--lg{position:relative;box-shadow:var(--shadow-primary);&::before{position:absolute;top:0;left:0;width:100%;height:100%;content:\"\";box-shadow:var(--shadow-primary);opacity:0;border-radius:var(--ac-br-8);transition:opacity 0.3s ease;z-index:-1;}@media (hover:hover){&:hover::before{opacity:1;}}}.ac-border-radius{&-4{border-radius:var(--ac-br-4);}&-6{border-radius:var(--ac-br-6);}&-8{border-radius:var(--ac-br-8);}&-rounded{border-radius:var(--ac-br-rounded);}}"]);
|
|
10178
10251
|
|
|
10179
10252
|
exports.Accordion = Accordion;
|
|
@@ -10316,6 +10389,7 @@
|
|
|
10316
10389
|
exports.MenuNavIcon = MenuNavIcon$1;
|
|
10317
10390
|
exports.MenuSelector = MenuSelector;
|
|
10318
10391
|
exports.MessageAddIcon = MessageAddIcon$1;
|
|
10392
|
+
exports.MessageEmptyIcon = MessageEmptyIcon$1;
|
|
10319
10393
|
exports.MessageIcon = MessageIcon$1;
|
|
10320
10394
|
exports.MessageSmallIcon = MessageSmallIcon$1;
|
|
10321
10395
|
exports.MinusIcon = MinusIcon$1;
|
|
@@ -10342,6 +10416,7 @@
|
|
|
10342
10416
|
exports.PencilSmallIcon = PencilSmallIcon$1;
|
|
10343
10417
|
exports.PendingPaymentSmallIcon = PendingPaymentSmallIcon$1;
|
|
10344
10418
|
exports.PeopleIcon = PeopleIcon$1;
|
|
10419
|
+
exports.PersonCircleIcon = PersonCircleIcon$1;
|
|
10345
10420
|
exports.PersonIcon = PersonIcon$1;
|
|
10346
10421
|
exports.PersonPlusIcon = PersonPlusIcon$1;
|
|
10347
10422
|
exports.PlayCircleOutlineIcon = PlayCircleOutlineIcon$1;
|
|
@@ -10386,8 +10461,10 @@
|
|
|
10386
10461
|
exports.SortIcon = SortIcon$1;
|
|
10387
10462
|
exports.SpinnerLoader = SpinnerLoader;
|
|
10388
10463
|
exports.StarIcon = StarIcon$1;
|
|
10464
|
+
exports.StarOutlineIcon = StarOutlineIcon$1;
|
|
10389
10465
|
exports.Steps = Steps;
|
|
10390
10466
|
exports.Table = Table;
|
|
10467
|
+
exports.Tag = Tag;
|
|
10391
10468
|
exports.TaskAddIcon = TaskAddIcon$1;
|
|
10392
10469
|
exports.TaskListAddIcon = TaskListAddIcon$1;
|
|
10393
10470
|
exports.Tbody = Tbody;
|