@widergy/energy-ui 3.133.0 → 3.134.0
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,17 @@
|
|
|
1
|
+
# [3.134.0](https://github.com/widergy/energy-ui/compare/v3.133.1...v3.134.0) (2026-02-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* [AXCH-799] sb tests in gh actions ([#747](https://github.com/widergy/energy-ui/issues/747)) ([cee8893](https://github.com/widergy/energy-ui/commit/cee88936ce45c771dddaed880e8f4f0e45958f93))
|
|
7
|
+
|
|
8
|
+
## [3.133.1](https://github.com/widergy/energy-ui/compare/v3.133.0...v3.133.1) (2026-01-27)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* fieldLabel position + styles ([#752](https://github.com/widergy/energy-ui/issues/752)) ([ad061cd](https://github.com/widergy/energy-ui/commit/ad061cdcc73b4a328bad289cb63a280ab66e5f08))
|
|
14
|
+
|
|
1
15
|
# [3.133.0](https://github.com/widergy/energy-ui/compare/v3.132.0...v3.133.0) (2026-01-26)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -57,15 +57,16 @@ const AttachmentList = _ref => {
|
|
|
57
57
|
setPreviewModalIsOpen(true);
|
|
58
58
|
};
|
|
59
59
|
const closePreviewModal = () => setPreviewModalIsOpen(false);
|
|
60
|
-
return /*#__PURE__*/_react.default.createElement(_react.Fragment, null, /*#__PURE__*/_react.default.createElement("div", {
|
|
61
|
-
className:
|
|
62
|
-
},
|
|
60
|
+
return /*#__PURE__*/_react.default.createElement(_react.Fragment, null, shouldShowUpperTitle && /*#__PURE__*/_react.default.createElement("div", {
|
|
61
|
+
className: _stylesModule.default.upperTitleContainer
|
|
62
|
+
}, /*#__PURE__*/_react.default.createElement(_UTFieldLabel.default, {
|
|
63
63
|
actions: actions,
|
|
64
|
-
className: _stylesModule.default.title,
|
|
65
64
|
readOnly: field.read_only,
|
|
66
65
|
size: titleVariant,
|
|
67
66
|
required: field.required
|
|
68
|
-
}, field === null || field === void 0 ? void 0 : field.title),
|
|
67
|
+
}, field === null || field === void 0 ? void 0 : field.title)), /*#__PURE__*/_react.default.createElement("div", {
|
|
68
|
+
className: "".concat(_stylesModule.default.container, " ").concat(classes.container, " ").concat(error && classes.errorContainer)
|
|
69
|
+
}, !previewIsEmpty && preview.map(previewItem => /*#__PURE__*/_react.default.createElement("div", {
|
|
69
70
|
className: "".concat(_stylesModule.default.previewContainer, " ").concat(classes.previewContainer),
|
|
70
71
|
"data-testid": previewDataTestId
|
|
71
72
|
}, previewItem.type === _constants.PREVIEW_TYPES.LOADING ? /*#__PURE__*/_react.default.createElement(_react.Fragment, null, /*#__PURE__*/_react.default.createElement(_UTIcon.default, {
|
|
@@ -96,6 +96,7 @@ $box-shadow: #e4e6eae5;
|
|
|
96
96
|
from {
|
|
97
97
|
transform: rotate(0deg);
|
|
98
98
|
}
|
|
99
|
+
|
|
99
100
|
to {
|
|
100
101
|
transform: rotate(360deg);
|
|
101
102
|
}
|
|
@@ -109,3 +110,8 @@ $box-shadow: #e4e6eae5;
|
|
|
109
110
|
.errorText {
|
|
110
111
|
flex: 1 1;
|
|
111
112
|
}
|
|
113
|
+
|
|
114
|
+
.upperTitleContainer {
|
|
115
|
+
padding: 0 0 16px;
|
|
116
|
+
width: calc(100% - 32px);
|
|
117
|
+
}
|