@zsviczian/excalidraw 0.10.0-obsidian-image-support-2 → 0.10.0-obsidian-3
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
package/types/element/types.d.ts
CHANGED
|
@@ -78,7 +78,7 @@ export declare type ExcalidrawGenericElement = ExcalidrawSelectionElement | Exca
|
|
|
78
78
|
*/
|
|
79
79
|
export declare type ExcalidrawElement = ExcalidrawGenericElement | ExcalidrawTextElement | ExcalidrawLinearElement | ExcalidrawFreeDrawElement | ExcalidrawImageElement;
|
|
80
80
|
export declare type NonDeleted<TElement extends ExcalidrawElement> = TElement & {
|
|
81
|
-
isDeleted:
|
|
81
|
+
isDeleted: boolean;
|
|
82
82
|
};
|
|
83
83
|
export declare type NonDeletedExcalidrawElement = NonDeleted<ExcalidrawElement>;
|
|
84
84
|
export declare type ExcalidrawTextElement = _ExcalidrawElementBase & Readonly<{
|
package/types/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { PointerType, ExcalidrawLinearElement, NonDeletedExcalidrawElement, NonDeleted, TextAlign, ExcalidrawElement, GroupId, ExcalidrawBindableElement, Arrowhead, ChartType, FontFamilyValues,
|
|
2
|
+
import { PointerType, ExcalidrawLinearElement, NonDeletedExcalidrawElement, NonDeleted, TextAlign, ExcalidrawElement, GroupId, ExcalidrawBindableElement, Arrowhead, ChartType, FontFamilyValues, ExcalidrawTextElement, FileId, ExcalidrawImageElement, Theme } from "./element/types";
|
|
3
3
|
import { SHAPES } from "./shapes";
|
|
4
4
|
import { Point as RoughPoint } from "roughjs/bin/geometry";
|
|
5
5
|
import { LinearElementEditor } from "./element/linearElementEditor";
|