@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "26.6.115",
3
+ "version": "26.6.116",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run docs:dev",
@@ -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 should be not less than';
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 should be not greater than';
458
+ let text = 'Value cannot be greater than';
459
459
  if (named('max')) {
460
460
  text += ` ${named('max')}`;
461
461
  }