@zsviczian/excalidraw 0.18.0-30-printFrame-test-1 → 0.18.0-31
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.development.js +20 -20
- package/dist/excalidraw.production.min.js +1 -1
- package/package.json +1 -1
- package/types/element/src/newElement.d.ts +1 -0
- package/types/element/src/types.d.ts +8 -1
- package/types/excalidraw/actions/actionAddToLibrary.d.ts +9 -0
- package/types/excalidraw/actions/actionBoundText.d.ts +6 -0
- package/types/excalidraw/actions/actionCanvas.d.ts +60 -15
- package/types/excalidraw/actions/actionClipboard.d.ts +18 -0
- package/types/excalidraw/actions/actionCropEditor.d.ts +3 -0
- package/types/excalidraw/actions/actionDeleteSelected.d.ts +9 -0
- package/types/excalidraw/actions/actionElementLink.d.ts +3 -0
- package/types/excalidraw/actions/actionElementLock.d.ts +6 -0
- package/types/excalidraw/actions/actionEmbeddable.d.ts +3 -0
- package/types/excalidraw/actions/actionExport.d.ts +27 -0
- package/types/excalidraw/actions/actionFinalize.d.ts +9 -0
- package/types/excalidraw/actions/actionFrame.d.ts +19 -1
- package/types/excalidraw/actions/actionGroup.d.ts +6 -0
- package/types/excalidraw/actions/actionLinearEditor.d.ts +10 -1
- package/types/excalidraw/actions/actionLink.d.ts +3 -0
- package/types/excalidraw/actions/actionMenu.d.ts +9 -0
- package/types/excalidraw/actions/actionNavigate.d.ts +6 -0
- package/types/excalidraw/actions/actionProperties.d.ts +275 -0
- package/types/excalidraw/actions/actionSelectAll.d.ts +3 -0
- package/types/excalidraw/actions/actionStyles.d.ts +3 -0
- package/types/excalidraw/actions/actionToggleGridMode.d.ts +3 -0
- package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +3 -0
- package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +3 -0
- package/types/excalidraw/actions/actionToggleStats.d.ts +3 -0
- package/types/excalidraw/actions/actionToggleViewMode.d.ts +3 -0
- package/types/excalidraw/actions/actionToggleZenMode.d.ts +3 -0
- package/types/excalidraw/actions/index.d.ts +1 -0
- package/types/excalidraw/actions/types.d.ts +1 -1
- package/types/excalidraw/appState.d.ts +1 -0
- package/types/excalidraw/components/App.d.ts +2 -0
- package/types/excalidraw/components/icons.d.ts +1 -0
- package/types/excalidraw/types.d.ts +3 -0
|
@@ -338,6 +338,8 @@ declare class App extends React.Component<AppProps, AppState> {
|
|
|
338
338
|
name: boolean;
|
|
339
339
|
outline: boolean;
|
|
340
340
|
clip: boolean;
|
|
341
|
+
markerName: boolean;
|
|
342
|
+
markerEnabled: boolean;
|
|
341
343
|
}> | ((prevState: AppState["frameRendering"]) => Partial<AppState["frameRendering"]>)) => void;
|
|
342
344
|
togglePenMode: (force: boolean | null) => void;
|
|
343
345
|
onHandToolToggle: () => void;
|
|
@@ -224,4 +224,5 @@ export declare const collapseUpIcon: import("react/jsx-runtime").JSX.Element;
|
|
|
224
224
|
export declare const upIcon: import("react/jsx-runtime").JSX.Element;
|
|
225
225
|
export declare const cropIcon: import("react/jsx-runtime").JSX.Element;
|
|
226
226
|
export declare const elementLinkIcon: import("react/jsx-runtime").JSX.Element;
|
|
227
|
+
export declare const markerFrameIcon: import("react/jsx-runtime").JSX.Element;
|
|
227
228
|
export {};
|
|
@@ -212,6 +212,8 @@ export interface AppState {
|
|
|
212
212
|
name: boolean;
|
|
213
213
|
outline: boolean;
|
|
214
214
|
clip: boolean;
|
|
215
|
+
markerName: boolean;
|
|
216
|
+
markerEnabled: boolean;
|
|
215
217
|
};
|
|
216
218
|
editingFrame: string | null;
|
|
217
219
|
elementsToHighlight: NonDeleted<ExcalidrawElement>[] | null;
|
|
@@ -249,6 +251,7 @@ export interface AppState {
|
|
|
249
251
|
currentHoveredFontFamily: FontFamilyValues | null;
|
|
250
252
|
currentItemRoundness: StrokeRoundness;
|
|
251
253
|
currentItemArrowType: "sharp" | "round" | "elbow";
|
|
254
|
+
currentItemFrameRole: ExcalidrawFrameLikeElement["frameRole"] | null;
|
|
252
255
|
viewBackgroundColor: string;
|
|
253
256
|
scrollX: number;
|
|
254
257
|
scrollY: number;
|