@activecollab/components 2.0.122 → 2.0.123
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/GroupBy.js +44 -0
- package/dist/cjs/components/Icons/collection/GroupBy.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/cjs/components/Paper/Styles.js +4 -2
- package/dist/cjs/components/Paper/Styles.js.map +1 -1
- package/dist/esm/components/Icons/collection/GroupBy.d.ts +23 -0
- package/dist/esm/components/Icons/collection/GroupBy.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/GroupBy.js +36 -0
- package/dist/esm/components/Icons/collection/GroupBy.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/esm/components/Paper/Styles.d.ts.map +1 -1
- package/dist/esm/components/Paper/Styles.js +1 -1
- package/dist/esm/components/Paper/Styles.js.map +1 -1
- package/dist/index.js +40 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4262,6 +4262,41 @@
|
|
|
4262
4262
|
GiftIcon.displayName = "GiftIcon";
|
|
4263
4263
|
var GiftIcon$1 = GiftIcon;
|
|
4264
4264
|
|
|
4265
|
+
/**
|
|
4266
|
+
* @component GroupByIcon
|
|
4267
|
+
* @description
|
|
4268
|
+
*
|
|
4269
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
4270
|
+
* The Icon component is
|
|
4271
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
4272
|
+
*
|
|
4273
|
+
*
|
|
4274
|
+
* @example
|
|
4275
|
+
* return (
|
|
4276
|
+
* <GroupByIcon className="mr-2" />
|
|
4277
|
+
* )
|
|
4278
|
+
*
|
|
4279
|
+
* @see
|
|
4280
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
4281
|
+
* @see
|
|
4282
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
4283
|
+
*/
|
|
4284
|
+
var GroupByIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
4285
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
4286
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4287
|
+
width: 24,
|
|
4288
|
+
height: 24,
|
|
4289
|
+
"data-testid": "GroupByIcon",
|
|
4290
|
+
fill: "var(--color-theme-600)",
|
|
4291
|
+
focusable: false,
|
|
4292
|
+
ref: svgRef
|
|
4293
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
4294
|
+
d: "M20.598 9a1 1 0 01-1.994-.123V5.392h-3.486a.997.997 0 010-1.995l4.486-.005.118.007a1 1 0 01.883.993v4.49l-.007.12zM5.395 15.122v3.487h3.486a.997.997 0 010 1.995l-4.486.005-.117-.007a1 1 0 01-.884-.993v-4.49l.007-.12a.997.997 0 01.994-.877l.12.008a1 1 0 01.88.992zm8.727 4.478a.998.998 0 00.877.998l.12.008h4.49a1 1 0 00.993-.884l.007-.118-.005-4.486a.998.998 0 00-1.995 0v3.486h-3.487a1 1 0 00-1 .997zM5.39 5.396h3.487a1 1 0 00.993-.88l.007-.121A.997.997 0 009 3.402l-.12-.008H4.39a1 1 0 00-.993.884l-.006.118.005 4.486a.998.998 0 001.995 0V5.396zM8 9a1 1 0 011-1h6a1 1 0 010 2H9a1 1 0 01-1-1zm1 2a1 1 0 100 2h6a1 1 0 000-2H9zm-1 4a1 1 0 011-1h6a1 1 0 010 2H9a1 1 0 01-1-1z"
|
|
4295
|
+
}));
|
|
4296
|
+
});
|
|
4297
|
+
GroupByIcon.displayName = "GroupByIcon";
|
|
4298
|
+
var GroupByIcon$1 = GroupByIcon;
|
|
4299
|
+
|
|
4265
4300
|
/**
|
|
4266
4301
|
* @component HashtagIcon
|
|
4267
4302
|
* @description
|
|
@@ -10708,8 +10743,10 @@
|
|
|
10708
10743
|
var StyledPaper = styled__default["default"].div.withConfig({
|
|
10709
10744
|
displayName: "Styles__StyledPaper",
|
|
10710
10745
|
componentId: "sc-1ld1e2o-0"
|
|
10711
|
-
})(["", " ", " ", ""], PaperStyles, function (props) {
|
|
10712
|
-
return
|
|
10746
|
+
})(["", " ", " ", " ", ""], PaperStyles, function (props) {
|
|
10747
|
+
return props.type === "paper-3" && styled.css(["border:solid 1px var(--border-primary);"]);
|
|
10748
|
+
}, function (props) {
|
|
10749
|
+
return props.type === "tile-1" && styled.css(["border:solid 1px var(--color-theme-300);"]);
|
|
10713
10750
|
}, function (props) {
|
|
10714
10751
|
return (props.type === "tile-1" || props.type === "tile-2") && styled.css(["&:hover{background-color:var(--color-theme-200);}"]);
|
|
10715
10752
|
});
|
|
@@ -19825,6 +19862,7 @@
|
|
|
19825
19862
|
exports.GiftIcon = GiftIcon$1;
|
|
19826
19863
|
exports.GlobalAddButton = GlobalAddButton;
|
|
19827
19864
|
exports.GlobalStyle = GlobalStyle;
|
|
19865
|
+
exports.GroupByIcon = GroupByIcon$1;
|
|
19828
19866
|
exports.HashtagIcon = HashtagIcon$1;
|
|
19829
19867
|
exports.Header = Header;
|
|
19830
19868
|
exports.Header2 = Header2;
|