@esfaenza/forms-and-validations 11.2.123 → 11.2.124
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/bundles/esfaenza-forms-and-validations.umd.js +12 -7
- package/bundles/esfaenza-forms-and-validations.umd.js.map +1 -1
- package/esfaenza-forms-and-validations.d.ts +6 -7
- package/esfaenza-forms-and-validations.metadata.json +1 -1
- package/esm2015/esfaenza-forms-and-validations.js +7 -8
- package/esm2015/lib/forms/base-form-control.js +6 -1
- package/esm2015/public-api.js +2 -1
- package/fesm2015/esfaenza-forms-and-validations.js +6 -1
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/base-form-control.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -2305,6 +2305,11 @@
|
|
|
2305
2305
|
this.updateValidityForNativeInput();
|
|
2306
2306
|
}
|
|
2307
2307
|
};
|
|
2308
|
+
BaseFormControl.prototype.registerForm = function (ngForm) {
|
|
2309
|
+
this.Form = ngForm;
|
|
2310
|
+
this.Form.addControl(this.validationControl);
|
|
2311
|
+
this.formHasBennBound = true;
|
|
2312
|
+
};
|
|
2308
2313
|
/**
|
|
2309
2314
|
* Aggiorna il valore e la validità dell'input sottostante. Non viene chiamato per input nativi come le checkbox
|
|
2310
2315
|
*
|
|
@@ -4045,6 +4050,7 @@
|
|
|
4045
4050
|
|
|
4046
4051
|
exports.ACO_CUSTOMKEY = ACO_CUSTOMKEY;
|
|
4047
4052
|
exports.AppFile = AppFile;
|
|
4053
|
+
exports.BaseFormControl = BaseFormControl;
|
|
4048
4054
|
exports.FAV_DEBUG_MODE = FAV_DEBUG_MODE;
|
|
4049
4055
|
exports.FAV_LOCALE = FAV_LOCALE;
|
|
4050
4056
|
exports.FAV_SLIDER_MODE = FAV_SLIDER_MODE;
|
|
@@ -4076,13 +4082,12 @@
|
|
|
4076
4082
|
exports.ɵa = BaseValidation;
|
|
4077
4083
|
exports.ɵb = BaseValidationLoc;
|
|
4078
4084
|
exports.ɵc = CustomRequiredDirective;
|
|
4079
|
-
exports.ɵd =
|
|
4080
|
-
exports.ɵe =
|
|
4081
|
-
exports.ɵf =
|
|
4082
|
-
exports.ɵg =
|
|
4083
|
-
exports.ɵh =
|
|
4084
|
-
exports.ɵi =
|
|
4085
|
-
exports.ɵj = FormAutocompleteComponentLoc;
|
|
4085
|
+
exports.ɵd = FormSelectComponentLoc;
|
|
4086
|
+
exports.ɵe = FormAdaptiveComponentLoc;
|
|
4087
|
+
exports.ɵf = FormMultiSelectComponent;
|
|
4088
|
+
exports.ɵg = FormMultiSelectComponentLoc;
|
|
4089
|
+
exports.ɵh = FormFileComponentLoc;
|
|
4090
|
+
exports.ɵi = FormAutocompleteComponentLoc;
|
|
4086
4091
|
|
|
4087
4092
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4088
4093
|
|