@esfaenza/flow-builder 20.3.22 → 20.3.24

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
@@ -152,17 +152,34 @@ interface FlowChoice {
152
152
  choiceText?: string;
153
153
  value?: FlowValue;
154
154
  }
155
+ /**
156
+ * §5.2 — le opzioni generate. Le sorgenti sono **tre e si escludono a vicenda**: una collection
157
+ * già nel flow, una query su un'entita', i valori di un tipo di enumerazione. Dichiararne due
158
+ * insieme non blocca l'attivazione ma e' `CHOICE_SET_SOURCE_AMBIGUOUS`, e quale il runtime usi
159
+ * non e' una cosa da lasciare decidere al caso: `core/enum-choice-set.util.ts` le riconosce.
160
+ */
155
161
  interface FlowDynamicChoiceSet {
156
162
  name?: string;
157
163
  description?: string;
158
164
  dataType?: FlowDataType;
165
+ /** Sorgente: una collection del flow, tipicamente il risultato di un Get Records. */
166
+ collectionReference?: string;
167
+ /** Sorgente: l'entita' da interrogare. */
159
168
  object?: string;
169
+ /**
170
+ * Sorgente: il tipo di enumerazione, lo stesso nome che una risorsa `Enum` scrive in
171
+ * `objectType`. I campi citabili non sono campi di un'entita' ma le tre proprieta' di un
172
+ * valore di enum — `Name`, `Label`, `NumericValue` — e le porta `enumChoiceSetFields` (§7.1).
173
+ */
174
+ enumType?: string;
175
+ /** Assente: l'etichetta e' `Label` su un enum, e va dichiarato altrove. */
160
176
  displayField?: string;
177
+ /** Assente: il valore memorizzato e' `Name` su un enum, e va dichiarato altrove. */
161
178
  valueField?: string;
162
179
  sortField?: string;
163
180
  sortOrder?: FlowSortOrder;
164
181
  limit?: number;
165
- /** Sempre in AND: nessun `filterLogic` qui (§4.4). */
182
+ /** Sempre in AND: nessun `filterLogic` qui (§4.4). Su un enum sono valutati in memoria. */
166
183
  filters?: FlowRecordFilter[];
167
184
  }
