@widergy/energy-ui 3.69.4 → 3.69.6
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 +14 -0
- package/dist/components/UTIcon/components/EnergyIcons/EnergyIconEdit.svg +3 -0
- package/dist/components/UTIcon/constants.js +14 -0
- package/dist/components/UTPanel/versions/V0/index.js +1 -1
- package/dist/components/UTPanel/versions/V0/styles.module.scss +0 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.69.6](https://github.com/widergy/energy-ui/compare/v3.69.5...v3.69.6) (2025-04-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove panel margin ([#606](https://github.com/widergy/energy-ui/issues/606)) ([3875819](https://github.com/widergy/energy-ui/commit/3875819352e26275a614458b6b383e6f4e1100a2))
|
|
7
|
+
|
|
8
|
+
## [3.69.5](https://github.com/widergy/energy-ui/compare/v3.69.4...v3.69.5) (2025-04-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* [GSUR-107] edit icon ([#603](https://github.com/widergy/energy-ui/issues/603)) ([3081d47](https://github.com/widergy/energy-ui/commit/3081d476ea3cc006df65dc8d34974c3941786c8b))
|
|
14
|
+
|
|
1
15
|
## [3.69.4](https://github.com/widergy/energy-ui/compare/v3.69.3...v3.69.4) (2025-04-15)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0189 10.6787L13.3239 7.98367L15.2719 6.03467L17.9659 8.72867L16.0189 10.6787ZM9.0799 17.6247L6.1029 17.8957L6.3669 14.9397L11.9839 9.32267L14.6799 12.0187L9.0799 17.6247ZM19.4039 7.33767L19.4029 7.33667L16.6649 4.59867C15.9239 3.85967 14.6509 3.82467 13.9489 4.52967L4.9529 13.5257C4.6269 13.8507 4.4249 14.2827 4.3829 14.7397L4.0039 18.9097C3.9779 19.2047 4.0829 19.4967 4.2929 19.7067C4.4819 19.8957 4.7369 19.9997 4.9999 19.9997C5.0309 19.9997 5.0609 19.9987 5.0909 19.9957L9.2609 19.6167C9.7189 19.5747 10.1499 19.3737 10.4749 19.0487L19.4719 10.0517C20.1999 9.32167 20.1689 8.10367 19.4039 7.33767Z" />
|
|
3
|
+
</svg>
|
|
@@ -149,6 +149,19 @@ EnergyIconConsumptionBoxFilled.defaultProps = {
|
|
|
149
149
|
fill: "currentColor",
|
|
150
150
|
xmlns: "http://www.w3.org/2000/svg"
|
|
151
151
|
};
|
|
152
|
+
var EnergyIconEdit = function EnergyIconEdit(props) {
|
|
153
|
+
return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
|
|
154
|
+
fillRule: "evenodd",
|
|
155
|
+
clipRule: "evenodd",
|
|
156
|
+
d: "m16.019 10.679-2.695-2.695 1.948-1.95 2.694 2.695-1.947 1.95Zm-6.94 6.946-2.976.27.264-2.955 5.617-5.617 2.696 2.696-5.6 5.606ZM19.405 7.338l-.001-.001-2.738-2.738c-.741-.74-2.014-.774-2.716-.07l-8.996 8.997a1.973 1.973 0 0 0-.57 1.214l-.38 4.17a1.002 1.002 0 0 0 1.088 1.086l4.17-.38a1.974 1.974 0 0 0 1.214-.567l8.997-8.997c.728-.73.697-1.948-.068-2.714Z"
|
|
157
|
+
}));
|
|
158
|
+
};
|
|
159
|
+
EnergyIconEdit.defaultProps = {
|
|
160
|
+
width: "24",
|
|
161
|
+
height: "24",
|
|
162
|
+
viewBox: "0 0 24 24",
|
|
163
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
164
|
+
};
|
|
152
165
|
var EnergyIconHome = function EnergyIconHome(props) {
|
|
153
166
|
return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
|
|
154
167
|
d: "m9.02 2.84-5.39 4.2C2.73 7.74 2 9.23 2 10.36v7.41c0 2.32 1.89 4.22 4.21 4.22h11.58c2.32 0 4.21-1.9 4.21-4.21V10.5c0-1.21-.81-2.76-1.8-3.45l-6.18-4.33c-1.4-.98-3.65-.93-5 .12Z",
|
|
@@ -253,6 +266,7 @@ const ENERGY_ICONS = exports.ENERGY_ICONS = {
|
|
|
253
266
|
EnergyIconChatSparkFilled,
|
|
254
267
|
EnergyIconConsumption,
|
|
255
268
|
EnergyIconConsumptionBoxFilled,
|
|
269
|
+
EnergyIconEdit,
|
|
256
270
|
EnergyIconHome,
|
|
257
271
|
EnergyIconMessageEdit,
|
|
258
272
|
EnergyIconQuestionFilled,
|
|
@@ -88,7 +88,7 @@ const UTPanel = _ref => {
|
|
|
88
88
|
variant: "text"
|
|
89
89
|
})), disableScrollbar ? children : /*#__PURE__*/_react.default.createElement(_reactPerfectScrollbar.default, {
|
|
90
90
|
onYReachEnd: onEndReachedCallback,
|
|
91
|
-
className:
|
|
91
|
+
className: perfectScrollbarClass,
|
|
92
92
|
options: {
|
|
93
93
|
suppressScrollX: true,
|
|
94
94
|
...perfectScrollbarOptions
|