@activecollab/components 2.0.153 → 2.0.154
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/Save.js +47 -0
- package/dist/cjs/components/Icons/collection/Save.js.map +1 -0
- package/dist/cjs/components/Icons/collection/index.js +7 -7
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/Save.d.ts +23 -0
- package/dist/esm/components/Icons/collection/Save.d.ts.map +1 -0
- package/dist/esm/components/Icons/collection/Save.js +39 -0
- package/dist/esm/components/Icons/collection/Save.js.map +1 -0
- package/dist/esm/components/Icons/collection/index.d.ts +1 -1
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +1 -1
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +39 -40
- 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
|
@@ -7020,6 +7020,44 @@
|
|
|
7020
7020
|
RocketIcon.displayName = "RocketIcon";
|
|
7021
7021
|
var RocketIcon$1 = RocketIcon;
|
|
7022
7022
|
|
|
7023
|
+
/**
|
|
7024
|
+
* @component SaveIcon
|
|
7025
|
+
* @description
|
|
7026
|
+
*
|
|
7027
|
+
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
7028
|
+
* The Icon component is
|
|
7029
|
+
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
7030
|
+
*
|
|
7031
|
+
*
|
|
7032
|
+
* @example
|
|
7033
|
+
* return (
|
|
7034
|
+
* <SaveIcon className="mr-2" />
|
|
7035
|
+
* )
|
|
7036
|
+
*
|
|
7037
|
+
* @see
|
|
7038
|
+
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
7039
|
+
* @see
|
|
7040
|
+
* https://design.activecollab.com/docs/foundations/icons
|
|
7041
|
+
*/
|
|
7042
|
+
var SaveIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
7043
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
7044
|
+
width: 24,
|
|
7045
|
+
height: 24,
|
|
7046
|
+
viewBox: "0 0 24 24",
|
|
7047
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7048
|
+
"data-testid": "SaveIcon",
|
|
7049
|
+
fill: "var(--color-theme-600)",
|
|
7050
|
+
focusable: false,
|
|
7051
|
+
ref: svgRef
|
|
7052
|
+
}, props), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
7053
|
+
fillRule: "evenodd",
|
|
7054
|
+
clipRule: "evenodd",
|
|
7055
|
+
d: "M17 3H5a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM7 7h8v2H7V7z"
|
|
7056
|
+
}));
|
|
7057
|
+
});
|
|
7058
|
+
SaveIcon.displayName = "SaveIcon";
|
|
7059
|
+
var SaveIcon$1 = SaveIcon;
|
|
7060
|
+
|
|
7023
7061
|
/**
|
|
7024
7062
|
* @component SearchLargeIcon
|
|
7025
7063
|
* @description
|
|
@@ -8183,45 +8221,6 @@
|
|
|
8183
8221
|
WorkloadIcon.displayName = "WorkloadIcon";
|
|
8184
8222
|
var WorkloadIcon$1 = WorkloadIcon;
|
|
8185
8223
|
|
|
8186
|
-
/**
|
|
8187
|
-
* @component ViewDay
|
|
8188
|
-
* @description
|
|
8189
|
-
*
|
|
8190
|
-
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
|
|
8191
|
-
* The Icon component is
|
|
8192
|
-
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
|
|
8193
|
-
*
|
|
8194
|
-
*
|
|
8195
|
-
* @example
|
|
8196
|
-
* return (
|
|
8197
|
-
* <ViewDayIcon className="mr-2" />
|
|
8198
|
-
* )
|
|
8199
|
-
*
|
|
8200
|
-
* @see
|
|
8201
|
-
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
|
|
8202
|
-
* @see
|
|
8203
|
-
* https://design.activecollab.com/docs/foundations/icons
|
|
8204
|
-
*/
|
|
8205
|
-
|
|
8206
|
-
var ViewDayIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, svgRef) {
|
|
8207
|
-
return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
|
|
8208
|
-
width: 24,
|
|
8209
|
-
height: 24,
|
|
8210
|
-
viewBox: "0 0 24 24",
|
|
8211
|
-
fill: "var(--color-theme-600)",
|
|
8212
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
8213
|
-
focusable: false,
|
|
8214
|
-
ref: svgRef
|
|
8215
|
-
}, props, {
|
|
8216
|
-
"data-testid": "ViewDayIcon"
|
|
8217
|
-
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
8218
|
-
d: "M9 6a1 1 0 0 1 1-1h9a1 1 0 1 1 0 2h-9a1 1 0 0 1-1-1ZM9 12a1 1 0 0 1 1-1h9a1 1 0 1 1 0 2h-9a1 1 0 0 1-1-1ZM9 18a1 1 0 0 1 1-1h9a1 1 0 1 1 0 2h-9a1 1 0 0 1-1-1ZM5 4a1 1 0 0 1 1 1v14a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1Z",
|
|
8219
|
-
fillRule: "evenodd"
|
|
8220
|
-
}));
|
|
8221
|
-
});
|
|
8222
|
-
ViewDayIcon.displayName = "ViewDayIcon";
|
|
8223
|
-
var ViewDayIcon$1 = ViewDayIcon;
|
|
8224
|
-
|
|
8225
8224
|
var MenuContext = /*#__PURE__*/React.createContext({});
|
|
8226
8225
|
var MenuContextProvider = MenuContext.Provider;
|
|
8227
8226
|
MenuContext.Consumer;
|
|
@@ -21775,6 +21774,7 @@
|
|
|
21775
21774
|
exports.Reveal = Reveal;
|
|
21776
21775
|
exports.RocketIcon = RocketIcon$1;
|
|
21777
21776
|
exports.RocketSmallIcon = RocketSmallIcon$1;
|
|
21777
|
+
exports.SaveIcon = SaveIcon$1;
|
|
21778
21778
|
exports.Scale = Scale;
|
|
21779
21779
|
exports.ScaleBar = ScaleBar;
|
|
21780
21780
|
exports.ScrollElement = ScrollElement;
|
|
@@ -21835,7 +21835,6 @@
|
|
|
21835
21835
|
exports.Trigger = Trigger;
|
|
21836
21836
|
exports.UploadIcon = UploadIcon$1;
|
|
21837
21837
|
exports.ValueButton = ValueButton;
|
|
21838
|
-
exports.ViewDayIcon = ViewDayIcon$1;
|
|
21839
21838
|
exports.ViewGridIcon = ViewGridIcon$1;
|
|
21840
21839
|
exports.ViewListIcon = ViewListIcon$1;
|
|
21841
21840
|
exports.ViewTimelineIcon = ViewTimelineIcon$1;
|