@masterteam/flowplus-workflow 0.0.1 → 0.0.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/flowplus-workflow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "FlowPlus2 design-time workflow builder package — Studio, Builder, inspectors, canvas (Foblex), validation, layout persistence, publish flow. Runtime task action / process start / client form rendering live in @masterteam/work-center and @masterteam/forms/client-form, not here.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"directory": "../../../dist/masterteam/flowplus-workflow",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"tailwindcss-primeui": "^0.6.1",
|
|
26
26
|
"dagre": "^0.8.5",
|
|
27
27
|
"@ngxs/store": "^20.1.0",
|
|
28
|
-
"@masterteam/components": "^0.0.
|
|
28
|
+
"@masterteam/components": "^0.0.177",
|
|
29
29
|
"@masterteam/forms": "^0.0.81",
|
|
30
30
|
"@masterteam/icons": "^0.0.15"
|
|
31
31
|
},
|
|
@@ -15,6 +15,7 @@ import * as i1 from '@foblex/flow';
|
|
|
15
15
|
import { FFlowComponent, FCanvasComponent, EFMarkerType, FCanvasChangeEvent, FCreateNodeEvent, FCreateConnectionEvent, FReassignConnectionEvent, FDragStartedEvent, FMoveNodesEvent, FSelectionChangeEvent } from '@foblex/flow';
|
|
16
16
|
import { IPoint } from '@foblex/2d';
|
|
17
17
|
import { ColumnDef, TableAction } from '@masterteam/components/table';
|
|
18
|
+
import { OptionItem } from '@masterteam/components/tabs';
|
|
18
19
|
|
|
19
20
|
/**
|
|
20
21
|
* Common API envelope used by FlowPlus2 backend.
|
|
@@ -4992,11 +4993,7 @@ declare class InspectorShellComponent {
|
|
|
4992
4993
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InspectorShellComponent, "fp-inspector-shell", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "stepChange": "stepChange"; "connectionChange": "connectionChange"; "workflowChange": "workflowChange"; "closeRequested": "closeRequested"; }, never, never, true, never>;
|
|
4993
4994
|
}
|
|
4994
4995
|
|
|
4995
|
-
|
|
4996
|
-
label: string;
|
|
4997
|
-
value: string;
|
|
4998
|
-
badge?: number | null;
|
|
4999
|
-
}
|
|
4996
|
+
type BottomTabOption = Pick<OptionItem, 'label' | 'value' | 'badge' | 'icon' | 'severity'>;
|
|
5000
4997
|
interface ContextSourceRowVm {
|
|
5001
4998
|
key: string;
|
|
5002
4999
|
source: WorkflowContextCatalogSourceDto;
|
|
@@ -5022,6 +5019,10 @@ declare class BottomPanelComponent {
|
|
|
5022
5019
|
readonly contextRows: _angular_core.Signal<ContextSourceRowVm[]>;
|
|
5023
5020
|
readonly contextColumns: _angular_core.Signal<ColumnDef[]>;
|
|
5024
5021
|
issueCount(): number;
|
|
5022
|
+
issueIcon(): MTIcon;
|
|
5023
|
+
issueSeverity(): BottomTabOption['severity'];
|
|
5024
|
+
runtimeSeverity(): BottomTabOption['severity'];
|
|
5025
|
+
private validationIssues;
|
|
5025
5026
|
refreshRuntimeOverlay(): void;
|
|
5026
5027
|
clearReplay(): void;
|
|
5027
5028
|
openRuns(): void;
|
|
@@ -5105,7 +5106,7 @@ interface ValidationGroupVm {
|
|
|
5105
5106
|
description: string;
|
|
5106
5107
|
icon: MTIcon;
|
|
5107
5108
|
issues: WorkflowValidationIssueDto[];
|
|
5108
|
-
tone: 'neutral' | '
|
|
5109
|
+
tone: 'neutral' | 'danger' | 'warn' | 'info';
|
|
5109
5110
|
}
|
|
5110
5111
|
interface ValidationIssueRowVm {
|
|
5111
5112
|
key: string;
|
|
@@ -5119,6 +5120,7 @@ interface ValidationIssueRowVm {
|
|
|
5119
5120
|
color: string;
|
|
5120
5121
|
};
|
|
5121
5122
|
}
|
|
5123
|
+
type ProblemTabSeverity = NonNullable<OptionItem['severity']>;
|
|
5122
5124
|
declare class ProblemsPanelComponent {
|
|
5123
5125
|
readonly store: FlowplusWorkflowFacade;
|
|
5124
5126
|
private readonly transloco;
|
|
@@ -5130,24 +5132,19 @@ declare class ProblemsPanelComponent {
|
|
|
5130
5132
|
readonly issueGroups: _angular_core.Signal<ValidationGroupVm[]>;
|
|
5131
5133
|
readonly selectedGroup: _angular_core.Signal<ValidationGroupVm>;
|
|
5132
5134
|
readonly selectedIssues: _angular_core.Signal<WorkflowValidationIssueDto[]>;
|
|
5135
|
+
readonly issueGroupOptions: _angular_core.Signal<OptionItem[]>;
|
|
5133
5136
|
readonly issueRows: _angular_core.Signal<ValidationIssueRowVm[]>;
|
|
5134
5137
|
readonly issueColumns: _angular_core.Signal<ColumnDef[]>;
|
|
5135
5138
|
issueKey(i: WorkflowValidationIssueDto): string;
|
|
5136
5139
|
selectGroup(group: ValidationGroupVm): void;
|
|
5140
|
+
selectGroupKey(value: WorkflowValidationGroupKey): void;
|
|
5137
5141
|
selectIssue(issue: WorkflowValidationIssueDto): void;
|
|
5138
5142
|
selectIssueRow(row: ValidationIssueRowVm): void;
|
|
5139
5143
|
severityIcon(i: WorkflowValidationIssueDto): MTIcon;
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
severityPillClass(i: WorkflowValidationIssueDto): string;
|
|
5143
|
-
issueCellClass(row: ValidationIssueRowVm): string;
|
|
5144
|
-
groupButtonClass(group: ValidationGroupVm): string;
|
|
5145
|
-
groupIconClass(group: ValidationGroupVm): string;
|
|
5146
|
-
groupIssueBadge(group: ValidationGroupVm): string;
|
|
5147
|
-
issueTableRowClass(issue: WorkflowValidationIssueDto): string;
|
|
5144
|
+
groupIssueBadge(group: ValidationGroupVm): string | null;
|
|
5145
|
+
groupSeverity(group: ValidationGroupVm): ProblemTabSeverity;
|
|
5148
5146
|
message(i: WorkflowValidationIssueDto): string;
|
|
5149
5147
|
targetLabel(i: WorkflowValidationIssueDto): string;
|
|
5150
|
-
blocksPublishLabel(i: WorkflowValidationIssueDto): string;
|
|
5151
5148
|
detailValue(value: unknown): string;
|
|
5152
5149
|
private group;
|
|
5153
5150
|
private statusValue;
|