@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@excalidraw/excalidraw",
3
- "version": "0.17.1-7391-063c61e",
3
+ "version": "0.17.1-7391-e65bf53",
4
4
  "main": "main.js",
5
5
  "types": "types/packages/excalidraw/index.d.ts",
6
6
  "files": [
@@ -165,8 +165,8 @@ export type PointBinding = {
165
165
  focus: number;
166
166
  gap: number;
167
167
  };
168
- export type UMLArrowhead = "uml_arrow" | "uml_triangle" | "uml_diamond" | "uml_diamond_filled";
169
- export type Arrowhead = "arrow" | "bar" | "dot" | "triangle" | UMLArrowhead;
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[];