@esfaenza/forms-and-validations 13.1.16 → 13.3.1
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/esm2020/lib/forms/base-form-control.mjs +3 -3
- package/esm2020/lib/forms/form-adaptive/form-adaptive.component.loc.mjs +3 -3
- package/esm2020/lib/forms/form-adaptive/form-adaptive.component.mjs +3 -3
- package/esm2020/lib/forms/form-autocomplete/form-autocomplete.component.loc.mjs +3 -3
- package/esm2020/lib/forms/form-autocomplete/form-autocomplete.component.mjs +3 -3
- package/esm2020/lib/forms/form-checkbox/form-checkbox.component.mjs +3 -3
- package/esm2020/lib/forms/form-date/form-date.component.mjs +3 -3
- package/esm2020/lib/forms/form-datetime/form-datetime.component.mjs +3 -3
- package/esm2020/lib/forms/form-empty/form-empty.component.mjs +3 -3
- package/esm2020/lib/forms/form-error/form-error.component.mjs +3 -3
- package/esm2020/lib/forms/form-file/form-file.component.loc.mjs +3 -3
- package/esm2020/lib/forms/form-file/form-file.component.mjs +3 -3
- package/esm2020/lib/forms/form-info/form-info.component.mjs +3 -3
- package/esm2020/lib/forms/form-input/form-input.component.mjs +3 -3
- package/esm2020/lib/forms/form-multiselect/form-multiselect.component.loc.mjs +3 -3
- package/esm2020/lib/forms/form-multiselect/form-multiselect.component.mjs +3 -3
- package/esm2020/lib/forms/form-select/form-select.component.loc.mjs +3 -3
- package/esm2020/lib/forms/form-select/form-select.component.mjs +3 -3
- package/esm2020/lib/forms/form-template/form-template.component.mjs +11 -5
- package/esm2020/lib/forms/form-textarea/form-textarea.component.mjs +3 -3
- package/esm2020/lib/forms/form-time/form-time.component.mjs +3 -3
- package/esm2020/lib/forms-and-validations.module.mjs +4 -4
- package/esm2020/lib/models/dayjs-adapter/dayjs-date-adapter.mjs +3 -3
- package/esm2020/lib/validations/base-validation.loc.mjs +3 -3
- package/esm2020/lib/validations/base-validation.mjs +3 -3
- package/esm2020/lib/validations/customValidators/CustomRequiredDirective.mjs +3 -3
- package/esm2020/lib/validations/validation-autocomplete/validation-autocomplete.component.mjs +4 -4
- package/esm2020/lib/validations/validation-currency/validation-currency.component.mjs +4 -4
- package/esm2020/lib/validations/validation-date/validation-date.component.mjs +4 -4
- package/esm2020/lib/validations/validation-datetime/validation-datetime.component.mjs +4 -4
- package/esm2020/lib/validations/validation-input/validation-input.component.mjs +4 -4
- package/esm2020/lib/validations/validation-select/validation-select.component.mjs +4 -4
- package/esm2020/lib/validations/validation-text-area/validation-text-area.component.mjs +4 -4
- package/fesm2015/esfaenza-forms-and-validations.mjs +114 -108
- package/fesm2015/esfaenza-forms-and-validations.mjs.map +1 -1
- package/fesm2020/esfaenza-forms-and-validations.mjs +114 -108
- package/fesm2020/esfaenza-forms-and-validations.mjs.map +1 -1
- package/lib/forms/form-template/form-template.component.d.ts +5 -1
- package/package.json +13 -13
|
@@ -12,6 +12,10 @@ export declare class FormTemplateComponent {
|
|
|
12
12
|
* Mostra un testo a sinistra dell'input, **FormLayout** permettendo
|
|
13
13
|
*/
|
|
14
14
|
Label: string;
|
|
15
|
+
/**
|
|
16
|
+
* Eventuali classi extra da applicare alla Label, di default c'è solo un leggero margin top
|
|
17
|
+
*/
|
|
18
|
+
LabelClass: string;
|
|
15
19
|
/**
|
|
16
20
|
* Utilizza o meno il Layout di un form (Label con input di fianco), se false mostra solo l'input
|
|
17
21
|
*/
|
|
@@ -37,5 +41,5 @@ export declare class FormTemplateComponent {
|
|
|
37
41
|
*/
|
|
38
42
|
set LabelInputRatio(input: string);
|
|
39
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormTemplateComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormTemplateComponent, "form-template", never, { "Required": "Required"; "Label": "Label"; "FormLayout": "FormLayout"; "LabelColWidth": "LabelColWidth"; "InputColWidth": "InputColWidth"; "Last": "Last"; "FormGroupClass": "FormGroupClass"; "LabelInputRatio": "LabelInputRatio"; }, {}, never, ["*", "*"]>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormTemplateComponent, "form-template", never, { "Required": "Required"; "Label": "Label"; "LabelClass": "LabelClass"; "FormLayout": "FormLayout"; "LabelColWidth": "LabelColWidth"; "InputColWidth": "InputColWidth"; "Last": "Last"; "FormGroupClass": "FormGroupClass"; "LabelInputRatio": "LabelInputRatio"; }, {}, never, ["*", "*"]>;
|
|
41
45
|
}
|
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/forms-and-validations",
|
|
3
|
-
"version": "13.1
|
|
3
|
+
"version": "13.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"tslib": "^2.0.0"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@angular/common": "~13.
|
|
10
|
-
"@angular/core": "~13.
|
|
11
|
-
"@angular/forms": "~13.
|
|
12
|
-
"@angular/material": "13.
|
|
13
|
-
"@esfaenza/localizations": "^13.1
|
|
14
|
-
"@esfaenza/access-control": "^13.1
|
|
15
|
-
"@esfaenza/extensions": "^13.
|
|
16
|
-
"@esfaenza/material-dayjs-adapter": "^13.1
|
|
17
|
-
"@esfaenza/ngx-currency-mask": "^13.1
|
|
9
|
+
"@angular/common": "~13.3.9",
|
|
10
|
+
"@angular/core": "~13.3.9",
|
|
11
|
+
"@angular/forms": "~13.3.9",
|
|
12
|
+
"@angular/material": "13.3.7",
|
|
13
|
+
"@esfaenza/localizations": "^13.3.1",
|
|
14
|
+
"@esfaenza/access-control": "^13.3.1",
|
|
15
|
+
"@esfaenza/extensions": "^13.3.2",
|
|
16
|
+
"@esfaenza/material-dayjs-adapter": "^13.3.1",
|
|
17
|
+
"@esfaenza/ngx-currency-mask": "^13.3.1",
|
|
18
18
|
"angular2-multiselect-dropdown": "5.0.4",
|
|
19
19
|
"@angular-material-components/datetime-picker": "7.0.1",
|
|
20
|
-
"ngx-toastr": "14.
|
|
20
|
+
"ngx-toastr": "14.3.0",
|
|
21
21
|
"ngx-bootstrap": "8.0.0",
|
|
22
|
-
"dayjs": "1.
|
|
22
|
+
"dayjs": "1.11.2",
|
|
23
23
|
"cerialize": "0.1.18",
|
|
24
|
-
"sweetalert2": "11.
|
|
24
|
+
"sweetalert2": "11.4.14"
|
|
25
25
|
},
|
|
26
26
|
"module": "fesm2015/esfaenza-forms-and-validations.mjs",
|
|
27
27
|
"es2020": "fesm2020/esfaenza-forms-and-validations.mjs",
|