lint
This commit is contained in:
@@ -473,7 +473,7 @@ export const handleFocusPointPointerUp = (
|
|||||||
if (boundElement) {
|
if (boundElement) {
|
||||||
scene.mutateElement(boundElement, {
|
scene.mutateElement(boundElement, {
|
||||||
boundElements: [
|
boundElements: [
|
||||||
...(boundElement.boundElements || [])?.filter(
|
...(boundElement.boundElements || []).filter(
|
||||||
({ id }) => id !== arrow.id,
|
({ id }) => id !== arrow.id,
|
||||||
),
|
),
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1849,8 +1849,8 @@ export const updateBoundPoint = (
|
|||||||
return LinearElementEditor.createPointAt(
|
return LinearElementEditor.createPointAt(
|
||||||
arrow,
|
arrow,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
arrowTooShort ? focusPoint[0] : outlinePoint?.[0] ?? focusPoint[0],
|
arrowTooShort ? focusPoint[0] : (outlinePoint?.[0] ?? focusPoint[0]),
|
||||||
arrowTooShort ? focusPoint[1] : outlinePoint?.[1] ?? focusPoint[1],
|
arrowTooShort ? focusPoint[1] : (outlinePoint?.[1] ?? focusPoint[1]),
|
||||||
null,
|
null,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ const parseGoogleDriveVideoLink = (
|
|||||||
// normalize to seconds for a stable preview URL.
|
// normalize to seconds for a stable preview URL.
|
||||||
timestamp: timestamp > 0 ? timestamp : undefined,
|
timestamp: timestamp > 0 ? timestamp : undefined,
|
||||||
};
|
};
|
||||||
} catch (error) {
|
} catch {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -343,7 +343,6 @@ export function deconstructRectanguloidElement(
|
|||||||
|
|
||||||
export function getDiamondBaseCorners(
|
export function getDiamondBaseCorners(
|
||||||
element: ExcalidrawDiamondElement,
|
element: ExcalidrawDiamondElement,
|
||||||
offset: number = 0,
|
|
||||||
): Curve<GlobalPoint>[] {
|
): Curve<GlobalPoint>[] {
|
||||||
const [topX, topY, rightX, rightY, bottomX, bottomY, leftX, leftY] =
|
const [topX, topY, rightX, rightY, bottomX, bottomY, leftX, leftY] =
|
||||||
getDiamondPoints(element);
|
getDiamondPoints(element);
|
||||||
|
|||||||
@@ -68,7 +68,8 @@
|
|||||||
max-height: calc(100svh - var(--editor-container-padding) * 2 - 2.25rem);
|
max-height: calc(100svh - var(--editor-container-padding) * 2 - 2.25rem);
|
||||||
|
|
||||||
@at-root .excalidraw.theme--dark#{&} {
|
@at-root .excalidraw.theme--dark#{&} {
|
||||||
box-shadow: var(--box-shadow, var(--shadow-island)),
|
box-shadow:
|
||||||
|
var(--box-shadow, var(--shadow-island)),
|
||||||
0 0 0 1px rgba(0, 0, 0, 0.15);
|
0 0 0 1px rgba(0, 0, 0, 0.15);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,7 +62,6 @@
|
|||||||
"@excalidraw/math": "0.18.0",
|
"@excalidraw/math": "0.18.0",
|
||||||
"@excalidraw/mermaid-to-excalidraw": "2.0.0-rfc3",
|
"@excalidraw/mermaid-to-excalidraw": "2.0.0-rfc3",
|
||||||
"@excalidraw/random-username": "1.1.0",
|
"@excalidraw/random-username": "1.1.0",
|
||||||
"radix-ui": "1.4.3",
|
|
||||||
"browser-fs-access": "0.29.1",
|
"browser-fs-access": "0.29.1",
|
||||||
"canvas-roundrect-polyfill": "0.0.1",
|
"canvas-roundrect-polyfill": "0.0.1",
|
||||||
"clsx": "1.1.1",
|
"clsx": "1.1.1",
|
||||||
@@ -84,6 +83,7 @@
|
|||||||
"png-chunks-extract": "1.0.0",
|
"png-chunks-extract": "1.0.0",
|
||||||
"points-on-curve": "1.0.1",
|
"points-on-curve": "1.0.1",
|
||||||
"pwacompat": "2.0.17",
|
"pwacompat": "2.0.17",
|
||||||
|
"radix-ui": "1.4.3",
|
||||||
"roughjs": "4.6.4",
|
"roughjs": "4.6.4",
|
||||||
"sass": "1.51.0",
|
"sass": "1.51.0",
|
||||||
"tunnel-rat": "0.1.2"
|
"tunnel-rat": "0.1.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user