@eqproject/eqp-dynamic-module 2.8.8 → 2.8.9
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/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +3 -3
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +2 -2
- package/esm2020/lib/components/private/dbgetter/dbgetter.component.mjs +3 -6
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +26 -5
- package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +1 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +31 -14
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +31 -14
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/dbgetter/dbgetter.component.d.ts +0 -1
- package/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.d.ts +5 -0
- package/lib/components/private/field-templates/text-field-template/text-field-template.component.d.ts +0 -1
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare class ListValueFieldTemplateComponent implements OnInit, OnChange
|
|
|
20
20
|
constructor();
|
|
21
21
|
initStyles(): void;
|
|
22
22
|
ngOnInit(): void;
|
|
23
|
+
setSelectedItems(initialvalue: any): void;
|
|
23
24
|
ngOnChanges(changes: SimpleChanges): void;
|
|
24
25
|
/**
|
|
25
26
|
* Metodo per aggiornare il valore del campo quando questo è rappresentato da una formula.
|
|
@@ -44,6 +45,10 @@ export declare class ListValueFieldTemplateComponent implements OnInit, OnChange
|
|
|
44
45
|
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
45
46
|
*/
|
|
46
47
|
onRecordValueChange(): void;
|
|
48
|
+
/**
|
|
49
|
+
* Metodo per resettare la lista di valori selezionabili cancellando quelli selezionati
|
|
50
|
+
*/
|
|
51
|
+
resetArrayData(): void;
|
|
47
52
|
/**
|
|
48
53
|
* Metodo per creare un array di oggetti del tipo { Key: string, Value: any } da usare come sorgente dati per la eqp-select.
|
|
49
54
|
*/
|