@activecollab/components 2.0.154 → 2.0.156

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.
Files changed (25) hide show
  1. package/dist/cjs/components/Icons/collection/{ViewDayIcon.js → ViewDay.js} +6 -9
  2. package/dist/cjs/components/Icons/collection/ViewDay.js.map +1 -0
  3. package/dist/cjs/components/Icons/collection/index.js +7 -0
  4. package/dist/cjs/components/Icons/collection/index.js.map +1 -1
  5. package/dist/cjs/components/Select/Option/Option.js +1 -0
  6. package/dist/cjs/components/Select/Option/Option.js.map +1 -1
  7. package/dist/esm/components/Icons/collection/{ViewDayIcon.d.ts → ViewDay.d.ts} +2 -2
  8. package/dist/esm/components/Icons/collection/ViewDay.d.ts.map +1 -0
  9. package/dist/esm/components/Icons/collection/{ViewDayIcon.js → ViewDay.js} +6 -9
  10. package/dist/esm/components/Icons/collection/ViewDay.js.map +1 -0
  11. package/dist/esm/components/Icons/collection/index.d.ts +1 -0
  12. package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
  13. package/dist/esm/components/Icons/collection/index.js +1 -0
  14. package/dist/esm/components/Icons/collection/index.js.map +1 -1
  15. package/dist/esm/components/Select/Option/Option.d.ts.map +1 -1
  16. package/dist/esm/components/Select/Option/Option.js +1 -0
  17. package/dist/esm/components/Select/Option/Option.js.map +1 -1
  18. package/dist/index.js +38 -0
  19. package/dist/index.js.map +1 -1
  20. package/dist/index.min.js +1 -1
  21. package/dist/index.min.js.map +1 -1
  22. package/package.json +1 -1
  23. package/dist/cjs/components/Icons/collection/ViewDayIcon.js.map +0 -1
  24. package/dist/esm/components/Icons/collection/ViewDayIcon.d.ts.map +0 -1
  25. package/dist/esm/components/Icons/collection/ViewDayIcon.js.map +0 -1
package/dist/index.js CHANGED
@@ -7921,6 +7921,42 @@
7921
7921
  UploadIcon.displayName = "UploadIcon";
7922
7922
  var UploadIcon$1 = UploadIcon;
7923
7923
 
7924
+ /**
7925
+ * @component ViewDayIcon
7926
+ * @description
7927
+ *
7928
+ * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
7929
+ * The Icon component is
7930
+ * customizable, allowing for variations in size, color, and style to fit the needs of the application.
7931
+ *
7932
+ *
7933
+ * @example
7934
+ * return (
7935
+ * <ViewDayIcon className="mr-2" />
7936
+ * )
7937
+ *
7938
+ * @see
7939
+ * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
7940
+ * @see
7941
+ * https://design.activecollab.com/docs/foundations/icons
7942
+ */
7943
+ var ViewDayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
7944
+ return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
7945
+ width: 24,
7946
+ height: 24,
7947
+ viewBox: "0 0 24 24",
7948
+ xmlns: "http://www.w3.org/2000/svg",
7949
+ "data-testid": "ViewDayIcon",
7950
+ fill: "var(--color-theme-600)",
7951
+ focusable: false,
7952
+ ref: svgRef
7953
+ }, props), /*#__PURE__*/React__default["default"].createElement("path", {
7954
+ d: "M9 6a1 1 0 011-1h9a1 1 0 110 2h-9a1 1 0 01-1-1zM9 12a1 1 0 011-1h9a1 1 0 110 2h-9a1 1 0 01-1-1zM9 18a1 1 0 011-1h9a1 1 0 110 2h-9a1 1 0 01-1-1zM5 4a1 1 0 011 1v14a1 1 0 11-2 0V5a1 1 0 011-1z"
7955
+ }));
7956
+ });
7957
+ ViewDayIcon.displayName = "ViewDayIcon";
7958
+ var ViewDayIcon$1 = ViewDayIcon;
7959
+
7924
7960
  /**
7925
7961
  * @component ViewGridIcon
7926
7962
  * @description
@@ -14658,6 +14694,7 @@
14658
14694
  ref: hover ? ref : null,
14659
14695
  title: name,
14660
14696
  onMouseEnter: handleOnMouseEnter,
14697
+ onTouchStart: handleOnMouseEnter,
14661
14698
  className: classNames__default["default"]("c-option", className),
14662
14699
  hover: hover,
14663
14700
  onClick: onClick
@@ -21835,6 +21872,7 @@
21835
21872
  exports.Trigger = Trigger;
21836
21873
  exports.UploadIcon = UploadIcon$1;
21837
21874
  exports.ValueButton = ValueButton;
21875
+ exports.ViewDayIcon = ViewDayIcon$1;
21838
21876
  exports.ViewGridIcon = ViewGridIcon$1;
21839
21877
  exports.ViewListIcon = ViewListIcon$1;
21840
21878
  exports.ViewTimelineIcon = ViewTimelineIcon$1;