@excalidraw/excalidraw 0.17.1-7391-063c61e → 0.17.1-7391-e65bf53
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/dist/excalidraw-assets-dev/{vendor-8fa3eb9e8749eedafb19.js → vendor-c09b2c6a1f68505f7149.js} +2 -2
- package/dist/excalidraw-with-preact.development.js +6 -6
- package/dist/excalidraw-with-preact.production.min.js +1 -1
- package/dist/excalidraw.development.js +6 -6
- package/dist/excalidraw.production.min.js +1 -1
- package/package.json +1 -1
- package/types/element/types.d.ts +2 -2
- /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-8fa3eb9e8749eedafb19.d.ts → vendor-c09b2c6a1f68505f7149.d.ts} +0 -0
package/package.json
CHANGED
package/types/element/types.d.ts
CHANGED
|
@@ -165,8 +165,8 @@ export type PointBinding = {
|
|
|
165
165
|
focus: number;
|
|
166
166
|
gap: number;
|
|
167
167
|
};
|
|
168
|
-
export type
|
|
169
|
-
export type Arrowhead = "arrow" | "bar" | "dot" | "triangle" |
|
|
168
|
+
export type DiagramArrowhead = "d_arrow" | "d_triangle" | "d_triangle_filled" | "d_diamond" | "d_diamond_filled";
|
|
169
|
+
export type Arrowhead = "arrow" | "bar" | "dot" | "triangle" | DiagramArrowhead;
|
|
170
170
|
export type ExcalidrawLinearElement = _ExcalidrawElementBase & Readonly<{
|
|
171
171
|
type: "line" | "arrow";
|
|
172
172
|
points: readonly Point[];
|