@zsviczian/excalidraw 0.18.0-70 → 0.18.0-71
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
|
@@ -138,6 +138,17 @@ export type ExcalidrawImageElement = _ExcalidrawElementBase & Readonly<{
|
|
|
138
138
|
scale: [number, number];
|
|
139
139
|
/** whether an element is cropped */
|
|
140
140
|
crop: ImageCrop | null;
|
|
141
|
+
customData?: {
|
|
142
|
+
pdfPageViewProps?: {
|
|
143
|
+
left: number;
|
|
144
|
+
bottom: number;
|
|
145
|
+
right: number;
|
|
146
|
+
top: number;
|
|
147
|
+
rotate?: number;
|
|
148
|
+
};
|
|
149
|
+
doNotInvertSVGInDarkMode?: boolean;
|
|
150
|
+
invertBitmapInDarkmode?: boolean;
|
|
151
|
+
};
|
|
141
152
|
}>;
|
|
142
153
|
export type InitializedExcalidrawImageElement = MarkNonNullable<ExcalidrawImageElement, "fileId">;
|
|
143
154
|
type FrameRole = null | "marker";
|
|
@@ -1145,6 +1145,17 @@ export declare const actionWrapSelectionInFrame: {
|
|
|
1145
1145
|
status: "pending" | "saved" | "error";
|
|
1146
1146
|
scale: [number, number];
|
|
1147
1147
|
crop: import("@excalidraw/element/types").ImageCrop | null;
|
|
1148
|
+
customData?: {
|
|
1149
|
+
pdfPageViewProps?: {
|
|
1150
|
+
left: number;
|
|
1151
|
+
bottom: number;
|
|
1152
|
+
right: number;
|
|
1153
|
+
top: number;
|
|
1154
|
+
rotate?: number;
|
|
1155
|
+
};
|
|
1156
|
+
doNotInvertSVGInDarkMode?: boolean;
|
|
1157
|
+
invertBitmapInDarkmode?: boolean;
|
|
1158
|
+
};
|
|
1148
1159
|
}> & {
|
|
1149
1160
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
1150
1161
|
}) | (Readonly<{
|
|
@@ -543,6 +543,17 @@ export declare const actionTogglePolygon: {
|
|
|
543
543
|
status: "pending" | "saved" | "error";
|
|
544
544
|
scale: [number, number];
|
|
545
545
|
crop: import("@excalidraw/element/types").ImageCrop | null;
|
|
546
|
+
customData?: {
|
|
547
|
+
pdfPageViewProps?: {
|
|
548
|
+
left: number;
|
|
549
|
+
bottom: number;
|
|
550
|
+
right: number;
|
|
551
|
+
top: number;
|
|
552
|
+
rotate?: number;
|
|
553
|
+
};
|
|
554
|
+
doNotInvertSVGInDarkMode?: boolean;
|
|
555
|
+
invertBitmapInDarkmode?: boolean;
|
|
556
|
+
};
|
|
546
557
|
}> & {
|
|
547
558
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
548
559
|
}) | (Readonly<{
|