@webitel/ui-sdk 26.6.115 → 26.6.116
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/package.json +1 -1
- package/src/locale/en/en.js +2 -2
- package/types/.tsbuildinfo +1 -1
package/package.json
CHANGED
package/src/locale/en/en.js
CHANGED
|
@@ -447,7 +447,7 @@ export default deepmerge(
|
|
|
447
447
|
sameAs: 'Incorrect password',
|
|
448
448
|
requiredArrayValue: 'Array should not be empty',
|
|
449
449
|
minValue: ({ named }) => {
|
|
450
|
-
let text = 'Value
|
|
450
|
+
let text = 'Value cannot be less than';
|
|
451
451
|
if (named('min')) {
|
|
452
452
|
text += ` ${named('min')}`;
|
|
453
453
|
}
|
|
@@ -455,7 +455,7 @@ export default deepmerge(
|
|
|
455
455
|
return text;
|
|
456
456
|
},
|
|
457
457
|
maxValue: ({ named }) => {
|
|
458
|
-
let text = 'Value
|
|
458
|
+
let text = 'Value cannot be greater than';
|
|
459
459
|
if (named('max')) {
|
|
460
460
|
text += ` ${named('max')}`;
|
|
461
461
|
}
|