@esfaenza/flow-builder 20.3.18 → 20.3.19
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/index.d.ts
CHANGED
|
@@ -3989,7 +3989,7 @@ declare class ConditionEditorComponent {
|
|
|
3989
3989
|
*/
|
|
3990
3990
|
hasTypeMismatch(condition: FlowCondition): boolean;
|
|
3991
3991
|
typeMismatchMessage(condition: FlowCondition): string;
|
|
3992
|
-
readonly logicMode: _angular_core.Signal<"
|
|
3992
|
+
readonly logicMode: _angular_core.Signal<"formula" | "and" | "or" | "custom">;
|
|
3993
3993
|
readonly customLogic: _angular_core.Signal<string>;
|
|
3994
3994
|
/** Feedback immediato sull'espressione: la verita' resta della validazione backend. */
|
|
3995
3995
|
readonly customLogicError: _angular_core.Signal<string | null>;
|
|
@@ -4080,7 +4080,7 @@ declare class RecordFilterEditorComponent {
|
|
|
4080
4080
|
* evita la ricerca di un campo che nell'elenco non c'e' e non ci sara'.
|
|
4081
4081
|
*/
|
|
4082
4082
|
readonly identifierNotFilterable: _angular_core.Signal<boolean>;
|
|
4083
|
-
readonly logicMode: _angular_core.Signal<"
|
|
4083
|
+
readonly logicMode: _angular_core.Signal<"formula" | "and" | "or" | "custom">;
|
|
4084
4084
|
readonly customLogic: _angular_core.Signal<string>;
|
|
4085
4085
|
readonly showEmptyWarning: _angular_core.Signal<boolean>;
|
|
4086
4086
|
addFilter(): void;
|
|
@@ -4874,6 +4874,12 @@ declare class ResourcePanelComponent {
|
|
|
4874
4874
|
setField(reference: FlowResourceRef, field: string, value: unknown): void;
|
|
4875
4875
|
setNumberField(reference: FlowResourceRef, field: string, raw: string): void;
|
|
4876
4876
|
setBooleanField(reference: FlowResourceRef, field: string, value: boolean): void;
|
|
4877
|
+
/**
|
|
4878
|
+
* §4.6 — i filtri di un dynamic choice set. L'editor dei filtri emette una mutazione da
|
|
4879
|
+
* applicare al contenitore, non i filtri gia' pronti: qui il contenitore e' la risorsa stessa,
|
|
4880
|
+
* e la mutazione va dentro `updateResource` perche' e' lì che il documento viene rimpiazzato.
|
|
4881
|
+
*/
|
|
4882
|
+
onFiltersChanged(reference: FlowResourceRef, mutate: (holder: FilterHolder) => void): void;
|
|
4877
4883
|
setValue(reference: FlowResourceRef, value: FlowValue | undefined): void;
|
|
4878
4884
|
setDataType(reference: FlowResourceRef, dataType: string): void;
|
|
4879
4885
|
requiresObjectType(reference: FlowResourceRef): boolean;
|