@scaleflex/widget-icons 4.5.0 → 4.5.1
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/CHANGELOG.md +8 -0
- package/lib/NoCollections.js +33 -0
- package/lib/index.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.5.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.5.0...v4.5.1) (2025-10-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @scaleflex/widget-icons
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [4.5.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.4.0...v4.5.0) (2025-10-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @scaleflex/widget-icons
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
var NoCollections = function NoCollections() {
|
|
3
|
+
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
|
4
|
+
_ref$color = _ref.color,
|
|
5
|
+
color = _ref$color === void 0 ? '#DFE7ED' : _ref$color;
|
|
6
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
7
|
+
width: "150",
|
|
8
|
+
height: "60",
|
|
9
|
+
viewBox: "0 0 150 60",
|
|
10
|
+
fill: "none",
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
13
|
+
d: "M96.2612 8.21956H54V2.5291C54 1.13809 55.1456 0 56.5459 0H93.7154C95.1156 0 96.2612 1.13809 96.2612 2.5291V8.21956Z",
|
|
14
|
+
fill: color
|
|
15
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
16
|
+
d: "M94.2245 59.7495L75.1306 44.9543L55.9094 59.7495C55.1456 60.3817 54 59.7495 54 58.6114V10.8115H96.2612V34.8369V58.5621C96.2612 59.7002 95.1156 60.3817 94.2245 59.7495Z",
|
|
17
|
+
fill: color
|
|
18
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
19
|
+
d: "M138.208 9C137.426 9 136.792 9.63356 136.792 10.4151C136.792 11.1966 137.426 11.8302 138.208 11.8302H148.585C149.366 11.8302 150 11.1966 150 10.4151C150 9.63356 149.366 9 148.585 9H138.208Z",
|
|
20
|
+
fill: color
|
|
21
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
22
|
+
d: "M126.415 20.7922C126.415 20.0107 127.048 19.3771 127.83 19.3771H143.868C144.649 19.3771 145.283 20.0107 145.283 20.7922C145.283 21.5737 144.649 22.2073 143.868 22.2073H127.83C127.048 22.2073 126.415 21.5737 126.415 20.7922Z",
|
|
23
|
+
fill: color
|
|
24
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
25
|
+
d: "M9.43384 49.0943C9.43384 48.3128 10.0674 47.6792 10.8489 47.6792H21.2263C22.0078 47.6792 22.6414 48.3128 22.6414 49.0943C22.6414 49.8759 22.0078 50.5094 21.2263 50.5094H10.8489C10.0674 50.5094 9.43384 49.8759 9.43384 49.0943Z",
|
|
26
|
+
fill: color
|
|
27
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
28
|
+
d: "M0 38.7166C0 37.9351 0.633563 37.3015 1.4151 37.3015H17.4528C18.2343 37.3015 18.8679 37.9351 18.8679 38.7166C18.8679 39.4981 18.2343 40.1317 17.4528 40.1317H1.4151C0.633563 40.1317 0 39.4981 0 38.7166Z",
|
|
29
|
+
fill: color
|
|
30
|
+
})]
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
export default NoCollections;
|
package/lib/index.js
CHANGED
|
@@ -111,4 +111,5 @@ export { default as MyDevice } from './MyDevice';
|
|
|
111
111
|
export { default as Any } from './Any';
|
|
112
112
|
export { default as NoResults2 } from './NoResults2';
|
|
113
113
|
export { default as NoAccess } from './NoAccess';
|
|
114
|
-
export { default as ApprovalsIcon } from './ApprovalsIcon';
|
|
114
|
+
export { default as ApprovalsIcon } from './ApprovalsIcon';
|
|
115
|
+
export { default as NoCollections } from './NoCollections';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleflex/widget-icons",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "The icons needed for Scaleflex Media Asset Widget modules",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"react": ">=19.0.0",
|
|
23
23
|
"react-dom": ">=19.0.0"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "b211f9961ad30d3eaa01138f34e190ad5d38fb91"
|
|
26
26
|
}
|