cozy-ui 123.1.0 → 123.1.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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [123.1.1](https://github.com/cozy/cozy-ui/compare/v123.1.0...v123.1.1) (2025-05-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Missed some props on SVG Icons (Cube and Spinner) ([c877409](https://github.com/cozy/cozy-ui/commit/c877409))
|
|
7
|
+
|
|
1
8
|
# [123.1.0](https://github.com/cozy/cozy-ui/compare/v123.0.0...v123.1.0) (2025-05-14)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/react/Icons/Cube.jsx
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/cube.svg` to regenerate;
|
|
2
2
|
import React from 'react'
|
|
3
3
|
|
|
4
|
-
function SvgCube(props) {
|
|
4
|
+
function SvgCube({ iconRef, ...props }) {
|
|
5
5
|
return (
|
|
6
|
-
<svg viewBox="0 0 15 16" {...props}>
|
|
6
|
+
<svg viewBox="0 0 15 16" {...props} ref={iconRef}>
|
|
7
7
|
<path d="M14.4 4L7.2 0 0 4v8l7.2 4 7.2-4V4zM7.2 1.832l4.728 2.624L9.52 5.792a3.213 3.213 0 00-4.64 0L2.472 4.456 7.2 1.832zm-.8 11.896l-4.8-2.664V5.808L4.104 7.2A3.193 3.193 0 006.4 11.096v2.632zM5.6 8c0-.88.72-1.6 1.6-1.6.88 0 1.6.72 1.6 1.6 0 .88-.72 1.6-1.6 1.6-.88 0-1.6-.72-1.6-1.6zM8 13.728v-2.624a3.193 3.193 0 002.4-3.096c0-.28-.032-.552-.104-.808L12.8 5.808v5.256L8 13.728z" />
|
|
8
8
|
</svg>
|
|
9
9
|
)
|
package/react/Icons/Spinner.jsx
CHANGED
|
@@ -3,7 +3,7 @@ import React from 'react'
|
|
|
3
3
|
|
|
4
4
|
function SvgSpinner(props) {
|
|
5
5
|
return (
|
|
6
|
-
<svg viewBox="0 0 16 16" {...props}>
|
|
6
|
+
<svg viewBox="0 0 16 16" {...props} role="progressbar" aria-busy="true">
|
|
7
7
|
<path d="M8 16a7.74 7.74 0 01-3.1-.63 8.114 8.114 0 01-2.55-1.72A8.115 8.115 0 01.63 11.1 7.74 7.74 0 010 8c0-1.107.21-2.143.63-3.11a8.146 8.146 0 011.72-2.54A8.114 8.114 0 014.9.63 7.74 7.74 0 018 0c.227 0 .417.077.57.23.153.153.23.343.23.57a.774.774 0 01-.23.57.774.774 0 01-.57.23c-1.773 0-3.283.623-4.53 1.87C2.223 4.717 1.6 6.227 1.6 8c0 1.773.623 3.283 1.87 4.53C4.717 13.777 6.227 14.4 8 14.4c1.773 0 3.283-.623 4.53-1.87C13.777 11.283 14.4 9.773 14.4 8c0-.227.077-.417.23-.57a.774.774 0 01.57-.23c.227 0 .417.077.57.23.153.153.23.343.23.57a7.74 7.74 0 01-.63 3.1 8.115 8.115 0 01-1.72 2.55 8.146 8.146 0 01-2.54 1.72A7.72 7.72 0 018 16z" />
|
|
8
8
|
</svg>
|
|
9
9
|
)
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["iconRef"];
|
|
2
4
|
// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/cube.svg` to regenerate;
|
|
3
5
|
import React from 'react';
|
|
4
6
|
|
|
5
|
-
function SvgCube(
|
|
7
|
+
function SvgCube(_ref) {
|
|
8
|
+
var iconRef = _ref.iconRef,
|
|
9
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
10
|
+
|
|
6
11
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
12
|
viewBox: "0 0 15 16"
|
|
8
|
-
}, props
|
|
13
|
+
}, props, {
|
|
14
|
+
ref: iconRef
|
|
15
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
9
16
|
d: "M14.4 4L7.2 0 0 4v8l7.2 4 7.2-4V4zM7.2 1.832l4.728 2.624L9.52 5.792a3.213 3.213 0 00-4.64 0L2.472 4.456 7.2 1.832zm-.8 11.896l-4.8-2.664V5.808L4.104 7.2A3.193 3.193 0 006.4 11.096v2.632zM5.6 8c0-.88.72-1.6 1.6-1.6.88 0 1.6.72 1.6 1.6 0 .88-.72 1.6-1.6 1.6-.88 0-1.6-.72-1.6-1.6zM8 13.728v-2.624a3.193 3.193 0 002.4-3.096c0-.28-.032-.552-.104-.808L12.8 5.808v5.256L8 13.728z"
|
|
10
17
|
}));
|
|
11
18
|
}
|
|
@@ -5,7 +5,10 @@ import React from 'react';
|
|
|
5
5
|
function SvgSpinner(props) {
|
|
6
6
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
7
|
viewBox: "0 0 16 16"
|
|
8
|
-
}, props
|
|
8
|
+
}, props, {
|
|
9
|
+
role: "progressbar",
|
|
10
|
+
"aria-busy": "true"
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
9
12
|
d: "M8 16a7.74 7.74 0 01-3.1-.63 8.114 8.114 0 01-2.55-1.72A8.115 8.115 0 01.63 11.1 7.74 7.74 0 010 8c0-1.107.21-2.143.63-3.11a8.146 8.146 0 011.72-2.54A8.114 8.114 0 014.9.63 7.74 7.74 0 018 0c.227 0 .417.077.57.23.153.153.23.343.23.57a.774.774 0 01-.23.57.774.774 0 01-.57.23c-1.773 0-3.283.623-4.53 1.87C2.223 4.717 1.6 6.227 1.6 8c0 1.773.623 3.283 1.87 4.53C4.717 13.777 6.227 14.4 8 14.4c1.773 0 3.283-.623 4.53-1.87C13.777 11.283 14.4 9.773 14.4 8c0-.227.077-.417.23-.57a.774.774 0 01.57-.23c.227 0 .417.077.57.23.153.153.23.343.23.57a7.74 7.74 0 01-.63 3.1 8.115 8.115 0 01-1.72 2.55 8.146 8.146 0 01-2.54 1.72A7.72 7.72 0 018 16z"
|
|
10
13
|
}));
|
|
11
14
|
}
|