@widergy/energy-ui 3.68.0 → 3.68.2
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.68.2](https://github.com/widergy/energy-ui/compare/v3.68.1...v3.68.2) (2025-04-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [UGC-1226] panel overflow button ([#591](https://github.com/widergy/energy-ui/issues/591)) ([50b8406](https://github.com/widergy/energy-ui/commit/50b8406227d0a8050189f9702af9c3785fafcc0b))
|
|
7
|
+
|
|
8
|
+
## [3.68.1](https://github.com/widergy/energy-ui/compare/v3.68.0...v3.68.1) (2025-03-26)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add markdown ([#595](https://github.com/widergy/energy-ui/issues/595)) ([76262f8](https://github.com/widergy/energy-ui/commit/76262f83da5cc9877ce1d6d3862c7baf7659fb04))
|
|
14
|
+
|
|
1
15
|
# [3.68.0](https://github.com/widergy/energy-ui/compare/v3.67.2...v3.68.0) (2025-03-26)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -161,7 +161,7 @@ const UTPanel = _ref => {
|
|
|
161
161
|
}, headerMainActionButton), headerMainActionButton.text)))), !(0, _isEmpty.default)(headerItems) && /*#__PURE__*/_react.default.createElement("div", {
|
|
162
162
|
className: "".concat(_stylesModule.default.headerItemsContainer, " \n ").concat(collapseHeader ? _stylesModule.default.expandedContainer : _stylesModule.default.collapsedContainer, " \n ").concat(singleHeaderItemsColumn && _stylesModule.default.singleHeaderItemsColumn || '')
|
|
163
163
|
}, headerItems.map(_DataItem.default)), /*#__PURE__*/_react.default.createElement("div", {
|
|
164
|
-
className: "".concat(_stylesModule.default.bodyContainer, " ").concat(classes.bodyContainer)
|
|
164
|
+
className: "".concat(_stylesModule.default.bodyContainer, " ").concat(!hideMainButton && _stylesModule.default.bodyOffset, " ").concat(classes.bodyContainer)
|
|
165
165
|
}, disableScrollbar ? children : /*#__PURE__*/_react.default.createElement(_reactPerfectScrollbar.default, {
|
|
166
166
|
className: "".concat(_stylesModule.default.perfectScrollbar, " ").concat(perfectScrollbarClass),
|
|
167
167
|
onYReachEnd: onEndReachedCallback,
|
|
@@ -93,6 +93,10 @@ $medium-panel-size: 450px;
|
|
|
93
93
|
padding: 24px;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
.bodyOffset {
|
|
97
|
+
margin-bottom: 48px;
|
|
98
|
+
}
|
|
99
|
+
|
|
96
100
|
.perfectScrollbar {
|
|
97
101
|
margin: 10px 0;
|
|
98
102
|
}
|
|
@@ -108,6 +112,6 @@ $medium-panel-size: 450px;
|
|
|
108
112
|
.mainButton {
|
|
109
113
|
border-radius: 0 !important;
|
|
110
114
|
bottom: 0;
|
|
111
|
-
position:
|
|
112
|
-
width:
|
|
115
|
+
position: fixed;
|
|
116
|
+
width: inherit;
|
|
113
117
|
}
|
|
@@ -72,6 +72,7 @@ const UTStatusMessage = _ref => {
|
|
|
72
72
|
className: _stylesModule.default.label,
|
|
73
73
|
colorTheme: "gray",
|
|
74
74
|
dataTestId: descriptionId,
|
|
75
|
+
withMarkdown: true,
|
|
75
76
|
variant: "body"
|
|
76
77
|
}, descriptionProps), description), helpText && /*#__PURE__*/_react.default.createElement(_UTLabel.default, _extends({
|
|
77
78
|
className: _stylesModule.default.label,
|