|
@@ -1,5 +1,5 @@
|
|
|
import { inRevise, onlyId } from "@/utils/shared";
|
|
import { inRevise, onlyId } from "@/utils/shared";
|
|
|
-import { InteractiveFix, InteractiveTo } from "..";
|
|
|
|
|
|
|
+import type { InteractiveFix, InteractiveTo } from "..";
|
|
|
import { LineData, generateUseDraw } from "../line";
|
|
import { LineData, generateUseDraw } from "../line";
|
|
|
import { getBaseItem } from "../util";
|
|
import { getBaseItem } from "../util";
|
|
|
import { getMouseColors } from "@/utils/colors";
|
|
import { getMouseColors } from "@/utils/colors";
|
|
@@ -19,7 +19,7 @@ export const defaultStyle = {
|
|
|
dash: [30, 0],
|
|
dash: [30, 0],
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-export const fixedStrokeOptions:number[] = [];
|
|
|
|
|
|
|
+export { fixedStrokeOptions } from "./attrib";
|
|
|
export const useDraw = generateUseDraw('lineChunk');
|
|
export const useDraw = generateUseDraw('lineChunk');
|
|
|
|
|
|
|
|
export const getMouseStyle = (data: LineData) => {
|
|
export const getMouseStyle = (data: LineData) => {
|