@plait/draw 0.82.0 → 0.83.1
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/line.d.ts +3 -3
- package/constants/pointer.d.ts +1 -0
- package/fesm2022/plait-draw.mjs +595 -521
- package/fesm2022/plait-draw.mjs.map +1 -1
- package/package.json +1 -1
- package/plugins/arrow-line/with-arrow-line-auto-complete.d.ts +6 -1
- package/utils/arrow-line/arrow-line-basic.d.ts +1 -1
- package/utils/hit.d.ts +1 -1
- package/utils/shape.d.ts +5 -1
- package/utils/swimlane.d.ts +2 -1
package/constants/line.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export declare const DefaultLineStyle: {
|
|
|
4
4
|
};
|
|
5
5
|
export declare const LINE_TEXT_SPACE = 4;
|
|
6
6
|
export declare const LINE_AUTO_COMPLETE_DIAMETER = 6;
|
|
7
|
-
export declare const LINE_AUTO_COMPLETE_OPACITY =
|
|
8
|
-
export declare const LINE_AUTO_COMPLETE_HOVERED_OPACITY =
|
|
9
|
-
export declare const LINE_AUTO_COMPLETE_HOVERED_DIAMETER =
|
|
7
|
+
export declare const LINE_AUTO_COMPLETE_OPACITY = 1;
|
|
8
|
+
export declare const LINE_AUTO_COMPLETE_HOVERED_OPACITY = 1;
|
|
9
|
+
export declare const LINE_AUTO_COMPLETE_HOVERED_DIAMETER = 12;
|
|
10
10
|
export declare const LINE_ALIGN_TOLERANCE = 3;
|
|
11
11
|
export declare const LINE_TEXT = "\u6587\u672C";
|
package/constants/pointer.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { BasicShapes, FlowchartSymbols, ArrowLineShape, SwimlaneDrawSymbols, Tab
|
|
|
2
2
|
export type DrawPointerType = BasicShapes | ArrowLineShape | FlowchartSymbols | SwimlaneDrawSymbols | TableSymbols | UMLSymbols | VectorLinePointerType;
|
|
3
3
|
export declare const getGeometryPointers: () => string[];
|
|
4
4
|
export declare const getSwimlanePointers: () => string[];
|
|
5
|
+
export declare const getSwimlaneShapes: () => string[];
|
|
5
6
|
export declare const getBasicPointers: () => string[];
|
|
6
7
|
export declare const getFlowchartPointers: () => string[];
|
|
7
8
|
export declare const getUMLPointers: () => string[];
|