@widergy/energy-ui 2.2.2 → 2.2.4
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/UTPasswordField/components/PasswordValidations/components/Error/index.js +2 -1
- package/dist/components/UTPasswordField/components/PasswordValidations/components/Validation/index.js +2 -1
- package/dist/components/UTPasswordField/components/PasswordWarning/index.js +2 -1
- package/dist/components/UTWorkflowContainer/styles.module.scss +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.2.4](https://github.com/widergy/energy-ui/compare/v2.2.3...v2.2.4) (2023-03-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added markdown to password validations ([7dfbe4c](https://github.com/widergy/energy-ui/commit/7dfbe4c7fcccb523c59434ceb37b5f401376f8d3))
|
|
7
|
+
|
|
8
|
+
## [2.2.3](https://github.com/widergy/energy-ui/compare/v2.2.2...v2.2.3) (2023-03-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* minor fix in workflows ([#351](https://github.com/widergy/energy-ui/issues/351)) ([6f88da1](https://github.com/widergy/energy-ui/commit/6f88da1055d906468f72e2425fdada53736d466a))
|
|
14
|
+
|
|
1
15
|
## [2.2.2](https://github.com/widergy/energy-ui/compare/v2.2.1...v2.2.2) (2023-03-10)
|
|
2
16
|
|
|
3
17
|
|
package/dist/components/UTPasswordField/components/PasswordValidations/components/Error/index.js
CHANGED
|
@@ -25,7 +25,8 @@ var ErrorMessage = function ErrorMessage(_ref) {
|
|
|
25
25
|
}), /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
|
|
26
26
|
className: _stylesModule.default.label,
|
|
27
27
|
colorTheme: "error",
|
|
28
|
-
variant: "small"
|
|
28
|
+
variant: "small",
|
|
29
|
+
withMarkdown: true
|
|
29
30
|
}, error));
|
|
30
31
|
};
|
|
31
32
|
ErrorMessage.propTypes = {
|
|
@@ -40,7 +40,8 @@ var Validation = function Validation(_ref) {
|
|
|
40
40
|
}), /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
|
|
41
41
|
className: _stylesModule.default.label,
|
|
42
42
|
colorTheme: labelColor,
|
|
43
|
-
variant: "small"
|
|
43
|
+
variant: "small",
|
|
44
|
+
withMarkdown: true
|
|
44
45
|
}, requirement));
|
|
45
46
|
};
|
|
46
47
|
Validation.propTypes = {
|
|
@@ -43,7 +43,8 @@ var PasswordWarning = function PasswordWarning(_ref) {
|
|
|
43
43
|
className: _stylesModule.default.iconAndLabelContainer
|
|
44
44
|
}, /*#__PURE__*/_react.default.createElement(WarningIcon, null), /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
|
|
45
45
|
className: _stylesModule.default.warning,
|
|
46
|
-
colorTheme: "warning"
|
|
46
|
+
colorTheme: "warning",
|
|
47
|
+
withMarkdown: true
|
|
47
48
|
}, error)));
|
|
48
49
|
});
|
|
49
50
|
};
|