@esfaenza/forms-and-validations 11.2.63 → 11.2.66
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 +310 -523
- package/bundles/esfaenza-forms-and-validations.umd.js.map +1 -1
- package/esfaenza-forms-and-validations.d.ts +9 -9
- package/esfaenza-forms-and-validations.metadata.json +1 -1
- package/esm2015/esfaenza-forms-and-validations.js +10 -10
- package/esm2015/lib/forms/base-form-control.js +61 -118
- package/esm2015/lib/forms/form-adaptive/form-adaptive.component.js +49 -65
- package/esm2015/lib/forms/form-autocomplete/form-autocomplete.component.js +20 -46
- package/esm2015/lib/forms/form-checkbox/form-checkbox.component.js +15 -14
- package/esm2015/lib/forms/form-date/form-date.component.js +19 -20
- package/esm2015/lib/forms/form-datetime/form-datetime.component.js +18 -17
- package/esm2015/lib/forms/form-empty/form-empty.component.js +4 -10
- package/esm2015/lib/forms/form-error/form-error.component.js +6 -16
- package/esm2015/lib/forms/form-file/form-file.component.js +15 -29
- package/esm2015/lib/forms/form-info/form-info.component.js +6 -16
- package/esm2015/lib/forms/form-input/form-input.component.js +21 -35
- package/esm2015/lib/forms/form-multiselect/form-multiselect.component.js +17 -35
- package/esm2015/lib/forms/form-select/form-select.component.js +29 -33
- package/esm2015/lib/forms/form-template/form-template.component.js +10 -28
- package/esm2015/lib/forms/form-textarea/form-textarea.component.js +15 -17
- package/esm2015/lib/forms/form-time/form-time.component.js +17 -34
- package/esm2015/lib/forms-and-validations.module.js +3 -2
- package/esm2015/lib/models/FormsAndValidationsModuleConfig.js +1 -1
- package/esm2015/lib/tokens.js +5 -7
- package/fesm2015/esfaenza-forms-and-validations.js +300 -515
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/base-form-control.d.ts +56 -130
- package/lib/forms/form-adaptive/form-adaptive.component.d.ts +25 -72
- package/lib/forms/form-autocomplete/form-autocomplete.component.d.ts +13 -41
- package/lib/forms/form-checkbox/form-checkbox.component.d.ts +8 -12
- package/lib/forms/form-date/form-date.component.d.ts +9 -15
- package/lib/forms/form-datetime/form-datetime.component.d.ts +8 -12
- package/lib/forms/form-empty/form-empty.component.d.ts +3 -9
- package/lib/forms/form-error/form-error.component.d.ts +5 -15
- package/lib/forms/form-file/form-file.component.d.ts +9 -27
- package/lib/forms/form-info/form-info.component.d.ts +5 -15
- package/lib/forms/form-input/form-input.component.d.ts +14 -36
- package/lib/forms/form-multiselect/form-multiselect.component.d.ts +10 -30
- package/lib/forms/form-select/form-select.component.d.ts +11 -24
- package/lib/forms/form-template/form-template.component.d.ts +9 -27
- package/lib/forms/form-textarea/form-textarea.component.d.ts +7 -15
- package/lib/forms/form-time/form-time.component.d.ts +10 -30
- package/lib/models/FormsAndValidationsModuleConfig.d.ts +6 -8
- package/lib/tokens.d.ts +4 -6
- package/package.json +1 -1
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export { BaseFormControl as
|
|
6
|
-
export { FormAdaptiveComponentLoc as
|
|
7
|
-
export { FormAutocompleteComponentLoc as
|
|
8
|
-
export { FormFileComponentLoc as
|
|
9
|
-
export { FormMultiSelectComponent as
|
|
10
|
-
export { FormMultiSelectComponentLoc as
|
|
11
|
-
export { FormSelectComponentLoc as
|
|
12
|
-
export { ACO_CUSTOMKEY as ɵd, FAV_LOCALE as ɵc } from './lib/tokens';
|
|
5
|
+
export { BaseFormControl as ɵg } from './lib/forms/base-form-control';
|
|
6
|
+
export { FormAdaptiveComponentLoc as ɵi } from './lib/forms/form-adaptive/form-adaptive.component.loc';
|
|
7
|
+
export { FormAutocompleteComponentLoc as ɵm } from './lib/forms/form-autocomplete/form-autocomplete.component.loc';
|
|
8
|
+
export { FormFileComponentLoc as ɵl } from './lib/forms/form-file/form-file.component.loc';
|
|
9
|
+
export { FormMultiSelectComponent as ɵj } from './lib/forms/form-multiselect/form-multiselect.component';
|
|
10
|
+
export { FormMultiSelectComponentLoc as ɵk } from './lib/forms/form-multiselect/form-multiselect.component.loc';
|
|
11
|
+
export { FormSelectComponentLoc as ɵh } from './lib/forms/form-select/form-select.component.loc';
|
|
12
|
+
export { ACO_CUSTOMKEY as ɵd, FAV_DEBUG_MODE as ɵe, FAV_LOCALE as ɵc } from './lib/tokens';
|
|
13
13
|
export { BaseValidation as ɵa } from './lib/validations/base-validation';
|
|
14
14
|
export { BaseValidationLoc as ɵb } from './lib/validations/base-validation.loc';
|
|
15
|
-
export { CustomRequiredDirective as
|
|
15
|
+
export { CustomRequiredDirective as ɵf } from './lib/validations/customValidators/CustomRequiredDirective';
|