@activecollab/components 1.0.258 → 1.0.259
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/ArrowDown.js +46 -0
- package/dist/cjs/components/Icons/collection/ArrowDown.js.map +1 -0
- package/dist/cjs/components/Icons/collection/ArrowUp.js +46 -0
- package/dist/cjs/components/Icons/collection/ArrowUp.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +14 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/ArrowDown.d.ts +23 -0
- package/dist/esm/components/Icons/collection/ArrowDown.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/ArrowDown.js +39 -0
- package/dist/esm/components/Icons/collection/ArrowDown.js.map +1 -0
- package/dist/esm/components/Icons/collection/ArrowUp.d.ts +23 -0
- package/dist/esm/components/Icons/collection/ArrowUp.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/ArrowUp.js +39 -0
- package/dist/esm/components/Icons/collection/ArrowUp.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +2 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +2 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +74 -0
- 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
|
@@ -1419,6 +1419,42 @@
|
|
|
1419
1419
|
ArrowDownLongIcon.displayName = "ArrowDownLongIcon";
|
|
1420
1420
|
var ArrowDownLongIcon$1 = ArrowDownLongIcon;
|
|
1421
1421
|
|
|
1422
|
+
/**
|
|
1423
|
+
* @component ArrowDownIcon
|
|
1424
|
+
* @description
|
|
1425
|
+
*
|
|
1426
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
1427
|
+
* The Icon component is
|
|
1428
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
1429
|
+
*
|
|
1430
|
+
*
|
|
1431
|
+
* @example
|
|
1432
|
+
* return (
|
|
1433
|
+
* <ArrowDownIcon className="mr-2" />
|
|
1434
|
+
* )
|
|
1435
|
+
*
|
|
1436
|
+
* @see
|
|
1437
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
1438
|
+
* @see
|
|
1439
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
1440
|
+
*/
|
|
1441
|
+
var ArrowDownIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
1442
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1443
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1444
|
+
width: 24,
|
|
1445
|
+
height: 24,
|
|
1446
|
+
"data-testid": "ArrowDownIcon",
|
|
1447
|
+
fill: "var(--color-theme-600)",
|
|
1448
|
+
focusable: false,
|
|
1449
|
+
ref: svgRef
|
|
1450
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
1451
|
+
fillRule: "evenodd",
|
|
1452
|
+
d: "M15.372 10.264a.993.993 0 011.349 0 .867.867 0 010 1.275L12 16l-4.72-4.461a.867.867 0 010-1.275.993.993 0 011.348 0L12 13.451l3.372-3.187z"
|
|
1453
|
+
}));
|
|
1454
|
+
});
|
|
1455
|
+
ArrowDownIcon.displayName = "ArrowDownIcon";
|
|
1456
|
+
var ArrowDownIcon$1 = ArrowDownIcon;
|
|
1457
|
+
|
|
1422
1458
|
/**
|
|
1423
1459
|
* @component ArrowExpandeMultipleIcon
|
|
1424
1460
|
* @description
|
|
@@ -1640,6 +1676,42 @@
|
|
|
1640
1676
|
ArrowUpLongIcon.displayName = "ArrowUpLongIcon";
|
|
1641
1677
|
var ArrowUpLongIcon$1 = ArrowUpLongIcon;
|
|
1642
1678
|
|
|
1679
|
+
/**
|
|
1680
|
+
* @component ArrowUpIcon
|
|
1681
|
+
* @description
|
|
1682
|
+
*
|
|
1683
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
1684
|
+
* The Icon component is
|
|
1685
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
1686
|
+
*
|
|
1687
|
+
*
|
|
1688
|
+
* @example
|
|
1689
|
+
* return (
|
|
1690
|
+
* <ArrowUpIcon className="mr-2" />
|
|
1691
|
+
* )
|
|
1692
|
+
*
|
|
1693
|
+
* @see
|
|
1694
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
1695
|
+
* @see
|
|
1696
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
1697
|
+
*/
|
|
1698
|
+
var ArrowUpIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
1699
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
1700
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1701
|
+
width: 24,
|
|
1702
|
+
height: 24,
|
|
1703
|
+
"data-testid": "ArrowUpIcon",
|
|
1704
|
+
fill: "var(--color-theme-600)",
|
|
1705
|
+
focusable: false,
|
|
1706
|
+
ref: svgRef
|
|
1707
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
1708
|
+
fillRule: "evenodd",
|
|
1709
|
+
d: "M15.372 14.236a.993.993 0 001.349 0 .867.867 0 000-1.275L12 8.5l-4.72 4.461a.867.867 0 000 1.275.993.993 0 001.348 0L12 11.049l3.372 3.187z"
|
|
1710
|
+
}));
|
|
1711
|
+
});
|
|
1712
|
+
ArrowUpIcon.displayName = "ArrowUpIcon";
|
|
1713
|
+
var ArrowUpIcon$1 = ArrowUpIcon;
|
|
1714
|
+
|
|
1643
1715
|
/**
|
|
1644
1716
|
* @component AssignIcon
|
|
1645
1717
|
* @description
|
|
@@ -15565,12 +15637,14 @@
|
|
|
15565
15637
|
exports.ApplauseIcon = ApplauseIcon$1;
|
|
15566
15638
|
exports.ArrowBackMobileIcon = ArrowBackMobileIcon$1;
|
|
15567
15639
|
exports.ArrowCollapseMultipleIcon = ArrowCollapseMultipleIcon$1;
|
|
15640
|
+
exports.ArrowDownIcon = ArrowDownIcon$1;
|
|
15568
15641
|
exports.ArrowDownLongIcon = ArrowDownLongIcon$1;
|
|
15569
15642
|
exports.ArrowExpandeMultipleIcon = ArrowExpandeMultipleIcon$1;
|
|
15570
15643
|
exports.ArrowLeftBoxIcon = ArrowLeftBoxIcon$1;
|
|
15571
15644
|
exports.ArrowLeftIcon = ArrowLeftIcon$1;
|
|
15572
15645
|
exports.ArrowRefreshIcon = ArrowRefreshIcon$1;
|
|
15573
15646
|
exports.ArrowRightIcon = ArrowRightIcon$1;
|
|
15647
|
+
exports.ArrowUpIcon = ArrowUpIcon$1;
|
|
15574
15648
|
exports.ArrowUpLongIcon = ArrowUpLongIcon$1;
|
|
15575
15649
|
exports.AssignIcon = AssignIcon$1;
|
|
15576
15650
|
exports.AttachmentIcon = AttachmentIcon$1;
|