@masterteam/workflow 0.0.37 → 0.0.38

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.37",
3
+ "version": "0.0.38",
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/forms": "^0.0.72",
23
- "@masterteam/icons": "^0.0.14",
22
+ "@masterteam/components": "^0.0.163",
24
23
  "@masterteam/form-builder": "^0.0.25",
25
24
  "@masterteam/notification": "^0.0.20",
26
25
  "@masterteam/structure-builder": "^0.0.52",
27
- "@masterteam/components": "^0.0.162"
26
+ "@masterteam/icons": "^0.0.14",
27
+ "@masterteam/forms": "^0.0.72"
28
28
  },
29
29
  "sideEffects": false,
30
30
  "exports": {
@@ -684,13 +684,21 @@ declare class WorkflowBuilder {
684
684
  isProcessBuilder: boolean;
685
685
  }>;
686
686
  readonly steps: _angular_core.Signal<{
687
+ name: {
688
+ display: string;
689
+ en?: undefined;
690
+ ar?: undefined;
691
+ } | {
692
+ display: string;
693
+ en: string;
694
+ ar: string;
695
+ };
687
696
  color: string;
688
697
  icon: string;
689
698
  subtitle: string;
690
699
  badge: string | null;
691
700
  style: string;
692
701
  id: number;
693
- name: string | Record<string, string>;
694
702
  sla: number;
695
703
  isInitial: boolean;
696
704
  type: WorkflowStepType;