@masterteam/workflow 0.0.33 → 0.0.35
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/workflow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.35",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/workflow",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"tailwindcss": "^4.2.2",
|
|
20
20
|
"tailwindcss-primeui": "^0.6.1",
|
|
21
21
|
"@ngxs/store": "^20.1.0",
|
|
22
|
-
"@masterteam/notification": "^0.0.20",
|
|
23
|
-
"@masterteam/components": "^0.0.150",
|
|
24
|
-
"@masterteam/structure-builder": "^0.0.48",
|
|
25
22
|
"@masterteam/icons": "^0.0.14",
|
|
23
|
+
"@masterteam/forms": "^0.0.72",
|
|
26
24
|
"@masterteam/form-builder": "^0.0.25",
|
|
27
|
-
"@masterteam/
|
|
25
|
+
"@masterteam/structure-builder": "^0.0.50",
|
|
26
|
+
"@masterteam/components": "^0.0.158",
|
|
27
|
+
"@masterteam/notification": "^0.0.20"
|
|
28
28
|
},
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"exports": {
|
|
@@ -451,6 +451,12 @@ declare class WorkflowBuilder {
|
|
|
451
451
|
readonly draftAppActionDescriptor: _angular_core.WritableSignal<WorkflowAppActionDescriptor | null>;
|
|
452
452
|
readonly nodeFields: _angular_core.WritableSignal<{
|
|
453
453
|
name: string;
|
|
454
|
+
icon: string;
|
|
455
|
+
color: string;
|
|
456
|
+
subtitle: string;
|
|
457
|
+
badge: string;
|
|
458
|
+
status: string;
|
|
459
|
+
style: string;
|
|
454
460
|
}>;
|
|
455
461
|
readonly workflow: _angular_core.Signal<_masterteam_workflow.WorkflowSchema | null>;
|
|
456
462
|
readonly workflows: _angular_core.Signal<_masterteam_workflow.WorkflowListItem[]>;
|
|
@@ -522,6 +528,8 @@ declare class WorkflowBuilder {
|
|
|
522
528
|
supportedScopes: string[];
|
|
523
529
|
icon: string;
|
|
524
530
|
color: string;
|
|
531
|
+
subtitle: string;
|
|
532
|
+
style: string;
|
|
525
533
|
} | {
|
|
526
534
|
id: string;
|
|
527
535
|
type: WorkflowStepType;
|
|
@@ -534,6 +542,7 @@ declare class WorkflowBuilder {
|
|
|
534
542
|
targetType: string;
|
|
535
543
|
icon: string;
|
|
536
544
|
color: string;
|
|
545
|
+
subtitle: string;
|
|
537
546
|
})[]>;
|
|
538
547
|
readonly nodeActions: _angular_core.WritableSignal<({
|
|
539
548
|
key: string;
|
|
@@ -561,6 +570,10 @@ declare class WorkflowBuilder {
|
|
|
561
570
|
}>;
|
|
562
571
|
readonly steps: _angular_core.Signal<{
|
|
563
572
|
color: string;
|
|
573
|
+
icon: string;
|
|
574
|
+
subtitle: string;
|
|
575
|
+
badge: string | null;
|
|
576
|
+
style: string;
|
|
564
577
|
id: number;
|
|
565
578
|
name: string | Record<string, string>;
|
|
566
579
|
sla: number;
|