@esfaenza/forms-and-validations 11.2.40 → 11.2.44
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 +25 -6
- package/bundles/esfaenza-forms-and-validations.umd.js.map +1 -1
- package/esfaenza-forms-and-validations.metadata.json +1 -1
- package/esm2015/lib/forms/form-adaptive/form-adaptive.component.js +12 -3
- package/esm2015/lib/forms/form-autocomplete/form-autocomplete.component.js +12 -3
- package/esm2015/lib/forms/form-multiselect/form-multiselect.component.js +3 -2
- package/esm2015/lib/forms/form-template/form-template.component.js +2 -2
- package/fesm2015/esfaenza-forms-and-validations.js +25 -6
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/form-adaptive/form-adaptive.component.d.ts +4 -0
- package/lib/forms/form-autocomplete/form-autocomplete.component.d.ts +4 -0
- package/lib/forms/form-multiselect/form-multiselect.component.d.ts +1 -0
- package/package.json +7 -7
|
@@ -57,6 +57,10 @@ export declare class FormAdaptiveComponent extends BaseFormControl implements Co
|
|
|
57
57
|
* Numero minimo di caratteri con cui cercare
|
|
58
58
|
*/
|
|
59
59
|
MinChars: number;
|
|
60
|
+
/**
|
|
61
|
+
* Indica se i controlli devono essere effettuati tenendo conto del Case o meno. Vale solo qualora la **Source** fosse fornita
|
|
62
|
+
*/
|
|
63
|
+
CaseSensitive: boolean;
|
|
60
64
|
/**
|
|
61
65
|
* Variabile interna che gestisce se effettuare il riallineamento dei dati o meno
|
|
62
66
|
*/
|
|
@@ -28,6 +28,10 @@ export declare class FormAutocompleteComponent extends BaseFormControl implement
|
|
|
28
28
|
* Override del placeholder per select requried
|
|
29
29
|
*/
|
|
30
30
|
RequiredPlaceholder: string;
|
|
31
|
+
/**
|
|
32
|
+
* Indica se i controlli devono essere effettuati tenendo conto del Case o meno. Vale solo qualora la **Source** fosse fornita
|
|
33
|
+
*/
|
|
34
|
+
CaseSensitive: boolean;
|
|
31
35
|
/**
|
|
32
36
|
* Indica se ignorare il prossimo evento writeValue che normalmente dovrebbe richiedere la nuova source. Serve per quando l'utente seleziona un elemento:
|
|
33
37
|
* Subito dopo partirebbe un altro evento modelChange che ricaricherebbe nuovamente la source
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/forms-and-validations",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.44",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"tslib": "^2.0.0"
|
|
@@ -10,18 +10,18 @@
|
|
|
10
10
|
"@angular/core": "~11.2.14",
|
|
11
11
|
"@angular/forms": "~11.2.14",
|
|
12
12
|
"@angular/material": "~11.2.13",
|
|
13
|
-
"@esfaenza/localizations": "^11.2.
|
|
14
|
-
"@esfaenza/access-control": "^11.2.
|
|
15
|
-
"@esfaenza/extensions": "^11.2.
|
|
16
|
-
"@esfaenza/material-dayjs-adapter": "^11.2.
|
|
17
|
-
"@esfaenza/ngx-currency-mask": "^11.2.
|
|
13
|
+
"@esfaenza/localizations": "^11.2.6",
|
|
14
|
+
"@esfaenza/access-control": "^11.2.5",
|
|
15
|
+
"@esfaenza/extensions": "^11.2.19",
|
|
16
|
+
"@esfaenza/material-dayjs-adapter": "^11.2.5",
|
|
17
|
+
"@esfaenza/ngx-currency-mask": "^11.2.5",
|
|
18
18
|
"angular2-multiselect-dropdown": "5.0.4",
|
|
19
19
|
"@angular-material-components/datetime-picker": "5.1.1",
|
|
20
20
|
"ngx-toastr": "13.2.1",
|
|
21
21
|
"ngx-bootstrap": "7.0.0",
|
|
22
22
|
"dayjs": "1.10.7",
|
|
23
23
|
"cerialize": "0.1.18",
|
|
24
|
-
"sweetalert2": "11.
|
|
24
|
+
"sweetalert2": "11.3.0"
|
|
25
25
|
},
|
|
26
26
|
"main": "bundles/esfaenza-forms-and-validations.umd.js",
|
|
27
27
|
"module": "fesm2015/esfaenza-forms-and-validations.js",
|