@ddd-tool/domain-designer-ui-component 0.1.0-beta.7 → 0.1.0-beta.9
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/components/nomnoml/base-style.d.ts +2 -0
- package/domain/diagram-agg/define.d.ts +19 -0
- package/domain/diagram-agg/index.d.ts +2074 -3
- package/domain/diagram-agg/plugins.d.ts +64 -0
- package/domain/i18n-agg/message.d.ts +1 -1
- package/domain/mount-plugin.d.ts +1 -0
- package/index.css +1 -1
- package/index.d.ts +1 -0
- package/index.js +4382 -4237
- package/package.json +3 -2
- package/components/nomnoml/style.d.ts +0 -2
|
@@ -1 +1,20 @@
|
|
|
1
1
|
export declare const EMPTY_STORY = "__Empty__";
|
|
2
|
+
export declare const VALID_RANKERS: Readonly<{
|
|
3
|
+
NetworkSimplex: "network-simplex";
|
|
4
|
+
TightTree: "tight-tree";
|
|
5
|
+
LongestPath: "longest-path";
|
|
6
|
+
}>;
|
|
7
|
+
export type Ranker = (typeof VALID_RANKERS)[keyof typeof VALID_RANKERS];
|
|
8
|
+
export declare const VALID_EDGE_TYPES: Readonly<{
|
|
9
|
+
Rounded: "rounded";
|
|
10
|
+
Hard: "hard";
|
|
11
|
+
}>;
|
|
12
|
+
export type EdgeType = (typeof VALID_EDGE_TYPES)[keyof typeof VALID_EDGE_TYPES];
|
|
13
|
+
export type RenderConfig = {
|
|
14
|
+
ranker: Ranker;
|
|
15
|
+
padding: number;
|
|
16
|
+
fontSize: number;
|
|
17
|
+
edges: EdgeType;
|
|
18
|
+
bendSize: number;
|
|
19
|
+
};
|
|
20
|
+
export declare function defaultRenderConfig(): RenderConfig;
|