@activecollab/components 2.0.394 → 2.0.396
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/Badge/Badge.js +29 -8
- package/dist/cjs/components/Badge/Badge.js.map +1 -1
- package/dist/cjs/components/Badge/Styles.js +41 -11
- package/dist/cjs/components/Badge/Styles.js.map +1 -1
- package/dist/cjs/components/Icons/collection/ViewCombined.js +60 -0
- package/dist/cjs/components/Icons/collection/ViewCombined.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +7 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Badge/Badge.d.ts +15 -6
- package/dist/esm/components/Badge/Badge.d.ts.map +1 -1
- package/dist/esm/components/Badge/Badge.js +29 -8
- package/dist/esm/components/Badge/Badge.js.map +1 -1
- package/dist/esm/components/Badge/Styles.d.ts +5 -1
- package/dist/esm/components/Badge/Styles.d.ts.map +1 -1
- package/dist/esm/components/Badge/Styles.js +35 -7
- package/dist/esm/components/Badge/Styles.js.map +1 -1
- package/dist/esm/components/CounterButton/Styles.d.ts +1 -1
- package/dist/esm/components/CounterButton/Styles.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/ViewCombined.d.ts +32 -0
- package/dist/esm/components/Icons/collection/ViewCombined.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/ViewCombined.js +53 -0
- package/dist/esm/components/Icons/collection/ViewCombined.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +1 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +636 -535
- 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
|
@@ -8,24 +8,35 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
8
8
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
9
9
|
var _Styles = require("./Styles");
|
|
10
10
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
|
+
var getLabel = function getLabel(value, cap) {
|
|
12
|
+
if (!value) {
|
|
13
|
+
return null;
|
|
14
|
+
}
|
|
15
|
+
return cap && value > cap ? "".concat(cap, "+") : value;
|
|
16
|
+
};
|
|
17
|
+
|
|
11
18
|
/**
|
|
12
19
|
* @component Badge
|
|
13
20
|
* @description
|
|
14
|
-
*
|
|
15
|
-
*
|
|
21
|
+
* A small pill that sits on the corner of an avatar or an icon, or stands in a
|
|
22
|
+
* row on its own. It shows a count, or nothing at all when it marks a state.
|
|
16
23
|
*
|
|
17
24
|
* @prop {position} - dictates the position of a badge.
|
|
18
|
-
* @prop {dimension} - controls the
|
|
25
|
+
* @prop {dimension} - controls the height of a badge in pixels. The width grows with the content.
|
|
26
|
+
* @prop {shape} - "pill" adds horizontal padding so the badge reads as long.
|
|
27
|
+
* @prop {cap} - the highest number shown. Above it the badge renders `{cap}+`.
|
|
19
28
|
* @prop {backgroundColor} - background-color of a badge.
|
|
29
|
+
* @prop {textColor} - color of the number.
|
|
30
|
+
* @prop {isStandalone} - takes the badge out of absolute positioning.
|
|
20
31
|
*
|
|
21
32
|
* @example
|
|
22
33
|
* <IconButton variant="text gray" size="big">
|
|
23
34
|
* <BellOffIcon />
|
|
24
|
-
* <Badge position="top-right" backgroundColor="red" dimension={16} />
|
|
35
|
+
* <Badge position="top-right" backgroundColor="var(--red-alert)" dimension={16} value={7} cap={99} />
|
|
25
36
|
* </IconButton>
|
|
26
37
|
*
|
|
27
38
|
* @see
|
|
28
|
-
* https://system.activecollab.com/?path=/story/components-
|
|
39
|
+
* https://system.activecollab.com/?path=/story/components-indicators-badge--badge
|
|
29
40
|
*/
|
|
30
41
|
var Badge = exports.Badge = function Badge(_ref) {
|
|
31
42
|
var _ref$dimension = _ref.dimension,
|
|
@@ -34,17 +45,27 @@ var Badge = exports.Badge = function Badge(_ref) {
|
|
|
34
45
|
_ref$position = _ref.position,
|
|
35
46
|
position = _ref$position === void 0 ? "bottom-left" : _ref$position,
|
|
36
47
|
backgroundColor = _ref.backgroundColor,
|
|
48
|
+
textColor = _ref.textColor,
|
|
37
49
|
value = _ref.value,
|
|
50
|
+
cap = _ref.cap,
|
|
51
|
+
_ref$shape = _ref.shape,
|
|
52
|
+
shape = _ref$shape === void 0 ? "circle" : _ref$shape,
|
|
53
|
+
_ref$shadows = _ref.shadows,
|
|
54
|
+
shadows = _ref$shadows === void 0 ? false : _ref$shadows,
|
|
38
55
|
_ref$isStandalone = _ref.isStandalone,
|
|
39
56
|
isStandalone = _ref$isStandalone === void 0 ? false : _ref$isStandalone;
|
|
57
|
+
var label = getLabel(value, cap);
|
|
40
58
|
return /*#__PURE__*/_react.default.createElement(_Styles.StyledBadge, {
|
|
41
59
|
className: (0, _classnames.default)("c-badge", className),
|
|
42
60
|
dimension: dimension,
|
|
43
61
|
position: position,
|
|
62
|
+
shape: shape,
|
|
63
|
+
shadows: shadows,
|
|
64
|
+
hasLabel: label !== null,
|
|
44
65
|
isStandalone: isStandalone,
|
|
45
66
|
backgroundColor: backgroundColor,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
},
|
|
67
|
+
textColor: textColor,
|
|
68
|
+
role: "status"
|
|
69
|
+
}, label);
|
|
49
70
|
};
|
|
50
71
|
//# sourceMappingURL=Badge.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Badge.js","names":["_react","_interopRequireDefault","require","_classnames","_Styles","e","__esModule","default","Badge","exports","_ref","_ref$dimension","dimension","className","_ref$position","position","backgroundColor","
|
|
1
|
+
{"version":3,"file":"Badge.js","names":["_react","_interopRequireDefault","require","_classnames","_Styles","e","__esModule","default","getLabel","value","cap","concat","Badge","exports","_ref","_ref$dimension","dimension","className","_ref$position","position","backgroundColor","textColor","_ref$shape","shape","_ref$shadows","shadows","_ref$isStandalone","isStandalone","label","createElement","StyledBadge","classNames","hasLabel","role"],"sources":["../../../../src/components/Badge/Badge.tsx"],"sourcesContent":["import React from \"react\";\n\nimport classNames from \"classnames\";\n\nimport { StyledBadge } from \"./Styles\";\n\ntype Position = \"top-left\" | \"top-right\" | \"bottom-right\" | \"bottom-left\";\ntype Shape = \"circle\" | \"pill\";\n\nexport interface BadgeProps {\n position?: Position;\n dimension?: number;\n className?: string;\n backgroundColor?: string;\n textColor?: string;\n value?: number;\n cap?: number;\n shape?: Shape;\n shadows?: boolean;\n isStandalone?: boolean;\n}\n\nconst getLabel = (value?: number, cap?: number) => {\n if (!value) {\n return null;\n }\n\n return cap && value > cap ? `${cap}+` : value;\n};\n\n/**\n * @component Badge\n * @description\n * A small pill that sits on the corner of an avatar or an icon, or stands in a\n * row on its own. It shows a count, or nothing at all when it marks a state.\n *\n * @prop {position} - dictates the position of a badge.\n * @prop {dimension} - controls the height of a badge in pixels. The width grows with the content.\n * @prop {shape} - \"pill\" adds horizontal padding so the badge reads as long.\n * @prop {cap} - the highest number shown. Above it the badge renders `{cap}+`.\n * @prop {backgroundColor} - background-color of a badge.\n * @prop {textColor} - color of the number.\n * @prop {isStandalone} - takes the badge out of absolute positioning.\n *\n * @example\n * <IconButton variant=\"text gray\" size=\"big\">\n * <BellOffIcon />\n * <Badge position=\"top-right\" backgroundColor=\"var(--red-alert)\" dimension={16} value={7} cap={99} />\n * </IconButton>\n *\n * @see\n * https://system.activecollab.com/?path=/story/components-indicators-badge--badge\n */\nexport const Badge = ({\n dimension = 8,\n className,\n position = \"bottom-left\",\n backgroundColor,\n textColor,\n value,\n cap,\n shape = \"circle\",\n shadows = false,\n isStandalone = false,\n}: BadgeProps) => {\n const label = getLabel(value, cap);\n\n return (\n <StyledBadge\n className={classNames(\"c-badge\", className)}\n dimension={dimension}\n position={position}\n shape={shape}\n shadows={shadows}\n hasLabel={label !== null}\n isStandalone={isStandalone}\n backgroundColor={backgroundColor}\n textColor={textColor}\n role=\"status\"\n >\n {label}\n </StyledBadge>\n );\n};\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,WAAA,GAAAF,sBAAA,CAAAC,OAAA;AAEA,IAAAE,OAAA,GAAAF,OAAA;AAAuC,SAAAD,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAkBvC,IAAMG,QAAQ,GAAG,SAAXA,QAAQA,CAAIC,KAAc,EAAEC,GAAY,EAAK;EACjD,IAAI,CAACD,KAAK,EAAE;IACV,OAAO,IAAI;EACb;EAEA,OAAOC,GAAG,IAAID,KAAK,GAAGC,GAAG,MAAAC,MAAA,CAAMD,GAAG,SAAMD,KAAK;AAC/C,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,IAAMG,KAAK,GAAAC,OAAA,CAAAD,KAAA,GAAG,SAARA,KAAKA,CAAAE,IAAA,EAWA;EAAA,IAAAC,cAAA,GAAAD,IAAA,CAVhBE,SAAS;IAATA,SAAS,GAAAD,cAAA,cAAG,CAAC,GAAAA,cAAA;IACbE,SAAS,GAAAH,IAAA,CAATG,SAAS;IAAAC,aAAA,GAAAJ,IAAA,CACTK,QAAQ;IAARA,QAAQ,GAAAD,aAAA,cAAG,aAAa,GAAAA,aAAA;IACxBE,eAAe,GAAAN,IAAA,CAAfM,eAAe;IACfC,SAAS,GAAAP,IAAA,CAATO,SAAS;IACTZ,KAAK,GAAAK,IAAA,CAALL,KAAK;IACLC,GAAG,GAAAI,IAAA,CAAHJ,GAAG;IAAAY,UAAA,GAAAR,IAAA,CACHS,KAAK;IAALA,KAAK,GAAAD,UAAA,cAAG,QAAQ,GAAAA,UAAA;IAAAE,YAAA,GAAAV,IAAA,CAChBW,OAAO;IAAPA,OAAO,GAAAD,YAAA,cAAG,KAAK,GAAAA,YAAA;IAAAE,iBAAA,GAAAZ,IAAA,CACfa,YAAY;IAAZA,YAAY,GAAAD,iBAAA,cAAG,KAAK,GAAAA,iBAAA;EAEpB,IAAME,KAAK,GAAGpB,QAAQ,CAACC,KAAK,EAAEC,GAAG,CAAC;EAElC,oBACEV,MAAA,CAAAO,OAAA,CAAAsB,aAAA,CAACzB,OAAA,CAAA0B,WAAW;IACVb,SAAS,EAAE,IAAAc,mBAAU,EAAC,SAAS,EAAEd,SAAS,CAAE;IAC5CD,SAAS,EAAEA,SAAU;IACrBG,QAAQ,EAAEA,QAAS;IACnBI,KAAK,EAAEA,KAAM;IACbE,OAAO,EAAEA,OAAQ;IACjBO,QAAQ,EAAEJ,KAAK,KAAK,IAAK;IACzBD,YAAY,EAAEA,YAAa;IAC3BP,eAAe,EAAEA,eAAgB;IACjCC,SAAS,EAAEA,SAAU;IACrBY,IAAI,EAAC;EAAQ,GAEZL,KACU,CAAC;AAElB,CAAC","ignoreList":[]}
|
|
@@ -7,33 +7,63 @@ exports.StyledBadge = void 0;
|
|
|
7
7
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
8
8
|
var _FontStyle = require("../FontStyle");
|
|
9
9
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
10
|
+
var DEFAULT_DIMENSION = 8;
|
|
11
|
+
var LARGE_FONT_FROM_DIMENSION = 18;
|
|
12
|
+
var CIRCLE_PADDING_INLINE = 5;
|
|
13
|
+
var PILL_PADDING_INLINE = 10;
|
|
14
|
+
var DIGIT_INLINE_SIZE = 7;
|
|
15
|
+
var SMALL_CIRCLE_BELOW_DIMENSION = 16;
|
|
16
|
+
var dimensionOf = function dimensionOf(props) {
|
|
17
|
+
var _props$dimension;
|
|
18
|
+
return (_props$dimension = props.dimension) !== null && _props$dimension !== void 0 ? _props$dimension : DEFAULT_DIMENSION;
|
|
19
|
+
};
|
|
20
|
+
var paddingInlineOf = function paddingInlineOf(props) {
|
|
21
|
+
if (!props.hasLabel) {
|
|
22
|
+
return 0;
|
|
23
|
+
}
|
|
24
|
+
if (props.shape === "pill") {
|
|
25
|
+
return PILL_PADDING_INLINE;
|
|
26
|
+
}
|
|
27
|
+
var dimension = dimensionOf(props);
|
|
28
|
+
if (dimension >= SMALL_CIRCLE_BELOW_DIMENSION) {
|
|
29
|
+
return CIRCLE_PADDING_INLINE;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// A small circle keeps a single digit inside its box only with less padding.
|
|
33
|
+
return Math.max(0, Math.floor((dimension - DIGIT_INLINE_SIZE) / 2));
|
|
34
|
+
};
|
|
10
35
|
var StyledBadge = exports.StyledBadge = _styledComponents.default.div.withConfig({
|
|
11
36
|
displayName: "Styles__StyledBadge",
|
|
12
37
|
componentId: "sc-6o8do5-0"
|
|
13
|
-
})(["", " align-items:center;background-color:", ";
|
|
38
|
+
})(["", " align-items:center;background-color:", ";block-size:", ";border-radius:999px;box-sizing:border-box;color:", ";display:flex;font-size:", ";font-variant-numeric:tabular-nums;font-weight:700;inline-size:auto;justify-content:center;min-inline-size:", ";padding-inline:", ";pointer-events:none;position:absolute;z-index:1;", " ", " ", " ", " ", " ", ""], _FontStyle.FontStyle, function (props) {
|
|
14
39
|
return !props.backgroundColor ? "var(--color-primary)" : props.backgroundColor;
|
|
15
40
|
}, function (props) {
|
|
16
|
-
return props
|
|
41
|
+
return dimensionOf(props) + "px";
|
|
42
|
+
}, function (props) {
|
|
43
|
+
return !props.textColor ? "var(--color-theme-100)" : props.textColor;
|
|
17
44
|
}, function (props) {
|
|
18
|
-
return props
|
|
45
|
+
return dimensionOf(props) >= LARGE_FONT_FROM_DIMENSION ? "12px" : "10px";
|
|
19
46
|
}, function (props) {
|
|
20
|
-
return props
|
|
47
|
+
return dimensionOf(props) + "px";
|
|
21
48
|
}, function (props) {
|
|
22
|
-
return
|
|
49
|
+
return paddingInlineOf(props) + "px";
|
|
23
50
|
}, function (_ref) {
|
|
24
|
-
var
|
|
25
|
-
return
|
|
51
|
+
var shadows = _ref.shadows;
|
|
52
|
+
return shadows && (0, _styledComponents.css)(["box-shadow:var(--shadow-tertiary);text-shadow:0 1px 2px rgba(0,0,0,0.25);"]);
|
|
26
53
|
}, function (_ref2) {
|
|
27
|
-
var
|
|
28
|
-
return
|
|
54
|
+
var isStandalone = _ref2.isStandalone;
|
|
55
|
+
return isStandalone && (0, _styledComponents.css)(["position:static;z-index:0;"]);
|
|
29
56
|
}, function (_ref3) {
|
|
30
57
|
var position = _ref3.position;
|
|
31
|
-
return position === "top-
|
|
58
|
+
return position === "top-left" && (0, _styledComponents.css)(["inset-block-start:0;inset-inline-start:0;"]);
|
|
32
59
|
}, function (_ref4) {
|
|
33
60
|
var position = _ref4.position;
|
|
34
|
-
return position === "
|
|
61
|
+
return position === "top-right" && (0, _styledComponents.css)(["inset-block-start:0;inset-inline-end:0;"]);
|
|
35
62
|
}, function (_ref5) {
|
|
36
63
|
var position = _ref5.position;
|
|
64
|
+
return position === "bottom-right" && (0, _styledComponents.css)(["inset-block-end:0;inset-inline-end:0;"]);
|
|
65
|
+
}, function (_ref6) {
|
|
66
|
+
var position = _ref6.position;
|
|
37
67
|
return position === "bottom-left" && (0, _styledComponents.css)(["inset-block-end:0;inset-inline-start:0;"]);
|
|
38
68
|
});
|
|
39
69
|
//# sourceMappingURL=Styles.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Styles.js","names":["_styledComponents","_interopRequireWildcard","require","_FontStyle","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","StyledBadge","exports","styled","div","withConfig","displayName","componentId","FontStyle","
|
|
1
|
+
{"version":3,"file":"Styles.js","names":["_styledComponents","_interopRequireWildcard","require","_FontStyle","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","DEFAULT_DIMENSION","LARGE_FONT_FROM_DIMENSION","CIRCLE_PADDING_INLINE","PILL_PADDING_INLINE","DIGIT_INLINE_SIZE","SMALL_CIRCLE_BELOW_DIMENSION","dimensionOf","props","_props$dimension","dimension","paddingInlineOf","hasLabel","shape","Math","max","floor","StyledBadge","exports","styled","div","withConfig","displayName","componentId","FontStyle","backgroundColor","textColor","_ref","shadows","css","_ref2","isStandalone","_ref3","position","_ref4","_ref5","_ref6"],"sources":["../../../../src/components/Badge/Styles.ts"],"sourcesContent":["import styled, { css } from \"styled-components\";\n\nimport { BadgeProps } from \"./Badge\";\nimport { FontStyle } from \"../FontStyle\";\n\nconst DEFAULT_DIMENSION = 8;\nconst LARGE_FONT_FROM_DIMENSION = 18;\nconst CIRCLE_PADDING_INLINE = 5;\nconst PILL_PADDING_INLINE = 10;\nconst DIGIT_INLINE_SIZE = 7;\nconst SMALL_CIRCLE_BELOW_DIMENSION = 16;\n\ntype StyledBadgeProps = Partial<BadgeProps> & { hasLabel?: boolean };\n\nconst dimensionOf = (props: StyledBadgeProps) =>\n props.dimension ?? DEFAULT_DIMENSION;\n\nconst paddingInlineOf = (props: StyledBadgeProps) => {\n if (!props.hasLabel) {\n return 0;\n }\n\n if (props.shape === \"pill\") {\n return PILL_PADDING_INLINE;\n }\n\n const dimension = dimensionOf(props);\n\n if (dimension >= SMALL_CIRCLE_BELOW_DIMENSION) {\n return CIRCLE_PADDING_INLINE;\n }\n\n // A small circle keeps a single digit inside its box only with less padding.\n return Math.max(0, Math.floor((dimension - DIGIT_INLINE_SIZE) / 2));\n};\n\nexport const StyledBadge = styled.div<StyledBadgeProps>`\n ${FontStyle}\n align-items: center;\n background-color: ${(props) =>\n !props.backgroundColor ? \"var(--color-primary)\" : props.backgroundColor};\n block-size: ${(props) => dimensionOf(props) + \"px\"};\n border-radius: 999px;\n box-sizing: border-box;\n color: ${(props) =>\n !props.textColor ? \"var(--color-theme-100)\" : props.textColor};\n display: flex;\n font-size: ${(props) =>\n dimensionOf(props) >= LARGE_FONT_FROM_DIMENSION ? \"12px\" : \"10px\"};\n font-variant-numeric: tabular-nums;\n font-weight: 700;\n inline-size: auto;\n justify-content: center;\n min-inline-size: ${(props) => dimensionOf(props) + \"px\"};\n padding-inline: ${(props) => paddingInlineOf(props) + \"px\"};\n pointer-events: none;\n position: absolute;\n z-index: 1;\n\n ${({ shadows }) =>\n shadows &&\n css`\n box-shadow: var(--shadow-tertiary);\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);\n `}\n\n ${({ isStandalone }) =>\n isStandalone &&\n css`\n position: static;\n z-index: 0;\n `}\n\n ${({ position }) =>\n position === \"top-left\" &&\n css`\n inset-block-start: 0;\n inset-inline-start: 0;\n `}\n\n ${({ position }) =>\n position === \"top-right\" &&\n css`\n inset-block-start: 0;\n inset-inline-end: 0;\n `}\n\n ${({ position }) =>\n position === \"bottom-right\" &&\n css`\n inset-block-end: 0;\n inset-inline-end: 0;\n `}\n\n ${({ position }) =>\n position === \"bottom-left\" &&\n css`\n inset-block-end: 0;\n inset-inline-start: 0;\n `}\n`;\n"],"mappings":";;;;;;AAAA,IAAAA,iBAAA,GAAAC,uBAAA,CAAAC,OAAA;AAGA,IAAAC,UAAA,GAAAD,OAAA;AAAyC,SAAAD,wBAAAG,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAL,uBAAA,YAAAA,wBAAAG,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,cAAAM,EAAA,IAAAd,CAAA,gBAAAc,EAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,EAAA,OAAAP,CAAA,IAAAD,CAAA,GAAAW,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAnB,CAAA,EAAAc,EAAA,OAAAP,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAM,EAAA,EAAAP,CAAA,IAAAC,CAAA,CAAAM,EAAA,IAAAd,CAAA,CAAAc,EAAA,WAAAN,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAEzC,IAAMmB,iBAAiB,GAAG,CAAC;AAC3B,IAAMC,yBAAyB,GAAG,EAAE;AACpC,IAAMC,qBAAqB,GAAG,CAAC;AAC/B,IAAMC,mBAAmB,GAAG,EAAE;AAC9B,IAAMC,iBAAiB,GAAG,CAAC;AAC3B,IAAMC,4BAA4B,GAAG,EAAE;AAIvC,IAAMC,WAAW,GAAG,SAAdA,WAAWA,CAAIC,KAAuB;EAAA,IAAAC,gBAAA;EAAA,QAAAA,gBAAA,GAC1CD,KAAK,CAACE,SAAS,cAAAD,gBAAA,cAAAA,gBAAA,GAAIR,iBAAiB;AAAA;AAEtC,IAAMU,eAAe,GAAG,SAAlBA,eAAeA,CAAIH,KAAuB,EAAK;EACnD,IAAI,CAACA,KAAK,CAACI,QAAQ,EAAE;IACnB,OAAO,CAAC;EACV;EAEA,IAAIJ,KAAK,CAACK,KAAK,KAAK,MAAM,EAAE;IAC1B,OAAOT,mBAAmB;EAC5B;EAEA,IAAMM,SAAS,GAAGH,WAAW,CAACC,KAAK,CAAC;EAEpC,IAAIE,SAAS,IAAIJ,4BAA4B,EAAE;IAC7C,OAAOH,qBAAqB;EAC9B;;EAEA;EACA,OAAOW,IAAI,CAACC,GAAG,CAAC,CAAC,EAAED,IAAI,CAACE,KAAK,CAAC,CAACN,SAAS,GAAGL,iBAAiB,IAAI,CAAC,CAAC,CAAC;AACrE,CAAC;AAEM,IAAMY,WAAW,GAAAC,OAAA,CAAAD,WAAA,GAAGE,yBAAM,CAACC,GAAG,CAAAC,UAAA;EAAAC,WAAA;EAAAC,WAAA;AAAA,wWACjCC,oBAAS,EAES,UAAChB,KAAK;EAAA,OACxB,CAACA,KAAK,CAACiB,eAAe,GAAG,sBAAsB,GAAGjB,KAAK,CAACiB,eAAe;AAAA,GAC3D,UAACjB,KAAK;EAAA,OAAKD,WAAW,CAACC,KAAK,CAAC,GAAG,IAAI;AAAA,GAGzC,UAACA,KAAK;EAAA,OACb,CAACA,KAAK,CAACkB,SAAS,GAAG,wBAAwB,GAAGlB,KAAK,CAACkB,SAAS;AAAA,GAElD,UAAClB,KAAK;EAAA,OACjBD,WAAW,CAACC,KAAK,CAAC,IAAIN,yBAAyB,GAAG,MAAM,GAAG,MAAM;AAAA,GAKhD,UAACM,KAAK;EAAA,OAAKD,WAAW,CAACC,KAAK,CAAC,GAAG,IAAI;AAAA,GACrC,UAACA,KAAK;EAAA,OAAKG,eAAe,CAACH,KAAK,CAAC,GAAG,IAAI;AAAA,GAKxD,UAAAmB,IAAA;EAAA,IAAGC,OAAO,GAAAD,IAAA,CAAPC,OAAO;EAAA,OACVA,OAAO,QACPC,qBAAG,gFAGF;AAAA,GAED,UAAAC,KAAA;EAAA,IAAGC,YAAY,GAAAD,KAAA,CAAZC,YAAY;EAAA,OACfA,YAAY,QACZF,qBAAG,iCAGF;AAAA,GAED,UAAAG,KAAA;EAAA,IAAGC,QAAQ,GAAAD,KAAA,CAARC,QAAQ;EAAA,OACXA,QAAQ,KAAK,UAAU,QACvBJ,qBAAG,gDAGF;AAAA,GAED,UAAAK,KAAA;EAAA,IAAGD,QAAQ,GAAAC,KAAA,CAARD,QAAQ;EAAA,OACXA,QAAQ,KAAK,WAAW,QACxBJ,qBAAG,8CAGF;AAAA,GAEC,UAAAM,KAAA;EAAA,IAAGF,QAAQ,GAAAE,KAAA,CAARF,QAAQ;EAAA,OACbA,QAAQ,KAAK,cAAc,QAC3BJ,qBAAG,4CAGF;AAAA,GAEC,UAAAO,KAAA;EAAA,IAAGH,QAAQ,GAAAG,KAAA,CAARH,QAAQ;EAAA,OACbA,QAAQ,KAAK,aAAa,QAC1BJ,qBAAG,8CAGF;AAAA,EACJ","ignoreList":[]}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _GradientDefs = require("../../GradientDefs");
|
|
9
|
+
var _excluded = ["gradient"];
|
|
10
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
12
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
13
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
14
|
+
/**
|
|
15
|
+
* @component ViewCombinedIcon
|
|
16
|
+
* @description
|
|
17
|
+
*
|
|
18
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
19
|
+
* The Icon component is
|
|
20
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
21
|
+
*
|
|
22
|
+
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
|
|
23
|
+
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* return (
|
|
27
|
+
* <ViewCombinedIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
|
|
28
|
+
* )
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* return (
|
|
32
|
+
* <ViewCombinedIcon className="mr-2" />
|
|
33
|
+
* )
|
|
34
|
+
*
|
|
35
|
+
* @see
|
|
36
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
37
|
+
* @see
|
|
38
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
39
|
+
*/
|
|
40
|
+
var ViewCombinedIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
|
|
41
|
+
var gradient = _ref.gradient,
|
|
42
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
43
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
width: 24,
|
|
46
|
+
height: 24,
|
|
47
|
+
viewBox: "0 0 24 24",
|
|
48
|
+
"data-testid": "ViewCombinedIcon",
|
|
49
|
+
fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
|
|
50
|
+
focusable: false,
|
|
51
|
+
ref: ref
|
|
52
|
+
}, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
|
|
53
|
+
gradient: gradient
|
|
54
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
+
d: "M19 18a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2zm0-6a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2zm-7-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"
|
|
56
|
+
}));
|
|
57
|
+
});
|
|
58
|
+
ViewCombinedIcon.displayName = "ViewCombinedIcon";
|
|
59
|
+
var _default = exports.default = ViewCombinedIcon;
|
|
60
|
+
//# sourceMappingURL=ViewCombined.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ViewCombined.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","ViewCombinedIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/ViewCombined.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component ViewCombinedIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <ViewCombinedIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <ViewCombinedIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst ViewCombinedIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"ViewCombinedIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M19 18a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2zm0-6a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2zm-7-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2\" />\n </svg>\n )\n);\nViewCombinedIcon.displayName = \"ViewCombinedIcon\";\nexport default ViewCombinedIcon;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1509,6 +1509,12 @@ Object.defineProperty(exports, "UploadIcon", {
|
|
|
1509
1509
|
return _Upload.default;
|
|
1510
1510
|
}
|
|
1511
1511
|
});
|
|
1512
|
+
Object.defineProperty(exports, "ViewCombinedIcon", {
|
|
1513
|
+
enumerable: true,
|
|
1514
|
+
get: function get() {
|
|
1515
|
+
return _ViewCombined.default;
|
|
1516
|
+
}
|
|
1517
|
+
});
|
|
1512
1518
|
Object.defineProperty(exports, "ViewDayIcon", {
|
|
1513
1519
|
enumerable: true,
|
|
1514
1520
|
get: function get() {
|
|
@@ -1814,6 +1820,7 @@ var _Trash = _interopRequireDefault(require("./Trash"));
|
|
|
1814
1820
|
var _TreeDots = _interopRequireDefault(require("./TreeDots"));
|
|
1815
1821
|
var _TriangleIcon = _interopRequireDefault(require("./TriangleIcon"));
|
|
1816
1822
|
var _Upload = _interopRequireDefault(require("./Upload"));
|
|
1823
|
+
var _ViewCombined = _interopRequireDefault(require("./ViewCombined"));
|
|
1817
1824
|
var _ViewDay = _interopRequireDefault(require("./ViewDay"));
|
|
1818
1825
|
var _ViewGrid = _interopRequireDefault(require("./ViewGrid"));
|
|
1819
1826
|
var _ViewList = _interopRequireDefault(require("./ViewList"));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleDot","_CircleIcon","_CircleSlashIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_Cloud","_CloudDeploy","_CloudDeployFailed","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_FolderPlus","_Gear","_GearFailed","_Gift","_GitBranch","_GitCommit","_GitHub","_Git","_GitLab","_GitMerge","_GitPullRequest","_GitPullRequestDraft","_GitPullRequestClosed","_GitRepository","_GitRepositoryConnect","_GroupBy","_Hashtag","_Hash","_CommandLine","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Key","_Labels","_Layers","_LayerBack","_LayerBackward","_LayerForward","_LayerFront","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_ShapesIcon","_Shield","_SidebarLeft","_SidebarRight","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextAlignCenter","_TextAlignJustify","_TextAlignLeft","_TextAlignRight","_TextStyleBold","_TextStyleItalic","_TextStyleStrike","_TextStyleUnderline","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleDotIcon } from \"./CircleDot\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleSlashIcon } from \"./CircleSlashIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CloudIcon } from \"./Cloud\";\nexport { default as CloudDeployIcon } from \"./CloudDeploy\";\nexport { default as CloudDeployFailedIcon } from \"./CloudDeployFailed\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as FolderPlusIcon } from \"./FolderPlus\";\nexport { default as GearIcon } from \"./Gear\";\nexport { default as GearFailedIcon } from \"./GearFailed\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GitBranchIcon } from \"./GitBranch\";\nexport { default as GitCommitIcon } from \"./GitCommit\";\nexport { default as GitHubIcon } from \"./GitHub\";\nexport { default as GitIcon } from \"./Git\";\nexport { default as GitLabIcon } from \"./GitLab\";\nexport { default as GitMergeIcon } from \"./GitMerge\";\nexport { default as GitPullRequestIcon } from \"./GitPullRequest\";\nexport { default as GitPullRequestDraftIcon } from \"./GitPullRequestDraft\";\nexport { default as GitPullRequestClosedIcon } from \"./GitPullRequestClosed\";\nexport { default as GitRepositoryIcon } from \"./GitRepository\";\nexport { default as GitRepositoryConnectIcon } from \"./GitRepositoryConnect\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HashIcon } from \"./Hash\";\nexport { default as CommandLineIcon } from \"./CommandLine\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as KeyIcon } from \"./Key\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LayersIcon } from \"./Layers\";\nexport { default as LayerBackIcon } from \"./LayerBack\";\nexport { default as LayerBackwardIcon } from \"./LayerBackward\";\nexport { default as LayerForwardIcon } from \"./LayerForward\";\nexport { default as LayerFrontIcon } from \"./LayerFront\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShapesIcon } from \"./ShapesIcon\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SidebarLeftIcon } from \"./SidebarLeft\";\nexport { default as SidebarRightIcon } from \"./SidebarRight\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextAlignCenterIcon } from \"./TextAlignCenter\";\nexport { default as TextAlignJustifyIcon } from \"./TextAlignJustify\";\nexport { default as TextAlignLeftIcon } from \"./TextAlignLeft\";\nexport { default as TextAlignRightIcon } from \"./TextAlignRight\";\nexport { default as TextStyleBoldIcon } from \"./TextStyleBold\";\nexport { default as TextStyleItalicIcon } from \"./TextStyleItalic\";\nexport { default as TextStyleStrikeIcon } from \"./TextStyleStrike\";\nexport { default as TextStyleUnderlineIcon } from \"./TextStyleUnderline\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleDot","_CircleIcon","_CircleSlashIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_Cloud","_CloudDeploy","_CloudDeployFailed","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_FolderPlus","_Gear","_GearFailed","_Gift","_GitBranch","_GitCommit","_GitHub","_Git","_GitLab","_GitMerge","_GitPullRequest","_GitPullRequestDraft","_GitPullRequestClosed","_GitRepository","_GitRepositoryConnect","_GroupBy","_Hashtag","_Hash","_CommandLine","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Key","_Labels","_Layers","_LayerBack","_LayerBackward","_LayerForward","_LayerFront","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_ShapesIcon","_Shield","_SidebarLeft","_SidebarRight","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextAlignCenter","_TextAlignJustify","_TextAlignLeft","_TextAlignRight","_TextStyleBold","_TextStyleItalic","_TextStyleStrike","_TextStyleUnderline","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewCombined","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleDotIcon } from \"./CircleDot\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleSlashIcon } from \"./CircleSlashIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CloudIcon } from \"./Cloud\";\nexport { default as CloudDeployIcon } from \"./CloudDeploy\";\nexport { default as CloudDeployFailedIcon } from \"./CloudDeployFailed\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as FolderPlusIcon } from \"./FolderPlus\";\nexport { default as GearIcon } from \"./Gear\";\nexport { default as GearFailedIcon } from \"./GearFailed\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GitBranchIcon } from \"./GitBranch\";\nexport { default as GitCommitIcon } from \"./GitCommit\";\nexport { default as GitHubIcon } from \"./GitHub\";\nexport { default as GitIcon } from \"./Git\";\nexport { default as GitLabIcon } from \"./GitLab\";\nexport { default as GitMergeIcon } from \"./GitMerge\";\nexport { default as GitPullRequestIcon } from \"./GitPullRequest\";\nexport { default as GitPullRequestDraftIcon } from \"./GitPullRequestDraft\";\nexport { default as GitPullRequestClosedIcon } from \"./GitPullRequestClosed\";\nexport { default as GitRepositoryIcon } from \"./GitRepository\";\nexport { default as GitRepositoryConnectIcon } from \"./GitRepositoryConnect\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HashIcon } from \"./Hash\";\nexport { default as CommandLineIcon } from \"./CommandLine\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as KeyIcon } from \"./Key\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LayersIcon } from \"./Layers\";\nexport { default as LayerBackIcon } from \"./LayerBack\";\nexport { default as LayerBackwardIcon } from \"./LayerBackward\";\nexport { default as LayerForwardIcon } from \"./LayerForward\";\nexport { default as LayerFrontIcon } from \"./LayerFront\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShapesIcon } from \"./ShapesIcon\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SidebarLeftIcon } from \"./SidebarLeft\";\nexport { default as SidebarRightIcon } from \"./SidebarRight\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextAlignCenterIcon } from \"./TextAlignCenter\";\nexport { default as TextAlignJustifyIcon } from \"./TextAlignJustify\";\nexport { default as TextAlignLeftIcon } from \"./TextAlignLeft\";\nexport { default as TextAlignRightIcon } from \"./TextAlignRight\";\nexport { default as TextStyleBoldIcon } from \"./TextStyleBold\";\nexport { default as TextStyleItalicIcon } from \"./TextStyleItalic\";\nexport { default as TextStyleStrikeIcon } from \"./TextStyleStrike\";\nexport { default as TextStyleUnderlineIcon } from \"./TextStyleUnderline\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewCombinedIcon } from \"./ViewCombined\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","ignoreList":[]}
|
|
@@ -1,32 +1,41 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
type Position = "top-left" | "top-right" | "bottom-right" | "bottom-left";
|
|
3
|
+
type Shape = "circle" | "pill";
|
|
3
4
|
export interface BadgeProps {
|
|
4
5
|
position?: Position;
|
|
5
6
|
dimension?: number;
|
|
6
7
|
className?: string;
|
|
7
8
|
backgroundColor?: string;
|
|
9
|
+
textColor?: string;
|
|
8
10
|
value?: number;
|
|
11
|
+
cap?: number;
|
|
12
|
+
shape?: Shape;
|
|
13
|
+
shadows?: boolean;
|
|
9
14
|
isStandalone?: boolean;
|
|
10
15
|
}
|
|
11
16
|
/**
|
|
12
17
|
* @component Badge
|
|
13
18
|
* @description
|
|
14
|
-
*
|
|
15
|
-
*
|
|
19
|
+
* A small pill that sits on the corner of an avatar or an icon, or stands in a
|
|
20
|
+
* row on its own. It shows a count, or nothing at all when it marks a state.
|
|
16
21
|
*
|
|
17
22
|
* @prop {position} - dictates the position of a badge.
|
|
18
|
-
* @prop {dimension} - controls the
|
|
23
|
+
* @prop {dimension} - controls the height of a badge in pixels. The width grows with the content.
|
|
24
|
+
* @prop {shape} - "pill" adds horizontal padding so the badge reads as long.
|
|
25
|
+
* @prop {cap} - the highest number shown. Above it the badge renders `{cap}+`.
|
|
19
26
|
* @prop {backgroundColor} - background-color of a badge.
|
|
27
|
+
* @prop {textColor} - color of the number.
|
|
28
|
+
* @prop {isStandalone} - takes the badge out of absolute positioning.
|
|
20
29
|
*
|
|
21
30
|
* @example
|
|
22
31
|
* <IconButton variant="text gray" size="big">
|
|
23
32
|
* <BellOffIcon />
|
|
24
|
-
* <Badge position="top-right" backgroundColor="red" dimension={16} />
|
|
33
|
+
* <Badge position="top-right" backgroundColor="var(--red-alert)" dimension={16} value={7} cap={99} />
|
|
25
34
|
* </IconButton>
|
|
26
35
|
*
|
|
27
36
|
* @see
|
|
28
|
-
* https://system.activecollab.com/?path=/story/components-
|
|
37
|
+
* https://system.activecollab.com/?path=/story/components-indicators-badge--badge
|
|
29
38
|
*/
|
|
30
|
-
export declare const Badge: ({ dimension, className, position, backgroundColor, value, isStandalone, }: BadgeProps) => React.JSX.Element;
|
|
39
|
+
export declare const Badge: ({ dimension, className, position, backgroundColor, textColor, value, cap, shape, shadows, isStandalone, }: BadgeProps) => React.JSX.Element;
|
|
31
40
|
export {};
|
|
32
41
|
//# sourceMappingURL=Badge.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,KAAK,QAAQ,GAAG,UAAU,GAAG,WAAW,GAAG,cAAc,GAAG,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,KAAK,QAAQ,GAAG,UAAU,GAAG,WAAW,GAAG,cAAc,GAAG,aAAa,CAAC;AAC1E,KAAK,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC;AAE/B,MAAM,WAAW,UAAU;IACzB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAUD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,KAAK,GAAI,2GAWnB,UAAU,sBAmBZ,CAAC"}
|