@plait/mind 0.82.0-next.0 → 0.83.0
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/constants/default.d.ts +8 -5
- package/fesm2022/plait-mind.mjs +357 -319
- package/fesm2022/plait-mind.mjs.map +1 -1
- package/generators/node-more.generator.d.ts +30 -0
- package/mind-node.component.d.ts +3 -7
- package/package.json +1 -1
- package/plugins/with-node-more.d.ts +10 -0
- package/styles/styles.scss +16 -56
- package/utils/clipboard.d.ts +1 -1
- package/utils/common.d.ts +1 -1
- package/utils/point-placement.d.ts +0 -3
- package/generators/node-collapse.generator.d.ts +0 -8
- package/generators/node-plus.generator.d.ts +0 -7
- package/plugins/with-node-hover-hit-test.d.ts +0 -2
- package/utils/node-hover/extend.d.ts +0 -9
package/constants/default.d.ts
CHANGED
|
@@ -3,11 +3,14 @@ export declare const BASE = 4;
|
|
|
3
3
|
export declare const PRIMARY_COLOR = "#6698FF";
|
|
4
4
|
export declare const GRAY_COLOR = "#AAAAAA";
|
|
5
5
|
export declare const STROKE_WIDTH = 3;
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
6
|
+
export declare const RESIZE_HANDLE_BUFFER_DISTANCE = 8;
|
|
7
|
+
export declare const NODE_MORE_LINE_DISTANCE = 10;
|
|
8
|
+
export declare const NODE_MORE_STROKE_WIDTH = 2;
|
|
9
|
+
export declare const NODE_MORE_ICON_DIAMETER = 20;
|
|
10
|
+
export declare const NODE_MORE_BRIDGE_DISTANCE = 10;
|
|
11
|
+
export declare const NODE_ADD_CIRCLE_COLOR: string;
|
|
12
|
+
export declare const NODE_ADD_HOVER_COLOR = "#6698FF";
|
|
13
|
+
export declare const NODE_ADD_INNER_CROSS_COLOR = "white";
|
|
11
14
|
export declare const DEFAULT_MIND_IMAGE_WIDTH = 240;
|
|
12
15
|
export declare enum MindI18nKey {
|
|
13
16
|
mindCentralText = "mind-center-text",
|