168
185
  interface FlowStage {
@@ -837,6 +854,12 @@ interface FlowDictionaries {
837
854
  regionContainerTypes?: FlowDictionaryEntry[];
838
855
  /** §5.2 — `UseStoredValues` | `ResetValues` (`inputsOnNextNavToAssocScrn`). */
839
856
  screenFieldInputsRevisited?: FlowDictionaryEntry[];
857
+ /**
858
+ * §5.2 — le proprieta' citabili di un valore di enum in un dynamic choice set con `enumType`:
859
+ * `Name`, `Label`, `NumericValue`. Non sono campi di un'entita', quindi l'elenco arriva da qui
860
+ * e non da `GET /catalog/objects/{name}/fields`.
861
+ */
862
+ enumChoiceSetFields?: FlowDictionaryEntry[];
840
863
  }
841
864
  interface FlowObjectSummary {
842
865
  name: string;
@@ -2171,6 +2194,48 @@ declare function moveField(screen: FlowDynamicScreen, from: FlowScreenFieldPath,
2171
2194
  /** Duplica un campo accanto all'originale, rinominandolo: i nomi restano unici (§3.3). */
2172
2195
  declare function duplicateField(screen: FlowDynamicScreen, path: FlowScreenFieldPath, newName: string): FlowScreenFieldPath | undefined;
2173
2196
 
2197
+ /**
2198
+ * I dynamic choice set — FRONTEND.md §5.2.
2199
+ *
2200
+ * Due cose che il resto del codice non deve indovinare.
2201
+ *
2202
+ * La prima: le sorgenti sono **tre e si escludono a vicenda** (`collectionReference`, `object`,
2203
+ * `enumType`). Dichiararne due insieme non blocca l'attivazione ma e' `CHOICE_SET_SOURCE_AMBIGUOUS`:
2204
+ * l'editor deve saperlo dire, e per dirlo serve un solo posto che sappia quali campi sono una
2205
+ * sorgente — aggiungerne una quarta domani e' una riga qui, non una condizione in tre template.
2206
+ *
2207
+ * La seconda: su un choice set da enum i **campi citabili non sono campi di un'entita'**. Non c'e'
2208
+ * nessuna entita' da interrogare: sono le tre proprieta' di un valore di enum, e valgono per
2209
+ * `displayField`, `valueField`, `sortField` e per il campo di un filtro. Le etichette da mostrare
2210
+ * arrivano dal dizionario (`enumChoiceSetFields`, §7.1); il **tipo** di ciascuna no, e senza il tipo
2211
+ * l'editor del valore di un filtro proporrebbe una casella di testo dove il contratto scrive un
2212
+ * numero (`NumericValue`, §5.2). Per questo la mappa sta qui e non nel dizionario.
2213
+ */
2214
+
2215
+ /** La sorgente delle opzioni, o `null` se non ne e' dichiarata nessuna. */
2216
+ type ChoiceSetSource = 'collection' | 'object' | 'enum';
2217
+ /** Le sorgenti **dichiarate**: piu' di una e' `CHOICE_SET_SOURCE_AMBIGUOUS`. */
2218
+ declare function declaredChoiceSetSources(set: FlowDynamicChoiceSet): ChoiceSetSource[];
2219
+ /** La prima sorgente dichiarata, che e' anche quella su cui il form si apre. */
2220
+ declare function choiceSetSourceOf(set: FlowDynamicChoiceSet): ChoiceSetSource | null;
2221
+ /** I campi da cancellare passando a `source`: due sorgenti insieme sono un avviso. */
2222
+ declare function otherSourceFieldsOf(source: ChoiceSetSource): (keyof FlowDynamicChoiceSet)[];
2223
+ /**
2224
+ * §5.2 — le proprieta' di un valore di enum, col tipo con cui si confrontano in un filtro.
2225
+ * Qualunque altro nome e' `FIELD_UNKNOWN`.
2226
+ */
2227
+ declare const ENUM_CHOICE_SET_FIELDS: {
2228
+ readonly name: string;
2229
+ readonly label: string;
2230
+ readonly dataType: FlowDataType;
2231
+ }[];
2232
+ /** Senza `displayField` l'etichetta e' `Label`, senza `valueField` il valore memorizzato e' `Name`. */
2233
+ declare const ENUM_CHOICE_SET_DEFAULT_DISPLAY_FIELD = "Label";
2234
+ declare const ENUM_CHOICE_SET_DEFAULT_VALUE_FIELD = "Name";
2235
+ declare function enumChoiceSetFieldType(name: string | undefined | null): FlowDataType | undefined;
2236
+ /** Il nome non e' una delle tre proprieta': vuoto non si accusa, e' semplicemente il default. */
2237
+ declare function isUnknownEnumChoiceSetField(name: string | undefined | null): boolean;
2238
+
2174
2239
  /**
2175
2240
  * La gravita' di un rilievo, ridotta a tre secchi — FRONTEND.md §7.
2176
2241
  *
@@ -2247,6 +2312,12 @@ declare class FlowDictionaryStore {
2247
2312
  readonly conditionLogicModes: _angular_core.Signal<FlowDictionaryEntry[]>;
2248
2313
  readonly regionContainerTypes: _angular_core.Signal<FlowDictionaryEntry[]>;
2249
2314
  readonly screenFieldInputsRevisited: _angular_core.Signal<FlowDictionaryEntry[]>;
2315
+ /**
2316
+ * §5.2 — le proprieta' citabili in un choice set da enum. Elenco vuoto: il dizionario non le
2317
+ * dichiara, e il form ripiega sui tre nomi del contratto invece di lasciare la tendina vuota —
2318
+ * qui il contratto li nomina uno per uno, quindi non e' cablare un dizionario aperto.
2319
+ */
2320
+ readonly enumChoiceSetFields: _angular_core.Signal<FlowDictionaryEntry[]>;
2250
2321
  /** §5.2 — i tipi di campo di uno screen dinamico, con i flag che guidano il form. */
2251
2322
  readonly screenFieldTypes: _angular_core.Signal<FlowScreenFieldTypeEntry[]>;
2252
2323
  /**
@@ -3758,7 +3829,7 @@ declare class ReferencePickerComponent {
3758
3829
  * percorso inesistente di uno scope che i percorsi li dichiara, perche' lì il backend
3759
3830
  * risponderebbe `GLOBAL_UNKNOWN`.
3760
3831
  */
3761
- readonly valueState: _angular_core.Signal<"member" | "empty" | "unknown" | "known" | "navigated" | "host" | "containerRoot" | "memberUnknown" | "memberNotWritable" | "pathUnverified" | "globalPathUntyped" | "globalPathInvalid">;
3832
+ readonly valueState: _angular_core.Signal<"empty" | "unknown" | "member" | "known" | "navigated" | "host" | "containerRoot" | "memberUnknown" | "memberNotWritable" | "pathUnverified" | "globalPathUntyped" | "globalPathInvalid">;
3762
3833
  /** Le parole cambiano con la tappa: un campo di un'entita' non e' un membro di una classe. */
3763
3834
  private readonly tailIsObject;
3764
3835
  private readonly tailContainer;
@@ -3920,7 +3991,7 @@ declare class NamePickerComponent {
3920
3991
  * **errori** che bloccano l'attivazione (`ACTION_UNKNOWN`, `FORM_UNKNOWN`), mentre un flow
3921
3992
  * senza versione attiva e' un avviso. Mostrarli con lo stesso colore direbbe il falso.
3922
3993
  */
3923
- readonly unknownSeverity: _angular_core.InputSignal<"error" | "warn">;
3994
+ readonly unknownSeverity: _angular_core.InputSignal<"warn" | "error">;
3924
3995
  /**
3925
3996
  * Nomi che **esistono** ma non sono utilizzabili qui. Il caso vero e' il catalogo dei form,
3926
3997
  * dove una schermata intera e un componente vivono nello stesso elenco e si distinguono per
@@ -4315,7 +4386,7 @@ declare class ConditionEditorComponent {
4315
4386
  */
4316
4387
  hasTypeMismatch(condition: FlowCondition): boolean;
4317
4388
  typeMismatchMessage(condition: FlowCondition): string;
4318
- readonly logicMode: _angular_core.Signal<"and" | "or" | "formula" | "custom">;
4389
+ readonly logicMode: _angular_core.Signal<"and" | "or" | "custom" | "formula">;
4319
4390
  readonly customLogic: _angular_core.Signal<string>;
4320
4391
  /** Feedback immediato sull'espressione: la verita' resta della validazione backend. */
4321
4392
  readonly customLogicError: _angular_core.Signal<string | null>;
@@ -4359,6 +4430,15 @@ declare class ConditionEditorComponent {
4359
4430
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConditionEditorComponent, "fb-condition-editor", never, { "holder": { "alias": "holder"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "allowFormula": { "alias": "allowFormula"; "required": false; "isSignal": true; }; "allowLogic": { "alias": "allowLogic"; "required": false; "isSignal": true; }; "issuePath": { "alias": "issuePath"; "required": false; "isSignal": true; }; }, { "changed": "changed"; }, never, never, true, never>;
4360
4431
  }
4361
4432
 
4433
+ /**
4434
+ * Un campo filtrabile che **non** viene da un catalogo di campi: nome, etichetta e tipo con cui
4435
+ * confrontarlo. Oggi lo usano i choice set da enum (§5.2).
4436
+ */
4437
+ interface FilterFieldOption {
4438
+ value: string;
4439
+ label: string;
4440
+ dataType?: FlowDataType;
4441
+ }
4362
4442
  /** Il contenitore dei filtri, qualunque elemento sia. */
4363
4443
  interface FilterHolder {
4364
4444
  filters?: FlowRecordFilter[];
@@ -4373,6 +4453,11 @@ declare class RecordFilterEditorComponent {
4373
4453
  readonly title: _angular_core.InputSignal<string>;
4374
4454
  /** L'uso con cui chiedere i campi: `filterable` per i filtri, `updateable` altrove. */
4375
4455
  readonly usage: _angular_core.InputSignal<FlowFieldUsage>;
4456
+ /**
4457
+ * Elenco chiuso di campi, al posto del catalogo dell'entita'. Valorizzato, `object` non serve:
4458
+ * non c'e' nessuna entita' da interrogare (§5.2, choice set da `enumType`).
4459
+ */
4460
+ readonly fieldOptions: _angular_core.InputSignal<FilterFieldOption[]>;
4376
4461
  /** `false` dove il modello non ha `filterLogic`: i filtri sono sempre in AND (§4.4). */
4377
4462
  readonly supportsLogic: _angular_core.InputSignal<boolean>;
4378
4463
  /** `true` dove esiste `filterFormula` come alternativa ai filtri. */
@@ -4383,7 +4468,7 @@ declare class RecordFilterEditorComponent {
4383
4468
  * (§5.8, §13.10).
4384
4469
  */
4385
4470
  readonly emptyWarning: _angular_core.InputSignal<string | null>;
4386
- readonly emptyWarningSeverity: _angular_core.InputSignal<"error" | "warn">;
4471
+ readonly emptyWarningSeverity: _angular_core.InputSignal<"warn" | "error">;
4387
4472
  readonly changed: _angular_core.OutputEmitterRef<(holder: FilterHolder) => void>;
4388
4473
  /** Tutti i campi, filtrabili o no: serve solo a riconoscere le chiavi composte (§5.8). */
4389
4474
  private readonly allFields;
@@ -4406,7 +4491,7 @@ declare class RecordFilterEditorComponent {
4406
4491
  * evita la ricerca di un campo che nell'elenco non c'e' e non ci sara'.
4407
4492
  */
4408
4493
  readonly identifierNotFilterable: _angular_core.Signal<boolean>;
4409
- readonly logicMode: _angular_core.Signal<"and" | "or" | "formula" | "custom">;
4494
+ readonly logicMode: _angular_core.Signal<"and" | "or" | "custom" | "formula">;
4410
4495
  readonly customLogic: _angular_core.Signal<string>;
4411
4496
  readonly showEmptyWarning: _angular_core.Signal<boolean>;
4412
4497
  addFilter(): void;
@@ -4425,13 +4510,18 @@ declare class RecordFilterEditorComponent {
4425
4510
  * catalogo resta interrogato qui, e non solo dentro il picker.
4426
4511
  */
4427
4512
  fieldDataType(filter: FlowRecordFilter): FlowDataType | undefined;
4513
+ /**
4514
+ * Fuori dall'elenco chiuso: e' `FIELD_UNKNOWN`, e va detto qui perche' il `<select>` mostrerebbe
4515
+ * solo una casella vuota — cioe' un documento scritto altrove sembrerebbe senza campo.
4516
+ */
4517
+ unknownFixedField(filter: FlowRecordFilter): boolean;
4428
4518
  /**
4429
4519
  * Il tipo concreto del campo: su un campo `Enum` e' cio' che permette di proporre i valori
4430
4520
  * ammessi invece di farli digitare (§4.6).
4431
4521
  */
4432
4522
  fieldObjectType(filter: FlowRecordFilter): string | undefined;
4433
4523
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RecordFilterEditorComponent, never>;
4434
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<RecordFilterEditorComponent, "fb-record-filter-editor", never, { "holder": { "alias": "holder"; "required": true; "isSignal": true; }; "object": { "alias": "object"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "usage": { "alias": "usage"; "required": false; "isSignal": true; }; "supportsLogic": { "alias": "supportsLogic"; "required": false; "isSignal": true; }; "supportsFormula": { "alias": "supportsFormula"; "required": false; "isSignal": true; }; "emptyWarning": { "alias": "emptyWarning"; "required": false; "isSignal": true; }; "emptyWarningSeverity": { "alias": "emptyWarningSeverity"; "required": false; "isSignal": true; }; }, { "changed": "changed"; }, never, never, true, never>;
4524
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RecordFilterEditorComponent, "fb-record-filter-editor", never, { "holder": { "alias": "holder"; "required": true; "isSignal": true; }; "object": { "alias": "object"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "usage": { "alias": "usage"; "required": false; "isSignal": true; }; "fieldOptions": { "alias": "fieldOptions"; "required": false; "isSignal": true; }; "supportsLogic": { "alias": "supportsLogic"; "required": false; "isSignal": true; }; "supportsFormula": { "alias": "supportsFormula"; "required": false; "isSignal": true; }; "emptyWarning": { "alias": "emptyWarning"; "required": false; "isSignal": true; }; "emptyWarningSeverity": { "alias": "emptyWarningSeverity"; "required": false; "isSignal": true; }; }, { "changed": "changed"; }, never, never, true, never>;
4435
4525
  }
4436
4526
 
4437
4527
  /** Contenitore generico: gli input hanno `value`, gli output `assignToReference`. */
@@ -5230,6 +5320,39 @@ declare class ResourcePanelComponent {
5230
5320
  * e la mutazione va dentro `updateResource` perche' e' lì che il documento viene rimpiazzato.
5231
5321
  */
5232
5322
  onFiltersChanged(reference: FlowResourceRef, mutate: (holder: FilterHolder) => void): void;
5323
+ /** La sorgente scelta per un set che ancora non ne dichiara nessuna. */
5324
+ private readonly pendingSource;
5325
+ /**
5326
+ * La sorgente dichiarata vince sempre: e' cio' che c'e' nel documento. Finche' non c'e' niente
5327
+ * conta la scelta fatta nel pannello, e in mancanza si apre sulla query — la sorgente storica.
5328
+ */
5329
+ choiceSetSource(reference: FlowResourceRef): ChoiceSetSource;
5330
+ /**
5331
+ * Cambiare sorgente cancella le altre — dichiararne due e' `CHOICE_SET_SOURCE_AMBIGUOUS` — e
5332
+ * anche i **campi citati**: `Label` non e' un campo di un'entita' e `Ragione_Sociale` non e' una
5333
+ * proprieta' di un valore di enum, quindi lasciarli lì trasformerebbe un cambio di sorgente in
5334
+ * tre `FIELD_UNKNOWN` che l'utente non ha scritto.
5335
+ */
5336
+ setChoiceSetSource(reference: FlowResourceRef, source: ChoiceSetSource): void;
5337
+ /** Su un choice set da enum il tipo e' `enumType`: il campo generico sarebbe un doppione. */
5338
+ hidesObjectType(reference: FlowResourceRef): boolean;
5339
+ isChoiceSetSource(reference: FlowResourceRef, source: ChoiceSetSource): boolean;
5340
+ /** Piu' di una sorgente nel documento: il runtime ne usa una sola (§5.2). */
5341
+ ambiguousChoiceSetSource(reference: FlowResourceRef): boolean;
5342
+ /**
5343
+ * §5.2 — i campi citabili di un choice set da enum. Le etichette le dice il dizionario; il
5344
+ * **tipo** no, e senza tipo il valore di un filtro su `NumericValue` sarebbe una casella di testo.
5345
+ */
5346
+ readonly enumChoiceSetFields: _angular_core.Signal<FilterFieldOption[]>;
5347
+ /** Fuori dalle tre proprieta' di un valore di enum: `FIELD_UNKNOWN`. */
5348
+ unknownEnumChoiceSetField(reference: FlowResourceRef, field: string): boolean;
5349
+ /**
5350
+ * §5.2 — qui l'elenco dei tipi e' **autorevole** quando non e' vuoto: un `enumType` che il
5351
+ * catalogo non conosce e' un errore, non l'avviso che si darebbe su un catalogo di campi.
5352
+ */
5353
+ unknownEnumType(reference: FlowResourceRef): boolean;
5354
+ readonly defaultDisplayField = "Label";
5355
+ readonly defaultValueField = "Name";
5233
5356
  setValue(reference: FlowResourceRef, value: FlowValue | undefined): void;
5234
5357
  setDataType(reference: FlowResourceRef, dataType: string): void;
5235
5358
  requiresObjectType(reference: FlowResourceRef): boolean;
@@ -5327,7 +5450,7 @@ declare class RunDialogComponent {
5327
5450
  private readonly dictionaries;
5328
5451
  private readonly catalog;
5329
5452
  /** `debug` cambia il titolo, l'avviso sui dati e quale primitiva verra' chiamata. */
5330
- readonly mode: _angular_core.InputSignal<"run" | "debug">;
5453
+ readonly mode: _angular_core.InputSignal<"debug" | "run">;
5331
5454
  /** Il flow che verra' eseguito: e' quello **salvato**, non il documento in mano. */
5332
5455
  readonly flowName: _angular_core.InputSignal<string | null>;
5333
5456
  readonly version: _angular_core.InputSignal<number | null>;
@@ -5622,7 +5745,7 @@ declare class FlowBuilderComponent {
5622
5745
  /** Scrive la copia e continua a lavorare su di essa (§6.2). */
5623
5746
  confirmCopy(): Promise<void>;
5624
5747
  /** Quale delle due finestre e' aperta; `null` = nessuna. */
5625
- readonly runMode: _angular_core.WritableSignal<"run" | "debug" | null>;
5748
+ readonly runMode: _angular_core.WritableSignal<"debug" | "run" | null>;
5626
5749
  /** La chiamata all'ospite e' in volo: il bottone della finestra resta spento. */
5627
5750
  readonly isStartingRun: _angular_core.WritableSignal<boolean>;
5628
5751
  /**
@@ -5688,5 +5811,5 @@ declare class SelectValueDirective implements AfterViewChecked {
5688
5811
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectValueDirective, "select[fbValue]", never, { "fbValue": { "alias": "fbValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5689
5812
  }
5690
5813
 
5691
- export { ConditionEditorComponent, ConnectorEditorComponent, DebugPanelComponent, DynamicScreenInspectorComponent, ElementDialogComponent, ElementInspectorComponent, ElementPaletteComponent, EnumValuePickerComponent, FALLBACK_COLLECTION_BY_TYPE, FALLBACK_TYPE_LABEL, FLOW_BUILDER_HTTP_CONFIG, FLOW_CLIPBOARD_KIND, FLOW_CLIPBOARD_VERSION, FLOW_ELEMENT_ICONS, FLOW_ELEMENT_VARIANT_FIELDS, FLOW_ELEMENT_VARIANT_ICONS, FLOW_ERROR_FALLBACK_MESSAGE, FLOW_ERROR_HTTP_STATUS, FLOW_NAME_PATTERN, FLOW_NODE_COLLECTIONS, FLOW_NODE_HEIGHT, FLOW_NODE_WIDTH, FLOW_REFERENCE_FIELDS, FLOW_RESOURCE_COLLECTIONS, FLOW_VALUE_FIELDS, FLOW_VALUE_LITERAL_FIELDS, FieldAssignmentEditorComponent, FieldPickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowClipboardService, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, FormulaEditorComponent, FormulaValidationService, HttpFlowBuilderApi, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, PasteDialogComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourcePanelComponent, RunDialogComponent, SEVERITY_BUCKETS, SEVERITY_ICON, SEVERITY_LABEL, START_NODE_NAME, SelectValueDirective, StartInspectorComponent, StructureMemberPickerComponent, StructurePickerComponent, TYPES_WITH_AUTOMATIC_OUTPUT, TYPE_BY_COLLECTION, UNSUPPORTED_TYPES, ValueEditorComponent, VersionPanelComponent, allFieldsOf, applyPaste, areTypesComparable, buildClipboardPayload, canvasNodeId, checkConditionLogic, checkFlowName, describePathEntry, duplicateField, elementIcon, emptyFlowDefinition, fieldAt, filterReferences, flattenFields, flowNodeWidth, flowNodeWidthClass, innerNamesOf, insertField, isClipboardPayload, isCustomConditionLogic, isEmptyReferenceFilter, isFieldResource, isGlobalReference, isNumericType, isPathInside, isTypeCheckedOperator, isValidFlowName, isValued, loadPathLevel, matchesReferenceFilter, moveCondition, moveField, navigatePath, outletByKey, outletsOf, parseCanvasNodeId, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathKey, pathNotVerifiableMessage, planPaste, referenceRoot, referencedRootsOf, remapConditionLogic, removeCondition, removeField, resolvePath, rewriteReferences, samePath, screenActionNames, screenFieldNames, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, typeOfCollection, uniqueFlowName, valuedFieldOf, valuedFieldsOf, variantFieldOf, variantOf, variantPresetOf };
5692
- export type { FieldAssignmentHolder, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, FlowCanvasNode, FlowCatalogEntry, FlowCatalogParameter, FlowChoice, FlowClipboardNode, FlowClipboardPayload, FlowClipboardResource, FlowCloneRequest, FlowCollectionProcessor, FlowCollectionProcessorType, FlowComparisonOperator, FlowComparisonOperatorEntry, FlowCondition, FlowConditionHolder, FlowConditionLogic, FlowConflictState, FlowConnectionKind, FlowConnector, FlowConnectorTarget, FlowConstant, FlowCreateRequest, FlowCustomError, FlowCustomErrorMessage, FlowCustomProperty, FlowDataType, FlowDataTypeEntry, FlowDecision, FlowDecisionRule, FlowDefinition, FlowDictionaries, FlowDictionaryEntry, FlowDynamicChoiceSet, FlowDynamicScreen, FlowEdge, FlowElementType, FlowElementTypeEntry, FlowEnumValue, FlowErrorCategory, FlowExportQuery, FlowFieldDescription, FlowFieldUsage, FlowFieldValue, FlowFormKind, FlowFormula, FlowFormulaIssue, FlowFormulaUsage, FlowFormulaValidationRequest, FlowFormulaValidationResult, FlowGlobalVariableEntry, FlowInputFieldAssignment, FlowInputParameter, FlowInterviewResult, FlowInterviewStatus, FlowIssueSeverity, FlowLayoutDirection, FlowLayoutNodeInput, FlowLayoutOptions, FlowLayoutResult, FlowListQuery, FlowLoop, FlowNameCheck, FlowNameProblem, FlowNewVersionRequest, FlowNodeBase, FlowNodeCollection, FlowNodeRef, FlowObjectDescription, FlowObjectSummary, FlowOffsetUnit, FlowOrchestratedStage, FlowOutlet, FlowOutline, FlowOutlineConnection, FlowOutlineNode, FlowOutputFieldAssignment, FlowOutputParameter, FlowPalettePick, FlowPastePlan, FlowPasteRename, FlowPasteResource, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowReference, FlowReferenceFilter, FlowReferenceKind, FlowRegionContainerType, FlowResourceCollection, FlowResourceKindEntry, FlowResourceRef, FlowResumeRequest, FlowRunOutcome, FlowRunRequest, FlowSaveRequest, FlowSaveResult, FlowSchedule, FlowScheduledPath, FlowScreen, FlowScreenAction, FlowScreenField, FlowScreenFieldInputsRevisited, FlowScreenFieldNode, FlowScreenFieldPath, FlowScreenFieldType, FlowScreenFieldTypeEntry, FlowScreenNavigation, FlowScreenResponseRequest, FlowScreenTrigger, FlowScreenTriggerInitBehavior, FlowScreenValidationRule, FlowScriptPluginCall, FlowSeverityBucket, FlowSortOption, FlowSortOrder, FlowStage, FlowStageStep, FlowStageStepActionType, FlowStageStepAssignee, FlowStageStepConditionActionType, FlowStageStepRequest, FlowStageStepState, FlowStageStepStatus, FlowStageStepTypeEntry, FlowStart, FlowStartInterviewRequest, FlowStructureDescribed, FlowStructureDescription, FlowStructureInstance, FlowStructureMember, FlowSubflow, FlowSubflowInputAssignment, FlowSubflowOutputAssignment, FlowSummary, FlowTextTemplate, FlowTraceEntry, FlowTransactionModel, FlowTransform, FlowTransformType, FlowTransformValue, FlowTransformValueAction, FlowTriggerType, FlowTypedEntry, FlowTypedValue, FlowUnsupportedNode, FlowValidationIssue, FlowValidationResult, FlowValue, FlowVariable, FlowVersionStatus, FlowVersionSummary, FlowWait, FlowWaitEvent, NamePickerOption, PaletteGroup, PaletteItem, ParameterHolder, PathCatalog, PathContainer, PathContainerKind, PathEntry, PathLevel, PathLevelStatus, PathNavigation, PathNavigationRequest, PathResolution, PathStopReason, StructureMemberUsage, ValueMode };
5814
+ export { ConditionEditorComponent, ConnectorEditorComponent, DebugPanelComponent, DynamicScreenInspectorComponent, ENUM_CHOICE_SET_DEFAULT_DISPLAY_FIELD, ENUM_CHOICE_SET_DEFAULT_VALUE_FIELD, ENUM_CHOICE_SET_FIELDS, ElementDialogComponent, ElementInspectorComponent, ElementPaletteComponent, EnumValuePickerComponent, FALLBACK_COLLECTION_BY_TYPE, FALLBACK_TYPE_LABEL, FLOW_BUILDER_HTTP_CONFIG, FLOW_CLIPBOARD_KIND, FLOW_CLIPBOARD_VERSION, FLOW_ELEMENT_ICONS, FLOW_ELEMENT_VARIANT_FIELDS, FLOW_ELEMENT_VARIANT_ICONS, FLOW_ERROR_FALLBACK_MESSAGE, FLOW_ERROR_HTTP_STATUS, FLOW_NAME_PATTERN, FLOW_NODE_COLLECTIONS, FLOW_NODE_HEIGHT, FLOW_NODE_WIDTH, FLOW_REFERENCE_FIELDS, FLOW_RESOURCE_COLLECTIONS, FLOW_VALUE_FIELDS, FLOW_VALUE_LITERAL_FIELDS, FieldAssignmentEditorComponent, FieldPickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowClipboardService, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, FormulaEditorComponent, FormulaValidationService, HttpFlowBuilderApi, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, PasteDialogComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourcePanelComponent, RunDialogComponent, SEVERITY_BUCKETS, SEVERITY_ICON, SEVERITY_LABEL, START_NODE_NAME, SelectValueDirective, StartInspectorComponent, StructureMemberPickerComponent, StructurePickerComponent, TYPES_WITH_AUTOMATIC_OUTPUT, TYPE_BY_COLLECTION, UNSUPPORTED_TYPES, ValueEditorComponent, VersionPanelComponent, allFieldsOf, applyPaste, areTypesComparable, buildClipboardPayload, canvasNodeId, checkConditionLogic, checkFlowName, choiceSetSourceOf, declaredChoiceSetSources, describePathEntry, duplicateField, elementIcon, emptyFlowDefinition, enumChoiceSetFieldType, fieldAt, filterReferences, flattenFields, flowNodeWidth, flowNodeWidthClass, innerNamesOf, insertField, isClipboardPayload, isCustomConditionLogic, isEmptyReferenceFilter, isFieldResource, isGlobalReference, isNumericType, isPathInside, isTypeCheckedOperator, isUnknownEnumChoiceSetField, isValidFlowName, isValued, loadPathLevel, matchesReferenceFilter, moveCondition, moveField, navigatePath, otherSourceFieldsOf, outletByKey, outletsOf, parseCanvasNodeId, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathKey, pathNotVerifiableMessage, planPaste, referenceRoot, referencedRootsOf, remapConditionLogic, removeCondition, removeField, resolvePath, rewriteReferences, samePath, screenActionNames, screenFieldNames, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, typeOfCollection, uniqueFlowName, valuedFieldOf, valuedFieldsOf, variantFieldOf, variantOf, variantPresetOf };
5815
+ export type { ChoiceSetSource, FieldAssignmentHolder, FilterFieldOption, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, FlowCanvasNode, FlowCatalogEntry, FlowCatalogParameter, FlowChoice, FlowClipboardNode, FlowClipboardPayload, FlowClipboardResource, FlowCloneRequest, FlowCollectionProcessor, FlowCollectionProcessorType, FlowComparisonOperator, FlowComparisonOperatorEntry, FlowCondition, FlowConditionHolder, FlowConditionLogic, FlowConflictState, FlowConnectionKind, FlowConnector, FlowConnectorTarget, FlowConstant, FlowCreateRequest, FlowCustomError, FlowCustomErrorMessage, FlowCustomProperty, FlowDataType, FlowDataTypeEntry, FlowDecision, FlowDecisionRule, FlowDefinition, FlowDictionaries, FlowDictionaryEntry, FlowDynamicChoiceSet, FlowDynamicScreen, FlowEdge, FlowElementType, FlowElementTypeEntry, FlowEnumValue, FlowErrorCategory, FlowExportQuery, FlowFieldDescription, FlowFieldUsage, FlowFieldValue, FlowFormKind, FlowFormula, FlowFormulaIssue, FlowFormulaUsage, FlowFormulaValidationRequest, FlowFormulaValidationResult, FlowGlobalVariableEntry, FlowInputFieldAssignment, FlowInputParameter, FlowInterviewResult, FlowInterviewStatus, FlowIssueSeverity, FlowLayoutDirection, FlowLayoutNodeInput, FlowLayoutOptions, FlowLayoutResult, FlowListQuery, FlowLoop, FlowNameCheck, FlowNameProblem, FlowNewVersionRequest, FlowNodeBase, FlowNodeCollection, FlowNodeRef, FlowObjectDescription, FlowObjectSummary, FlowOffsetUnit, FlowOrchestratedStage, FlowOutlet, FlowOutline, FlowOutlineConnection, FlowOutlineNode, FlowOutputFieldAssignment, FlowOutputParameter, FlowPalettePick, FlowPastePlan, FlowPasteRename, FlowPasteResource, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowReference, FlowReferenceFilter, FlowReferenceKind, FlowRegionContainerType, FlowResourceCollection, FlowResourceKindEntry, FlowResourceRef, FlowResumeRequest, FlowRunOutcome, FlowRunRequest, FlowSaveRequest, FlowSaveResult, FlowSchedule, FlowScheduledPath, FlowScreen, FlowScreenAction, FlowScreenField, FlowScreenFieldInputsRevisited, FlowScreenFieldNode, FlowScreenFieldPath, FlowScreenFieldType, FlowScreenFieldTypeEntry, FlowScreenNavigation, FlowScreenResponseRequest, FlowScreenTrigger, FlowScreenTriggerInitBehavior, FlowScreenValidationRule, FlowScriptPluginCall, FlowSeverityBucket, FlowSortOption, FlowSortOrder, FlowStage, FlowStageStep, FlowStageStepActionType, FlowStageStepAssignee, FlowStageStepConditionActionType, FlowStageStepRequest, FlowStageStepState, FlowStageStepStatus, FlowStageStepTypeEntry, FlowStart, FlowStartInterviewRequest, FlowStructureDescribed, FlowStructureDescription, FlowStructureInstance, FlowStructureMember, FlowSubflow, FlowSubflowInputAssignment, FlowSubflowOutputAssignment, FlowSummary, FlowTextTemplate, FlowTraceEntry, FlowTransactionModel, FlowTransform, FlowTransformType, FlowTransformValue, FlowTransformValueAction, FlowTriggerType, FlowTypedEntry, FlowTypedValue, FlowUnsupportedNode, FlowValidationIssue, FlowValidationResult, FlowValue, FlowVariable, FlowVersionStatus, FlowVersionSummary, FlowWait, FlowWaitEvent, NamePickerOption, PaletteGroup, PaletteItem, ParameterHolder, PathCatalog, PathContainer, PathContainerKind, PathEntry, PathLevel, PathLevelStatus, PathNavigation, PathNavigationRequest, PathResolution, PathStopReason, StructureMemberUsage, ValueMode };
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@esfaenza/flow-builder",
3
- "version": "20.3.22",
3
+ "version": "20.3.24",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.2.14",
6
- "@angular/common": "^20.3.25",
7
- "@angular/core": "^20.3.25",
6
+ "@angular/common": "^20.3.24",
7
+ "@angular/core": "^20.3.24",
8
8
  "@foblex/flow": ">=19.0.0",
9
9
  "dagre": "^0.8.5"
10
10
  },