@widergy/energy-ui 3.119.3 → 3.120.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 +7 -0
- package/dist/utils/componentUtils.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [3.120.0](https://github.com/widergy/energy-ui/compare/v3.119.3...v3.120.0) (2025-11-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* [UGDESA-2746] empty utlabel ([#723](https://github.com/widergy/energy-ui/issues/723)) ([e7fe880](https://github.com/widergy/energy-ui/commit/e7fe8807b29736fe80928188778e2c4f6ff2b303))
|
|
7
|
+
|
|
1
8
|
## [3.119.3](https://github.com/widergy/energy-ui/compare/v3.119.2...v3.119.3) (2025-11-12)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -23,7 +23,7 @@ const isUTLabel = label => typeof label === 'string' || typeof label === 'number
|
|
|
23
23
|
exports.isUTLabel = isUTLabel;
|
|
24
24
|
const getDefaultColorShade = colorTheme => colorTheme === _Palette.COLOR_THEMES.gray ? _Palette.COLOR_SHADES.shade04 : colorTheme === _Palette.COLOR_THEMES.light ? _Palette.COLOR_SHADES.shade01 : _Palette.COLOR_SHADES.shade05;
|
|
25
25
|
exports.getDefaultColorShade = getDefaultColorShade;
|
|
26
|
-
const valueExists = value => value !== undefined && value !== null;
|
|
26
|
+
const valueExists = value => value !== undefined && value !== null && value !== '';
|
|
27
27
|
exports.valueExists = valueExists;
|
|
28
28
|
var _default = exports.default = {
|
|
29
29
|
capitalize,
|