@esfaenza/flow-builder 20.3.39 → 20.3.41
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/README.md +32 -3
- package/fesm2022/esfaenza-flow-builder.mjs +395 -11
- package/fesm2022/esfaenza-flow-builder.mjs.map +1 -1
- package/index.d.ts +138 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -253,6 +253,12 @@ interface FlowScreenField {
|
|
|
253
253
|
defaultSelectedChoiceReference?: string;
|
|
254
254
|
/** Nomi di `FlowChoice` o `FlowDynamicChoiceSet`, **nell'ordine di presentazione**. */
|
|
255
255
|
choiceReferences?: string[];
|
|
256
|
+
/**
|
|
257
|
+
* §5.2 — con **una sola** opzione risolta il campo la sceglie da se'. Serve alle tendine che
|
|
258
|
+
* dipendono da un'altra tendina; dove il campo non presenta opzioni non ha effetto ed e'
|
|
259
|
+
* `SCREEN_FIELD_CONFIGURATION_INVALID` (avviso).
|
|
260
|
+
*/
|
|
261
|
+
autoSelectSingleChoice?: boolean;
|
|
256
262
|
scale?: number;
|
|
257
263
|
maxLength?: number;
|
|
258
264
|
/** 1..12 nella griglia della schermata: il frontend puo' ignorarla. */
|
|
@@ -1124,8 +1130,13 @@ interface FlowValidationResult {
|
|
|
1124
1130
|
/**
|
|
1125
1131
|
* Dove comparira' l'espressione. Non e' cosmesi: e' cio' che permette al motore di dire
|
|
1126
1132
|
* «qui serve un booleano» invece di accettare un'espressione che poi fallira' a runtime (§6.3).
|
|
1133
|
+
*
|
|
1134
|
+
* `Text` e' l'uso diverso dagli altri: cio' che si manda non e' un'espressione ma un **testo con
|
|
1135
|
+
* merge field** — il messaggio di un Custom Error, un text template, la scritta di un campo di
|
|
1136
|
+
* screen (§5.12) — e a essere verificate sono le isole `{!...}`, non la frase. Un testo che non
|
|
1137
|
+
* ne contiene si tiene per se': mandarlo si farebbe accusare ogni parola.
|
|
1127
1138
|
*/
|
|
1128
|
-
type FlowFormulaUsage = 'Resource' | 'Condition' | 'ValidationRule' | 'Value' | string;
|
|
1139
|
+
type FlowFormulaUsage = 'Resource' | 'Condition' | 'ValidationRule' | 'Value' | 'Text' | string;
|
|
1129
1140
|
/**
|
|
1130
1141
|
* L'unica primitiva della §6.3 che **avvolge** il documento invece di prenderlo nudo: oltre al
|
|
1131
1142
|
* flow deve portare l'espressione e cosa ci si aspetta che produca (§6.4, ultimo capoverso).
|
|
@@ -2523,7 +2534,14 @@ declare class FlowDictionaryStore {
|
|
|
2523
2534
|
* significa "non lo so", non "non esiste".
|
|
2524
2535
|
*/
|
|
2525
2536
|
isGlobalScopeVerifiable(scope: string | undefined | null): boolean;
|
|
2526
|
-
/**
|
|
2537
|
+
/**
|
|
2538
|
+
* I percorsi noti di uno scope, già prefissati: `$User.Email`.
|
|
2539
|
+
*
|
|
2540
|
+
* Il percorso **vuoto** e' lo scope stesso (§4.1): un host puo' dichiarare `$Profile` senza
|
|
2541
|
+
* punto — un'unica istanza invece dell'elenco dei suoi campi — e lì il riferimento e' il nome
|
|
2542
|
+
* dello scope. Concatenare comunque il punto produrrebbe `$Profile.`, che non e' un
|
|
2543
|
+
* riferimento di niente.
|
|
2544
|
+
*/
|
|
2527
2545
|
globalPathsOf(scope: string | undefined | null): string[];
|
|
2528
2546
|
/** §5.14 — la voce di `stageStepTypes` di un `actionType`. */
|
|
2529
2547
|
stageStepType(value: string | undefined | null): FlowStageStepTypeEntry | undefined;
|
|
@@ -5246,7 +5264,7 @@ declare class ConditionEditorComponent {
|
|
|
5246
5264
|
*/
|
|
5247
5265
|
hasTypeMismatch(condition: FlowCondition): boolean;
|
|
5248
5266
|
typeMismatchMessage(condition: FlowCondition): string;
|
|
5249
|
-
readonly logicMode: _angular_core.Signal<"
|
|
5267
|
+
readonly logicMode: _angular_core.Signal<"and" | "or" | "formula" | "custom">;
|
|
5250
5268
|
readonly customLogic: _angular_core.Signal<string>;
|
|
5251
5269
|
/** Feedback immediato sull'espressione: la verita' resta della validazione backend. */
|
|
5252
5270
|
readonly customLogicError: _angular_core.Signal<string | null>;
|
|
@@ -5351,7 +5369,7 @@ declare class RecordFilterEditorComponent {
|
|
|
5351
5369
|
* evita la ricerca di un campo che nell'elenco non c'e' e non ci sara'.
|
|
5352
5370
|
*/
|
|
5353
5371
|
readonly identifierNotFilterable: _angular_core.Signal<boolean>;
|
|
5354
|
-
readonly logicMode: _angular_core.Signal<"
|
|
5372
|
+
readonly logicMode: _angular_core.Signal<"and" | "or" | "formula" | "custom">;
|
|
5355
5373
|
readonly customLogic: _angular_core.Signal<string>;
|
|
5356
5374
|
readonly showEmptyWarning: _angular_core.Signal<boolean>;
|
|
5357
5375
|
addFilter(): void;
|
|
@@ -5513,6 +5531,107 @@ declare class ConnectorEditorComponent {
|
|
|
5513
5531
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConnectorEditorComponent, "fb-connector-editor", never, { "nodeName": { "alias": "nodeName"; "required": true; "isSignal": true; }; "node": { "alias": "node"; "required": true; "isSignal": true; }; "outlets": { "alias": "outlets"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; }, { "connectorChanged": "connectorChanged"; }, never, never, true, never>;
|
|
5514
5532
|
}
|
|
5515
5533
|
|
|
5534
|
+
declare class MergeTextEditorComponent {
|
|
5535
|
+
private readonly store;
|
|
5536
|
+
private readonly api;
|
|
5537
|
+
private readonly service;
|
|
5538
|
+
private readonly destroyRef;
|
|
5539
|
+
readonly text: _angular_core.InputSignal<string>;
|
|
5540
|
+
/**
|
|
5541
|
+
* Dove comparira'. Resta un input perche' un motore puo' distinguere il messaggio di un errore
|
|
5542
|
+
* dalla scritta di un campo, ma il valore giusto e' quasi sempre quello predefinito.
|
|
5543
|
+
*/
|
|
5544
|
+
readonly usage: _angular_core.InputSignal<string>;
|
|
5545
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
5546
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
5547
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
5548
|
+
readonly rows: _angular_core.InputSignal<number>;
|
|
5549
|
+
/** Come nel formula editor: `change` dove mutare il documento ridisegna mezza schermata. */
|
|
5550
|
+
readonly commitOn: _angular_core.InputSignal<"input" | "change">;
|
|
5551
|
+
readonly textChange: _angular_core.OutputEmitterRef<string>;
|
|
5552
|
+
private readonly area;
|
|
5553
|
+
/**
|
|
5554
|
+
* Il testo che si sta scrivendo. Non e' legato al DOM — la casella tiene il suo valore e la
|
|
5555
|
+
* `[value]` resta quella del documento — perche' riscrivere l'attributo a ogni tasto sposta il
|
|
5556
|
+
* cursore quando si corregge in mezzo alla frase.
|
|
5557
|
+
*/
|
|
5558
|
+
private readonly draft;
|
|
5559
|
+
private readonly _result;
|
|
5560
|
+
private readonly _isChecking;
|
|
5561
|
+
private timer?;
|
|
5562
|
+
/** Cresce a ogni richiesta: scarta le risposte di verifiche già superate. */
|
|
5563
|
+
private sequence;
|
|
5564
|
+
readonly result: _angular_core.Signal<FlowFormulaValidationResult | null>;
|
|
5565
|
+
readonly isChecking: _angular_core.Signal<boolean>;
|
|
5566
|
+
private readonly references;
|
|
5567
|
+
/** Il documento per cui l'elenco e' stato chiesto: evita una richiesta a ogni apertura. */
|
|
5568
|
+
private loadedFor;
|
|
5569
|
+
protected readonly isPickerOpen: _angular_core.WritableSignal<boolean>;
|
|
5570
|
+
protected readonly filter: _angular_core.WritableSignal<string>;
|
|
5571
|
+
/**
|
|
5572
|
+
* Cio' che si sta scrivendo **dentro** un'isola aperta, se il cursore ci sta dentro: e' la
|
|
5573
|
+
* seconda strada per inserire un nome, e la piu' rapida — chi ha scritto `{!Ord` non va a
|
|
5574
|
+
* cercare un bottone.
|
|
5575
|
+
*/
|
|
5576
|
+
private readonly token;
|
|
5577
|
+
protected readonly highlighted: _angular_core.WritableSignal<number>;
|
|
5578
|
+
readonly suggestions: _angular_core.Signal<FlowReference[]>;
|
|
5579
|
+
/** L'elenco del bottone: tutti i nomi, filtrati dalla ricerca. */
|
|
5580
|
+
readonly pickerOptions: _angular_core.Signal<FlowReference[]>;
|
|
5581
|
+
/** Un testo senza segnaposto non si manda: non c'e' niente da verificare (§5.12). */
|
|
5582
|
+
readonly hasMergeFields: _angular_core.Signal<boolean>;
|
|
5583
|
+
readonly issues: _angular_core.Signal<FlowFormulaIssue[]>;
|
|
5584
|
+
readonly hasErrors: _angular_core.Signal<boolean>;
|
|
5585
|
+
readonly isConfirmed: _angular_core.Signal<boolean>;
|
|
5586
|
+
/** Il motore c'e' come primitiva ma non come motore: si dice, non si tace (§6.3). */
|
|
5587
|
+
readonly isUnverified: _angular_core.Signal<boolean>;
|
|
5588
|
+
constructor();
|
|
5589
|
+
onInput(value: string): void;
|
|
5590
|
+
onCommit(value: string): void;
|
|
5591
|
+
onFocus(): void;
|
|
5592
|
+
onCaretMove(): void;
|
|
5593
|
+
onBlur(): void;
|
|
5594
|
+
/**
|
|
5595
|
+
* Le frecce scorrono i suggerimenti e Invio inserisce — ma **solo** quando ce ne sono: in un
|
|
5596
|
+
* testo Invio deve restare Invio, che qui e' un a capo dentro il messaggio.
|
|
5597
|
+
*/
|
|
5598
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
5599
|
+
togglePicker(): void;
|
|
5600
|
+
/**
|
|
5601
|
+
* Il bottone: scrive un'isola **intera** al punto del cursore, graffe comprese. Inserire il
|
|
5602
|
+
* solo nome lascerebbe all'utente il compito di ricordarsi la sintassi, che e' esattamente
|
|
5603
|
+
* cio' che il comando esiste per evitare.
|
|
5604
|
+
*/
|
|
5605
|
+
insertReference(name: string): void;
|
|
5606
|
+
/**
|
|
5607
|
+
* Il suggerimento dentro un'isola aperta: **completa** il nome e chiude la graffa.
|
|
5608
|
+
*
|
|
5609
|
+
* Non e' {@link insertReference}, ed e' la distinzione da non perdere: lì si scrive un'isola
|
|
5610
|
+
* nuova al punto del cursore, qui si sta già scrivendo dentro una — passare per l'altra strada
|
|
5611
|
+
* produce `{!IdOr{!IdOrdine}`, cioe' due aperture e un segnaposto che non si risolve.
|
|
5612
|
+
*/
|
|
5613
|
+
complete(name: string): void;
|
|
5614
|
+
/** Scrive nella casella e propaga: la casella e' la sorgente del testo mentre si digita. */
|
|
5615
|
+
private write;
|
|
5616
|
+
private loadReferences;
|
|
5617
|
+
/**
|
|
5618
|
+
* La parola sotto il cursore, **solo dentro un'isola aperta**: fuori dalle graffe si sta
|
|
5619
|
+
* scrivendo una frase, e proporre nomi di variabili a ogni parola sarebbe rumore.
|
|
5620
|
+
*/
|
|
5621
|
+
private refreshToken;
|
|
5622
|
+
severityOf(issue: FlowFormulaIssue): string;
|
|
5623
|
+
hasPosition(issue: FlowFormulaIssue): boolean;
|
|
5624
|
+
/** Il tratto citato dal rilievo, così il messaggio dice *dove* anche senza il salto. */
|
|
5625
|
+
excerptOf(issue: FlowFormulaIssue): string;
|
|
5626
|
+
/** Porta il cursore sul tratto segnalato: e' il payoff di `position`. */
|
|
5627
|
+
goToIssue(issue: FlowFormulaIssue): void;
|
|
5628
|
+
private schedule;
|
|
5629
|
+
private cancel;
|
|
5630
|
+
private check;
|
|
5631
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MergeTextEditorComponent, never>;
|
|
5632
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MergeTextEditorComponent, "fb-merge-text-editor", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "usage": { "alias": "usage"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "commitOn": { "alias": "commitOn"; "required": false; "isSignal": true; }; }, { "textChange": "textChange"; }, never, ["*"], true, never>;
|
|
5633
|
+
}
|
|
5634
|
+
|
|
5516
5635
|
/**
|
|
5517
5636
|
* `@Directive()` senza selettore: e' il modo in cui Angular riconosce come input quelli
|
|
5518
5637
|
* dichiarati su una classe base ereditata da piu' componenti.
|
|
@@ -6085,6 +6204,8 @@ declare class DynamicScreenInspectorComponent extends NodeInspectorBase {
|
|
|
6085
6204
|
readonly hasOutputConflict: _angular_core.Signal<boolean>;
|
|
6086
6205
|
/** §5.2 — la choice di default fuori dall'elenco e' un avviso, non un errore. */
|
|
6087
6206
|
readonly defaultChoiceIsForeign: _angular_core.Signal<boolean>;
|
|
6207
|
+
/** §5.2 — spunta spenta per default: si scrive solo il `true`. */
|
|
6208
|
+
readonly selectedAutoSelectsSingleChoice: _angular_core.Signal<boolean>;
|
|
6088
6209
|
/** §5.2 — `scale` su un campo non numerico e' `SCALE_NOT_APPLICABLE`. */
|
|
6089
6210
|
readonly scaleApplies: _angular_core.Signal<boolean>;
|
|
6090
6211
|
readonly requiresObjectType: _angular_core.Signal<boolean>;
|
|
@@ -6112,6 +6233,11 @@ declare class DynamicScreenInspectorComponent extends NodeInspectorBase {
|
|
|
6112
6233
|
setRequired(value: boolean): void;
|
|
6113
6234
|
/** `isEditable` ha default `true`: si scrive solo il `false`, che e' la scelta significativa. */
|
|
6114
6235
|
setEditable(value: boolean): void;
|
|
6236
|
+
/**
|
|
6237
|
+
* §5.2 — la spunta e' spenta per default, quindi nel documento va **solo** il `true`: scriverla
|
|
6238
|
+
* a `false` sarebbe una scelta che nessuno ha fatto su un campo che il contratto omette.
|
|
6239
|
+
*/
|
|
6240
|
+
setAutoSelectSingleChoice(value: boolean): void;
|
|
6115
6241
|
addChoice(name: string | undefined): void;
|
|
6116
6242
|
removeChoice(index: number): void;
|
|
6117
6243
|
moveChoice(index: number, direction: -1 | 1): void;
|
|
@@ -6163,6 +6289,13 @@ declare class DynamicScreenInspectorComponent extends NodeInspectorBase {
|
|
|
6163
6289
|
actionHasNoTrigger(action: FlowScreenAction): boolean;
|
|
6164
6290
|
/** §5.2 — senza campo e senza `initBehavior` il trigger non scattera' mai: `SCREEN_TRIGGER_WITHOUT_CAUSE`. */
|
|
6165
6291
|
triggerHasNoCause(trigger: FlowScreenTrigger): boolean;
|
|
6292
|
+
/**
|
|
6293
|
+
* §5.2 — `runOnLoad` **non serve** per il caso comune: un trigger il cui campo osservato porta un
|
|
6294
|
+
* `defaultValue` non vuoto scatta comunque all'arrivo sulla schermata, perche' un campo precompilato
|
|
6295
|
+
* dal flow conta come un campo che ha preso un valore. Dirlo qui evita di scriverlo per sicurezza e
|
|
6296
|
+
* poi chiedersi perche' l'action gira due volte.
|
|
6297
|
+
*/
|
|
6298
|
+
triggerFiresOnLoadByDefault(trigger: FlowScreenTrigger): boolean;
|
|
6166
6299
|
/**
|
|
6167
6300
|
* §5.2 — l'unico valore ammesso e' `runOnLoad`. Il `runOnRevisit` della specifica Salesforce e'
|
|
6168
6301
|
* `SCREEN_TRIGGER_INIT_BEHAVIOR_UNKNOWN`, e vale la pena dirlo qui: chi arriva da quella
|
|
@@ -7110,5 +7243,5 @@ declare class SelectValueDirective implements AfterViewChecked {
|
|
|
7110
7243
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectValueDirective, "select[fbValue]", never, { "fbValue": { "alias": "fbValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7111
7244
|
}
|
|
7112
7245
|
|
|
7113
|
-
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_FOLD_HEIGHT, FLOW_FOLD_WIDTH, FLOW_GROUP_COLORS, 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, FieldValuePickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowClipboardService, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, FormulaEditorComponent, FormulaValidationService, GROUP_HEADER_HEIGHT, GROUP_MIN_HEIGHT, GROUP_MIN_WIDTH, GROUP_PADDING, GroupPanelComponent, HttpFlowBuilderApi, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, PasteDialogComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourceDialogComponent, ResourceFormComponent, 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, boundsAround, buildClipboardPayload, canvasFoldId, canvasGroupId, canvasNodeId, checkConditionLogic, checkFlowName, choiceSetSourceOf, declaredChoiceSetSources, describeFieldPath, describePathEntry, duplicateField, elementIcon, emptyFlowDefinition, enumChoiceSetFieldType, fieldAt, filterReferences, flattenFields, flowNodeWidth, flowNodeWidthClass, foldSourceConnectorId, foldTargetConnectorId, groupColorClass, groupRect, hasAutoSize, innerNamesOf, insertField, isClipboardPayload, isCustomConditionLogic, isEmptyReferenceFilter, isFieldResource, isFoldReference, isGlobalReference, isNumericType, isPathInside, isTypeCheckedOperator, isUnknownEnumChoiceSetField, isValidFlowName, isValued, loadPathLevel, matchesReferenceFilter, membersInside, moveCondition, moveField, navigatePath, otherSourceFieldsOf, outletByKey, outletsOf, parseCanvasFoldId, parseCanvasGroupId, parseCanvasNodeId, parseFieldPath, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathKey, pathNotVerifiableMessage, planPaste, recomputeMembers, referenceRoot, referencedRootsOf, remapConditionLogic, removeCondition, removeField, resolvePath, rewriteReferences, sameMembers, samePath, screenActionNames, screenFieldNames, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, typeOfCollection, uniqueFlowName, valuedFieldOf, valuedFieldsOf, variantFieldOf, variantOf, variantPresetOf };
|
|
7246
|
+
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_FOLD_HEIGHT, FLOW_FOLD_WIDTH, FLOW_GROUP_COLORS, 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, FieldValuePickerComponent, FlowApiError, FlowBuilderApi, FlowBuilderComponent, FlowCanvasComponent, FlowCatalogStore, FlowClipboardService, FlowDictionaryStore, FlowDocumentStore, FlowEditorSession, FlowLayoutService, FlowValidationStore, FormulaEditorComponent, FormulaValidationService, GROUP_HEADER_HEIGHT, GROUP_MIN_HEIGHT, GROUP_MIN_WIDTH, GROUP_PADDING, GroupPanelComponent, HttpFlowBuilderApi, MergeTextEditorComponent, NamePickerComponent, NodeInspectorBase, ORCHESTRATION_CONDITION_OUTPUT, ObjectPickerComponent, OrchestratedStageInspectorComponent, ParameterEditorComponent, PasteDialogComponent, ProblemsPanelComponent, RecordFilterEditorComponent, ReferencePickerComponent, ResourceDialogComponent, ResourceFormComponent, 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, boundsAround, buildClipboardPayload, canvasFoldId, canvasGroupId, canvasNodeId, checkConditionLogic, checkFlowName, choiceSetSourceOf, declaredChoiceSetSources, describeFieldPath, describePathEntry, duplicateField, elementIcon, emptyFlowDefinition, enumChoiceSetFieldType, fieldAt, filterReferences, flattenFields, flowNodeWidth, flowNodeWidthClass, foldSourceConnectorId, foldTargetConnectorId, groupColorClass, groupRect, hasAutoSize, innerNamesOf, insertField, isClipboardPayload, isCustomConditionLogic, isEmptyReferenceFilter, isFieldResource, isFoldReference, isGlobalReference, isNumericType, isPathInside, isTypeCheckedOperator, isUnknownEnumChoiceSetField, isValidFlowName, isValued, loadPathLevel, matchesReferenceFilter, membersInside, moveCondition, moveField, navigatePath, otherSourceFieldsOf, outletByKey, outletsOf, parseCanvasFoldId, parseCanvasGroupId, parseCanvasNodeId, parseFieldPath, parseInvariantNumber, parseSourceConnectorId, parseTargetConnectorId, pathAvailableNames, pathContainerLabel, pathKey, pathNotVerifiableMessage, planPaste, recomputeMembers, referenceRoot, referencedRootsOf, remapConditionLogic, removeCondition, removeField, resolvePath, rewriteReferences, sameMembers, samePath, screenActionNames, screenFieldNames, severityBucket, slugifyFlowName, sourceConnectorId, stageStepNames, stageStepOutputReferenced, stepsOf, targetConnectorId, typeOfCollection, uniqueFlowName, valuedFieldOf, valuedFieldsOf, variantFieldOf, variantOf, variantPresetOf };
|
|
7114
7247
|
export type { ChoiceSetSource, FieldAssignmentHolder, FilterFieldOption, FilterHolder, FlowActionCall, FlowAnyNode, FlowAssignment, FlowAssignmentItem, FlowAssignmentOperator, FlowAssignmentOperatorEntry, FlowBuilderHttpConfig, FlowCanvasEdge, FlowCanvasFold, FlowCanvasGroup, 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, FlowFormulaFunction, FlowFormulaFunctionParameter, FlowFormulaIssue, FlowFormulaUsage, FlowFormulaValidationRequest, FlowFormulaValidationResult, FlowGlobalVariableEntry, FlowGroup, FlowGroupRef, FlowGroupTarget, FlowInputFieldAssignment, FlowInputParameter, FlowInterviewResult, FlowInterviewStatus, FlowIssueSeverity, FlowLayoutDirection, FlowLayoutNodeInput, FlowLayoutOptions, FlowLayoutResult, FlowListQuery, FlowLoop, FlowNameCheck, FlowNameProblem, FlowNewVersionRequest, FlowNodeBase, FlowNodeCollection, FlowNodeRef, FlowObjectDescription, FlowObjectSummary, FlowOffsetUnit, FlowOrchestratedStage, FlowOutlet, FlowOutline, FlowOutlineConnection, FlowOutlineGroup, FlowOutlineNode, FlowOutputFieldAssignment, FlowOutputParameter, FlowPalettePick, FlowPastePlan, FlowPasteRename, FlowPasteResource, FlowPendingScreen, FlowProcessType, FlowRecordCreate, FlowRecordDelete, FlowRecordFilter, FlowRecordFilterOperator, FlowRecordLookup, FlowRecordRollback, FlowRecordTriggerType, FlowRecordUpdate, FlowRecordValue, FlowRect, FlowReference, FlowReferenceFilter, FlowReferenceKind, FlowRegionContainerType, FlowResourceCollection, FlowResourceEdit, FlowResourceKindEntry, FlowResourceRef, FlowResourceTarget, 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, PathValueSet, StructureMemberUsage, ValueMode };
|