@esfaenza/forms-and-validations 11.2.123 → 11.2.125

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.
@@ -209,6 +209,7 @@ export declare abstract class BaseFormControl implements ControlValueAccessor {
209
209
  * @param {NgModel} comp Elemento HTML marcato con "#validationControl"
210
210
  */
211
211
  registerValComp(comp: NgModel): void;
212
+ registerForm(ngForm: NgForm): void;
212
213
  /**
213
214
  * Aggiorna il valore e la validità dell'input sottostante. Non viene chiamato per input nativi come le checkbox
214
215
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/forms-and-validations",
3
- "version": "11.2.123",
3
+ "version": "11.2.125",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"
package/public-api.d.ts CHANGED
@@ -25,3 +25,4 @@ export * from './lib/forms/form-textarea/form-textarea.component';
25
25
  export * from './lib/forms/form-autocomplete/form-autocomplete.component';
26
26
  export * from './lib/forms/form-file/form-file.component';
27
27
  export * from './lib/forms/form-time/form-time.component';
28
+ export * from './lib/forms/base-form-control';