@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.
- package/bundles/esfaenza-forms-and-validations.umd.js +13 -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/lib/forms/form-select/form-select.component.js +2 -1
- package/esm2015/public-api.js +2 -1
- package/fesm2015/esfaenza-forms-and-validations.js +7 -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
|
*
|
|
@@ -3323,6 +3328,7 @@
|
|
|
3323
3328
|
if (!this.SourceFirstBind && this.SelectLabel) {
|
|
3324
3329
|
this.detatchPreviousAndRetatchNext(function (afterStuff) {
|
|
3325
3330
|
_this.BoundSource = null;
|
|
3331
|
+
_this.cdr.detectChanges();
|
|
3326
3332
|
setTimeout(function () {
|
|
3327
3333
|
var _a;
|
|
3328
3334
|
_this.tryBindSourceDisplay();
|
|
@@ -4045,6 +4051,7 @@
|
|
|
4045
4051
|
|
|
4046
4052
|
exports.ACO_CUSTOMKEY = ACO_CUSTOMKEY;
|
|
4047
4053
|
exports.AppFile = AppFile;
|
|
4054
|
+
exports.BaseFormControl = BaseFormControl;
|
|
4048
4055
|
exports.FAV_DEBUG_MODE = FAV_DEBUG_MODE;
|
|
4049
4056
|
exports.FAV_LOCALE = FAV_LOCALE;
|
|
4050
4057
|
exports.FAV_SLIDER_MODE = FAV_SLIDER_MODE;
|
|
@@ -4076,13 +4083,12 @@
|
|
|
4076
4083
|
exports.ɵa = BaseValidation;
|
|
4077
4084
|
exports.ɵb = BaseValidationLoc;
|
|
4078
4085
|
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;
|
|
4086
|
+
exports.ɵd = FormSelectComponentLoc;
|
|
4087
|
+
exports.ɵe = FormAdaptiveComponentLoc;
|
|
4088
|
+
exports.ɵf = FormMultiSelectComponent;
|
|
4089
|
+
exports.ɵg = FormMultiSelectComponentLoc;
|
|
4090
|
+
exports.ɵh = FormFileComponentLoc;
|
|
4091
|
+
exports.ɵi = FormAutocompleteComponentLoc;
|
|
4086
4092
|
|
|
4087
4093
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4088
4094
|
|