@ddd-tool/domain-designer-ui-component 0.1.0-beta.11 → 0.1.0-beta.12
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/domain/diagram-agg/gen-code.d.ts +2 -2
- package/domain/diagram-agg/index.d.ts +45 -45
- package/index.css +1 -1
- package/index.js +15863 -23784
- package/package.json +12 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DomainDesigner } from '@ddd-tool/domain-designer-core';
|
|
2
2
|
export declare function nomnomlCodeGenerator<T extends DomainDesigner>(params: {
|
|
3
3
|
design: T;
|
|
4
4
|
currentStory: string;
|
|
@@ -11,7 +11,7 @@ export declare function filterContext(params: {
|
|
|
11
11
|
displayReadModel: boolean;
|
|
12
12
|
displaySystem: boolean;
|
|
13
13
|
}): {
|
|
14
|
-
aggs: DomainDesignAgg<any>[];
|
|
14
|
+
aggs: import("@ddd-tool/domain-designer-core").DomainDesignAgg<any>[];
|
|
15
15
|
commands: import("@ddd-tool/domain-designer-core").DomainDesignCommand<any>[];
|
|
16
16
|
facadeCommands: import("@ddd-tool/domain-designer-core").DomainDesignFacadeCommand<any>[];
|
|
17
17
|
events: import("@ddd-tool/domain-designer-core").DomainDesignEvent<any>[];
|
|
@@ -793,17 +793,17 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
793
793
|
}>;
|
|
794
794
|
events: Readonly<{
|
|
795
795
|
onFocusNode: {
|
|
796
|
-
latestVersion:
|
|
797
|
-
|
|
796
|
+
latestVersion: Readonly<string>;
|
|
797
|
+
listen: (cb: (event: {
|
|
798
798
|
data: {
|
|
799
799
|
readonly id: string | undefined;
|
|
800
800
|
};
|
|
801
801
|
version: string;
|
|
802
|
-
}) => void) =>
|
|
802
|
+
}) => void) => () => void;
|
|
803
803
|
};
|
|
804
804
|
onFocusFlow: {
|
|
805
|
-
latestVersion:
|
|
806
|
-
|
|
805
|
+
latestVersion: Readonly<string>;
|
|
806
|
+
listen: (cb: (event: {
|
|
807
807
|
data: {
|
|
808
808
|
readonly userStory: string;
|
|
809
809
|
readonly workflow: string | undefined;
|
|
@@ -811,14 +811,14 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
811
811
|
readonly displaySystem: boolean;
|
|
812
812
|
};
|
|
813
813
|
version: string;
|
|
814
|
-
}) => void) =>
|
|
814
|
+
}) => void) => () => void;
|
|
815
815
|
};
|
|
816
816
|
onDownloadSvg: {
|
|
817
|
-
latestVersion:
|
|
818
|
-
|
|
817
|
+
latestVersion: Readonly<string>;
|
|
818
|
+
listen: (cb: (event: {
|
|
819
819
|
data: {};
|
|
820
820
|
version: string;
|
|
821
|
-
}) => void) =>
|
|
821
|
+
}) => void) => () => void;
|
|
822
822
|
};
|
|
823
823
|
}>;
|
|
824
824
|
}>;
|
|
@@ -1549,17 +1549,17 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
1549
1549
|
}>;
|
|
1550
1550
|
events: Readonly<{
|
|
1551
1551
|
onFocusNode: {
|
|
1552
|
-
latestVersion:
|
|
1553
|
-
|
|
1552
|
+
latestVersion: Readonly<string>;
|
|
1553
|
+
listen: (cb: (event: {
|
|
1554
1554
|
data: {
|
|
1555
1555
|
readonly id: string | undefined;
|
|
1556
1556
|
};
|
|
1557
1557
|
version: string;
|
|
1558
|
-
}) => void) =>
|
|
1558
|
+
}) => void) => () => void;
|
|
1559
1559
|
};
|
|
1560
1560
|
onFocusFlow: {
|
|
1561
|
-
latestVersion:
|
|
1562
|
-
|
|
1561
|
+
latestVersion: Readonly<string>;
|
|
1562
|
+
listen: (cb: (event: {
|
|
1563
1563
|
data: {
|
|
1564
1564
|
readonly userStory: string;
|
|
1565
1565
|
readonly workflow: string | undefined;
|
|
@@ -1567,14 +1567,14 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
1567
1567
|
readonly displaySystem: boolean;
|
|
1568
1568
|
};
|
|
1569
1569
|
version: string;
|
|
1570
|
-
}) => void) =>
|
|
1570
|
+
}) => void) => () => void;
|
|
1571
1571
|
};
|
|
1572
1572
|
onDownloadSvg: {
|
|
1573
|
-
latestVersion:
|
|
1574
|
-
|
|
1573
|
+
latestVersion: Readonly<string>;
|
|
1574
|
+
listen: (cb: (event: {
|
|
1575
1575
|
data: {};
|
|
1576
1576
|
version: string;
|
|
1577
|
-
}) => void) =>
|
|
1577
|
+
}) => void) => () => void;
|
|
1578
1578
|
};
|
|
1579
1579
|
}>;
|
|
1580
1580
|
}>;
|
|
@@ -2367,17 +2367,17 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
2367
2367
|
}>;
|
|
2368
2368
|
events: Readonly<{
|
|
2369
2369
|
onFocusNode: {
|
|
2370
|
-
latestVersion:
|
|
2371
|
-
|
|
2370
|
+
latestVersion: Readonly<string>;
|
|
2371
|
+
listen: (cb: (event: {
|
|
2372
2372
|
data: {
|
|
2373
2373
|
readonly id: string | undefined;
|
|
2374
2374
|
};
|
|
2375
2375
|
version: string;
|
|
2376
|
-
}) => void) =>
|
|
2376
|
+
}) => void) => () => void;
|
|
2377
2377
|
};
|
|
2378
2378
|
onFocusFlow: {
|
|
2379
|
-
latestVersion:
|
|
2380
|
-
|
|
2379
|
+
latestVersion: Readonly<string>;
|
|
2380
|
+
listen: (cb: (event: {
|
|
2381
2381
|
data: {
|
|
2382
2382
|
readonly userStory: string;
|
|
2383
2383
|
readonly workflow: string | undefined;
|
|
@@ -2385,14 +2385,14 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
2385
2385
|
readonly displaySystem: boolean;
|
|
2386
2386
|
};
|
|
2387
2387
|
version: string;
|
|
2388
|
-
}) => void) =>
|
|
2388
|
+
}) => void) => () => void;
|
|
2389
2389
|
};
|
|
2390
2390
|
onDownloadSvg: {
|
|
2391
|
-
latestVersion:
|
|
2392
|
-
|
|
2391
|
+
latestVersion: Readonly<string>;
|
|
2392
|
+
listen: (cb: (event: {
|
|
2393
2393
|
data: {};
|
|
2394
2394
|
version: string;
|
|
2395
|
-
}) => void) =>
|
|
2395
|
+
}) => void) => () => void;
|
|
2396
2396
|
};
|
|
2397
2397
|
}>;
|
|
2398
2398
|
}>;
|
|
@@ -3122,17 +3122,17 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
3122
3122
|
}>;
|
|
3123
3123
|
events: Readonly<{
|
|
3124
3124
|
onFocusNode: {
|
|
3125
|
-
latestVersion:
|
|
3126
|
-
|
|
3125
|
+
latestVersion: Readonly<string>;
|
|
3126
|
+
listen: (cb: (event: {
|
|
3127
3127
|
data: {
|
|
3128
3128
|
readonly id: string | undefined;
|
|
3129
3129
|
};
|
|
3130
3130
|
version: string;
|
|
3131
|
-
}) => void) =>
|
|
3131
|
+
}) => void) => () => void;
|
|
3132
3132
|
};
|
|
3133
3133
|
onFocusFlow: {
|
|
3134
|
-
latestVersion:
|
|
3135
|
-
|
|
3134
|
+
latestVersion: Readonly<string>;
|
|
3135
|
+
listen: (cb: (event: {
|
|
3136
3136
|
data: {
|
|
3137
3137
|
readonly userStory: string;
|
|
3138
3138
|
readonly workflow: string | undefined;
|
|
@@ -3140,14 +3140,14 @@ export declare const DiagramPluginHelper: Readonly<{
|
|
|
3140
3140
|
readonly displaySystem: boolean;
|
|
3141
3141
|
};
|
|
3142
3142
|
version: string;
|
|
3143
|
-
}) => void) =>
|
|
3143
|
+
}) => void) => () => void;
|
|
3144
3144
|
};
|
|
3145
3145
|
onDownloadSvg: {
|
|
3146
|
-
latestVersion:
|
|
3147
|
-
|
|
3146
|
+
latestVersion: Readonly<string>;
|
|
3147
|
+
listen: (cb: (event: {
|
|
3148
3148
|
data: {};
|
|
3149
3149
|
version: string;
|
|
3150
|
-
}) => void) =>
|
|
3150
|
+
}) => void) => () => void;
|
|
3151
3151
|
};
|
|
3152
3152
|
}>;
|
|
3153
3153
|
}>;
|
|
@@ -3788,17 +3788,17 @@ export declare function useDiagramAgg(data?: Record<string, DomainDesigner>): Re
|
|
|
3788
3788
|
}>;
|
|
3789
3789
|
events: Readonly<{
|
|
3790
3790
|
onFocusNode: {
|
|
3791
|
-
latestVersion:
|
|
3792
|
-
|
|
3791
|
+
latestVersion: Readonly<string>;
|
|
3792
|
+
listen: (cb: (event: {
|
|
3793
3793
|
data: {
|
|
3794
3794
|
readonly id: string | undefined;
|
|
3795
3795
|
};
|
|
3796
3796
|
version: string;
|
|
3797
|
-
}) => void) =>
|
|
3797
|
+
}) => void) => () => void;
|
|
3798
3798
|
};
|
|
3799
3799
|
onFocusFlow: {
|
|
3800
|
-
latestVersion:
|
|
3801
|
-
|
|
3800
|
+
latestVersion: Readonly<string>;
|
|
3801
|
+
listen: (cb: (event: {
|
|
3802
3802
|
data: {
|
|
3803
3803
|
readonly userStory: string;
|
|
3804
3804
|
readonly workflow: string | undefined;
|
|
@@ -3806,14 +3806,14 @@ export declare function useDiagramAgg(data?: Record<string, DomainDesigner>): Re
|
|
|
3806
3806
|
readonly displaySystem: boolean;
|
|
3807
3807
|
};
|
|
3808
3808
|
version: string;
|
|
3809
|
-
}) => void) =>
|
|
3809
|
+
}) => void) => () => void;
|
|
3810
3810
|
};
|
|
3811
3811
|
onDownloadSvg: {
|
|
3812
|
-
latestVersion:
|
|
3813
|
-
|
|
3812
|
+
latestVersion: Readonly<string>;
|
|
3813
|
+
listen: (cb: (event: {
|
|
3814
3814
|
data: {};
|
|
3815
3815
|
version: string;
|
|
3816
|
-
}) => void) =>
|
|
3816
|
+
}) => void) => () => void;
|
|
3817
3817
|
};
|
|
3818
3818
|
}>;
|
|
3819
3819
|
}>;
|
package/index.css
CHANGED