@snabcentr/client-ui 3.26.0 → 3.27.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "3.26.0",
3
+ "version": "3.27.0",
4
4
  "author": "Snabcentr Ltd.",
5
5
  "repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
6
6
  "license": "Commercial",
package/release_notes.tmp CHANGED
@@ -1,6 +1,6 @@
1
- ## 3.26.0 (2025-05-16)
1
+ ## 3.27.0 (2025-05-19)
2
2
 
3
- ### changed (1 change)
3
+ ### added (1 change)
4
4
 
5
- - [#11579: Доработаны формы обратной связи](web_soft/libs/angular/snabcentr-client-ui-lib@0424db1639421a1b3c0f522fcfaebc90f4b501c5) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!273))
5
+ - [#11524: Добавлен валидатор для номера телефона во все формы.](web_soft/libs/angular/snabcentr-client-ui-lib@9363cc77a05cb5d854cd101d5f65068cb6a79811) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!274))
6
6
 
@@ -1,4 +1,5 @@
1
1
  export * from './sc-bic-validator';
2
2
  export * from './sc-correspondent-account-validator';
3
3
  export * from './sc-password-confirm-matching-validator';
4
+ export * from './sc-phone-validator';
4
5
  export * from './step-validator';
@@ -0,0 +1,5 @@
1
+ import { ValidatorFn } from '@angular/forms';
2
+ /**
3
+ * Проверяет корректность введенного номера телефона.
4
+ */
5
+ export declare function phoneValidator(): ValidatorFn;