diff --git a/.npmrc b/.npmrc
index cffe8cdef1..1b78f1c6f2 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1 +1,2 @@
save-exact=true
+legacy-peer-deps=true
diff --git a/dev-docs/docs/@excalidraw/excalidraw/api/children-components/footer.mdx b/dev-docs/docs/@excalidraw/excalidraw/api/children-components/footer.mdx
index 2626818955..cdd5ea5a49 100644
--- a/dev-docs/docs/@excalidraw/excalidraw/api/children-components/footer.mdx
+++ b/dev-docs/docs/@excalidraw/excalidraw/api/children-components/footer.mdx
@@ -16,7 +16,6 @@ function App() {
className="custom-footer"
onClick={() => alert("This is dummy footer")}
>
- {" "}
custom footer
diff --git a/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx b/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx
index 8fbf228df1..2494df108f 100644
--- a/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx
+++ b/dev-docs/docs/@excalidraw/excalidraw/api/children-components/main-menu.mdx
@@ -14,8 +14,7 @@ function App() {
Item1
window.alert("Item2")}>
- {" "}
- Item 2{" "}
+ Item 2
@@ -93,7 +92,6 @@ function App() {
style={{ height: "2rem" }}
onClick={() => window.alert("custom menu item")}
>
- {" "}
custom item
diff --git a/dev-docs/docs/@excalidraw/excalidraw/api/props/render-props.mdx b/dev-docs/docs/@excalidraw/excalidraw/api/props/render-props.mdx
index ca329e3e62..6531e29ecf 100644
--- a/dev-docs/docs/@excalidraw/excalidraw/api/props/render-props.mdx
+++ b/dev-docs/docs/@excalidraw/excalidraw/api/props/render-props.mdx
@@ -3,7 +3,7 @@
## renderTopRightUI
- (isMobile: boolean, appState:{" "}
+ (isMobile: boolean, appState:
AppState
@@ -29,8 +29,7 @@ function App() {
}}
onClick={() => window.alert("This is dummy top right UI")}
>
- {" "}
- Click me{" "}
+ Click me
);
}}
@@ -55,8 +54,7 @@ function App() {
(
- {" "}
- Dummy stats will be shown here{" "}
+ Dummy stats will be shown here
)}
/>
@@ -105,8 +103,7 @@ function App() {
return (
excalidrawAPI.toggleMenu("customSidebar")}>
- {" "}
- Toggle Custom Sidebar{" "}
+ Toggle Custom Sidebar
{
+ PanelComponent: ({ elements, appState, updateData, appProps }) => {
// FIXME move me to src/components/mainMenu/DefaultItems.tsx
return (
-
- updateData({ viewBackgroundColor: color })}
- isActive={appState.openPopup === "canvasColorPicker"}
- setActive={(active) =>
- updateData({ openPopup: active ? "canvasColorPicker" : null })
- }
- data-testid="canvas-background-picker"
- elements={elements}
- appState={appState}
- />
-
+ updateData({ viewBackgroundColor: color })}
+ data-testid="canvas-background-picker"
+ elements={elements}
+ appState={appState}
+ updateData={updateData}
+ />
);
},
});
diff --git a/src/actions/actionElementLock.test.tsx b/src/actions/actionElementLock.test.tsx
new file mode 100644
index 0000000000..19db5e3259
--- /dev/null
+++ b/src/actions/actionElementLock.test.tsx
@@ -0,0 +1,68 @@
+import { Excalidraw } from "../packages/excalidraw/index";
+import { queryByTestId, fireEvent } from "@testing-library/react";
+import { render } from "../tests/test-utils";
+import { Pointer, UI } from "../tests/helpers/ui";
+import { API } from "../tests/helpers/api";
+
+const { h } = window;
+const mouse = new Pointer("mouse");
+
+describe("element locking", () => {
+ it("should not show unlockAllElements action in contextMenu if no elements locked", async () => {
+ await render( );
+
+ mouse.rightClickAt(0, 0);
+
+ const item = queryByTestId(UI.queryContextMenu()!, "unlockAllElements");
+ expect(item).toBe(null);
+ });
+
+ it("should unlock all elements and select them when using unlockAllElements action in contextMenu", async () => {
+ await render(
+ ,
+ );
+
+ mouse.rightClickAt(0, 0);
+
+ expect(Object.keys(h.state.selectedElementIds).length).toBe(0);
+ expect(h.elements.map((el) => el.locked)).toEqual([true, true, false]);
+
+ const item = queryByTestId(UI.queryContextMenu()!, "unlockAllElements");
+ expect(item).not.toBe(null);
+
+ fireEvent.click(item!.querySelector("button")!);
+
+ expect(h.elements.map((el) => el.locked)).toEqual([false, false, false]);
+ // should select the unlocked elements
+ expect(h.state.selectedElementIds).toEqual({
+ [h.elements[0].id]: true,
+ [h.elements[1].id]: true,
+ });
+ });
+});
diff --git a/src/actions/actionToggleLock.ts b/src/actions/actionElementLock.ts
similarity index 53%
rename from src/actions/actionToggleLock.ts
rename to src/actions/actionElementLock.ts
index c44bd57008..922a5fae38 100644
--- a/src/actions/actionToggleLock.ts
+++ b/src/actions/actionElementLock.ts
@@ -5,8 +5,11 @@ import { getSelectedElements } from "../scene";
import { arrayToMap } from "../utils";
import { register } from "./register";
-export const actionToggleLock = register({
- name: "toggleLock",
+const shouldLock = (elements: readonly ExcalidrawElement[]) =>
+ elements.every((el) => !el.locked);
+
+export const actionToggleElementLock = register({
+ name: "toggleElementLock",
trackEvent: { category: "element" },
perform: (elements, appState) => {
const selectedElements = getSelectedElements(elements, appState, true);
@@ -15,20 +18,21 @@ export const actionToggleLock = register({
return false;
}
- const operation = getOperation(selectedElements);
+ const nextLockState = shouldLock(selectedElements);
const selectedElementsMap = arrayToMap(selectedElements);
- const lock = operation === "lock";
return {
elements: elements.map((element) => {
if (!selectedElementsMap.has(element.id)) {
return element;
}
- return newElementWith(element, { locked: lock });
+ return newElementWith(element, { locked: nextLockState });
}),
appState: {
...appState,
- selectedLinearElement: lock ? null : appState.selectedLinearElement,
+ selectedLinearElement: nextLockState
+ ? null
+ : appState.selectedLinearElement,
},
commitToHistory: true,
};
@@ -41,7 +45,7 @@ export const actionToggleLock = register({
: "labels.elementLock.lock";
}
- return getOperation(selected) === "lock"
+ return shouldLock(selected)
? "labels.elementLock.lockAll"
: "labels.elementLock.unlockAll";
},
@@ -55,6 +59,31 @@ export const actionToggleLock = register({
},
});
-const getOperation = (
- elements: readonly ExcalidrawElement[],
-): "lock" | "unlock" => (elements.some((el) => !el.locked) ? "lock" : "unlock");
+export const actionUnlockAllElements = register({
+ name: "unlockAllElements",
+ trackEvent: { category: "canvas" },
+ viewMode: false,
+ predicate: (elements) => {
+ return elements.some((element) => element.locked);
+ },
+ perform: (elements, appState) => {
+ const lockedElements = elements.filter((el) => el.locked);
+
+ return {
+ elements: elements.map((element) => {
+ if (element.locked) {
+ return newElementWith(element, { locked: false });
+ }
+ return element;
+ }),
+ appState: {
+ ...appState,
+ selectedElementIds: Object.fromEntries(
+ lockedElements.map((el) => [el.id, true]),
+ ),
+ },
+ commitToHistory: true,
+ };
+ },
+ contextItemLabel: "labels.elementLock.unlockAll",
+});
diff --git a/src/actions/actionFlip.ts b/src/actions/actionFlip.ts
index ff6bfe4b7e..0dadc23b10 100644
--- a/src/actions/actionFlip.ts
+++ b/src/actions/actionFlip.ts
@@ -14,7 +14,7 @@ import {
} from "../element/bounds";
import { isLinearElement } from "../element/typeChecks";
import { LinearElementEditor } from "../element/linearElementEditor";
-import { KEYS } from "../keys";
+import { CODES, KEYS } from "../keys";
const enableActionFlipHorizontal = (
elements: readonly ExcalidrawElement[],
@@ -48,7 +48,7 @@ export const actionFlipHorizontal = register({
commitToHistory: true,
};
},
- keyTest: (event) => event.shiftKey && event.code === "KeyH",
+ keyTest: (event) => event.shiftKey && event.code === CODES.H,
contextItemLabel: "labels.flipHorizontal",
predicate: (elements, appState) =>
enableActionFlipHorizontal(elements, appState),
@@ -65,7 +65,7 @@ export const actionFlipVertical = register({
};
},
keyTest: (event) =>
- event.shiftKey && event.code === "KeyV" && !event[KEYS.CTRL_OR_CMD],
+ event.shiftKey && event.code === CODES.V && !event[KEYS.CTRL_OR_CMD],
contextItemLabel: "labels.flipVertical",
predicate: (elements, appState) =>
enableActionFlipVertical(elements, appState),
diff --git a/src/actions/actionProperties.tsx b/src/actions/actionProperties.tsx
index 382e964b9c..6e921d6ea8 100644
--- a/src/actions/actionProperties.tsx
+++ b/src/actions/actionProperties.tsx
@@ -1,7 +1,13 @@
import { AppState } from "../../src/types";
+import {
+ DEFAULT_ELEMENT_BACKGROUND_COLOR_PALETTE,
+ DEFAULT_ELEMENT_BACKGROUND_PICKS,
+ DEFAULT_ELEMENT_STROKE_COLOR_PALETTE,
+ DEFAULT_ELEMENT_STROKE_PICKS,
+} from "../colors";
import { trackEvent } from "../analytics";
import { ButtonIconSelect } from "../components/ButtonIconSelect";
-import { ColorPicker } from "../components/ColorPicker";
+import { ColorPicker } from "../components/ColorPicker/ColorPicker";
import { IconPicker } from "../components/IconPicker";
// TODO barnabasmolnar/editor-redesign
// TextAlignTopIcon, TextAlignBottomIcon,TextAlignMiddleIcon,
@@ -226,10 +232,12 @@ export const actionChangeStrokeColor = register({
commitToHistory: !!value.currentItemStrokeColor,
};
},
- PanelComponent: ({ elements, appState, updateData }) => (
+ PanelComponent: ({ elements, appState, updateData, appProps }) => (
<>
{t("labels.stroke")}
updateData({ currentItemStrokeColor: color })}
- isActive={appState.openPopup === "strokeColorPicker"}
- setActive={(active) =>
- updateData({ openPopup: active ? "strokeColorPicker" : null })
- }
elements={elements}
appState={appState}
+ updateData={updateData}
/>
>
),
@@ -269,10 +274,12 @@ export const actionChangeBackgroundColor = register({
commitToHistory: !!value.currentItemBackgroundColor,
};
},
- PanelComponent: ({ elements, appState, updateData }) => (
+ PanelComponent: ({ elements, appState, updateData, appProps }) => (
<>
{t("labels.background")}
updateData({ currentItemBackgroundColor: color })}
- isActive={appState.openPopup === "backgroundColorPicker"}
- setActive={(active) =>
- updateData({ openPopup: active ? "backgroundColorPicker" : null })
- }
elements={elements}
appState={appState}
+ updateData={updateData}
/>
>
),
diff --git a/src/actions/actionStyles.test.tsx b/src/actions/actionStyles.test.tsx
index c73864cc48..238196dfc9 100644
--- a/src/actions/actionStyles.test.tsx
+++ b/src/actions/actionStyles.test.tsx
@@ -1,9 +1,14 @@
import ExcalidrawApp from "../excalidraw-app";
-import { t } from "../i18n";
import { CODES } from "../keys";
import { API } from "../tests/helpers/api";
import { Keyboard, Pointer, UI } from "../tests/helpers/ui";
-import { fireEvent, render, screen } from "../tests/test-utils";
+import {
+ act,
+ fireEvent,
+ render,
+ screen,
+ togglePopover,
+} from "../tests/test-utils";
import { copiedStyles } from "./actionStyles";
const { h } = window;
@@ -14,7 +19,14 @@ describe("actionStyles", () => {
beforeEach(async () => {
await render( );
});
- it("should copy & paste styles via keyboard", () => {
+
+ afterEach(async () => {
+ // https://github.com/floating-ui/floating-ui/issues/1908#issuecomment-1301553793
+ // affects node v16+
+ await act(async () => {});
+ });
+
+ it("should copy & paste styles via keyboard", async () => {
UI.clickTool("rectangle");
mouse.down(10, 10);
mouse.up(20, 20);
@@ -24,10 +36,10 @@ describe("actionStyles", () => {
mouse.up(20, 20);
// Change some styles of second rectangle
- UI.clickLabeledElement("Stroke");
- UI.clickLabeledElement(t("colors.c92a2a"));
- UI.clickLabeledElement("Background");
- UI.clickLabeledElement(t("colors.e64980"));
+ togglePopover("Stroke");
+ UI.clickOnTestId("color-red");
+ togglePopover("Background");
+ UI.clickOnTestId("color-blue");
// Fill style
fireEvent.click(screen.getByTitle("Cross-hatch"));
// Stroke width
@@ -60,8 +72,8 @@ describe("actionStyles", () => {
const firstRect = API.getSelectedElement();
expect(firstRect.id).toBe(h.elements[0].id);
- expect(firstRect.strokeColor).toBe("#c92a2a");
- expect(firstRect.backgroundColor).toBe("#e64980");
+ expect(firstRect.strokeColor).toBe("#e03131");
+ expect(firstRect.backgroundColor).toBe("#a5d8ff");
expect(firstRect.fillStyle).toBe("cross-hatch");
expect(firstRect.strokeWidth).toBe(2); // Bold: 2
expect(firstRect.strokeStyle).toBe("dotted");
diff --git a/src/actions/index.ts b/src/actions/index.ts
index eea4faf7d5..9b53f81731 100644
--- a/src/actions/index.ts
+++ b/src/actions/index.ts
@@ -84,5 +84,5 @@ export { actionToggleZenMode } from "./actionToggleZenMode";
export { actionToggleStats } from "./actionToggleStats";
export { actionUnbindText, actionBindText } from "./actionBoundText";
export { actionLink } from "../element/Hyperlink";
-export { actionToggleLock } from "./actionToggleLock";
+export { actionToggleElementLock } from "./actionElementLock";
export { actionToggleLinearEditor } from "./actionLinearEditor";
diff --git a/src/actions/shortcuts.ts b/src/actions/shortcuts.ts
index be48c64707..b9c24a7572 100644
--- a/src/actions/shortcuts.ts
+++ b/src/actions/shortcuts.ts
@@ -34,7 +34,7 @@ export type ShortcutName =
| "flipHorizontal"
| "flipVertical"
| "hyperlink"
- | "toggleLock"
+ | "toggleElementLock"
>
| "saveScene"
| "imageExport";
@@ -80,7 +80,7 @@ const shortcutMap: Record = {
flipVertical: [getShortcutKey("Shift+V")],
viewMode: [getShortcutKey("Alt+R")],
hyperlink: [getShortcutKey("CtrlOrCmd+K")],
- toggleLock: [getShortcutKey("CtrlOrCmd+Shift+L")],
+ toggleElementLock: [getShortcutKey("CtrlOrCmd+Shift+L")],
};
export const getShortcutFromShortcutName = (name: ShortcutName) => {
diff --git a/src/actions/types.ts b/src/actions/types.ts
index b03e1053b2..277934adc9 100644
--- a/src/actions/types.ts
+++ b/src/actions/types.ts
@@ -111,7 +111,8 @@ export type ActionName =
| "unbindText"
| "hyperlink"
| "bindText"
- | "toggleLock"
+ | "unlockAllElements"
+ | "toggleElementLock"
| "toggleLinearEditor"
| "toggleEraserTool"
| "toggleHandTool"
diff --git a/src/appState.ts b/src/appState.ts
index aaac948795..4468eb9666 100644
--- a/src/appState.ts
+++ b/src/appState.ts
@@ -1,4 +1,4 @@
-import oc from "open-color";
+import { COLOR_PALETTE } from "./colors";
import {
DEFAULT_ELEMENT_PROPS,
DEFAULT_FONT_FAMILY,
@@ -84,7 +84,7 @@ export const getDefaultAppState = (): Omit<
startBoundElement: null,
suggestedBindings: [],
toast: null,
- viewBackgroundColor: oc.white,
+ viewBackgroundColor: COLOR_PALETTE.white,
zenModeEnabled: false,
zoom: {
value: 1 as NormalizedZoomValue,
diff --git a/src/charts.ts b/src/charts.ts
index c3b0950d1f..b5714686c2 100644
--- a/src/charts.ts
+++ b/src/charts.ts
@@ -1,5 +1,14 @@
-import colors from "./colors";
-import { DEFAULT_FONT_SIZE, ENV } from "./constants";
+import {
+ COLOR_PALETTE,
+ DEFAULT_CHART_COLOR_INDEX,
+ getAllColorsSpecificShade,
+} from "./colors";
+import {
+ DEFAULT_FONT_FAMILY,
+ DEFAULT_FONT_SIZE,
+ ENV,
+ VERTICAL_ALIGN,
+} from "./constants";
import { newElement, newLinearElement, newTextElement } from "./element";
import { NonDeletedExcalidrawElement } from "./element/types";
import { randomId } from "./random";
@@ -153,15 +162,22 @@ export const tryParseSpreadsheet = (text: string): ParseSpreadsheetResult => {
return result;
};
-const bgColors = colors.elementBackground.slice(
- 2,
- colors.elementBackground.length,
-);
+const bgColors = getAllColorsSpecificShade(DEFAULT_CHART_COLOR_INDEX);
// Put all the common properties here so when the whole chart is selected
// the properties dialog shows the correct selected values
const commonProps = {
- strokeColor: colors.elementStroke[0],
+ fillStyle: "hachure",
+ fontFamily: DEFAULT_FONT_FAMILY,
+ fontSize: DEFAULT_FONT_SIZE,
+ opacity: 100,
+ roughness: 1,
+ strokeColor: COLOR_PALETTE.black,
+ roundness: null,
+ strokeStyle: "solid",
+ strokeWidth: 1,
+ verticalAlign: VERTICAL_ALIGN.MIDDLE,
+ locked: false,
} as const;
const getChartDimentions = (spreadsheet: Spreadsheet) => {
@@ -322,7 +338,7 @@ const chartBaseElements = (
y: y - chartHeight,
width: chartWidth,
height: chartHeight,
- strokeColor: colors.elementStroke[0],
+ strokeColor: COLOR_PALETTE.black,
fillStyle: "solid",
opacity: 6,
})
diff --git a/src/clients.ts b/src/clients.ts
index 9e1e6e144a..604936e334 100644
--- a/src/clients.ts
+++ b/src/clients.ts
@@ -1,6 +1,17 @@
-import colors from "./colors";
+import {
+ DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX,
+ DEFAULT_ELEMENT_STROKE_COLOR_INDEX,
+ getAllColorsSpecificShade,
+} from "./colors";
import { AppState } from "./types";
+const BG_COLORS = getAllColorsSpecificShade(
+ DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX,
+);
+const STROKE_COLORS = getAllColorsSpecificShade(
+ DEFAULT_ELEMENT_STROKE_COLOR_INDEX,
+);
+
export const getClientColors = (clientId: string, appState: AppState) => {
if (appState?.collaborators) {
const currentUser = appState.collaborators.get(clientId);
@@ -11,18 +22,19 @@ export const getClientColors = (clientId: string, appState: AppState) => {
// Naive way of getting an integer out of the clientId
const sum = clientId.split("").reduce((a, str) => a + str.charCodeAt(0), 0);
- // Skip transparent & gray colors
- const backgrounds = colors.elementBackground.slice(3);
- const strokes = colors.elementStroke.slice(3);
return {
- background: backgrounds[sum % backgrounds.length],
- stroke: strokes[sum % strokes.length],
+ background: BG_COLORS[sum % BG_COLORS.length],
+ stroke: STROKE_COLORS[sum % STROKE_COLORS.length],
};
};
-export const getClientInitials = (userName?: string | null) => {
- if (!userName?.trim()) {
- return "?";
- }
- return userName.trim()[0].toUpperCase();
+/**
+ * returns first char, capitalized
+ */
+export const getNameInitial = (name?: string | null) => {
+ // first char can be a surrogate pair, hence using codePointAt
+ const firstCodePoint = name?.trim()?.codePointAt(0);
+ return (
+ firstCodePoint ? String.fromCodePoint(firstCodePoint) : "?"
+ ).toUpperCase();
};
diff --git a/src/colors.ts b/src/colors.ts
index 63cd728395..198ec12e23 100644
--- a/src/colors.ts
+++ b/src/colors.ts
@@ -1,22 +1,167 @@
import oc from "open-color";
+import { Merge } from "./utility-types";
-const shades = (index: number) => [
- oc.red[index],
- oc.pink[index],
- oc.grape[index],
- oc.violet[index],
- oc.indigo[index],
- oc.blue[index],
- oc.cyan[index],
- oc.teal[index],
- oc.green[index],
- oc.lime[index],
- oc.yellow[index],
- oc.orange[index],
-];
-
-export default {
- canvasBackground: [oc.white, oc.gray[0], oc.gray[1], ...shades(0)],
- elementBackground: ["transparent", oc.gray[4], oc.gray[6], ...shades(6)],
- elementStroke: [oc.black, oc.gray[8], oc.gray[7], ...shades(9)],
+// FIXME can't put to utils.ts rn because of circular dependency
+const pick = , K extends readonly (keyof R)[]>(
+ source: R,
+ keys: K,
+) => {
+ return keys.reduce((acc, key: K[number]) => {
+ if (key in source) {
+ acc[key] = source[key];
+ }
+ return acc;
+ }, {} as Pick) as Pick;
};
+
+export type ColorPickerColor =
+ | Exclude
+ | "transparent"
+ | "bronze";
+export type ColorTuple = readonly [string, string, string, string, string];
+export type ColorPalette = Merge<
+ Record,
+ { black: string; white: string; transparent: string }
+>;
+
+// used general type instead of specific type (ColorPalette) to support custom colors
+export type ColorPaletteCustom = { [key: string]: ColorTuple | string };
+export type ColorShadesIndexes = [number, number, number, number, number];
+
+export const MAX_CUSTOM_COLORS_USED_IN_CANVAS = 5;
+export const COLORS_PER_ROW = 5;
+
+export const DEFAULT_CHART_COLOR_INDEX = 4;
+
+export const DEFAULT_ELEMENT_STROKE_COLOR_INDEX = 4;
+export const DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX = 1;
+export const ELEMENTS_PALETTE_SHADE_INDEXES = [0, 2, 4, 6, 8] as const;
+export const CANVAS_PALETTE_SHADE_INDEXES = [0, 1, 2, 3, 4] as const;
+
+export const getSpecificColorShades = (
+ color: Exclude<
+ ColorPickerColor,
+ "transparent" | "white" | "black" | "bronze"
+ >,
+ indexArr: Readonly,
+) => {
+ return indexArr.map((index) => oc[color][index]) as any as ColorTuple;
+};
+
+export const COLOR_PALETTE = {
+ transparent: "transparent",
+ black: "#1e1e1e",
+ white: "#ffffff",
+ // open-colors
+ gray: getSpecificColorShades("gray", ELEMENTS_PALETTE_SHADE_INDEXES),
+ red: getSpecificColorShades("red", ELEMENTS_PALETTE_SHADE_INDEXES),
+ pink: getSpecificColorShades("pink", ELEMENTS_PALETTE_SHADE_INDEXES),
+ grape: getSpecificColorShades("grape", ELEMENTS_PALETTE_SHADE_INDEXES),
+ violet: getSpecificColorShades("violet", ELEMENTS_PALETTE_SHADE_INDEXES),
+ blue: getSpecificColorShades("blue", ELEMENTS_PALETTE_SHADE_INDEXES),
+ cyan: getSpecificColorShades("cyan", ELEMENTS_PALETTE_SHADE_INDEXES),
+ teal: getSpecificColorShades("teal", ELEMENTS_PALETTE_SHADE_INDEXES),
+ green: getSpecificColorShades("green", ELEMENTS_PALETTE_SHADE_INDEXES),
+ yellow: getSpecificColorShades("yellow", ELEMENTS_PALETTE_SHADE_INDEXES),
+ orange: getSpecificColorShades("orange", ELEMENTS_PALETTE_SHADE_INDEXES),
+ // radix bronze shades 3,5,7,9,11
+ bronze: ["#f8f1ee", "#eaddd7", "#d2bab0", "#a18072", "#846358"],
+} as ColorPalette;
+
+const COMMON_ELEMENT_SHADES = pick(COLOR_PALETTE, [
+ "cyan",
+ "blue",
+ "violet",
+ "grape",
+ "pink",
+ "green",
+ "teal",
+ "yellow",
+ "orange",
+ "red",
+]);
+
+// -----------------------------------------------------------------------------
+// quick picks defaults
+// -----------------------------------------------------------------------------
+
+// ORDER matters for positioning in quick picker
+export const DEFAULT_ELEMENT_STROKE_PICKS = [
+ COLOR_PALETTE.black,
+ COLOR_PALETTE.red[DEFAULT_ELEMENT_STROKE_COLOR_INDEX],
+ COLOR_PALETTE.green[DEFAULT_ELEMENT_STROKE_COLOR_INDEX],
+ COLOR_PALETTE.blue[DEFAULT_ELEMENT_STROKE_COLOR_INDEX],
+ COLOR_PALETTE.yellow[DEFAULT_ELEMENT_STROKE_COLOR_INDEX],
+] as ColorTuple;
+
+// ORDER matters for positioning in quick picker
+export const DEFAULT_ELEMENT_BACKGROUND_PICKS = [
+ COLOR_PALETTE.transparent,
+ COLOR_PALETTE.red[DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX],
+ COLOR_PALETTE.green[DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX],
+ COLOR_PALETTE.blue[DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX],
+ COLOR_PALETTE.yellow[DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX],
+] as ColorTuple;
+
+// ORDER matters for positioning in quick picker
+export const DEFAULT_CANVAS_BACKGROUND_PICKS = [
+ COLOR_PALETTE.white,
+ // radix slate2
+ "#f8f9fa",
+ // radix blue2
+ "#f5faff",
+ // radix yellow2
+ "#fffce8",
+ // radix bronze2
+ "#fdf8f6",
+] as ColorTuple;
+
+// -----------------------------------------------------------------------------
+// palette defaults
+// -----------------------------------------------------------------------------
+
+export const DEFAULT_ELEMENT_STROKE_COLOR_PALETTE = {
+ // 1st row
+ transparent: COLOR_PALETTE.transparent,
+ white: COLOR_PALETTE.white,
+ gray: COLOR_PALETTE.gray,
+ black: COLOR_PALETTE.black,
+ bronze: COLOR_PALETTE.bronze,
+ // rest
+ ...COMMON_ELEMENT_SHADES,
+} as const;
+
+// ORDER matters for positioning in pallete (5x3 grid)s
+export const DEFAULT_ELEMENT_BACKGROUND_COLOR_PALETTE = {
+ transparent: COLOR_PALETTE.transparent,
+ white: COLOR_PALETTE.white,
+ gray: COLOR_PALETTE.gray,
+ black: COLOR_PALETTE.black,
+ bronze: COLOR_PALETTE.bronze,
+
+ ...COMMON_ELEMENT_SHADES,
+} as const;
+
+// -----------------------------------------------------------------------------
+// helpers
+// -----------------------------------------------------------------------------
+
+// !!!MUST BE WITHOUT GRAY, TRANSPARENT AND BLACK!!!
+export const getAllColorsSpecificShade = (index: 0 | 1 | 2 | 3 | 4) =>
+ [
+ // 2nd row
+ COLOR_PALETTE.cyan[index],
+ COLOR_PALETTE.blue[index],
+ COLOR_PALETTE.violet[index],
+ COLOR_PALETTE.grape[index],
+ COLOR_PALETTE.pink[index],
+
+ // 3rd row
+ COLOR_PALETTE.green[index],
+ COLOR_PALETTE.teal[index],
+ COLOR_PALETTE.yellow[index],
+ COLOR_PALETTE.orange[index],
+ COLOR_PALETTE.red[index],
+ ] as const;
+
+// -----------------------------------------------------------------------------
diff --git a/src/components/App.tsx b/src/components/App.tsx
index adb7dcf224..df5a82493b 100644
--- a/src/components/App.tsx
+++ b/src/components/App.tsx
@@ -33,7 +33,7 @@ import {
actionBindText,
actionUngroup,
actionLink,
- actionToggleLock,
+ actionToggleElementLock,
actionToggleLinearEditor,
} from "../actions";
import { createRedoAction, createUndoAction } from "../actions/actionHistory";
@@ -59,6 +59,7 @@ import {
ELEMENT_TRANSLATE_AMOUNT,
ENV,
EVENT,
+ EXPORT_IMAGE_TYPES,
GRID_SIZE,
IMAGE_MIME_TYPES,
IMAGE_RENDER_TIMEOUT,
@@ -82,7 +83,7 @@ import {
VERTICAL_ALIGN,
ZOOM_STEP,
} from "../constants";
-import { loadFromBlob } from "../data";
+import { exportCanvas, loadFromBlob } from "../data";
import Library, { distributeLibraryItemsOnSquareGrid } from "../data/library";
import { restore, restoreElements } from "../data/restore";
import {
@@ -238,6 +239,7 @@ import {
getShortcutKey,
isTransparent,
easeToValuesRAF,
+ muteFSAbortError,
} from "../utils";
import {
ContextMenu,
@@ -252,6 +254,7 @@ import {
generateIdFromFile,
getDataURL,
getFileFromEvent,
+ isImageFileHandle,
isSupportedImageFile,
loadSceneOrLibraryFromBlob,
normalizeFile,
@@ -291,6 +294,7 @@ import {
isLocalLink,
} from "../element/Hyperlink";
import { shouldShowBoundingBox } from "../element/transformHandles";
+import { actionUnlockAllElements } from "../actions/actionElementLock";
import { Fonts } from "../scene/Fonts";
import { actionPaste } from "../actions/actionClipboard";
import {
@@ -310,6 +314,7 @@ const deviceContextInitialValue = {
isMobile: false,
isTouchScreen: false,
canDeviceFitSidebar: false,
+ isLandscape: false,
};
const DeviceContext = React.createContext(deviceContextInitialValue);
DeviceContext.displayName = "DeviceContext";
@@ -618,6 +623,7 @@ class App extends React.Component {
}
UIOptions={this.props.UIOptions}
onImageAction={this.onImageAction}
+ onExportImage={this.onExportImage}
renderWelcomeScreen={
!this.state.isLoading &&
this.state.showWelcomeScreen &&
@@ -657,7 +663,7 @@ class App extends React.Component {
)}
{this.renderCanvas()}
- {" "}
+
@@ -688,6 +694,37 @@ class App extends React.Component {
});
};
+ public onExportImage = async (
+ type: keyof typeof EXPORT_IMAGE_TYPES,
+ elements: readonly NonDeletedExcalidrawElement[],
+ ) => {
+ trackEvent("export", type, "ui");
+ const fileHandle = await exportCanvas(
+ type,
+ elements,
+ this.state,
+ this.files,
+ {
+ exportBackground: this.state.exportBackground,
+ name: this.state.name,
+ viewBackgroundColor: this.state.viewBackgroundColor,
+ },
+ )
+ .catch(muteFSAbortError)
+ .catch((error) => {
+ console.error(error);
+ this.setState({ errorMessage: error.message });
+ });
+
+ if (
+ this.state.exportEmbedScene &&
+ fileHandle &&
+ isImageFileHandle(fileHandle)
+ ) {
+ this.setState({ fileHandle });
+ }
+ };
+
private syncActionResult = withBatchedUpdates(
(actionResult: ActionResult) => {
if (this.unmounted || actionResult === false) {
@@ -912,6 +949,7 @@ class App extends React.Component {
? this.props.UIOptions.dockedSidebarBreakpoint
: MQ_RIGHT_SIDEBAR_MIN_WIDTH;
this.device = updateObject(this.device, {
+ isLandscape: width > height,
isSmScreen: width < MQ_SM_MAX_WIDTH,
isMobile:
width < MQ_MAX_WIDTH_PORTRAIT ||
@@ -2289,11 +2327,11 @@ class App extends React.Component {
(hasBackground(this.state.activeTool.type) ||
selectedElements.some((element) => hasBackground(element.type)))
) {
- this.setState({ openPopup: "backgroundColorPicker" });
+ this.setState({ openPopup: "elementBackground" });
event.stopPropagation();
}
if (event.key === KEYS.S) {
- this.setState({ openPopup: "strokeColorPicker" });
+ this.setState({ openPopup: "elementStroke" });
event.stopPropagation();
}
}
@@ -6349,6 +6387,7 @@ class App extends React.Component {
copyText,
CONTEXT_MENU_SEPARATOR,
actionSelectAll,
+ actionUnlockAllElements,
CONTEXT_MENU_SEPARATOR,
actionToggleGridMode,
actionToggleZenMode,
@@ -6395,7 +6434,7 @@ class App extends React.Component {
actionToggleLinearEditor,
actionLink,
actionDuplicateSelection,
- actionToggleLock,
+ actionToggleElementLock,
CONTEXT_MENU_SEPARATOR,
actionDeleteSelected,
];
diff --git a/src/components/Avatar.tsx b/src/components/Avatar.tsx
index 57a7eec261..20dc7b9f2b 100644
--- a/src/components/Avatar.tsx
+++ b/src/components/Avatar.tsx
@@ -1,7 +1,7 @@
import "./Avatar.scss";
import React, { useState } from "react";
-import { getClientInitials } from "../clients";
+import { getNameInitial } from "../clients";
type AvatarProps = {
onClick: (e: React.MouseEvent) => void;
@@ -12,7 +12,7 @@ type AvatarProps = {
};
export const Avatar = ({ color, onClick, name, src }: AvatarProps) => {
- const shortName = getClientInitials(name);
+ const shortName = getNameInitial(name);
const [error, setError] = useState(false);
const loadImg = !error && src;
const style = loadImg ? undefined : { background: color };
diff --git a/src/components/ColorPicker.tsx b/src/components/ColorPicker.tsx
deleted file mode 100644
index cb05cf446a..0000000000
--- a/src/components/ColorPicker.tsx
+++ /dev/null
@@ -1,430 +0,0 @@
-import React from "react";
-import { Popover } from "./Popover";
-import { isTransparent } from "../utils";
-
-import "./ColorPicker.scss";
-import { isArrowKey, KEYS } from "../keys";
-import { t, getLanguage } from "../i18n";
-import { isWritableElement } from "../utils";
-import colors from "../colors";
-import { ExcalidrawElement } from "../element/types";
-import { AppState } from "../types";
-
-const MAX_CUSTOM_COLORS = 5;
-const MAX_DEFAULT_COLORS = 15;
-
-export const getCustomColors = (
- elements: readonly ExcalidrawElement[],
- type: "elementBackground" | "elementStroke",
-) => {
- const customColors: string[] = [];
- const updatedElements = elements
- .filter((element) => !element.isDeleted)
- .sort((ele1, ele2) => ele2.updated - ele1.updated);
-
- let index = 0;
- const elementColorTypeMap = {
- elementBackground: "backgroundColor",
- elementStroke: "strokeColor",
- };
- const colorType = elementColorTypeMap[type] as
- | "backgroundColor"
- | "strokeColor";
- while (
- index < updatedElements.length &&
- customColors.length < MAX_CUSTOM_COLORS
- ) {
- const element = updatedElements[index];
-
- if (
- customColors.length < MAX_CUSTOM_COLORS &&
- isCustomColor(element[colorType], type) &&
- !customColors.includes(element[colorType])
- ) {
- customColors.push(element[colorType]);
- }
- index++;
- }
- return customColors;
-};
-
-const isCustomColor = (
- color: string,
- type: "elementBackground" | "elementStroke",
-) => {
- return !colors[type].includes(color);
-};
-
-const isValidColor = (color: string) => {
- const style = new Option().style;
- style.color = color;
- return !!style.color;
-};
-
-const getColor = (color: string): string | null => {
- if (isTransparent(color)) {
- return color;
- }
-
- // testing for `#` first fixes a bug on Electron (more specfically, an
- // Obsidian popout window), where a hex color without `#` is (incorrectly)
- // considered valid
- return isValidColor(`#${color}`)
- ? `#${color}`
- : isValidColor(color)
- ? color
- : null;
-};
-
-// This is a narrow reimplementation of the awesome react-color Twitter component
-// https://github.com/casesandberg/react-color/blob/master/src/components/twitter/Twitter.js
-
-// Unfortunately, we can't detect keyboard layout in the browser. So this will
-// only work well for QWERTY but not AZERTY or others...
-const keyBindings = [
- ["1", "2", "3", "4", "5"],
- ["q", "w", "e", "r", "t"],
- ["a", "s", "d", "f", "g"],
- ["z", "x", "c", "v", "b"],
-].flat();
-
-const Picker = ({
- colors,
- color,
- onChange,
- onClose,
- label,
- showInput = true,
- type,
- elements,
-}: {
- colors: string[];
- color: string | null;
- onChange: (color: string) => void;
- onClose: () => void;
- label: string;
- showInput: boolean;
- type: "canvasBackground" | "elementBackground" | "elementStroke";
- elements: readonly ExcalidrawElement[];
-}) => {
- const firstItem = React.useRef();
- const activeItem = React.useRef();
- const gallery = React.useRef();
- const colorInput = React.useRef();
-
- const [customColors] = React.useState(() => {
- if (type === "canvasBackground") {
- return [];
- }
- return getCustomColors(elements, type);
- });
-
- React.useEffect(() => {
- // After the component is first mounted focus on first input
- if (activeItem.current) {
- activeItem.current.focus();
- } else if (colorInput.current) {
- colorInput.current.focus();
- } else if (gallery.current) {
- gallery.current.focus();
- }
- }, []);
-
- const handleKeyDown = (event: React.KeyboardEvent) => {
- let handled = false;
- if (isArrowKey(event.key)) {
- handled = true;
- const { activeElement } = document;
- const isRTL = getLanguage().rtl;
- let isCustom = false;
- let index = Array.prototype.indexOf.call(
- gallery.current!.querySelector(".color-picker-content--default")
- ?.children,
- activeElement,
- );
- if (index === -1) {
- index = Array.prototype.indexOf.call(
- gallery.current!.querySelector(".color-picker-content--canvas-colors")
- ?.children,
- activeElement,
- );
- if (index !== -1) {
- isCustom = true;
- }
- }
- const parentElement = isCustom
- ? gallery.current?.querySelector(".color-picker-content--canvas-colors")
- : gallery.current?.querySelector(".color-picker-content--default");
-
- if (parentElement && index !== -1) {
- const length = parentElement.children.length - (showInput ? 1 : 0);
- const nextIndex =
- event.key === (isRTL ? KEYS.ARROW_LEFT : KEYS.ARROW_RIGHT)
- ? (index + 1) % length
- : event.key === (isRTL ? KEYS.ARROW_RIGHT : KEYS.ARROW_LEFT)
- ? (length + index - 1) % length
- : !isCustom && event.key === KEYS.ARROW_DOWN
- ? (index + 5) % length
- : !isCustom && event.key === KEYS.ARROW_UP
- ? (length + index - 5) % length
- : index;
- (parentElement.children[nextIndex] as HTMLElement | undefined)?.focus();
- }
- event.preventDefault();
- } else if (
- keyBindings.includes(event.key.toLowerCase()) &&
- !event[KEYS.CTRL_OR_CMD] &&
- !event.altKey &&
- !isWritableElement(event.target)
- ) {
- handled = true;
- const index = keyBindings.indexOf(event.key.toLowerCase());
- const isCustom = index >= MAX_DEFAULT_COLORS;
- const parentElement = isCustom
- ? gallery?.current?.querySelector(
- ".color-picker-content--canvas-colors",
- )
- : gallery?.current?.querySelector(".color-picker-content--default");
- const actualIndex = isCustom ? index - MAX_DEFAULT_COLORS : index;
- (
- parentElement?.children[actualIndex] as HTMLElement | undefined
- )?.focus();
-
- event.preventDefault();
- } else if (event.key === KEYS.ESCAPE || event.key === KEYS.ENTER) {
- handled = true;
- event.preventDefault();
- onClose();
- }
- if (handled) {
- event.nativeEvent.stopImmediatePropagation();
- event.stopPropagation();
- }
- };
-
- const renderColors = (colors: Array, custom: boolean = false) => {
- return colors.map((_color, i) => {
- const _colorWithoutHash = _color.replace("#", "");
- const keyBinding = custom
- ? keyBindings[i + MAX_DEFAULT_COLORS]
- : keyBindings[i];
- const label = custom
- ? _colorWithoutHash
- : t(`colors.${_colorWithoutHash}`);
- return (
- {
- (event.currentTarget as HTMLButtonElement).focus();
- onChange(_color);
- }}
- title={`${label}${
- !isTransparent(_color) ? ` (${_color})` : ""
- } — ${keyBinding.toUpperCase()}`}
- aria-label={label}
- aria-keyshortcuts={keyBindings[i]}
- style={{ color: _color }}
- key={_color}
- ref={(el) => {
- if (!custom && el && i === 0) {
- firstItem.current = el;
- }
- if (el && _color === color) {
- activeItem.current = el;
- }
- }}
- onFocus={() => {
- onChange(_color);
- }}
- >
- {isTransparent(_color) ? (
-
- ) : undefined}
- {keyBinding}
-
- );
- });
- };
-
- return (
-
-
-
-
{
- if (el) {
- gallery.current = el;
- }
- }}
- // to allow focusing by clicking but not by tabbing
- tabIndex={-1}
- >
-
- {renderColors(colors)}
-
- {!!customColors.length && (
-
-
- {t("labels.canvasColors")}
-
-
- {renderColors(customColors, true)}
-
-
- )}
-
- {showInput && (
-
{
- onChange(color);
- }}
- ref={colorInput}
- />
- )}
-
-
- );
-};
-
-const ColorInput = React.forwardRef(
- (
- {
- color,
- onChange,
- label,
- }: {
- color: string | null;
- onChange: (color: string) => void;
- label: string;
- },
- ref,
- ) => {
- const [innerValue, setInnerValue] = React.useState(color);
- const inputRef = React.useRef(null);
-
- React.useEffect(() => {
- setInnerValue(color);
- }, [color]);
-
- React.useImperativeHandle(ref, () => inputRef.current);
-
- const changeColor = React.useCallback(
- (inputValue: string) => {
- const value = inputValue.toLowerCase();
- const color = getColor(value);
- if (color) {
- onChange(color);
- }
- setInnerValue(value);
- },
- [onChange],
- );
-
- return (
-
- #
- changeColor(event.target.value)}
- value={(innerValue || "").replace(/^#/, "")}
- onBlur={() => setInnerValue(color)}
- ref={inputRef}
- />
-
- );
- },
-);
-
-ColorInput.displayName = "ColorInput";
-
-export const ColorPicker = ({
- type,
- color,
- onChange,
- label,
- isActive,
- setActive,
- elements,
- appState,
-}: {
- type: "canvasBackground" | "elementBackground" | "elementStroke";
- color: string | null;
- onChange: (color: string) => void;
- label: string;
- isActive: boolean;
- setActive: (active: boolean) => void;
- elements: readonly ExcalidrawElement[];
- appState: AppState;
-}) => {
- const pickerButton = React.useRef(null);
- const coords = pickerButton.current?.getBoundingClientRect();
-
- return (
-
-
-
- setActive(!isActive)}
- ref={pickerButton}
- />
-
-
{
- onChange(color);
- }}
- />
-
-
- {isActive ? (
-
-
- event.target !== pickerButton.current && setActive(false)
- }
- >
- {
- onChange(changedColor);
- }}
- onClose={() => {
- setActive(false);
- pickerButton.current?.focus();
- }}
- label={label}
- showInput={false}
- type={type}
- elements={elements}
- />
-
-
- ) : null}
-
-
- );
-};
diff --git a/src/components/ColorPicker/ColorInput.tsx b/src/components/ColorPicker/ColorInput.tsx
new file mode 100644
index 0000000000..bb9a85510f
--- /dev/null
+++ b/src/components/ColorPicker/ColorInput.tsx
@@ -0,0 +1,75 @@
+import { useCallback, useEffect, useRef, useState } from "react";
+import { getColor } from "./ColorPicker";
+import { useAtom } from "jotai";
+import { activeColorPickerSectionAtom } from "./colorPickerUtils";
+import { KEYS } from "../../keys";
+
+interface ColorInputProps {
+ color: string | null;
+ onChange: (color: string) => void;
+ label: string;
+}
+
+export const ColorInput = ({ color, onChange, label }: ColorInputProps) => {
+ const [innerValue, setInnerValue] = useState(color);
+ const [activeSection, setActiveColorPickerSection] = useAtom(
+ activeColorPickerSectionAtom,
+ );
+
+ useEffect(() => {
+ setInnerValue(color);
+ }, [color]);
+
+ const changeColor = useCallback(
+ (inputValue: string) => {
+ const value = inputValue.toLowerCase();
+ const color = getColor(value);
+
+ if (color) {
+ onChange(color);
+ }
+ setInnerValue(value);
+ },
+ [onChange],
+ );
+
+ const inputRef = useRef(null);
+ const divRef = useRef(null);
+
+ useEffect(() => {
+ if (inputRef.current) {
+ inputRef.current.focus();
+ }
+ }, [activeSection]);
+
+ return (
+
+ #
+ {
+ changeColor(event.target.value);
+ }}
+ value={(innerValue || "").replace(/^#/, "")}
+ onBlur={() => {
+ setInnerValue(color);
+ }}
+ tabIndex={-1}
+ onFocus={() => setActiveColorPickerSection("hex")}
+ onKeyDown={(e) => {
+ if (e.key === KEYS.TAB) {
+ return;
+ }
+ if (e.key === KEYS.ESCAPE) {
+ divRef.current?.focus();
+ }
+ e.stopPropagation();
+ }}
+ />
+
+ );
+};
diff --git a/src/components/ColorPicker.scss b/src/components/ColorPicker/ColorPicker.scss
similarity index 63%
rename from src/components/ColorPicker.scss
rename to src/components/ColorPicker/ColorPicker.scss
index b816b25536..bc7146b6b5 100644
--- a/src/components/ColorPicker.scss
+++ b/src/components/ColorPicker/ColorPicker.scss
@@ -1,6 +1,134 @@
-@import "../css/variables.module";
+@import "../../css/variables.module";
.excalidraw {
+ .focus-visible-none {
+ &:focus-visible {
+ outline: none !important;
+ }
+ }
+
+ .color-picker__heading {
+ padding: 0 0.5rem;
+ font-size: 0.75rem;
+ text-align: left;
+ }
+
+ .color-picker-container {
+ display: grid;
+ grid-template-columns: 1fr 20px 1.625rem;
+ padding: 0.25rem 0px;
+ align-items: center;
+
+ @include isMobile {
+ max-width: 175px;
+ }
+ }
+
+ .color-picker__top-picks {
+ display: flex;
+ justify-content: space-between;
+ }
+
+ .color-picker__button {
+ --radius: 0.25rem;
+
+ padding: 0;
+ margin: 0;
+ width: 1.35rem;
+ height: 1.35rem;
+ border: 1px solid var(--color-gray-30);
+ border-radius: var(--radius);
+ filter: var(--theme-filter);
+ background-color: var(--swatch-color);
+ background-position: left center;
+ position: relative;
+ font-family: inherit;
+ box-sizing: border-box;
+
+ &:hover {
+ &::after {
+ content: "";
+ position: absolute;
+ top: -2px;
+ left: -2px;
+ right: -2px;
+ bottom: -2px;
+ box-shadow: 0 0 0 1px var(--color-gray-30);
+ border-radius: calc(var(--radius) + 1px);
+ filter: var(--theme-filter);
+ }
+ }
+
+ &.active {
+ .color-picker__button-outline {
+ position: absolute;
+ top: -2px;
+ left: -2px;
+ right: -2px;
+ bottom: -2px;
+ box-shadow: 0 0 0 1px var(--color-primary-darkest);
+ z-index: 1; // due hover state so this has preference
+ border-radius: calc(var(--radius) + 1px);
+ filter: var(--theme-filter);
+ }
+ }
+
+ &:focus-visible {
+ outline: none;
+
+ &::after {
+ content: "";
+ position: absolute;
+ top: -4px;
+ right: -4px;
+ bottom: -4px;
+ left: -4px;
+ border: 3px solid var(--focus-highlight-color);
+ border-radius: calc(var(--radius) + 1px);
+ }
+
+ &.active {
+ .color-picker__button-outline {
+ display: none;
+ }
+ }
+ }
+
+ &--large {
+ --radius: 0.5rem;
+ width: 1.875rem;
+ height: 1.875rem;
+ }
+
+ &.is-transparent {
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==");
+ }
+
+ &--no-focus-visible {
+ border: 0;
+ &::after {
+ display: none;
+ }
+ &:focus-visible {
+ outline: none !important;
+ }
+ }
+
+ &.active-color {
+ border-radius: calc(var(--radius) + 1px);
+ width: 1.625rem;
+ height: 1.625rem;
+ }
+ }
+
+ .color-picker__button__hotkey-label {
+ position: absolute;
+ right: 4px;
+ bottom: 4px;
+ filter: none;
+ font-size: 11px;
+ }
+
.color-picker {
background: var(--popup-bg-color);
border: 0 solid transparentize($oc-white, 0.75);
@@ -72,11 +200,17 @@
}
}
+ .color-picker-content {
+ display: flex;
+ flex-direction: column;
+ gap: 0.75rem;
+ }
+
.color-picker-content--default {
padding: 0.5rem;
display: grid;
- grid-template-columns: repeat(5, auto);
- grid-gap: 0.5rem;
+ grid-template-columns: repeat(5, 1.875rem);
+ grid-gap: 0.25rem;
border-radius: 4px;
&:focus {
@@ -178,6 +312,27 @@
}
}
+ .color-picker__input-label {
+ display: grid;
+ grid-template-columns: auto 1fr auto auto;
+ gap: 8px;
+ align-items: center;
+ border: 1px solid var(--default-border-color);
+ border-radius: 8px;
+ padding: 0 12px;
+ margin: 8px;
+ box-sizing: border-box;
+
+ &:focus-within {
+ box-shadow: 0 0 0 1px var(--color-primary-darkest);
+ border-radius: var(--border-radius-lg);
+ }
+ }
+
+ .color-picker__input-hash {
+ padding: 0 0.25rem;
+ }
+
.color-picker-input {
box-sizing: border-box;
width: 100%;
diff --git a/src/components/ColorPicker/ColorPicker.tsx b/src/components/ColorPicker/ColorPicker.tsx
new file mode 100644
index 0000000000..25ac7c1a85
--- /dev/null
+++ b/src/components/ColorPicker/ColorPicker.tsx
@@ -0,0 +1,235 @@
+import { isTransparent } from "../../utils";
+import { ExcalidrawElement } from "../../element/types";
+import { AppState } from "../../types";
+import { TopPicks } from "./TopPicks";
+import { Picker } from "./Picker";
+import * as Popover from "@radix-ui/react-popover";
+import { useAtom } from "jotai";
+import {
+ activeColorPickerSectionAtom,
+ ColorPickerType,
+} from "./colorPickerUtils";
+import { useDevice, useExcalidrawContainer } from "../App";
+import { ColorTuple, COLOR_PALETTE, ColorPaletteCustom } from "../../colors";
+import PickerHeading from "./PickerHeading";
+import { ColorInput } from "./ColorInput";
+import { t } from "../../i18n";
+import clsx from "clsx";
+
+import "./ColorPicker.scss";
+import React from "react";
+
+const isValidColor = (color: string) => {
+ const style = new Option().style;
+ style.color = color;
+ return !!style.color;
+};
+
+export const getColor = (color: string): string | null => {
+ if (isTransparent(color)) {
+ return color;
+ }
+
+ // testing for `#` first fixes a bug on Electron (more specfically, an
+ // Obsidian popout window), where a hex color without `#` is (incorrectly)
+ // considered valid
+ return isValidColor(`#${color}`)
+ ? `#${color}`
+ : isValidColor(color)
+ ? color
+ : null;
+};
+
+export interface ColorPickerProps {
+ type: ColorPickerType;
+ color: string | null;
+ onChange: (color: string) => void;
+ label: string;
+ elements: readonly ExcalidrawElement[];
+ appState: AppState;
+ palette?: ColorPaletteCustom | null;
+ topPicks?: ColorTuple;
+ updateData: (formData?: any) => void;
+}
+
+const ColorPickerPopupContent = ({
+ type,
+ color,
+ onChange,
+ label,
+ elements,
+ palette = COLOR_PALETTE,
+ updateData,
+}: Pick<
+ ColorPickerProps,
+ | "type"
+ | "color"
+ | "onChange"
+ | "label"
+ | "label"
+ | "elements"
+ | "palette"
+ | "updateData"
+>) => {
+ const [, setActiveColorPickerSection] = useAtom(activeColorPickerSectionAtom);
+
+ const { container } = useExcalidrawContainer();
+ const { isMobile, isLandscape } = useDevice();
+
+ const colorInputJSX = (
+
+
{t("colorPicker.hexCode")}
+
{
+ onChange(color);
+ }}
+ />
+
+ );
+
+ return (
+
+ {
+ // return focus to excalidraw container
+ if (container) {
+ container.focus();
+ }
+
+ e.preventDefault();
+ e.stopPropagation();
+
+ setActiveColorPickerSection(null);
+ }}
+ side={isMobile && !isLandscape ? "bottom" : "right"}
+ align={isMobile && !isLandscape ? "center" : "start"}
+ alignOffset={-16}
+ sideOffset={20}
+ style={{
+ zIndex: 9999,
+ backgroundColor: "var(--popup-bg-color)",
+ maxWidth: "208px",
+ maxHeight: window.innerHeight,
+ padding: "12px",
+ borderRadius: "8px",
+ boxSizing: "border-box",
+ overflowY: "auto",
+ boxShadow:
+ "0px 7px 14px rgba(0, 0, 0, 0.05), 0px 0px 3.12708px rgba(0, 0, 0, 0.0798), 0px 0px 0.931014px rgba(0, 0, 0, 0.1702)",
+ }}
+ >
+ {palette ? (
+ {
+ onChange(changedColor);
+ }}
+ label={label}
+ type={type}
+ elements={elements}
+ updateData={updateData}
+ >
+ {colorInputJSX}
+
+ ) : (
+ colorInputJSX
+ )}
+
+
+
+ );
+};
+
+const ColorPickerTrigger = ({
+ label,
+ color,
+ type,
+}: {
+ color: string | null;
+ label: string;
+ type: ColorPickerType;
+}) => {
+ return (
+
+
+
+ );
+};
+
+export const ColorPicker = ({
+ type,
+ color,
+ onChange,
+ label,
+ elements,
+ palette = COLOR_PALETTE,
+ topPicks,
+ updateData,
+ appState,
+}: ColorPickerProps) => {
+ return (
+
+
+
+
+
{
+ updateData({ openPopup: open ? type : null });
+ }}
+ >
+ {/* serves as an active color indicator as well */}
+
+ {/* popup content */}
+ {appState.openPopup === type && (
+
+ )}
+
+
+
+ );
+};
diff --git a/src/components/ColorPicker/CustomColorList.tsx b/src/components/ColorPicker/CustomColorList.tsx
new file mode 100644
index 0000000000..f606482b85
--- /dev/null
+++ b/src/components/ColorPicker/CustomColorList.tsx
@@ -0,0 +1,63 @@
+import clsx from "clsx";
+import { useAtom } from "jotai";
+import { useEffect, useRef } from "react";
+import { activeColorPickerSectionAtom } from "./colorPickerUtils";
+import HotkeyLabel from "./HotkeyLabel";
+
+interface CustomColorListProps {
+ colors: string[];
+ color: string | null;
+ onChange: (color: string) => void;
+ label: string;
+}
+
+export const CustomColorList = ({
+ colors,
+ color,
+ onChange,
+ label,
+}: CustomColorListProps) => {
+ const [activeColorPickerSection, setActiveColorPickerSection] = useAtom(
+ activeColorPickerSectionAtom,
+ );
+
+ const btnRef = useRef(null);
+
+ useEffect(() => {
+ if (btnRef.current) {
+ btnRef.current.focus();
+ }
+ }, [color, activeColorPickerSection]);
+
+ return (
+
+ {colors.map((c, i) => {
+ return (
+
{
+ onChange(c);
+ setActiveColorPickerSection("custom");
+ }}
+ title={c}
+ aria-label={label}
+ style={{ "--swatch-color": c }}
+ key={i}
+ >
+
+
+
+ );
+ })}
+
+ );
+};
diff --git a/src/components/ColorPicker/HotkeyLabel.tsx b/src/components/ColorPicker/HotkeyLabel.tsx
new file mode 100644
index 0000000000..145060d195
--- /dev/null
+++ b/src/components/ColorPicker/HotkeyLabel.tsx
@@ -0,0 +1,29 @@
+import React from "react";
+import { getContrastYIQ } from "./colorPickerUtils";
+
+interface HotkeyLabelProps {
+ color: string;
+ keyLabel: string | number;
+ isCustomColor?: boolean;
+ isShade?: boolean;
+}
+const HotkeyLabel = ({
+ color,
+ keyLabel,
+ isCustomColor = false,
+ isShade = false,
+}: HotkeyLabelProps) => {
+ return (
+
+ {isShade && "⇧"}
+ {keyLabel}
+
+ );
+};
+
+export default HotkeyLabel;
diff --git a/src/components/ColorPicker/Picker.tsx b/src/components/ColorPicker/Picker.tsx
new file mode 100644
index 0000000000..be6410e13f
--- /dev/null
+++ b/src/components/ColorPicker/Picker.tsx
@@ -0,0 +1,156 @@
+import React, { useEffect, useState } from "react";
+import { t } from "../../i18n";
+
+import { ExcalidrawElement } from "../../element/types";
+import { ShadeList } from "./ShadeList";
+
+import PickerColorList from "./PickerColorList";
+import { useAtom } from "jotai";
+import { CustomColorList } from "./CustomColorList";
+import { colorPickerKeyNavHandler } from "./keyboardNavHandlers";
+import PickerHeading from "./PickerHeading";
+import {
+ ColorPickerType,
+ activeColorPickerSectionAtom,
+ getColorNameAndShadeFromHex,
+ getMostUsedCustomColors,
+ isCustomColor,
+} from "./colorPickerUtils";
+import {
+ ColorPaletteCustom,
+ DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX,
+ DEFAULT_ELEMENT_STROKE_COLOR_INDEX,
+} from "../../colors";
+
+interface PickerProps {
+ color: string | null;
+ onChange: (color: string) => void;
+ label: string;
+ type: ColorPickerType;
+ elements: readonly ExcalidrawElement[];
+ palette: ColorPaletteCustom;
+ updateData: (formData?: any) => void;
+ children?: React.ReactNode;
+}
+
+export const Picker = ({
+ color,
+ onChange,
+ label,
+ type,
+ elements,
+ palette,
+ updateData,
+ children,
+}: PickerProps) => {
+ const [customColors] = React.useState(() => {
+ if (type === "canvasBackground") {
+ return [];
+ }
+ return getMostUsedCustomColors(elements, type, palette);
+ });
+
+ const [activeColorPickerSection, setActiveColorPickerSection] = useAtom(
+ activeColorPickerSectionAtom,
+ );
+
+ const colorObj = getColorNameAndShadeFromHex({
+ hex: color || "transparent",
+ palette,
+ });
+
+ useEffect(() => {
+ if (!activeColorPickerSection) {
+ const isCustom = isCustomColor({ color, palette });
+ const isCustomButNotInList =
+ isCustom && !customColors.includes(color || "");
+
+ setActiveColorPickerSection(
+ isCustomButNotInList
+ ? "hex"
+ : isCustom
+ ? "custom"
+ : colorObj?.shade != null
+ ? "shades"
+ : "baseColors",
+ );
+ }
+ }, [
+ activeColorPickerSection,
+ color,
+ palette,
+ setActiveColorPickerSection,
+ colorObj,
+ customColors,
+ ]);
+
+ const [activeShade, setActiveShade] = useState(
+ colorObj?.shade ??
+ (type === "elementBackground"
+ ? DEFAULT_ELEMENT_BACKGROUND_COLOR_INDEX
+ : DEFAULT_ELEMENT_STROKE_COLOR_INDEX),
+ );
+
+ useEffect(() => {
+ if (colorObj?.shade != null) {
+ setActiveShade(colorObj.shade);
+ }
+ }, [colorObj]);
+
+ return (
+
+
{
+ e.preventDefault();
+ e.stopPropagation();
+
+ colorPickerKeyNavHandler({
+ e,
+ activeColorPickerSection,
+ palette,
+ hex: color,
+ onChange,
+ customColors,
+ setActiveColorPickerSection,
+ updateData,
+ activeShade,
+ });
+ }}
+ className="color-picker-content"
+ // to allow focusing by clicking but not by tabbing
+ tabIndex={-1}
+ >
+ {!!customColors.length && (
+
+
+ {t("colorPicker.mostUsedCustomColors")}
+
+
+
+ )}
+
+
+
{t("colorPicker.colors")}
+
+
+
+
+
{t("colorPicker.shades")}
+
+
+ {children}
+
+
+ );
+};
diff --git a/src/components/ColorPicker/PickerColorList.tsx b/src/components/ColorPicker/PickerColorList.tsx
new file mode 100644
index 0000000000..bd2d2bfcf8
--- /dev/null
+++ b/src/components/ColorPicker/PickerColorList.tsx
@@ -0,0 +1,86 @@
+import clsx from "clsx";
+import { useAtom } from "jotai";
+import { useEffect, useRef } from "react";
+import {
+ activeColorPickerSectionAtom,
+ colorPickerHotkeyBindings,
+ getColorNameAndShadeFromHex,
+} from "./colorPickerUtils";
+import HotkeyLabel from "./HotkeyLabel";
+import { ColorPaletteCustom } from "../../colors";
+import { t } from "../../i18n";
+
+interface PickerColorListProps {
+ palette: ColorPaletteCustom;
+ color: string | null;
+ onChange: (color: string) => void;
+ label: string;
+ activeShade: number;
+}
+
+const PickerColorList = ({
+ palette,
+ color,
+ onChange,
+ label,
+ activeShade,
+}: PickerColorListProps) => {
+ const colorObj = getColorNameAndShadeFromHex({
+ hex: color || "transparent",
+ palette,
+ });
+ const [activeColorPickerSection, setActiveColorPickerSection] = useAtom(
+ activeColorPickerSectionAtom,
+ );
+
+ const btnRef = useRef(null);
+
+ useEffect(() => {
+ if (btnRef.current && activeColorPickerSection === "baseColors") {
+ btnRef.current.focus();
+ }
+ }, [colorObj?.colorName, activeColorPickerSection]);
+
+ return (
+
+ {Object.entries(palette).map(([key, value], index) => {
+ const color =
+ (Array.isArray(value) ? value[activeShade] : value) || "transparent";
+
+ const keybinding = colorPickerHotkeyBindings[index];
+ const label = t(`colors.${key.replace(/\d+/, "")}`, null, "");
+
+ return (
+
{
+ onChange(color);
+ setActiveColorPickerSection("baseColors");
+ }}
+ title={`${label}${
+ color.startsWith("#") ? ` ${color}` : ""
+ } — ${keybinding}`}
+ aria-label={`${label} — ${keybinding}`}
+ style={color ? { "--swatch-color": color } : undefined}
+ data-testid={`color-${key}`}
+ key={key}
+ >
+
+
+
+ );
+ })}
+
+ );
+};
+
+export default PickerColorList;
diff --git a/src/components/ColorPicker/PickerHeading.tsx b/src/components/ColorPicker/PickerHeading.tsx
new file mode 100644
index 0000000000..0437313669
--- /dev/null
+++ b/src/components/ColorPicker/PickerHeading.tsx
@@ -0,0 +1,7 @@
+import { ReactNode } from "react";
+
+const PickerHeading = ({ children }: { children: ReactNode }) => (
+ {children}
+);
+
+export default PickerHeading;
diff --git a/src/components/ColorPicker/ShadeList.tsx b/src/components/ColorPicker/ShadeList.tsx
new file mode 100644
index 0000000000..96c353e3df
--- /dev/null
+++ b/src/components/ColorPicker/ShadeList.tsx
@@ -0,0 +1,105 @@
+import clsx from "clsx";
+import { useAtom } from "jotai";
+import { useEffect, useRef } from "react";
+import {
+ activeColorPickerSectionAtom,
+ getColorNameAndShadeFromHex,
+} from "./colorPickerUtils";
+import HotkeyLabel from "./HotkeyLabel";
+import { t } from "../../i18n";
+import { ColorPaletteCustom } from "../../colors";
+
+interface ShadeListProps {
+ hex: string | null;
+ onChange: (color: string) => void;
+ palette: ColorPaletteCustom;
+}
+
+export const ShadeList = ({ hex, onChange, palette }: ShadeListProps) => {
+ const colorObj = getColorNameAndShadeFromHex({
+ hex: hex || "transparent",
+ palette,
+ });
+
+ const [activeColorPickerSection, setActiveColorPickerSection] = useAtom(
+ activeColorPickerSectionAtom,
+ );
+
+ const btnRef = useRef(null);
+
+ useEffect(() => {
+ if (btnRef.current && activeColorPickerSection === "shades") {
+ btnRef.current.focus();
+ }
+ }, [colorObj, activeColorPickerSection]);
+
+ if (colorObj) {
+ const { colorName, shade } = colorObj;
+
+ const shades = palette[colorName];
+
+ if (Array.isArray(shades)) {
+ return (
+
+ {shades.map((color, i) => (
+
{
+ onChange(color);
+ setActiveColorPickerSection("shades");
+ }}
+ >
+
+
+
+ ))}
+
+ );
+ }
+ }
+
+ return (
+
+
+
+ {t("colorPicker.noShades")}
+
+
+ );
+};
diff --git a/src/components/ColorPicker/TopPicks.tsx b/src/components/ColorPicker/TopPicks.tsx
new file mode 100644
index 0000000000..3345632ebf
--- /dev/null
+++ b/src/components/ColorPicker/TopPicks.tsx
@@ -0,0 +1,64 @@
+import clsx from "clsx";
+import { ColorPickerType } from "./colorPickerUtils";
+import {
+ DEFAULT_CANVAS_BACKGROUND_PICKS,
+ DEFAULT_ELEMENT_BACKGROUND_PICKS,
+ DEFAULT_ELEMENT_STROKE_PICKS,
+} from "../../colors";
+
+interface TopPicksProps {
+ onChange: (color: string) => void;
+ type: ColorPickerType;
+ activeColor: string | null;
+ topPicks?: readonly string[];
+}
+
+export const TopPicks = ({
+ onChange,
+ type,
+ activeColor,
+ topPicks,
+}: TopPicksProps) => {
+ let colors;
+ if (type === "elementStroke") {
+ colors = DEFAULT_ELEMENT_STROKE_PICKS;
+ }
+
+ if (type === "elementBackground") {
+ colors = DEFAULT_ELEMENT_BACKGROUND_PICKS;
+ }
+
+ if (type === "canvasBackground") {
+ colors = DEFAULT_CANVAS_BACKGROUND_PICKS;
+ }
+
+ // this one can overwrite defaults
+ if (topPicks) {
+ colors = topPicks;
+ }
+
+ if (!colors) {
+ console.error("Invalid type for TopPicks");
+ return null;
+ }
+
+ return (
+
+ {colors.map((color: string) => (
+
onChange(color)}
+ >
+
+
+ ))}
+
+ );
+};
diff --git a/src/components/ColorPicker/colorPickerUtils.ts b/src/components/ColorPicker/colorPickerUtils.ts
new file mode 100644
index 0000000000..4c4075b2a9
--- /dev/null
+++ b/src/components/ColorPicker/colorPickerUtils.ts
@@ -0,0 +1,139 @@
+import { ExcalidrawElement } from "../../element/types";
+import { atom } from "jotai";
+import {
+ ColorPickerColor,
+ ColorPaletteCustom,
+ MAX_CUSTOM_COLORS_USED_IN_CANVAS,
+} from "../../colors";
+
+export const getColorNameAndShadeFromHex = ({
+ palette,
+ hex,
+}: {
+ palette: ColorPaletteCustom;
+ hex: string;
+}): {
+ colorName: ColorPickerColor;
+ shade: number | null;
+} | null => {
+ for (const [colorName, colorVal] of Object.entries(palette)) {
+ if (Array.isArray(colorVal)) {
+ const shade = colorVal.indexOf(hex);
+ if (shade > -1) {
+ return { colorName: colorName as ColorPickerColor, shade };
+ }
+ } else if (colorVal === hex) {
+ return { colorName: colorName as ColorPickerColor, shade: null };
+ }
+ }
+ return null;
+};
+
+export const colorPickerHotkeyBindings = [
+ ["q", "w", "e", "r", "t"],
+ ["a", "s", "d", "f", "g"],
+ ["z", "x", "c", "v", "b"],
+].flat();
+
+export const isCustomColor = ({
+ color,
+ palette,
+}: {
+ color: string | null;
+ palette: ColorPaletteCustom;
+}) => {
+ if (!color) {
+ return false;
+ }
+ const paletteValues = Object.values(palette).flat();
+ return !paletteValues.includes(color);
+};
+
+export const getMostUsedCustomColors = (
+ elements: readonly ExcalidrawElement[],
+ type: "elementBackground" | "elementStroke",
+ palette: ColorPaletteCustom,
+) => {
+ const elementColorTypeMap = {
+ elementBackground: "backgroundColor",
+ elementStroke: "strokeColor",
+ };
+
+ const colors = elements.filter((element) => {
+ if (element.isDeleted) {
+ return false;
+ }
+
+ const color =
+ element[elementColorTypeMap[type] as "backgroundColor" | "strokeColor"];
+
+ return isCustomColor({ color, palette });
+ });
+
+ const colorCountMap = new Map();
+ colors.forEach((element) => {
+ const color =
+ element[elementColorTypeMap[type] as "backgroundColor" | "strokeColor"];
+ if (colorCountMap.has(color)) {
+ colorCountMap.set(color, colorCountMap.get(color)! + 1);
+ } else {
+ colorCountMap.set(color, 1);
+ }
+ });
+
+ return [...colorCountMap.entries()]
+ .sort((a, b) => b[1] - a[1])
+ .map((c) => c[0])
+ .slice(0, MAX_CUSTOM_COLORS_USED_IN_CANVAS);
+};
+
+export type ActiveColorPickerSectionAtomType =
+ | "custom"
+ | "baseColors"
+ | "shades"
+ | "hex"
+ | null;
+export const activeColorPickerSectionAtom =
+ atom(null);
+
+const calculateContrast = (r: number, g: number, b: number) => {
+ const yiq = (r * 299 + g * 587 + b * 114) / 1000;
+ return yiq >= 160 ? "black" : "white";
+};
+
+// inspiration from https://stackoverflow.com/a/11868398
+export const getContrastYIQ = (bgHex: string, isCustomColor: boolean) => {
+ if (isCustomColor) {
+ const style = new Option().style;
+ style.color = bgHex;
+
+ if (style.color) {
+ const rgb = style.color
+ .replace(/^(rgb|rgba)\(/, "")
+ .replace(/\)$/, "")
+ .replace(/\s/g, "")
+ .split(",");
+ const r = parseInt(rgb[0]);
+ const g = parseInt(rgb[1]);
+ const b = parseInt(rgb[2]);
+
+ return calculateContrast(r, g, b);
+ }
+ }
+
+ // TODO: ? is this wanted?
+ if (bgHex === "transparent") {
+ return "black";
+ }
+
+ const r = parseInt(bgHex.substring(1, 3), 16);
+ const g = parseInt(bgHex.substring(3, 5), 16);
+ const b = parseInt(bgHex.substring(5, 7), 16);
+
+ return calculateContrast(r, g, b);
+};
+
+export type ColorPickerType =
+ | "canvasBackground"
+ | "elementBackground"
+ | "elementStroke";
diff --git a/src/components/ColorPicker/keyboardNavHandlers.ts b/src/components/ColorPicker/keyboardNavHandlers.ts
new file mode 100644
index 0000000000..4ed539ceed
--- /dev/null
+++ b/src/components/ColorPicker/keyboardNavHandlers.ts
@@ -0,0 +1,249 @@
+import {
+ ColorPickerColor,
+ ColorPalette,
+ ColorPaletteCustom,
+ COLORS_PER_ROW,
+ COLOR_PALETTE,
+} from "../../colors";
+import { KEYS } from "../../keys";
+import { ValueOf } from "../../utility-types";
+import {
+ ActiveColorPickerSectionAtomType,
+ colorPickerHotkeyBindings,
+ getColorNameAndShadeFromHex,
+} from "./colorPickerUtils";
+
+const arrowHandler = (
+ eventKey: string,
+ currentIndex: number | null,
+ length: number,
+) => {
+ const rows = Math.ceil(length / COLORS_PER_ROW);
+
+ currentIndex = currentIndex ?? -1;
+
+ switch (eventKey) {
+ case "ArrowLeft": {
+ const prevIndex = currentIndex - 1;
+ return prevIndex < 0 ? length - 1 : prevIndex;
+ }
+ case "ArrowRight": {
+ return (currentIndex + 1) % length;
+ }
+ case "ArrowDown": {
+ const nextIndex = currentIndex + COLORS_PER_ROW;
+ return nextIndex >= length ? currentIndex % COLORS_PER_ROW : nextIndex;
+ }
+ case "ArrowUp": {
+ const prevIndex = currentIndex - COLORS_PER_ROW;
+ const newIndex =
+ prevIndex < 0 ? COLORS_PER_ROW * rows + prevIndex : prevIndex;
+ return newIndex >= length ? undefined : newIndex;
+ }
+ }
+};
+
+interface HotkeyHandlerProps {
+ e: React.KeyboardEvent;
+ colorObj: { colorName: ColorPickerColor; shade: number | null } | null;
+ onChange: (color: string) => void;
+ palette: ColorPaletteCustom;
+ customColors: string[];
+ setActiveColorPickerSection: (
+ update: React.SetStateAction,
+ ) => void;
+ activeShade: number;
+}
+
+const hotkeyHandler = ({
+ e,
+ colorObj,
+ onChange,
+ palette,
+ customColors,
+ setActiveColorPickerSection,
+ activeShade,
+}: HotkeyHandlerProps) => {
+ if (colorObj?.shade != null) {
+ // shift + numpad is extremely messed up on windows apparently
+ if (
+ ["Digit1", "Digit2", "Digit3", "Digit4", "Digit5"].includes(e.code) &&
+ e.shiftKey
+ ) {
+ const newShade = Number(e.code.slice(-1)) - 1;
+ onChange(palette[colorObj.colorName][newShade]);
+ setActiveColorPickerSection("shades");
+ }
+ }
+
+ if (["1", "2", "3", "4", "5"].includes(e.key)) {
+ const c = customColors[Number(e.key) - 1];
+ if (c) {
+ onChange(customColors[Number(e.key) - 1]);
+ setActiveColorPickerSection("custom");
+ }
+ }
+
+ if (colorPickerHotkeyBindings.includes(e.key)) {
+ const index = colorPickerHotkeyBindings.indexOf(e.key);
+ const paletteKey = Object.keys(palette)[index] as keyof ColorPalette;
+ const paletteValue = palette[paletteKey];
+ const r = Array.isArray(paletteValue)
+ ? paletteValue[activeShade]
+ : paletteValue;
+ onChange(r);
+ setActiveColorPickerSection("baseColors");
+ }
+};
+
+interface ColorPickerKeyNavHandlerProps {
+ e: React.KeyboardEvent;
+ activeColorPickerSection: ActiveColorPickerSectionAtomType;
+ palette: ColorPaletteCustom;
+ hex: string | null;
+ onChange: (color: string) => void;
+ customColors: string[];
+ setActiveColorPickerSection: (
+ update: React.SetStateAction,
+ ) => void;
+ updateData: (formData?: any) => void;
+ activeShade: number;
+}
+
+export const colorPickerKeyNavHandler = ({
+ e,
+ activeColorPickerSection,
+ palette,
+ hex,
+ onChange,
+ customColors,
+ setActiveColorPickerSection,
+ updateData,
+ activeShade,
+}: ColorPickerKeyNavHandlerProps) => {
+ if (e.key === KEYS.ESCAPE || !hex) {
+ updateData({ openPopup: null });
+ return;
+ }
+
+ const colorObj = getColorNameAndShadeFromHex({ hex, palette });
+
+ if (e.key === KEYS.TAB) {
+ const sectionsMap: Record<
+ NonNullable,
+ boolean
+ > = {
+ custom: !!customColors.length,
+ baseColors: true,
+ shades: colorObj?.shade != null,
+ hex: true,
+ };
+
+ const sections = Object.entries(sectionsMap).reduce((acc, [key, value]) => {
+ if (value) {
+ acc.push(key as ActiveColorPickerSectionAtomType);
+ }
+ return acc;
+ }, [] as ActiveColorPickerSectionAtomType[]);
+
+ const activeSectionIndex = sections.indexOf(activeColorPickerSection);
+ const indexOffset = e.shiftKey ? -1 : 1;
+ const nextSectionIndex =
+ activeSectionIndex + indexOffset > sections.length - 1
+ ? 0
+ : activeSectionIndex + indexOffset < 0
+ ? sections.length - 1
+ : activeSectionIndex + indexOffset;
+
+ const nextSection = sections[nextSectionIndex];
+
+ if (nextSection) {
+ setActiveColorPickerSection(nextSection);
+ }
+
+ if (nextSection === "custom") {
+ onChange(customColors[0]);
+ } else if (nextSection === "baseColors") {
+ const baseColorName = (
+ Object.entries(palette) as [string, ValueOf][]
+ ).find(([name, shades]) => {
+ if (Array.isArray(shades)) {
+ return shades.includes(hex);
+ } else if (shades === hex) {
+ return name;
+ }
+ return null;
+ });
+
+ if (!baseColorName) {
+ onChange(COLOR_PALETTE.black);
+ }
+ }
+
+ e.preventDefault();
+ e.stopPropagation();
+
+ return;
+ }
+
+ hotkeyHandler({
+ e,
+ colorObj,
+ onChange,
+ palette,
+ customColors,
+ setActiveColorPickerSection,
+ activeShade,
+ });
+
+ if (activeColorPickerSection === "shades") {
+ if (colorObj) {
+ const { shade } = colorObj;
+ const newShade = arrowHandler(e.key, shade, COLORS_PER_ROW);
+
+ if (newShade !== undefined) {
+ onChange(palette[colorObj.colorName][newShade]);
+ }
+ }
+ }
+
+ if (activeColorPickerSection === "baseColors") {
+ if (colorObj) {
+ const { colorName } = colorObj;
+ const colorNames = Object.keys(palette) as (keyof ColorPalette)[];
+ const indexOfColorName = colorNames.indexOf(colorName);
+
+ const newColorIndex = arrowHandler(
+ e.key,
+ indexOfColorName,
+ colorNames.length,
+ );
+
+ if (newColorIndex !== undefined) {
+ const newColorName = colorNames[newColorIndex];
+ const newColorNameValue = palette[newColorName];
+
+ onChange(
+ Array.isArray(newColorNameValue)
+ ? newColorNameValue[activeShade]
+ : newColorNameValue,
+ );
+ }
+ }
+ }
+
+ if (activeColorPickerSection === "custom") {
+ const indexOfColor = customColors.indexOf(hex);
+
+ const newColorIndex = arrowHandler(
+ e.key,
+ indexOfColor,
+ customColors.length,
+ );
+
+ if (newColorIndex !== undefined) {
+ const newColor = customColors[newColorIndex];
+ onChange(newColor);
+ }
+ }
+};
diff --git a/src/components/ImageExportDialog.tsx b/src/components/ImageExportDialog.tsx
index 3f8a9679f4..38467d6eb1 100644
--- a/src/components/ImageExportDialog.tsx
+++ b/src/components/ImageExportDialog.tsx
@@ -4,13 +4,17 @@ import { canvasToBlob } from "../data/blob";
import { NonDeletedExcalidrawElement } from "../element/types";
import { t } from "../i18n";
import { getSelectedElements, isSomeElementSelected } from "../scene";
-import { BinaryFiles, UIAppState } from "../types";
+import { AppClassProperties, BinaryFiles, UIAppState } from "../types";
import { Dialog } from "./Dialog";
import { clipboard } from "./icons";
import Stack from "./Stack";
import OpenColor from "open-color";
import { CheckboxItem } from "./CheckboxItem";
-import { DEFAULT_EXPORT_PADDING, isFirefox } from "../constants";
+import {
+ DEFAULT_EXPORT_PADDING,
+ EXPORT_IMAGE_TYPES,
+ isFirefox,
+} from "../constants";
import { nativeFileSystemSupported } from "../data/filesystem";
import { ActionManager } from "../actions/manager";
import { exportToCanvas } from "../packages/utils";
@@ -65,21 +69,14 @@ const ImageExportModal = ({
elements,
appState,
files,
- exportPadding = DEFAULT_EXPORT_PADDING,
actionManager,
- onExportToPng,
- onExportToSvg,
- onExportToClipboard,
+ onExportImage,
}: {
appState: UIAppState;
elements: readonly NonDeletedExcalidrawElement[];
files: BinaryFiles;
- exportPadding?: number;
actionManager: ActionManager;
- onExportToPng: ExportCB;
- onExportToSvg: ExportCB;
- onExportToClipboard: ExportCB;
- onCloseRequest: () => void;
+ onExportImage: AppClassProperties["onExportImage"];
}) => {
const someElementIsSelected = isSomeElementSelected(elements, appState);
const [exportSelected, setExportSelected] = useState(someElementIsSelected);
@@ -90,10 +87,6 @@ const ImageExportModal = ({
? getSelectedElements(elements, appState, true)
: elements;
- useEffect(() => {
- setExportSelected(someElementIsSelected);
- }, [someElementIsSelected]);
-
useEffect(() => {
const previewNode = previewRef.current;
if (!previewNode) {
@@ -107,7 +100,7 @@ const ImageExportModal = ({
elements: exportedElements,
appState,
files,
- exportPadding,
+ exportPadding: DEFAULT_EXPORT_PADDING,
maxWidthOrHeight: maxWidth,
})
.then((canvas) => {
@@ -122,7 +115,7 @@ const ImageExportModal = ({
console.error(error);
setRenderError(error);
});
- }, [appState, files, exportedElements, exportPadding]);
+ }, [appState, files, exportedElements]);
return (
@@ -177,7 +170,9 @@ const ImageExportModal = ({
color="indigo"
title={t("buttons.exportToPng")}
aria-label={t("buttons.exportToPng")}
- onClick={() => onExportToPng(exportedElements)}
+ onClick={() =>
+ onExportImage(EXPORT_IMAGE_TYPES.png, exportedElements)
+ }
>
PNG
@@ -185,7 +180,9 @@ const ImageExportModal = ({
color="red"
title={t("buttons.exportToSvg")}
aria-label={t("buttons.exportToSvg")}
- onClick={() => onExportToSvg(exportedElements)}
+ onClick={() =>
+ onExportImage(EXPORT_IMAGE_TYPES.svg, exportedElements)
+ }
>
SVG
@@ -194,7 +191,9 @@ const ImageExportModal = ({
{(probablySupportsClipboardBlob || isFirefox) && (
onExportToClipboard(exportedElements)}
+ onClick={() =>
+ onExportImage(EXPORT_IMAGE_TYPES.clipboard, exportedElements)
+ }
color="gray"
shade={7}
>
@@ -209,45 +208,31 @@ const ImageExportModal = ({
export const ImageExportDialog = ({
elements,
appState,
- setAppState,
files,
- exportPadding = DEFAULT_EXPORT_PADDING,
actionManager,
- onExportToPng,
- onExportToSvg,
- onExportToClipboard,
+ onExportImage,
+ onCloseRequest,
}: {
appState: UIAppState;
- setAppState: React.Component["setState"];
elements: readonly NonDeletedExcalidrawElement[];
files: BinaryFiles;
- exportPadding?: number;
actionManager: ActionManager;
- onExportToPng: ExportCB;
- onExportToSvg: ExportCB;
- onExportToClipboard: ExportCB;
+ onExportImage: AppClassProperties["onExportImage"];
+ onCloseRequest: () => void;
}) => {
- const handleClose = React.useCallback(() => {
- setAppState({ openDialog: null });
- }, [setAppState]);
+ if (appState.openDialog !== "imageExport") {
+ return null;
+ }
return (
- <>
- {appState.openDialog === "imageExport" && (
-
-
-
- )}
- >
+
+
+
);
};
diff --git a/src/components/LayerUI.tsx b/src/components/LayerUI.tsx
index 0e08eafa88..f05f5df116 100644
--- a/src/components/LayerUI.tsx
+++ b/src/components/LayerUI.tsx
@@ -2,23 +2,22 @@ import clsx from "clsx";
import React from "react";
import { ActionManager } from "../actions/manager";
import { CLASSES, DEFAULT_SIDEBAR, LIBRARY_SIDEBAR_WIDTH } from "../constants";
-import { exportCanvas } from "../data";
import { isTextElement, showSelectedShapeActions } from "../element";
import { NonDeletedExcalidrawElement } from "../element/types";
import { Language, t } from "../i18n";
import { calculateScrollCenter } from "../scene";
-import { ExportType } from "../scene/types";
import {
AppProps,
AppState,
ExcalidrawProps,
BinaryFiles,
UIAppState,
+ AppClassProperties,
} from "../types";
-import { capitalizeString, isShallowEqual, muteFSAbortError } from "../utils";
+import { capitalizeString, isShallowEqual } from "../utils";
import { SelectedShapeActions, ShapesSwitcher } from "./Actions";
import { ErrorDialog } from "./ErrorDialog";
-import { ExportCB, ImageExportDialog } from "./ImageExportDialog";
+import { ImageExportDialog } from "./ImageExportDialog";
import { FixedSideContainer } from "./FixedSideContainer";
import { HintViewer } from "./HintViewer";
import { Island } from "./Island";
@@ -31,7 +30,6 @@ import { HelpDialog } from "./HelpDialog";
import Stack from "./Stack";
import { UserList } from "./UserList";
import { JSONExportDialog } from "./JSONExportDialog";
-import { isImageFileHandle } from "../data/blob";
import { PenModeButton } from "./PenModeButton";
import { trackEvent } from "../analytics";
import { useDevice } from "../components/App";
@@ -69,6 +67,7 @@ interface LayerUIProps {
renderCustomStats?: ExcalidrawProps["renderCustomStats"];
UIOptions: AppProps["UIOptions"];
onImageAction: (data: { insertOnCanvasDirectly: boolean }) => void;
+ onExportImage: AppClassProperties["onExportImage"];
renderWelcomeScreen: boolean;
children?: React.ReactNode;
}
@@ -114,6 +113,7 @@ const LayerUI = ({
renderCustomStats,
UIOptions,
onImageAction,
+ onExportImage,
renderWelcomeScreen,
children,
}: LayerUIProps) => {
@@ -143,47 +143,14 @@ const LayerUI = ({
return null;
}
- const createExporter =
- (type: ExportType): ExportCB =>
- async (exportedElements) => {
- trackEvent("export", type, "ui");
- const fileHandle = await exportCanvas(
- type,
- exportedElements,
- // FIXME once we split UI canvas from element canvas
- appState as AppState,
- files,
- {
- exportBackground: appState.exportBackground,
- name: appState.name,
- viewBackgroundColor: appState.viewBackgroundColor,
- },
- )
- .catch(muteFSAbortError)
- .catch((error) => {
- console.error(error);
- setAppState({ errorMessage: error.message });
- });
-
- if (
- appState.exportEmbedScene &&
- fileHandle &&
- isImageFileHandle(fileHandle)
- ) {
- setAppState({ fileHandle });
- }
- };
-
return (
setAppState({ openDialog: null })}
/>
);
};
diff --git a/src/components/LibraryMenu.scss b/src/components/LibraryMenu.scss
index 6598b151b8..16715614ab 100644
--- a/src/components/LibraryMenu.scss
+++ b/src/components/LibraryMenu.scss
@@ -1,11 +1,6 @@
@import "open-color/open-color";
.excalidraw {
- .library-menu-items-container {
- height: 100%;
- width: 100%;
- }
-
.layer-ui__library {
display: flex;
flex-direction: column;
@@ -70,6 +65,16 @@
align-items: center;
justify-content: center;
gap: 0.625rem;
+ position: relative;
+
+ &--at-bottom::before {
+ content: "";
+ width: calc(100% - 1.5rem);
+ height: 1px;
+ position: absolute;
+ top: -1px;
+ background: var(--sidebar-border-color);
+ }
}
.library-menu-browse-button {
@@ -126,4 +131,20 @@
padding: 0.25rem 0.5rem;
}
}
+
+ .layer-ui__library .library-menu-dropdown-container {
+ position: relative;
+
+ &--in-heading {
+ padding: 0;
+ position: absolute;
+ top: 1rem;
+ right: 0.75rem;
+ z-index: 1;
+
+ .dropdown-menu {
+ top: 100%;
+ }
+ }
+ }
}
diff --git a/src/components/LibraryMenu.tsx b/src/components/LibraryMenu.tsx
index 7f25a69695..0101d0cb50 100644
--- a/src/components/LibraryMenu.tsx
+++ b/src/components/LibraryMenu.tsx
@@ -121,12 +121,11 @@ export const LibraryMenuContent = ({
/>
{showBtn && (
)}
diff --git a/src/components/LibraryMenuControlButtons.tsx b/src/components/LibraryMenuControlButtons.tsx
index 6f3e752082..86ac1b635e 100644
--- a/src/components/LibraryMenuControlButtons.tsx
+++ b/src/components/LibraryMenuControlButtons.tsx
@@ -1,33 +1,33 @@
-import { LibraryItem, ExcalidrawProps, UIAppState } from "../types";
+import { ExcalidrawProps, UIAppState } from "../types";
import LibraryMenuBrowseButton from "./LibraryMenuBrowseButton";
-import { LibraryDropdownMenu } from "./LibraryMenuHeaderContent";
+import clsx from "clsx";
export const LibraryMenuControlButtons = ({
- selectedItems,
- onSelectItems,
libraryReturnUrl,
theme,
id,
style,
+ children,
+ className,
}: {
- selectedItems: LibraryItem["id"][];
- onSelectItems: (id: LibraryItem["id"][]) => void;
libraryReturnUrl: ExcalidrawProps["libraryReturnUrl"];
theme: UIAppState["theme"];
id: string;
style: React.CSSProperties;
+ children?: React.ReactNode;
+ className?: string;
}) => {
return (
-
+
-
+ {children}
);
};
diff --git a/src/components/LibraryMenuHeaderContent.tsx b/src/components/LibraryMenuHeaderContent.tsx
index 07736f9d38..3f16bdb62a 100644
--- a/src/components/LibraryMenuHeaderContent.tsx
+++ b/src/components/LibraryMenuHeaderContent.tsx
@@ -23,6 +23,7 @@ import { Dialog } from "./Dialog";
import DropdownMenu from "./dropdownMenu/DropdownMenu";
import { isLibraryMenuOpenAtom } from "./LibraryMenu";
import { useUIAppState } from "../context/ui-appState";
+import clsx from "clsx";
const getSelectedItems = (
libraryItems: LibraryItems,
@@ -37,6 +38,7 @@ export const LibraryDropdownMenuButton: React.FC<{
resetLibrary: () => void;
onSelectItems: (items: LibraryItem["id"][]) => void;
appState: UIAppState;
+ className?: string;
}> = ({
setAppState,
selectedItems,
@@ -45,6 +47,7 @@ export const LibraryDropdownMenuButton: React.FC<{
resetLibrary,
onSelectItems,
appState,
+ className,
}) => {
const [libraryItemsData] = useAtom(libraryItemsAtom, jotaiScope);
const [isLibraryMenuOpen, setIsLibraryMenuOpen] = useAtom(
@@ -236,7 +239,7 @@ export const LibraryDropdownMenuButton: React.FC<{
};
return (
-
+
{renderLibraryMenu()}
{selectedItems.length > 0 && (
{selectedItems.length}
@@ -270,9 +273,11 @@ export const LibraryDropdownMenuButton: React.FC<{
export const LibraryDropdownMenu = ({
selectedItems,
onSelectItems,
+ className,
}: {
selectedItems: LibraryItem["id"][];
onSelectItems: (id: LibraryItem["id"][]) => void;
+ className?: string;
}) => {
const { library } = useApp();
const appState = useUIAppState();
@@ -308,6 +313,7 @@ export const LibraryDropdownMenu = ({
removeFromLibrary(libraryItemsData.libraryItems)
}
resetLibrary={resetLibrary}
+ className={className}
/>
);
};
diff --git a/src/components/LibraryMenuItems.scss b/src/components/LibraryMenuItems.scss
index 01c2a36ea7..1a3fa97152 100644
--- a/src/components/LibraryMenuItems.scss
+++ b/src/components/LibraryMenuItems.scss
@@ -26,6 +26,7 @@
}
.library-menu-items-container {
+ width: 100%;
display: flex;
flex-grow: 1;
flex-shrink: 1;
@@ -35,10 +36,14 @@
height: 100%;
justify-content: center;
margin: 0;
- border-bottom: 1px solid var(--sidebar-border-color);
position: relative;
+ & > div {
+ padding-left: 0.75rem;
+ padding-right: 0.75rem;
+ }
+
&__row {
display: grid;
grid-template-columns: repeat(4, 1fr);
@@ -59,6 +64,9 @@
font-size: 1.125rem;
font-weight: bold;
margin-bottom: 0.75rem;
+ width: 100%;
+ padding-right: 4rem; // due to dropdown button
+ box-sizing: border-box;
&--excal {
margin-top: 2rem;
@@ -75,4 +83,11 @@
color: var(--text-primary-color);
}
}
+
+ .library-menu-items-private-library-container {
+ // so that when you toggle between pending item and no items, there's
+ // no layout shift (this is hardcoded and works only with ENG locale)
+ min-height: 3.75rem;
+ width: 100%;
+ }
}
diff --git a/src/components/LibraryMenuItems.tsx b/src/components/LibraryMenuItems.tsx
index bc914c19c6..0f4dda589a 100644
--- a/src/components/LibraryMenuItems.tsx
+++ b/src/components/LibraryMenuItems.tsx
@@ -15,6 +15,7 @@ import { MIME_TYPES } from "../constants";
import Spinner from "./Spinner";
import { duplicateElements } from "../element/newElement";
import { LibraryMenuControlButtons } from "./LibraryMenuControlButtons";
+import { LibraryDropdownMenu } from "./LibraryMenuHeaderContent";
import "./LibraryMenuItems.scss";
@@ -207,6 +208,11 @@ const LibraryMenuItems = ({
const showBtn = !libraryItems.length && !pendingElements.length;
+ const isLibraryEmpty =
+ !pendingElements.length &&
+ !unpublishedItems.length &&
+ !publishedItems.length;
+
return (
+ {!isLibraryEmpty && (
+
+ )}
<>
-
- {(pendingElements.length > 0 ||
- unpublishedItems.length > 0 ||
- publishedItems.length > 0) && (
-
- {t("labels.personalLib")}
-
- )}
- {isLoading && (
-
-
+ {!isLibraryEmpty && (
+
+ {t("labels.personalLib")}
+
+ )}
+ {isLoading && (
+
+
+
+ )}
+
+ {!pendingElements.length && !unpublishedItems.length ? (
+
+
+ {t("library.noItems")}
+
+
+ {publishedItems.length > 0
+ ? t("library.hint_emptyPrivateLibrary")
+ : t("library.hint_emptyLibrary")}
+
+ ) : (
+ renderLibrarySection([
+ // append pending library item
+ ...(pendingElements.length
+ ? [{ id: null, elements: pendingElements }]
+ : []),
+ ...unpublishedItems,
+ ])
)}
- {!pendingElements.length && !unpublishedItems.length ? (
-
-
- {t("library.noItems")}
-
-
- {publishedItems.length > 0
- ? t("library.hint_emptyPrivateLibrary")
- : t("library.hint_emptyLibrary")}
-
-
- ) : (
- renderLibrarySection([
- // append pending library item
- ...(pendingElements.length
- ? [{ id: null, elements: pendingElements }]
- : []),
- ...unpublishedItems,
- ])
- )}
>
<>
@@ -304,9 +315,12 @@ const LibraryMenuItems = ({
id={id}
libraryReturnUrl={libraryReturnUrl}
theme={theme}
- selectedItems={selectedItems}
- onSelectItems={onSelectItems}
- />
+ >
+
+
)}
diff --git a/src/components/LibraryUnit.tsx b/src/components/LibraryUnit.tsx
index 749877cddf..7e8181d7b4 100644
--- a/src/components/LibraryUnit.tsx
+++ b/src/components/LibraryUnit.tsx
@@ -1,5 +1,4 @@
import clsx from "clsx";
-import oc from "open-color";
import { useEffect, useRef, useState } from "react";
import { useDevice } from "../components/App";
import { exportToSvg } from "../packages/utils";
@@ -7,6 +6,7 @@ import { LibraryItem } from "../types";
import "./LibraryUnit.scss";
import { CheckboxItem } from "./CheckboxItem";
import { PlusIcon } from "./icons";
+import { COLOR_PALETTE } from "../colors";
export const LibraryUnit = ({
id,
@@ -40,7 +40,7 @@ export const LibraryUnit = ({
elements,
appState: {
exportBackground: false,
- viewBackgroundColor: oc.white,
+ viewBackgroundColor: COLOR_PALETTE.white,
},
files: null,
});
diff --git a/src/components/ProjectName.tsx b/src/components/ProjectName.tsx
index db2b700273..47a77ac4c6 100644
--- a/src/components/ProjectName.tsx
+++ b/src/components/ProjectName.tsx
@@ -5,6 +5,7 @@ import { focusNearestParent } from "../utils";
import "./ProjectName.scss";
import { useExcalidrawContainer } from "./App";
+import { KEYS } from "../keys";
type Props = {
value: string;
@@ -26,7 +27,7 @@ export const ProjectName = (props: Props) => {
};
const handleKeyDown = (event: React.KeyboardEvent
) => {
- if (event.key === "Enter") {
+ if (event.key === KEYS.ENTER) {
event.preventDefault();
if (event.nativeEvent.isComposing || event.keyCode === 229) {
return;
diff --git a/src/components/Sidebar/Sidebar.scss b/src/components/Sidebar/Sidebar.scss
index 1b71af1132..200e94ef46 100644
--- a/src/components/Sidebar/Sidebar.scss
+++ b/src/components/Sidebar/Sidebar.scss
@@ -46,8 +46,17 @@
justify-content: space-between;
align-items: center;
width: 100%;
- padding-top: 1rem;
- padding-bottom: 1rem;
+ padding: 1rem 0.75rem;
+ position: relative;
+
+ &::after {
+ content: "";
+ width: calc(100% - 1.5rem);
+ height: 1px;
+ background: var(--sidebar-border-color);
+ position: absolute;
+ bottom: -1px;
+ }
}
.sidebar__header__buttons {
@@ -89,7 +98,7 @@
display: flex;
flex-direction: column;
flex: 1 1 auto;
- padding: 1rem 0.75rem;
+ padding: 1rem 0;
[role="tabpanel"] {
flex: 1;
@@ -161,9 +170,5 @@
border: none;
}
}
-
- .sidebar__header {
- border-bottom: 1px solid var(--sidebar-border-color);
- }
}
}
diff --git a/src/components/dropdownMenu/DropdownMenuContent.tsx b/src/components/dropdownMenu/DropdownMenuContent.tsx
index 3c50d474c4..7585649c8f 100644
--- a/src/components/dropdownMenu/DropdownMenuContent.tsx
+++ b/src/components/dropdownMenu/DropdownMenuContent.tsx
@@ -48,7 +48,7 @@ const MenuContent = ({
{children}
diff --git a/src/components/hoc/withInternalFallback.test.tsx b/src/components/hoc/withInternalFallback.test.tsx
new file mode 100644
index 0000000000..af43db58ae
--- /dev/null
+++ b/src/components/hoc/withInternalFallback.test.tsx
@@ -0,0 +1,100 @@
+import { render, queryAllByTestId } from "../../tests/test-utils";
+import { Excalidraw, MainMenu } from "../../packages/excalidraw/index";
+
+describe("Test internal component fallback rendering", () => {
+ it("should render only one menu per excalidraw instance (custom menu first scenario)", async () => {
+ const { container } = await render(
+
+
+ test
+
+
+
,
+ );
+
+ expect(queryAllByTestId(container, "dropdown-menu-button")?.length).toBe(2);
+
+ const excalContainers = container.querySelectorAll(
+ ".excalidraw-container",
+ );
+
+ expect(
+ queryAllByTestId(excalContainers[0], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ expect(
+ queryAllByTestId(excalContainers[1], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ });
+
+ it("should render only one menu per excalidraw instance (default menu first scenario)", async () => {
+ const { container } = await render(
+
+
+
+ test
+
+
,
+ );
+
+ expect(queryAllByTestId(container, "dropdown-menu-button")?.length).toBe(2);
+
+ const excalContainers = container.querySelectorAll(
+ ".excalidraw-container",
+ );
+
+ expect(
+ queryAllByTestId(excalContainers[0], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ expect(
+ queryAllByTestId(excalContainers[1], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ });
+
+ it("should render only one menu per excalidraw instance (two custom menus scenario)", async () => {
+ const { container } = await render(
+
+
+ test
+
+
+ test
+
+
,
+ );
+
+ expect(queryAllByTestId(container, "dropdown-menu-button")?.length).toBe(2);
+
+ const excalContainers = container.querySelectorAll(
+ ".excalidraw-container",
+ );
+
+ expect(
+ queryAllByTestId(excalContainers[0], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ expect(
+ queryAllByTestId(excalContainers[1], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ });
+
+ it("should render only one menu per excalidraw instance (two default menus scenario)", async () => {
+ const { container } = await render(
+
+
+
+
,
+ );
+
+ expect(queryAllByTestId(container, "dropdown-menu-button")?.length).toBe(2);
+
+ const excalContainers = container.querySelectorAll(
+ ".excalidraw-container",
+ );
+
+ expect(
+ queryAllByTestId(excalContainers[0], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ expect(
+ queryAllByTestId(excalContainers[1], "dropdown-menu-button")?.length,
+ ).toBe(1);
+ });
+});
diff --git a/src/components/hoc/withInternalFallback.tsx b/src/components/hoc/withInternalFallback.tsx
index 581a1874f5..4131c51ec9 100644
--- a/src/components/hoc/withInternalFallback.tsx
+++ b/src/components/hoc/withInternalFallback.tsx
@@ -1,5 +1,5 @@
import { atom, useAtom } from "jotai";
-import React, { useLayoutEffect } from "react";
+import React, { useLayoutEffect, useRef } from "react";
import { useTunnels } from "../../context/tunnels";
export const withInternalFallback = (
@@ -7,13 +7,6 @@ export const withInternalFallback =
(
Component: React.FC
,
) => {
const renderAtom = atom(0);
- // flag set on initial render to tell the fallback component to skip the
- // render until mount counter are initialized. This is because the counter
- // is initialized in an effect, and thus we could end rendering both
- // components at the same time until counter is initialized.
- let preferHost = false;
-
- let counter = 0;
const WrapperComponent: React.FC<
P & {
@@ -21,38 +14,52 @@ export const withInternalFallback =
(
}
> = (props) => {
const { jotaiScope } = useTunnels();
- const [, setRender] = useAtom(renderAtom, jotaiScope);
+ // for rerenders
+ const [, setCounter] = useAtom(renderAtom, jotaiScope);
+ // for initial & subsequent renders. Tracked as component state
+ // due to excalidraw multi-instance scanerios.
+ const metaRef = useRef({
+ // flag set on initial render to tell the fallback component to skip the
+ // render until mount counter are initialized. This is because the counter
+ // is initialized in an effect, and thus we could end rendering both
+ // components at the same time until counter is initialized.
+ preferHost: false,
+ counter: 0,
+ });
useLayoutEffect(() => {
- setRender((c) => {
+ const meta = metaRef.current;
+ setCounter((c) => {
const next = c + 1;
- counter = next;
+ meta.counter = next;
return next;
});
return () => {
- setRender((c) => {
+ setCounter((c) => {
const next = c - 1;
- counter = next;
+ meta.counter = next;
if (!next) {
- preferHost = false;
+ meta.preferHost = false;
}
return next;
});
};
- }, [setRender]);
+ }, [setCounter]);
if (!props.__fallback) {
- preferHost = true;
+ metaRef.current.preferHost = true;
}
// ensure we don't render fallback and host components at the same time
if (
// either before the counters are initialized
- (!counter && props.__fallback && preferHost) ||
+ (!metaRef.current.counter &&
+ props.__fallback &&
+ metaRef.current.preferHost) ||
// or after the counters are initialized, and both are rendered
// (this is the default when host renders as well)
- (counter > 1 && props.__fallback)
+ (metaRef.current.counter > 1 && props.__fallback)
) {
return null;
}
diff --git a/src/constants.ts b/src/constants.ts
index 5b59679cf3..3b21dd40f2 100644
--- a/src/constants.ts
+++ b/src/constants.ts
@@ -1,7 +1,7 @@
import cssVariables from "./css/variables.module.scss";
import { AppProps } from "./types";
import { ExcalidrawElement, FontFamilyValues } from "./element/types";
-import oc from "open-color";
+import { COLOR_PALETTE } from "./colors";
export const isDarwin = /Mac|iPod|iPhone|iPad/.test(navigator.platform);
export const isWindows = /^Win/.test(navigator.platform);
@@ -131,6 +131,12 @@ export const MIME_TYPES = {
...IMAGE_MIME_TYPES,
} as const;
+export const EXPORT_IMAGE_TYPES = {
+ png: "png",
+ svg: "svg",
+ clipboard: "clipboard",
+} as const;
+
export const EXPORT_DATA_TYPES = {
excalidraw: "excalidraw",
excalidrawClipboard: "excalidraw/clipboard",
@@ -266,8 +272,8 @@ export const DEFAULT_ELEMENT_PROPS: {
opacity: ExcalidrawElement["opacity"];
locked: ExcalidrawElement["locked"];
} = {
- strokeColor: oc.black,
- backgroundColor: "transparent",
+ strokeColor: COLOR_PALETTE.black,
+ backgroundColor: COLOR_PALETTE.transparent,
fillStyle: "hachure",
strokeWidth: 1,
strokeStyle: "solid",
diff --git a/src/css/styles.scss b/src/css/styles.scss
index d9d8544a08..3fc2ff56d1 100644
--- a/src/css/styles.scss
+++ b/src/css/styles.scss
@@ -538,6 +538,10 @@
height: 3px;
}
+ select::-webkit-scrollbar {
+ width: 10px;
+ }
+
::-webkit-scrollbar-thumb {
background: var(--scrollbar-thumb);
border-radius: 10px;
diff --git a/src/data/restore.ts b/src/data/restore.ts
index fc123a69d6..a6fc86306a 100644
--- a/src/data/restore.ts
+++ b/src/data/restore.ts
@@ -35,7 +35,6 @@ import { LinearElementEditor } from "../element/linearElementEditor";
import { bumpVersion } from "../element/mutateElement";
import { getFontString, getUpdatedTimestamp, updateActiveTool } from "../utils";
import { arrayToMap } from "../utils";
-import oc from "open-color";
import { MarkOptional, Mutable } from "../utility-types";
import {
detectLineHeight,
@@ -43,6 +42,7 @@ import {
measureBaseline,
} from "../element/textElement";
import { convertToExcalidrawElements } from "../element/newElement";
+import { COLOR_PALETTE } from "../colors";
type RestoredAppState = Omit<
AppState,
diff --git a/src/element/textWysiwyg.test.tsx b/src/element/textWysiwyg.test.tsx
index f3c75db8bb..294c132636 100644
--- a/src/element/textWysiwyg.test.tsx
+++ b/src/element/textWysiwyg.test.tsx
@@ -1521,7 +1521,7 @@ describe("textWysiwyg", () => {
roundness: {
type: 3,
},
- strokeColor: "#000000",
+ strokeColor: "#1e1e1e",
strokeStyle: "solid",
strokeWidth: 1,
type: "rectangle",
diff --git a/src/element/textWysiwyg.tsx b/src/element/textWysiwyg.tsx
index 63bc9e4a44..5b94ab3e8a 100644
--- a/src/element/textWysiwyg.tsx
+++ b/src/element/textWysiwyg.tsx
@@ -254,7 +254,6 @@ export const textWysiwyg = ({
const initialSelectionStart = editable.selectionStart;
const initialSelectionEnd = editable.selectionEnd;
const initialLength = editable.value.length;
- editable.value = updatedTextElement.originalText;
// restore cursor position after value updated so it doesn't
// go to the end of text when container auto expanded
@@ -358,6 +357,7 @@ export const textWysiwyg = ({
overflowWrap: "break-word",
boxSizing: "content-box",
});
+ editable.value = element.originalText;
updateWysiwygStyle();
if (onChange) {
@@ -636,20 +636,46 @@ export const textWysiwyg = ({
// in that same tick.
const target = event?.target;
- const isTargetColorPicker =
- target instanceof HTMLInputElement &&
- target.closest(".color-picker-input") &&
- isWritableElement(target);
+ const isTargetPickerTrigger =
+ target instanceof HTMLElement &&
+ target.classList.contains("active-color");
setTimeout(() => {
editable.onblur = handleSubmit;
- if (target && isTargetColorPicker) {
- target.onblur = () => {
- editable.focus();
+
+ if (isTargetPickerTrigger) {
+ const callback = (
+ mutationList: MutationRecord[],
+ observer: MutationObserver,
+ ) => {
+ const radixIsRemoved = mutationList.find(
+ (mutation) =>
+ mutation.removedNodes.length > 0 &&
+ (mutation.removedNodes[0] as HTMLElement).dataset
+ ?.radixPopperContentWrapper !== undefined,
+ );
+
+ if (radixIsRemoved) {
+ // should work without this in theory
+ // and i think it does actually but radix probably somewhere,
+ // somehow sets the focus elsewhere
+ setTimeout(() => {
+ editable.focus();
+ });
+
+ observer.disconnect();
+ }
};
+
+ const observer = new MutationObserver(callback);
+
+ observer.observe(document.querySelector(".excalidraw-container")!, {
+ childList: true,
+ });
}
+
// case: clicking on the same property → no change → no update → no focus
- if (!isTargetColorPicker) {
+ if (!isTargetPickerTrigger) {
editable.focus();
}
});
@@ -657,16 +683,16 @@ export const textWysiwyg = ({
// prevent blur when changing properties from the menu
const onPointerDown = (event: MouseEvent) => {
- const isTargetColorPicker =
- event.target instanceof HTMLInputElement &&
- event.target.closest(".color-picker-input") &&
- isWritableElement(event.target);
+ const isTargetPickerTrigger =
+ event.target instanceof HTMLElement &&
+ event.target.classList.contains("active-color");
+
if (
((event.target instanceof HTMLElement ||
event.target instanceof SVGElement) &&
event.target.closest(`.${CLASSES.SHAPE_ACTIONS_MENU}`) &&
!isWritableElement(event.target)) ||
- isTargetColorPicker
+ isTargetPickerTrigger
) {
editable.onblur = null;
window.addEventListener("pointerup", bindBlurEvent);
@@ -680,7 +706,7 @@ export const textWysiwyg = ({
const unbindUpdate = Scene.getScene(element)!.addCallback(() => {
updateWysiwygStyle();
const isColorPickerActive = !!document.activeElement?.closest(
- ".color-picker-input",
+ ".color-picker-content",
);
if (!isColorPickerActive) {
editable.focus();
diff --git a/src/excalidraw-app/collab/RoomDialog.tsx b/src/excalidraw-app/collab/RoomDialog.tsx
index 50f586efc6..4810b5a559 100644
--- a/src/excalidraw-app/collab/RoomDialog.tsx
+++ b/src/excalidraw-app/collab/RoomDialog.tsx
@@ -17,6 +17,7 @@ import { trackEvent } from "../../analytics";
import { getFrame } from "../../utils";
import DialogActionButton from "../../components/DialogActionButton";
import { useI18n } from "../../i18n";
+import { KEYS } from "../../keys";
const getShareIcon = () => {
const navigator = window.navigator as any;
@@ -148,13 +149,15 @@ const RoomDialog = ({
value={username.trim() || ""}
className="RoomDialog-username TextInput"
onChange={(event) => onUsernameChange(event.target.value)}
- onKeyPress={(event) => event.key === "Enter" && handleClose()}
+ onKeyPress={(event) =>
+ event.key === KEYS.ENTER && handleClose()
+ }
/>
{"🔒"}
- {" "}
+
{t("roomDialog.desc_privacy")}
{t("roomDialog.desc_exitSession")}
diff --git a/src/excalidraw-app/components/LanguageList.tsx b/src/excalidraw-app/components/LanguageList.tsx
index aaa5f21373..c80acc9b60 100644
--- a/src/excalidraw-app/components/LanguageList.tsx
+++ b/src/excalidraw-app/components/LanguageList.tsx
@@ -1,7 +1,7 @@
import { useSetAtom } from "jotai";
import React from "react";
import { appLangCodeAtom } from "..";
-import { defaultLang, useI18n } from "../../i18n";
+import { useI18n } from "../../i18n";
import { languages } from "../../i18n";
export const LanguageList = ({ style }: { style?: React.CSSProperties }) => {
@@ -16,9 +16,6 @@ export const LanguageList = ({ style }: { style?: React.CSSProperties }) => {
aria-label={t("buttons.selectLanguage")}
style={style}
>
-
- {defaultLang.label}
-
{languages.map((lang) => (
{lang.label}
diff --git a/src/i18n.ts b/src/i18n.ts
index 7a6300860a..7c688b210b 100644
--- a/src/i18n.ts
+++ b/src/i18n.ts
@@ -14,60 +14,61 @@ export interface Language {
export const defaultLang = { code: "en", label: "English" };
-const allLanguages: Language[] = [
- { code: "ar-SA", label: "العربية", rtl: true },
- { code: "bg-BG", label: "Български" },
- { code: "ca-ES", label: "Català" },
- { code: "cs-CZ", label: "Česky" },
- { code: "de-DE", label: "Deutsch" },
- { code: "el-GR", label: "Ελληνικά" },
- { code: "es-ES", label: "Español" },
- { code: "eu-ES", label: "Euskara" },
- { code: "fa-IR", label: "فارسی", rtl: true },
- { code: "fi-FI", label: "Suomi" },
- { code: "fr-FR", label: "Français" },
- { code: "gl-ES", label: "Galego" },
- { code: "he-IL", label: "עברית", rtl: true },
- { code: "hi-IN", label: "हिन्दी" },
- { code: "hu-HU", label: "Magyar" },
- { code: "id-ID", label: "Bahasa Indonesia" },
- { code: "it-IT", label: "Italiano" },
- { code: "ja-JP", label: "日本語" },
- { code: "kab-KAB", label: "Taqbaylit" },
- { code: "kk-KZ", label: "Қазақ тілі" },
- { code: "ko-KR", label: "한국어" },
- { code: "ku-TR", label: "Kurdî" },
- { code: "lt-LT", label: "Lietuvių" },
- { code: "lv-LV", label: "Latviešu" },
- { code: "my-MM", label: "Burmese" },
- { code: "nb-NO", label: "Norsk bokmål" },
- { code: "nl-NL", label: "Nederlands" },
- { code: "nn-NO", label: "Norsk nynorsk" },
- { code: "oc-FR", label: "Occitan" },
- { code: "pa-IN", label: "ਪੰਜਾਬੀ" },
- { code: "pl-PL", label: "Polski" },
- { code: "pt-BR", label: "Português Brasileiro" },
- { code: "pt-PT", label: "Português" },
- { code: "ro-RO", label: "Română" },
- { code: "ru-RU", label: "Русский" },
- { code: "sk-SK", label: "Slovenčina" },
- { code: "sv-SE", label: "Svenska" },
- { code: "sl-SI", label: "Slovenščina" },
- { code: "tr-TR", label: "Türkçe" },
- { code: "uk-UA", label: "Українська" },
- { code: "zh-CN", label: "简体中文" },
- { code: "zh-TW", label: "繁體中文" },
- { code: "vi-VN", label: "Tiếng Việt" },
- { code: "mr-IN", label: "मराठी" },
-].concat([defaultLang]);
-
-export const languages: Language[] = allLanguages
- .sort((left, right) => (left.label > right.label ? 1 : -1))
- .filter(
- (lang) =>
- (percentages as Record)[lang.code] >=
- COMPLETION_THRESHOLD,
- );
+export const languages: Language[] = [
+ defaultLang,
+ ...[
+ { code: "ar-SA", label: "العربية", rtl: true },
+ { code: "bg-BG", label: "Български" },
+ { code: "ca-ES", label: "Català" },
+ { code: "cs-CZ", label: "Česky" },
+ { code: "de-DE", label: "Deutsch" },
+ { code: "el-GR", label: "Ελληνικά" },
+ { code: "es-ES", label: "Español" },
+ { code: "eu-ES", label: "Euskara" },
+ { code: "fa-IR", label: "فارسی", rtl: true },
+ { code: "fi-FI", label: "Suomi" },
+ { code: "fr-FR", label: "Français" },
+ { code: "gl-ES", label: "Galego" },
+ { code: "he-IL", label: "עברית", rtl: true },
+ { code: "hi-IN", label: "हिन्दी" },
+ { code: "hu-HU", label: "Magyar" },
+ { code: "id-ID", label: "Bahasa Indonesia" },
+ { code: "it-IT", label: "Italiano" },
+ { code: "ja-JP", label: "日本語" },
+ { code: "kab-KAB", label: "Taqbaylit" },
+ { code: "kk-KZ", label: "Қазақ тілі" },
+ { code: "ko-KR", label: "한국어" },
+ { code: "ku-TR", label: "Kurdî" },
+ { code: "lt-LT", label: "Lietuvių" },
+ { code: "lv-LV", label: "Latviešu" },
+ { code: "my-MM", label: "Burmese" },
+ { code: "nb-NO", label: "Norsk bokmål" },
+ { code: "nl-NL", label: "Nederlands" },
+ { code: "nn-NO", label: "Norsk nynorsk" },
+ { code: "oc-FR", label: "Occitan" },
+ { code: "pa-IN", label: "ਪੰਜਾਬੀ" },
+ { code: "pl-PL", label: "Polski" },
+ { code: "pt-BR", label: "Português Brasileiro" },
+ { code: "pt-PT", label: "Português" },
+ { code: "ro-RO", label: "Română" },
+ { code: "ru-RU", label: "Русский" },
+ { code: "sk-SK", label: "Slovenčina" },
+ { code: "sv-SE", label: "Svenska" },
+ { code: "sl-SI", label: "Slovenščina" },
+ { code: "tr-TR", label: "Türkçe" },
+ { code: "uk-UA", label: "Українська" },
+ { code: "zh-CN", label: "简体中文" },
+ { code: "zh-TW", label: "繁體中文" },
+ { code: "vi-VN", label: "Tiếng Việt" },
+ { code: "mr-IN", label: "मराठी" },
+ ]
+ .filter(
+ (lang) =>
+ (percentages as Record)[lang.code] >=
+ COMPLETION_THRESHOLD,
+ )
+ .sort((left, right) => (left.label > right.label ? 1 : -1)),
+];
const TEST_LANG_CODE = "__test__";
if (process.env.NODE_ENV === ENV.DEVELOPMENT) {
@@ -123,7 +124,8 @@ const findPartsForData = (data: any, parts: string[]) => {
export const t = (
path: string,
- replacement?: { [key: string]: string | number },
+ replacement?: { [key: string]: string | number } | null,
+ fallback?: string,
) => {
if (currentLang.code.startsWith(TEST_LANG_CODE)) {
const name = replacement
@@ -135,9 +137,16 @@ export const t = (
const parts = path.split(".");
let translation =
findPartsForData(currentLangData, parts) ||
- findPartsForData(fallbackLangData, parts);
+ findPartsForData(fallbackLangData, parts) ||
+ fallback;
if (translation === undefined) {
- throw new Error(`Can't find translation for ${path}`);
+ const errorMessage = `Can't find translation for ${path}`;
+ // in production, don't blow up the app on a missing translation key
+ if (process.env.NODE_ENV === "production") {
+ console.warn(errorMessage);
+ return "";
+ }
+ throw new Error(errorMessage);
}
if (replacement) {
diff --git a/src/locales/ar-SA.json b/src/locales/ar-SA.json
index 09e5d1485e..c02cd18994 100644
--- a/src/locales/ar-SA.json
+++ b/src/locales/ar-SA.json
@@ -264,16 +264,11 @@
"canvasTooBigTip": "نصيحة: حاول تحريك العناصر البعيدة بشكل أقرب قليلاً."
},
"errorSplash": {
- "headingMain_pre": "حدث خطأ، حاول مرة أخرى ",
- "headingMain_button": "إعادة تحميل الصفحة.",
+ "headingMain": "",
"clearCanvasMessage": "إذا لم تعمل إعادة التحميل، حاول مرة أخرى ",
- "clearCanvasMessage_button": "مسح اللوحة.",
"clearCanvasCaveat": " هذا سيؤدي إلى فقدان العمل ",
- "trackedToSentry_pre": "الخطأ ",
- "trackedToSentry_post": " تم تعقبه على نظامنا.",
- "openIssueMessage_pre": "كنا حذرين جدا لعدم تضمين معلومات المشهد الخاصة بك في الخطأ. إذا لم يكن المشهد خاصًا ، يرجى النظر في متابعة هذا الأمر ",
- "openIssueMessage_button": "متعقّب الخلل.",
- "openIssueMessage_post": " يرجى تضمين المعلومات أدناة عن طريق نسخ ولصق المشكلة في GitHub.",
+ "trackedToSentry": "",
+ "openIssueMessage": "",
"sceneContent": "محتوى المشهد:"
},
"roomDialog": {
@@ -353,29 +348,16 @@
"required": "مطلوب",
"website": "أدخل عنوان URL صالح"
},
- "noteDescription": {
- "pre": "",
- "link": "مستودع المكتبة العامة",
- "post": "ليستخدمها الآخرون في رسوماتهم."
- },
- "noteGuidelines": {
- "pre": "يجب الموافقة على المكتبة يدويًا أولاً. يرجى قراءة ",
- "link": "الإرشادات",
- "post": ""
- },
- "noteLicense": {
- "pre": "",
- "link": "رخصة إم أي تي ",
- "post": "وهو ما يعني باختصار أنه يمكن لأي شخص استخدامها دون قيود."
- },
+ "noteDescription": "",
+ "noteGuidelines": "",
+ "noteLicense": "",
"noteItems": "يجب أن يكون لكل عنصر مكتبة اسمه الخاص حتى يكون قابلاً للتصفية. سيتم تضمين عناصر المكتبة التالية:",
"atleastOneLibItem": "يرجى تحديد عنصر مكتبة واحد على الأقل للبدء",
"republishWarning": ""
},
"publishSuccessDialog": {
"title": "تم إرسال المكتبة",
- "content": "شكرا لك {{authorName}}. لقد تم إرسال مكتبتك للمراجعة. يمكنك تتبع الحالة",
- "link": "هنا"
+ "content": "شكرا لك {{authorName}}. لقد تم إرسال مكتبتك للمراجعة. يمكنك تتبع الحالة"
},
"confirmDialog": {
"resetLibrary": "إعادة ضبط المكتبة",
@@ -412,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "أبيض",
- "f8f9fa": "رمادي 0",
- "f1f3f5": "رمادي 1",
- "fff5f5": "أحمر 0",
- "fff0f6": "وردي 0",
- "f8f0fc": "عنبي 0",
- "f3f0ff": "بنفسجي 0",
- "edf2ff": "نيلي 0",
- "e7f5ff": "أزرق 0",
- "e3fafc": "سماوي 0",
- "e6fcf5": "تركواز 0",
- "ebfbee": "أخضر 0",
- "f4fce3": "ليموني 0",
- "fff9db": "أصفر 0",
- "fff4e6": "برتقالي 0",
"transparent": "شفاف",
- "ced4da": "رمادي 4",
- "868e96": "رمادي 6",
- "fa5252": "أحمر 6",
- "e64980": "وردي 6",
- "be4bdb": "عنبي 6",
- "7950f2": "بنفسجي 6",
- "4c6ef5": "نيلي 6",
- "228be6": "أزرق 6",
- "15aabf": "سماوي 6",
- "12b886": "تركواز 6",
- "40c057": "أخضر 6",
- "82c91e": "ليموني 6",
- "fab005": "أصفر 6",
- "fd7e14": "برتقالي 6",
- "000000": "أسود",
- "343a40": "رمادي 8",
- "495057": "رمادي 7",
- "c92a2a": "أحمر 9",
- "a61e4d": "وردي 9",
- "862e9c": "عنبي 9",
- "5f3dc4": "بنفسجي 9",
- "364fc7": "نيلي 9",
- "1864ab": "أزرق 9",
- "0b7285": "سماوي 9",
- "087f5b": "تركواز 9",
- "2b8a3e": "أخضر 9",
- "5c940d": "ليموني 9",
- "e67700": "أصفر 9",
- "d9480f": "برتقالي 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -470,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/bg-BG.json b/src/locales/bg-BG.json
index ef9a3759d5..724a5dcf19 100644
--- a/src/locales/bg-BG.json
+++ b/src/locales/bg-BG.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/bn-BD.json b/src/locales/bn-BD.json
index d652c1ebc8..f7132f8e77 100644
--- a/src/locales/bn-BD.json
+++ b/src/locales/bn-BD.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "সাদা",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "কালো",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/ca-ES.json b/src/locales/ca-ES.json
index 02bb253d51..c6cb0051bd 100644
--- a/src/locales/ca-ES.json
+++ b/src/locales/ca-ES.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Fer servir {{shortcut}} per enganxar com un sol element,\no enganxeu-lo en un editor de text existent"
},
"colors": {
- "ffffff": "Blanc",
- "f8f9fa": "Gris 0",
- "f1f3f5": "Gris 1",
- "fff5f5": "Vermell 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Malva 0",
- "f3f0ff": "Violat 0",
- "edf2ff": "Indi 0",
- "e7f5ff": "Blau 0",
- "e3fafc": "Cian 0",
- "e6fcf5": "Xarxet 0",
- "ebfbee": "Verd 0",
- "f4fce3": "Llima 0",
- "fff9db": "Groc 0",
- "fff4e6": "Taronja 0",
"transparent": "Transparent",
- "ced4da": "Gris 4",
- "868e96": "Gris 6",
- "fa5252": "Vermell 6",
- "e64980": "Rosa 6",
- "be4bdb": "Malva 6",
- "7950f2": "Violat 6",
- "4c6ef5": "Indi 6",
- "228be6": "Blau 6",
- "15aabf": "Cian 6",
- "12b886": "Xarxet 6",
- "40c057": "Verd 6",
- "82c91e": "Llima 6",
- "fab005": "Groc 6",
- "fd7e14": "Taronja 6",
- "000000": "Negre",
- "343a40": "Gris 8",
- "495057": "Gris 7",
- "c92a2a": "Vermell 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Malva 9",
- "5f3dc4": "Violat 9",
- "364fc7": "Indi 9",
- "1864ab": "Blau 9",
- "0b7285": "Cian 9",
- "087f5b": "Xarxet 9",
- "2b8a3e": "Verd 9",
- "5c940d": "Llima 9",
- "e67700": "Groc 9",
- "d9480f": "Taronja 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Selecciona una eina i comença a dibuixar!",
"helpHint": "Dreceres i ajuda"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/cs-CZ.json b/src/locales/cs-CZ.json
index 3ab4827b74..1b80b7453d 100644
--- a/src/locales/cs-CZ.json
+++ b/src/locales/cs-CZ.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Bílá",
- "f8f9fa": "Šedá 0",
- "f1f3f5": "Šedá 1",
- "fff5f5": "Červená 0",
- "fff0f6": "Růžová 0",
- "f8f0fc": "Vínová 0",
- "f3f0ff": "Fialová 0",
- "edf2ff": "Indigová 0",
- "e7f5ff": "Modrá 0",
- "e3fafc": "Azurová 0",
- "e6fcf5": "Modrozelená 0",
- "ebfbee": "Zelená 0",
- "f4fce3": "Limetková 0",
- "fff9db": "Žlutá 0",
- "fff4e6": "Oranžová 0",
"transparent": "Průhledná",
- "ced4da": "Šedá 4",
- "868e96": "Šedá 6",
- "fa5252": "Červená 6",
- "e64980": "Růžová 6",
- "be4bdb": "Vínová 6",
- "7950f2": "Fialová 6",
- "4c6ef5": "Indigová 6",
- "228be6": "Modrá 6",
- "15aabf": "Azurová 6",
- "12b886": "Modrozelená 6",
- "40c057": "Zelená 6",
- "82c91e": "Limetková 6",
- "fab005": "Žlutá 6",
- "fd7e14": "Oranžová 6",
- "000000": "Černá",
- "343a40": "Šedá 8",
- "495057": "Šedá 7",
- "c92a2a": "Červená 9",
- "a61e4d": "Růžová 9",
- "862e9c": "Vínová 9",
- "5f3dc4": "Fialová 9",
- "364fc7": "Indigová 9",
- "1864ab": "Modrá 9",
- "0b7285": "Azurová 9",
- "087f5b": "Modrozelená 9",
- "2b8a3e": "Zelená 9",
- "5c940d": "Limetková 9",
- "e67700": "Žlutá 9",
- "d9480f": "Oranzova"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/da-DK.json b/src/locales/da-DK.json
index 15801ed4d6..c4ed435713 100644
--- a/src/locales/da-DK.json
+++ b/src/locales/da-DK.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/de-DE.json b/src/locales/de-DE.json
index f0003f8a29..8e55185697 100644
--- a/src/locales/de-DE.json
+++ b/src/locales/de-DE.json
@@ -268,7 +268,7 @@
"clearCanvasMessage": "Wenn das Neuladen nicht funktioniert, versuche die Zeichenfläche zu löschen. ",
"clearCanvasCaveat": " Dies wird zum Verlust von Daten führen ",
"trackedToSentry": "Der Fehler mit der Kennung {{eventId}} wurde in unserem System registriert.",
- "openIssueMessage": "Wir waren sehr vorsichtig und haben deine Zeichnungsinformationen nicht in die Fehlerinformationen aufgenommen. Wenn deine Zeichnung nicht privat ist, unterstütze uns bitte über unseren Bug-Tracker. Bitte teile die unten stehenden Informationen mit uns im GitHub Issue (Kopieren und Einfügen).",
+ "openIssueMessage": "Wir waren sehr vorsichtig und haben deine Zeichnungsinformationen nicht in die Fehlerinformationen aufgenommen. Wenn deine Zeichnung nicht privat ist, unterstütze uns bitte über unseren Bug-Tracker . Bitte teile die unten stehenden Informationen mit uns im GitHub Issue (Kopieren und Einfügen).",
"sceneContent": "Zeichnungsinhalt:"
},
"roomDialog": {
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Verwende {{shortcut}} , um als einzelnes Element\neinzufügen oder in einen existierenden Texteditor einzufügen"
},
"colors": {
- "ffffff": "Weiß",
- "f8f9fa": "Grau 0",
- "f1f3f5": "Grau 1",
- "fff5f5": "Rot 0",
- "fff0f6": "Pink 0",
- "f8f0fc": "Traube 0",
- "f3f0ff": "Violett 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Blau 0",
- "e3fafc": "Cyan 0",
- "e6fcf5": "Teal 0",
- "ebfbee": "Grün 0",
- "f4fce3": "Hellgrün 0",
- "fff9db": "Gelb 0",
- "fff4e6": "Orange 0",
"transparent": "Transparent",
- "ced4da": "Grau 4",
- "868e96": "Grau 6",
- "fa5252": "Rot 6",
- "e64980": "Pink 6",
- "be4bdb": "Traube 6",
- "7950f2": "Violett 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Blau 6",
- "15aabf": "Cyan 6",
- "12b886": "Teal 6",
- "40c057": "Grün 6",
- "82c91e": "Hellgrün 6",
- "fab005": "Gelb 6",
- "fd7e14": "Orange 6",
- "000000": "Schwarz",
- "343a40": "Grau 8",
- "495057": "Grau 7",
- "c92a2a": "Rot 9",
- "a61e4d": "Pink 9",
- "862e9c": "Traube 9",
- "5f3dc4": "Violett 9",
- "364fc7": "Indigo 9",
- "1864ab": "Blau 9",
- "0b7285": "Cyan 9",
- "087f5b": "Teal 9",
- "2b8a3e": "Grün 9",
- "5c940d": "Hellgrün 9",
- "e67700": "Gelb 9",
- "d9480f": "Orange 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Wähle ein Werkzeug & beginne zu zeichnen!",
"helpHint": "Kurzbefehle & Hilfe"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/el-GR.json b/src/locales/el-GR.json
index ddd6af340d..e1008e05ca 100644
--- a/src/locales/el-GR.json
+++ b/src/locales/el-GR.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Χρησιμοποίησε το {{shortcut}} για να επικολλήσεις ως ένα μόνο στοιχείο,\nή να επικολλήσεις σε έναν υπάρχοντα επεξεργαστή κειμένου"
},
"colors": {
- "ffffff": "Λευκό",
- "f8f9fa": "Γκρι 0",
- "f1f3f5": "Γκρι 1",
- "fff5f5": "Κόκκινο 0",
- "fff0f6": "Ροζ 0",
- "f8f0fc": "Σταφυλί 0",
- "f3f0ff": "Βιολετί 0",
- "edf2ff": "Λουλάκι 0",
- "e7f5ff": "Μπλε 0",
- "e3fafc": "Κυανό 0",
- "e6fcf5": "Τιρκουάζ 0",
- "ebfbee": "Πράσινο 0",
- "f4fce3": "Πρασινοκίτρινο 0",
- "fff9db": "Κίτρινο 0",
- "fff4e6": "Πορτοκαλί 0",
"transparent": "Διαφανές",
- "ced4da": "Γκρι 4",
- "868e96": "Γκρι 6",
- "fa5252": "Κόκκινο 6",
- "e64980": "Ροζ 6",
- "be4bdb": "Σταφυλί 6",
- "7950f2": "Βιολετί 6",
- "4c6ef5": "Λουλάκι 6",
- "228be6": "Μπλε 6",
- "15aabf": "Κυανό 6",
- "12b886": "Τιρκουάζ 6",
- "40c057": "Πράσινο 6",
- "82c91e": "Πρασινοκίτρινο 6",
- "fab005": "Κίτρινο 6",
- "fd7e14": "Πορτοκαλί 6",
- "000000": "Μαύρο",
- "343a40": "Γκρι 8",
- "495057": "Γκρι 7",
- "c92a2a": "Κόκκινο 9",
- "a61e4d": "Ροζ 9",
- "862e9c": "Σταφυλί 9",
- "5f3dc4": "Βιολετί 9",
- "364fc7": "Λουλάκι 9",
- "1864ab": "Μπλε 9",
- "0b7285": "Κυανό 9",
- "087f5b": "Τιρκουάζ 9",
- "2b8a3e": "Πράσινο 9",
- "5c940d": "Πρασινοκίτρινο 9",
- "e67700": "Κίτρινο 9",
- "d9480f": "Πορτοκαλί 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Επιλέξτε ένα εργαλείο και ξεκινήστε να σχεδιάζεται!",
"helpHint": "Συντομεύσεις και βοήθεια"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/en.json b/src/locales/en.json
index 136a0bc809..edc3601420 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Use {{shortcut}} to paste as a single element,\nor paste into an existing text editor"
},
"colors": {
- "ffffff": "White",
- "f8f9fa": "Gray 0",
- "f1f3f5": "Gray 1",
- "fff5f5": "Red 0",
- "fff0f6": "Pink 0",
- "f8f0fc": "Grape 0",
- "f3f0ff": "Violet 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Blue 0",
- "e3fafc": "Cyan 0",
- "e6fcf5": "Teal 0",
- "ebfbee": "Green 0",
- "f4fce3": "Lime 0",
- "fff9db": "Yellow 0",
- "fff4e6": "Orange 0",
"transparent": "Transparent",
- "ced4da": "Gray 4",
- "868e96": "Gray 6",
- "fa5252": "Red 6",
- "e64980": "Pink 6",
- "be4bdb": "Grape 6",
- "7950f2": "Violet 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Blue 6",
- "15aabf": "Cyan 6",
- "12b886": "Teal 6",
- "40c057": "Green 6",
- "82c91e": "Lime 6",
- "fab005": "Yellow 6",
- "fd7e14": "Orange 6",
- "000000": "Black",
- "343a40": "Gray 8",
- "495057": "Gray 7",
- "c92a2a": "Red 9",
- "a61e4d": "Pink 9",
- "862e9c": "Grape 9",
- "5f3dc4": "Violet 9",
- "364fc7": "Indigo 9",
- "1864ab": "Blue 9",
- "0b7285": "Cyan 9",
- "087f5b": "Teal 9",
- "2b8a3e": "Green 9",
- "5c940d": "Lime 9",
- "e67700": "Yellow 9",
- "d9480f": "Orange 9"
+ "black": "Black",
+ "white": "White",
+ "red": "Red",
+ "pink": "Pink",
+ "grape": "Grape",
+ "violet": "Violet",
+ "gray": "Gray",
+ "blue": "Blue",
+ "cyan": "Cyan",
+ "teal": "Teal",
+ "green": "Green",
+ "yellow": "Yellow",
+ "orange": "Orange",
+ "bronze": "Bronze"
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Pick a tool & Start drawing!",
"helpHint": "Shortcuts & help"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "Most used custom colors",
+ "colors": "Colors",
+ "shades": "Shades",
+ "hexCode": "Hex code",
+ "noShades": "No shades available for this color"
}
}
diff --git a/src/locales/es-ES.json b/src/locales/es-ES.json
index 594efb6630..bf6a80c3e7 100644
--- a/src/locales/es-ES.json
+++ b/src/locales/es-ES.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Usa {{shortcut}} para pegar como un solo elemento,\no pegar en un editor de texto existente"
},
"colors": {
- "ffffff": "Blanco",
- "f8f9fa": "Gris 0",
- "f1f3f5": "Gris 1",
- "fff5f5": "Rojo 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Uva 0",
- "f3f0ff": "Violeta 0",
- "edf2ff": "Índigo 0",
- "e7f5ff": "Azul 0",
- "e3fafc": "Cian 0",
- "e6fcf5": "Turquesa 0",
- "ebfbee": "Verde 0",
- "f4fce3": "Lima 0",
- "fff9db": "Amarillo 0",
- "fff4e6": "Naranja 0",
"transparent": "Transparente",
- "ced4da": "Gris 4",
- "868e96": "Gris 6",
- "fa5252": "Rojo 6",
- "e64980": "Rosa 6",
- "be4bdb": "Uva 6",
- "7950f2": "Violeta 6",
- "4c6ef5": "Índigo 6",
- "228be6": "Azul 6",
- "15aabf": "Cian 6",
- "12b886": "Turquesa 6",
- "40c057": "Verde 6",
- "82c91e": "Lima 6",
- "fab005": "Amarillo 6",
- "fd7e14": "Naranja 6",
- "000000": "Negro",
- "343a40": "Gris 8",
- "495057": "Gris 7",
- "c92a2a": "Rojo 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Uva 9",
- "5f3dc4": "Violeta 9",
- "364fc7": "Índigo 9",
- "1864ab": "Azul 9",
- "0b7285": "Cian 9",
- "087f5b": "Turquesa 9",
- "2b8a3e": "Verde 9",
- "5c940d": "Lima 9",
- "e67700": "Amarillo 9",
- "d9480f": "Naranja 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "¡Elige una herramienta y empieza a dibujar!",
"helpHint": "Atajos y ayuda"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/eu-ES.json b/src/locales/eu-ES.json
index a3fd66cf05..379fb89bca 100644
--- a/src/locales/eu-ES.json
+++ b/src/locales/eu-ES.json
@@ -54,7 +54,7 @@
"veryLarge": "Oso handia",
"solid": "Solidoa",
"hachure": "Itzalduna",
- "zigzag": "",
+ "zigzag": "Sigi-saga",
"crossHatch": "Marraduna",
"thin": "Mehea",
"bold": "Lodia",
@@ -208,10 +208,10 @@
"collabSaveFailed": "Ezin izan da backend datu-basean gorde. Arazoak jarraitzen badu, zure fitxategia lokalean gorde beharko zenuke zure lana ez duzula galtzen ziurtatzeko.",
"collabSaveFailed_sizeExceeded": "Ezin izan da backend datu-basean gorde, ohiala handiegia dela dirudi. Fitxategia lokalean gorde beharko zenuke zure lana galtzen ez duzula ziurtatzeko.",
"brave_measure_text_error": {
- "line1": "",
- "line2": "",
- "line3": "",
- "line4": ""
+ "line1": "Brave arakatzailea erabiltzen ari zarela dirudi Blokeatu hatz-markak erasokorki ezarpena gaituta.",
+ "line2": "Honek zure marrazkietako Testu-elementuak hautsi ditzake.",
+ "line3": "Ezarpen hau desgaitzea gomendatzen dugu. urrats hauek jarrai ditzakezu hori nola egin jakiteko.",
+ "line4": "Ezarpen hau desgaituz gero, testu-elementuen bistaratzea konpontzen ez bada, ireki arazo gure GitHub-en edo idatzi iezaguzu Discord helbidera"
}
},
"toolBar": {
@@ -306,8 +306,8 @@
"doubleClick": "klik bikoitza",
"drag": "arrastatu",
"editor": "Editorea",
- "editLineArrowPoints": "",
- "editText": "",
+ "editLineArrowPoints": "Editatu lerroak/gezi-puntuak",
+ "editText": "Editatu testua / gehitu etiketa",
"github": "Arazorik izan al duzu? Eman horren berri",
"howto": "Jarraitu gure gidak",
"or": "edo",
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Erabili {{shortcut}} elementu bakar gisa itsasteko,\nedo itsatsi lehendik dagoen testu-editore batean"
},
"colors": {
- "ffffff": "Zuria",
- "f8f9fa": "Grisa 0",
- "f1f3f5": "Grisa 1",
- "fff5f5": "Gorria 0",
- "fff0f6": "Arrosa 0",
- "f8f0fc": "Mahats kolorea 0",
- "f3f0ff": "Bioleta 0",
- "edf2ff": "Indigoa 0",
- "e7f5ff": "Urdina 0",
- "e3fafc": "Ziana 0",
- "e6fcf5": "Berde urdinxka 0",
- "ebfbee": "Berdea 0",
- "f4fce3": "Lima 0",
- "fff9db": "Horia 0",
- "fff4e6": "Laranja 0",
"transparent": "Gardena",
- "ced4da": "Grisa 4",
- "868e96": "Grisa 6",
- "fa5252": "Gorria 6",
- "e64980": "Arrosa 6",
- "be4bdb": "Mahats kolorea 6",
- "7950f2": "Bioleta 6",
- "4c6ef5": "Indigoa 6",
- "228be6": "Urdina 6",
- "15aabf": "Ziana 6",
- "12b886": "Berde urdinxka 6",
- "40c057": "Berdea 6",
- "82c91e": "Lima 6",
- "fab005": "Horia 6",
- "fd7e14": "Laranja 6",
- "000000": "Beltza",
- "343a40": "Grisa 8",
- "495057": "Grisa 7",
- "c92a2a": "Gorria 9",
- "a61e4d": "Arrosa 9",
- "862e9c": "Mahats kolorea 9",
- "5f3dc4": "Bioleta 9",
- "364fc7": "Indigoa 9",
- "1864ab": "Urdina 9",
- "0b7285": "Ziana 9",
- "087f5b": "Berde urdinxka 9",
- "2b8a3e": "Berdea 9",
- "5c940d": "Lima 9",
- "e67700": "Horia 9",
- "d9480f": "Laranja 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Aukeratu tresna bat eta hasi marrazten!",
"helpHint": "Lasterbideak eta laguntza"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/fa-IR.json b/src/locales/fa-IR.json
index f0931e6423..4f9ae98581 100644
--- a/src/locales/fa-IR.json
+++ b/src/locales/fa-IR.json
@@ -264,16 +264,11 @@
"canvasTooBigTip": "نکته: سعی کنید دورترین عناصر را کمی به همدیگر نزدیک کنید."
},
"errorSplash": {
- "headingMain_pre": "با مشکلی مواجه شدیم. این را امتحان کنید ",
- "headingMain_button": "در حال بازنشانی صفحه.",
+ "headingMain": "",
"clearCanvasMessage": "اگر بازنشانی صفحه مشکل را حل نکرد این را امتحان کنید ",
- "clearCanvasMessage_button": "در حال تمیز کردن بوم",
"clearCanvasCaveat": " این باعث میشود کارهای شما ذخیره نشود ",
- "trackedToSentry_pre": "خطا در شناسه ",
- "trackedToSentry_post": " در سیستم ما رهگیری شد.",
- "openIssueMessage_pre": "ما خیلی محتاط هستیم که اطلاعات شما را در خطا قرار ندهیم. با این حال اگر اطلاعات شما خصوصی نیست لطفا پیگیری کنید ",
- "openIssueMessage_button": "پیگیری اشکالات.",
- "openIssueMessage_post": " لطفا اطلاعات زیر را با کپی کردن در صفحه مشکلات GitHub بگذارید.",
+ "trackedToSentry": "",
+ "openIssueMessage": "",
"sceneContent": "محتوای صحنه:"
},
"roomDialog": {
@@ -353,29 +348,16 @@
"required": "لازم",
"website": "وارد کردن آدرس درست"
},
- "noteDescription": {
- "pre": "کتابخانه خود را ارسال کنید تا در آن گنجانده شود ",
- "link": "مخزن کتابخانه عمومی",
- "post": "تا افراد دیگر در نقاشی های خود از آن استفاده کنند."
- },
- "noteGuidelines": {
- "pre": "کتابخانه باید ابتدا به صورت دستی تایید شود. لطفاً بخوانید ",
- "link": "دستورالعملها",
- "post": " قبل از ارسال برای برقراری ارتباط و ایجاد تغییرات در صورت درخواست، به یک حساب GitHub نیاز دارید، اما به شدت الزامی نیست."
- },
- "noteLicense": {
- "pre": "با ارسال، موافقت می کنید که کتابخانه تحت عنوان منتشر شود ",
- "link": "پروانهٔ MIT ",
- "post": "که به طور خلاصه به این معنی است که هر کسی می تواند بدون محدودیت از آنها استفاده کند."
- },
+ "noteDescription": "",
+ "noteGuidelines": "",
+ "noteLicense": "",
"noteItems": "هر مورد کتابخانه باید نام خاص خود را داشته باشد تا قابل فیلتر باشد. اقلام کتابخانه زیر شامل خواهد شد:",
"atleastOneLibItem": "لطفاً حداقل یک مورد از کتابخانه را برای شروع انتخاب کنید",
"republishWarning": "توجه: برخی از موارد انتخاب شده به عنوان قبلاً منتشر شده/ارسال شده علامت گذاری شده اند. شما فقط باید هنگام بهروزرسانی یک کتابخانه موجود یا ارسال، موارد را دوباره ارسال کنید."
},
"publishSuccessDialog": {
"title": "کتابخانه ارسال شد",
- "content": "تشکر از شما {{authorName}}. کتابخانه شما برای بررسی ارسال شده است. می توانید وضعیت را پیگیری کنید",
- "link": "اینجا"
+ "content": "تشکر از شما {{authorName}}. کتابخانه شما برای بررسی ارسال شده است. می توانید وضعیت را پیگیری کنید"
},
"confirmDialog": {
"resetLibrary": "تنظیم مجدد کتابخانه",
@@ -412,51 +394,21 @@
"pasteAsSingleElement": "از {{shortcut}} برای چسباندن به عنوان یک عنصر استفاده کنید،\nیا در یک ویرایشگر متن موجود جایگذاری کنید"
},
"colors": {
- "ffffff": "سفید",
- "f8f9fa": "خاکستری 0",
- "f1f3f5": "خاکستری 1",
- "fff5f5": "قرمز 0",
- "fff0f6": "صورتی 0",
- "f8f0fc": "انگوری 0",
- "f3f0ff": "بنفش 0",
- "edf2ff": "نیلی 0",
- "e7f5ff": "آبی 0",
- "e3fafc": "آبی نفتی 0",
- "e6fcf5": "آبی فیروزه ای 0",
- "ebfbee": "سبز 0",
- "f4fce3": "لیمویی 0",
- "fff9db": "زرد 0",
- "fff4e6": "نارنجی 0",
"transparent": "شفاف",
- "ced4da": "خاکستری 4",
- "868e96": "خاکستری 6",
- "fa5252": "قرمز 6",
- "e64980": "صورتی 6",
- "be4bdb": "انگوری 6",
- "7950f2": "بنفش 6",
- "4c6ef5": "نیلی 6",
- "228be6": "آبی 6",
- "15aabf": "آبی نفتی 6",
- "12b886": "آبی فیروزه ای 6",
- "40c057": "سبز 6",
- "82c91e": "لیمویی 6",
- "fab005": "زرد 6",
- "fd7e14": "نارنجی 6",
- "000000": "سیاه",
- "343a40": "خاکستری 8",
- "495057": "خاکستری 7",
- "c92a2a": "قرمز 9",
- "a61e4d": "صورتی 9",
- "862e9c": "انگوری 9",
- "5f3dc4": "بنفش 9",
- "364fc7": "نیلی 9",
- "1864ab": "آبی 9",
- "0b7285": "آبی نفتی 9",
- "087f5b": "آبی فیروزه ای 9",
- "2b8a3e": "سبز 9",
- "5c940d": "لیمویی 9",
- "e67700": "زرد 9",
- "d9480f": "نارنجی 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -470,5 +422,12 @@
"toolbarHint": "ابزاری را انتخاب کنید و نقاشی را شروع کنید!",
"helpHint": "میانبرها و راهنما"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/fi-FI.json b/src/locales/fi-FI.json
index 3998762650..a7a354dcd8 100644
--- a/src/locales/fi-FI.json
+++ b/src/locales/fi-FI.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Käytä {{shortcut}} liittääksesi yhtenä elementtinä,\ntai liittääksesi olemassa olevaan tekstieditoriin"
},
"colors": {
- "ffffff": "Valkoinen",
- "f8f9fa": "Harmaa 0",
- "f1f3f5": "Harmaa 1",
- "fff5f5": "Punainen 0",
- "fff0f6": "Pinkki 0",
- "f8f0fc": "Rypäle 0",
- "f3f0ff": "Violetti 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Sininen 0",
- "e3fafc": "Syaani 0",
- "e6fcf5": "Sinivihreä 0",
- "ebfbee": "Vihreä 0",
- "f4fce3": "Limenvihreä 0",
- "fff9db": "Keltainen 0",
- "fff4e6": "Oranssi 0",
"transparent": "Läpinäkyvä",
- "ced4da": "Harmaa 4",
- "868e96": "Harmaa 6",
- "fa5252": "Punainen 6",
- "e64980": "Pinkki 6",
- "be4bdb": "Rypäle 6",
- "7950f2": "Violetti 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Sininen 6",
- "15aabf": "Syaani 6",
- "12b886": "Sinivihreä 6",
- "40c057": "Vihreä 6",
- "82c91e": "Limenvihreä 6",
- "fab005": "Keltainen 6",
- "fd7e14": "Oranssi 6",
- "000000": "Musta",
- "343a40": "Harmaa 8",
- "495057": "Harmaa 7",
- "c92a2a": "Punainen 9",
- "a61e4d": "Pinkki 9",
- "862e9c": "Rypäle 9",
- "5f3dc4": "Violetti 9",
- "364fc7": "Indigo 9",
- "1864ab": "Sininen 9",
- "0b7285": "Syaani 9",
- "087f5b": "Sinivihreä 9",
- "2b8a3e": "Vihreä 9",
- "5c940d": "Limenvihreä 9",
- "e67700": "Keltainen 9",
- "d9480f": "Oranssi 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Valitse työkalu ja aloita piirtäminen!",
"helpHint": "Pikanäppäimet & ohje"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/fr-FR.json b/src/locales/fr-FR.json
index b97f2c2850..93a761afd4 100644
--- a/src/locales/fr-FR.json
+++ b/src/locales/fr-FR.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Utiliser {{shortcut}} pour coller comme un seul élément,\nou coller dans un éditeur de texte existant"
},
"colors": {
- "ffffff": "Blanc",
- "f8f9fa": "Gris 0",
- "f1f3f5": "Gris 1",
- "fff5f5": "Rouge 0",
- "fff0f6": "Rose 0",
- "f8f0fc": "Mauve 0",
- "f3f0ff": "Violet 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Bleu 0",
- "e3fafc": "Cyan 0",
- "e6fcf5": "Turquoise 0",
- "ebfbee": "Vert 0",
- "f4fce3": "Citron vert 0",
- "fff9db": "Jaune 0",
- "fff4e6": "Orange 0",
"transparent": "Transparent",
- "ced4da": "Gris 4",
- "868e96": "Gris 6",
- "fa5252": "Rouge 6",
- "e64980": "Rose 6",
- "be4bdb": "Mauve 6",
- "7950f2": "Violet 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Bleu 6",
- "15aabf": "Cyan 6",
- "12b886": "Turquoise 6",
- "40c057": "Vert 6",
- "82c91e": "Citron vert 6",
- "fab005": "Jaune 6",
- "fd7e14": "Orange 6",
- "000000": "Noir",
- "343a40": "Gris 8",
- "495057": "Gris 7",
- "c92a2a": "Rouge 9",
- "a61e4d": "Rose 9",
- "862e9c": "Mauve 9",
- "5f3dc4": "Violet 9",
- "364fc7": "Indigo 9",
- "1864ab": "Bleu 9",
- "0b7285": "Cyan 9",
- "087f5b": "Turquoise 9",
- "2b8a3e": "Vert 9",
- "5c940d": "Citron vert 9",
- "e67700": "Jaune 9",
- "d9480f": "Orange 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Choisissez un outil et commencez à dessiner !",
"helpHint": "Raccourcis et aide"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/gl-ES.json b/src/locales/gl-ES.json
index 602ddac173..7938f7aedf 100644
--- a/src/locales/gl-ES.json
+++ b/src/locales/gl-ES.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Usa {{shortcut}} para pegar como un único elemento\nou pega nun editor de texto existente"
},
"colors": {
- "ffffff": "Branco",
- "f8f9fa": "Gris 0",
- "f1f3f5": "Gris 1",
- "fff5f5": "Vermello 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Uva 0",
- "f3f0ff": "Violeta 0",
- "edf2ff": "Índigo 0",
- "e7f5ff": "Azul 0",
- "e3fafc": "Ciano 0",
- "e6fcf5": "Turquesa 0",
- "ebfbee": "Verde 0",
- "f4fce3": "Lima 0",
- "fff9db": "Amarelo 0",
- "fff4e6": "Laranxa 0",
"transparent": "Transparente",
- "ced4da": "Gris 4",
- "868e96": "Gris 6",
- "fa5252": "Vermello 6",
- "e64980": "Rosa 6",
- "be4bdb": "Uva 6",
- "7950f2": "Violeta 6",
- "4c6ef5": "Índigo 6",
- "228be6": "Azul 6",
- "15aabf": "Ciano 6",
- "12b886": "Turquesa 6",
- "40c057": "Verde 6",
- "82c91e": "Lima 6",
- "fab005": "Amarelo 6",
- "fd7e14": "Laranxa 6",
- "000000": "Negro",
- "343a40": "Gris 8",
- "495057": "Gris 7",
- "c92a2a": "Vermello 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Uva 9",
- "5f3dc4": "Violeta 9",
- "364fc7": "Índigo 9",
- "1864ab": "Azul 9",
- "0b7285": "Ciano 9",
- "087f5b": "Turquesa 9",
- "2b8a3e": "Verde 9",
- "5c940d": "Lima 9",
- "e67700": "Amarelo 9",
- "d9480f": "Laranxa 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Escolle unha ferramenta & Comeza a debuxar!",
"helpHint": "Atallos & axuda"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/he-IL.json b/src/locales/he-IL.json
index 26fc813896..813131eaf7 100644
--- a/src/locales/he-IL.json
+++ b/src/locales/he-IL.json
@@ -264,16 +264,11 @@
"canvasTooBigTip": "טיפ: נסה להזיז את הרכיבים הרחוקים ביותר מעט קרוב יותר האחד לשני."
},
"errorSplash": {
- "headingMain_pre": "אירעה שגיאה. נסה ",
- "headingMain_button": "טוען את העמוד מחדש.",
+ "headingMain": "",
"clearCanvasMessage": "אם טעינה מחדש לא עובדת, נסה ",
- "clearCanvasMessage_button": "מנקה את הקנבאס.",
"clearCanvasCaveat": " זה יגרום לאובדן העבודה ",
- "trackedToSentry_pre": "השגיאה עם מזהה ",
- "trackedToSentry_post": " נמצאה במערכת שלנו.",
- "openIssueMessage_pre": "נזהרנו מאוד שלא לכלול מידע מהקנבאס שלך בשגיאה. אם המידע בקנבאס אינו אישי, שקול לבצע מעקב אחר הטיפול שלנו ",
- "openIssueMessage_button": "מעקב באגים.",
- "openIssueMessage_post": " בבקשה כלול את המידע מטה באמצעות העתקתה שלו, והדבקה שלו ב- GitHub Issue.",
+ "trackedToSentry": "",
+ "openIssueMessage": "",
"sceneContent": "תוכן הקנבאס:"
},
"roomDialog": {
@@ -353,29 +348,16 @@
"required": "נדרש",
"website": "הזינו כתובת URL תקינה"
},
- "noteDescription": {
- "pre": "הגש את הספריה שלך להכללתה ב ",
- "link": "מאגר הספריה הציבורית",
- "post": "לשימושם של אנשים אחרים בציורים שלהם."
- },
- "noteGuidelines": {
- "pre": "הספריה צריכה לקבל אישור ידני קודם לכן. אנא קרא את ",
- "link": "הנחיות",
- "post": " לפני השליחה. אתה תצטרך לחשבון GitHub כדי לתקשר ולבצע שינויים אם תתבקש, אבל זה לא דרישה הכרחית."
- },
- "noteLicense": {
- "pre": "על ידי שליחה, אתה מסכים שהסיפריה תפורסם תחת ה- ",
- "link": "רישיון MIT, ",
- "post": "שאומר בקצרה, שכל אחד יכול לעשות בהם שימוש ללא מגבלות."
- },
+ "noteDescription": "",
+ "noteGuidelines": "",
+ "noteLicense": "",
"noteItems": "לכל פריט בסיפריה חייב להיות שם כדי שאפשר יהיה לסנן. הפריטי סיפריה הבאים יהיו כלולים:",
"atleastOneLibItem": "אנא בחר לפחות פריט אחד מספריה כדי להתחיל",
"republishWarning": "הערה: חלק מהפריטים שבחרת מסומנים ככאלו שכבר פורסמו/נשלחו. אתה צריך לשלוח פריטים מחדש כאשר אתה מעדכן ספריה או הגשה קיימים."
},
"publishSuccessDialog": {
"title": "הספריה הוגשה",
- "content": "תודה {{authorName}}. הספריה שלך נשלחה לבחינה. תוכל לעקוב אחרי סטטוס הפרסום",
- "link": "כאן"
+ "content": "תודה {{authorName}}. הספריה שלך נשלחה לבחינה. תוכל לעקוב אחרי סטטוס הפרסום"
},
"confirmDialog": {
"resetLibrary": "איפוס ספריה",
@@ -412,51 +394,21 @@
"pasteAsSingleElement": "השתמש ב- {{shortcut}} כדי להדביק כפריט יחיד,\nאו הדבק לתוך עורך טקסט קיים"
},
"colors": {
- "ffffff": "לבן",
- "f8f9fa": "אפור 0",
- "f1f3f5": "אפור 1",
- "fff5f5": "אדום 0",
- "fff0f6": "ורוד 0",
- "f8f0fc": "ענבים 0",
- "f3f0ff": "סגול 0",
- "edf2ff": "כחול כהה 0",
- "e7f5ff": "כחול 0",
- "e3fafc": "טורקיז 0",
- "e6fcf5": "ירקרק 0",
- "ebfbee": "ירוק 0",
- "f4fce3": "ליים 0",
- "fff9db": "צהוב",
- "fff4e6": "כתום 0",
"transparent": "שקוף",
- "ced4da": "אפור 4",
- "868e96": "אפור 6",
- "fa5252": "אדום 6",
- "e64980": "ורוד 6",
- "be4bdb": "ענבים 6",
- "7950f2": "סגול 6",
- "4c6ef5": "כחול כהה 6",
- "228be6": "כחול 6",
- "15aabf": "טורקיז 6",
- "12b886": "ירקרק 6",
- "40c057": "ירוק 6",
- "82c91e": "ליים 6",
- "fab005": "צהוב 6",
- "fd7e14": "כתום 6",
- "000000": "שחור",
- "343a40": "אפור 8",
- "495057": "אפור 7",
- "c92a2a": "אדום 9",
- "a61e4d": "ורוד 9",
- "862e9c": "ענבים 9",
- "5f3dc4": "סגול 9",
- "364fc7": "כחול כהה 9",
- "1864ab": "כחול 9",
- "0b7285": "טורקיז 9",
- "087f5b": "ירוק-כחול 9",
- "2b8a3e": "ירוק 9",
- "5c940d": "ליים 9",
- "e67700": "צהוב 9",
- "d9480f": "כתום 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -470,5 +422,12 @@
"toolbarHint": "בחר כלי & והתחל לצייר!",
"helpHint": "קיצורים & עזרה"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/hi-IN.json b/src/locales/hi-IN.json
index 063a53a0d7..0a4f47d923 100644
--- a/src/locales/hi-IN.json
+++ b/src/locales/hi-IN.json
@@ -350,14 +350,14 @@
},
"noteDescription": "संग्रह सम्मिलित करने हेतु प्रस्तुत करें सार्वजनिक संग्रहालयअन्य वक्तियों को उनके चित्रकारी में उपयोग के लिये",
"noteGuidelines": "संग्रह को पहले स्वीकृति आवश्यक कृपया यह पढ़ें दिशा-निर्देश",
- "noteLicense": "",
+ "noteLicense": "जमा करके, आप सहमत हैं कि संग्रहण को MIT लाइसेंस के तहत प्रकाशित किया जाएगा, जिसका संक्षिप्त अर्थ है कि कोई भी बिना किसी प्रतिबंध के उनका उपयोग कर सकता है।",
"noteItems": "",
"atleastOneLibItem": "",
"republishWarning": "टिप्पणी: कुछ चुने हुवे आइटम पहले ही प्रकाशित/प्रस्तुत किए जा चुके हैं। किसी प्रकाशित संग्रह को अद्यतन करते समय या पहले से प्रस्तुत आइटम को पुन्हा प्रस्तुत करते समय, आप बस उसे केवल अद्यतन करें ।"
},
"publishSuccessDialog": {
"title": "",
- "content": ""
+ "content": "{{authorName}} धन्यवाद. आपका संग्रहण समीक्षा के लिए दर्ज हो चुका है. समीक्षा स्थिति यहाँजान सकते हैं."
},
"confirmDialog": {
"resetLibrary": "",
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "एक अवयव के रूप में चिपकाने के लिए {{shortcut}} का उपयोग करें,\nया किसी मौजूदा पाठ संपादक में चिपकायें"
},
"colors": {
- "ffffff": "सफेद",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "अंगूरी 0",
- "f3f0ff": "",
- "edf2ff": "नील 0",
- "e7f5ff": "नीला 0",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "आसमानी",
- "087f5b": "",
- "2b8a3e": "हरा",
- "5c940d": "",
- "e67700": "पीला",
- "d9480f": "नारंगी"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "एक औजार चुने और चित्रकारी प्रारंभ करे!",
"helpHint": "शॉर्ट्कट और सहाय्य"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/hu-HU.json b/src/locales/hu-HU.json
index a54dde9f64..3a4cf1d5ac 100644
--- a/src/locales/hu-HU.json
+++ b/src/locales/hu-HU.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Fehér",
- "f8f9fa": "Szürke 0",
- "f1f3f5": "Szürke 1",
- "fff5f5": "Piros 0",
- "fff0f6": "Pink 0",
- "f8f0fc": "Szőlő 0",
- "f3f0ff": "Ibolya 0",
- "edf2ff": "Indigó 0",
- "e7f5ff": "Kék 0",
- "e3fafc": "Cián 0",
- "e6fcf5": "Kékes-zöld 0",
- "ebfbee": "Zöld 0",
- "f4fce3": "Lime 0",
- "fff9db": "Sárga 0",
- "fff4e6": "Narancs 0",
"transparent": "Átlátszó",
- "ced4da": "Szürke 4",
- "868e96": "Szürke 6",
- "fa5252": "Piros 6",
- "e64980": "Pink 6",
- "be4bdb": "Szőlő 6",
- "7950f2": "Ibolya 6",
- "4c6ef5": "Indigó 6",
- "228be6": "Kék 6",
- "15aabf": "Cián 6",
- "12b886": "Kékes-zöld 6",
- "40c057": "Zöld 6",
- "82c91e": "Lime 6",
- "fab005": "Sárga 6",
- "fd7e14": "Narancs 6",
- "000000": "Fekete",
- "343a40": "Szürke 8",
- "495057": "Szürke 7",
- "c92a2a": "Piros 9",
- "a61e4d": "Pink 9",
- "862e9c": "Szőlő 9",
- "5f3dc4": "Ibolya 9",
- "364fc7": "Indigó 9",
- "1864ab": "Kék 9",
- "0b7285": "Cián 9",
- "087f5b": "Kékes-zöld 9",
- "2b8a3e": "Zöld 9",
- "5c940d": "Lime 9",
- "e67700": "Sárga 9",
- "d9480f": "Narancs 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/id-ID.json b/src/locales/id-ID.json
index bb83459dc8..37ecf6a18e 100644
--- a/src/locales/id-ID.json
+++ b/src/locales/id-ID.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Gunakan {{shortcut}} untuk menempelkan sebagai satu elemen,\natau tempelkan ke teks editor yang ada"
},
"colors": {
- "ffffff": "Putih",
- "f8f9fa": "Abu-abu 0",
- "f1f3f5": "Abu-abu 1",
- "fff5f5": "Merah 0",
- "fff0f6": "Merah muda 0",
- "f8f0fc": "Ungu 0",
- "f3f0ff": "Violet 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Biru 0",
- "e3fafc": "Cyan 0",
- "e6fcf5": "Teal 0",
- "ebfbee": "Hijau 0",
- "f4fce3": "Lime 0",
- "fff9db": "Kuning 0",
- "fff4e6": "Jingga 0",
"transparent": "Transparan",
- "ced4da": "Abu-abu 4",
- "868e96": "Abu-abu 6",
- "fa5252": "Merah 6",
- "e64980": "Merah muda 6",
- "be4bdb": "Ungu 6",
- "7950f2": "Violet 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Biru 6",
- "15aabf": "Cyan 6",
- "12b886": "Teal 6",
- "40c057": "Hijau 6",
- "82c91e": "Lime 6",
- "fab005": "Kuning 6",
- "fd7e14": "Jingga 6",
- "000000": "Hitam",
- "343a40": "Abu-abu 8",
- "495057": "Abu-abu 7",
- "c92a2a": "Merah 9",
- "a61e4d": "Merah muda 9",
- "862e9c": "Ungu 9",
- "5f3dc4": "Violet 9",
- "364fc7": "Indigo 9",
- "1864ab": "Biru 9",
- "0b7285": "Cyan 9",
- "087f5b": "Teal 9",
- "2b8a3e": "Hijau 9",
- "5c940d": "Lime 9",
- "e67700": "Kuning 9",
- "d9480f": "Jingga 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Pilih alat & mulai menggambar!",
"helpHint": "Pintasan & bantuan"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/it-IT.json b/src/locales/it-IT.json
index 12d2156236..d8e8afd5a0 100644
--- a/src/locales/it-IT.json
+++ b/src/locales/it-IT.json
@@ -208,10 +208,10 @@
"collabSaveFailed": "Impossibile salvare nel database di backend. Se i problemi persistono, dovresti salvare il tuo file localmente per assicurarti di non perdere il tuo lavoro.",
"collabSaveFailed_sizeExceeded": "Impossibile salvare nel database di backend, la tela sembra essere troppo grande. Dovresti salvare il file localmente per assicurarti di non perdere il tuo lavoro.",
"brave_measure_text_error": {
- "line1": "",
- "line2": "",
- "line3": "",
- "line4": ""
+ "line1": "Sembra che tu stia utilizzando il browser Brave con l'impostazione Blocco aggressivo delle impronte digitali abilitata.",
+ "line2": "Ciò potrebbe causare la rottura degli Elementi di testo nei tuoi disegni.",
+ "line3": "Consigliamo vivamente di disabilitare questa impostazione. Puoi seguire questi passaggi su come farlo.",
+ "line4": "Se la disattivazione di questa impostazione non risolve la visualizzazione degli elementi di testo, apri un problema sul nostro GitHub o scrivici su Discord "
}
},
"toolBar": {
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Usa {{shortcut}} per incollare come un singolo elemento,\no incollare in un editor di testo esistente"
},
"colors": {
- "ffffff": "Bianco",
- "f8f9fa": "Grigio 0",
- "f1f3f5": "Grigio 1",
- "fff5f5": "Rosso 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Uva 0",
- "f3f0ff": "Viola 0",
- "edf2ff": "Indaco 0",
- "e7f5ff": "Blu 0",
- "e3fafc": "Ciano 0",
- "e6fcf5": "Verde acqua 0",
- "ebfbee": "Verde 0",
- "f4fce3": "Lime 0",
- "fff9db": "Giallo 0",
- "fff4e6": "Arancio 0",
"transparent": "Trasparente",
- "ced4da": "Grigio 4",
- "868e96": "Grigio 6",
- "fa5252": "Rosso 6",
- "e64980": "Rosa 6",
- "be4bdb": "Uva 6",
- "7950f2": "Viola 6",
- "4c6ef5": "Indaco 6",
- "228be6": "Blu 6",
- "15aabf": "Ciano 6",
- "12b886": "Verde acqua 6",
- "40c057": "Verde 6",
- "82c91e": "Lime 6",
- "fab005": "Giallo 6",
- "fd7e14": "Arancio 6",
- "000000": "Nero",
- "343a40": "Grigio 8",
- "495057": "Grigio 7",
- "c92a2a": "Rosso 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Uva 9",
- "5f3dc4": "Viola 9",
- "364fc7": "Indaco 9",
- "1864ab": "Blu 9",
- "0b7285": "Ciano 9",
- "087f5b": "Verde acqua 9",
- "2b8a3e": "Verde 9",
- "5c940d": "Lime 9",
- "e67700": "Giallo 9",
- "d9480f": "Arancio 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Scegli uno strumento & Inizia a disegnare!",
"helpHint": "Scorciatoie & aiuto"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/ja-JP.json b/src/locales/ja-JP.json
index fd4f2c2c71..f11b4c5b33 100644
--- a/src/locales/ja-JP.json
+++ b/src/locales/ja-JP.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "{{shortcut}} を使用して単一の要素として貼り付けるか、\n既存のテキストエディタに貼り付け"
},
"colors": {
- "ffffff": "ホワイト",
- "f8f9fa": "グレー 0",
- "f1f3f5": "グレー 1",
- "fff5f5": "レッド 0",
- "fff0f6": "ピンク 0",
- "f8f0fc": "グレープ 0",
- "f3f0ff": "バイオレット 0",
- "edf2ff": "インディゴ 0",
- "e7f5ff": "ブルー 0",
- "e3fafc": "シアン 0",
- "e6fcf5": "ティール 0",
- "ebfbee": "グリーン 0",
- "f4fce3": "ライム 0",
- "fff9db": "イエロー 0",
- "fff4e6": "オレンジ 0",
"transparent": "透明",
- "ced4da": "グレー 4",
- "868e96": "グレー 6",
- "fa5252": "レッド 6",
- "e64980": "ピンク 6",
- "be4bdb": "グレープ 6",
- "7950f2": "バイオレット 6",
- "4c6ef5": "インディゴ 6",
- "228be6": "ブルー 6",
- "15aabf": "シアン 6",
- "12b886": "ティール 6",
- "40c057": "グリーン 6",
- "82c91e": "ライム 6",
- "fab005": "イエロー 6",
- "fd7e14": "オレンジ 6",
- "000000": "ブラック",
- "343a40": "グレー 8",
- "495057": "グレー 7",
- "c92a2a": "レッド 9",
- "a61e4d": "ピンク 9",
- "862e9c": "グレープ 9",
- "5f3dc4": "バイオレット 9",
- "364fc7": "インディゴ 9",
- "1864ab": "ブルー 9",
- "0b7285": "シアン 9",
- "087f5b": "ティール 9",
- "2b8a3e": "グリーン 9",
- "5c940d": "ライム 9",
- "e67700": "イエロー 9",
- "d9480f": "オレンジ 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "ツールを選んで描き始めよう!",
"helpHint": "ショートカットとヘルプ"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/kaa.json b/src/locales/kaa.json
index cdc832a13a..cf1bce08d5 100644
--- a/src/locales/kaa.json
+++ b/src/locales/kaa.json
@@ -264,16 +264,11 @@
"canvasTooBigTip": ""
},
"errorSplash": {
- "headingMain_pre": "",
- "headingMain_button": "",
+ "headingMain": "",
"clearCanvasMessage": "",
- "clearCanvasMessage_button": "",
"clearCanvasCaveat": "",
- "trackedToSentry_pre": "",
- "trackedToSentry_post": "",
- "openIssueMessage_pre": "",
- "openIssueMessage_button": "",
- "openIssueMessage_post": "",
+ "trackedToSentry": "",
+ "openIssueMessage": "",
"sceneContent": ""
},
"roomDialog": {
@@ -353,29 +348,16 @@
"required": "",
"website": ""
},
- "noteDescription": {
- "pre": "",
- "link": "",
- "post": ""
- },
- "noteGuidelines": {
- "pre": "",
- "link": "",
- "post": ""
- },
- "noteLicense": {
- "pre": "",
- "link": "",
- "post": ""
- },
+ "noteDescription": "",
+ "noteGuidelines": "",
+ "noteLicense": "",
"noteItems": "",
"atleastOneLibItem": "",
"republishWarning": ""
},
"publishSuccessDialog": {
"title": "",
- "content": "",
- "link": "usı jerde"
+ "content": ""
},
"confirmDialog": {
"resetLibrary": "",
@@ -390,13 +372,13 @@
"element": "",
"elements": "",
"height": "",
- "scene": "",
+ "scene": "Saxna",
"selected": "Tańlandı",
"storage": "",
"title": "",
"total": "",
"version": "Versiya",
- "versionCopy": "",
+ "versionCopy": "Kóshirip alıw ushın basıń",
"versionNotAvailable": "",
"width": ""
},
@@ -406,57 +388,27 @@
"copyToClipboard": "",
"copyToClipboardAsPng": "",
"fileSaved": "Fayl saqlandı.",
- "fileSavedToFilename": "",
+ "fileSavedToFilename": "{filename} saqlandı",
"canvas": "",
"selection": "",
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Aq",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "Qızıl 0",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "Kók",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "Sarı 0",
- "fff4e6": "Qızǵılt sarı 0",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "Qızıl 6",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "Kók 6",
- "15aabf": "",
- "12b886": "",
- "40c057": "Jasıl 6",
- "82c91e": "",
- "fab005": "Sarı 6",
- "fd7e14": "",
- "000000": "Qara",
- "343a40": "",
- "495057": "",
- "c92a2a": "Qızıl 9",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "Kók 9",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "Jasıl 9",
- "5c940d": "",
- "e67700": "Sarı 9",
- "d9480f": "Qızǵılt sarı 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -470,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/kab-KAB.json b/src/locales/kab-KAB.json
index 364eed4ec1..67db650148 100644
--- a/src/locales/kab-KAB.json
+++ b/src/locales/kab-KAB.json
@@ -209,8 +209,8 @@
"collabSaveFailed_sizeExceeded": "Ulamek asekles deg uzadur n yisefka deg ugilal, taɣzut n usuneɣ tettban-d temqer aṭas. Isefk ad teskelseḍ afaylu s wudem adigan akken ad tetḥeqqeḍ ur tesruḥuyeḍ ara amahil-inek•inem.",
"brave_measure_text_error": {
"line1": "",
- "line2": "",
- "line3": "",
+ "line2": "Ayagi yezmer ad d-iglu s truẓi nIferdisen n uḍris deg wunuɣen-inek.",
+ "line3": "Ad k-nsemter ad tsexsiḍ aɣewwar-agi. Tzemreḍ ad tḍefreḍ isurifen-agi ɣef wamek ara txedmeḍ.",
"line4": ""
}
},
@@ -306,8 +306,8 @@
"doubleClick": "ssit snat n tikkal",
"drag": "zuɣer",
"editor": "Amaẓrag",
- "editLineArrowPoints": "",
- "editText": "",
+ "editLineArrowPoints": "Ẓreg tinqiḍin n yizirig/taneccabt",
+ "editText": "Ẓreg aḍris/rnu tabzimt",
"github": "Tufiḍ-d ugur? Azen-aɣ-d",
"howto": "Ḍfer imniren-nneɣ",
"or": "neɣ",
@@ -394,63 +394,40 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Amellal",
- "f8f9fa": "Aɣiɣdi 0",
- "f1f3f5": "Aɣiɣdi 1",
- "fff5f5": "Azeggaɣ",
- "fff0f6": "Axuxi 0",
- "f8f0fc": "Tiẓurin 0",
- "f3f0ff": "Amidadi 0",
- "edf2ff": "",
- "e7f5ff": "Anili 0",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "Azegzaw 0",
- "f4fce3": "Llim 0",
- "fff9db": "Awraɣ 0",
- "fff4e6": "Aččinawi 0",
"transparent": "Afrawan",
- "ced4da": "Aɣiɣdi 4",
- "868e96": "Aɣiɣdi 6",
- "fa5252": "Azeggaɣ 6",
- "e64980": "Axuxi 6",
- "be4bdb": "",
- "7950f2": "Amidadi 6",
- "4c6ef5": "",
- "228be6": "Anili 6",
- "15aabf": "",
- "12b886": "",
- "40c057": "Azegzaw 0",
- "82c91e": "Llim 6",
- "fab005": "Awraɣ 6",
- "fd7e14": "Aččinawi 6",
- "000000": "Aberkan",
- "343a40": "Aɣiɣdi 8",
- "495057": "Aɣiɣdi 7",
- "c92a2a": "Azeggaɣ 9",
- "a61e4d": "Axuxi 9",
- "862e9c": "Tiẓurin 9",
- "5f3dc4": "Amidadi 9",
- "364fc7": "",
- "1864ab": "Anili 9",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "Azegzaw 9",
- "5c940d": "Llim 9",
- "e67700": "Awraɣ 9",
- "d9480f": "Aččinawi 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
- "center_heading": "",
+ "center_heading": "Akk isefka-inek•inem ttwakelsen s wudem adigan deg yiminig-inek•inem.",
"center_heading_plus": "Tebɣiḍ ad tedduḍ ɣer Excalidraw+ deg umḍiq?",
"menuHint": "Asifeḍ, ismenyifen, tutlayin, ..."
},
"defaults": {
"menuHint": "Asifeḍ, ismenyifen, d wayen-nniḍen...",
"center_heading": "",
- "toolbarHint": "",
- "helpHint": ""
+ "toolbarHint": "Fren afecku tebduḍ asuneɣ!",
+ "helpHint": "Inegzumen akked tallelt"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/kk-KZ.json b/src/locales/kk-KZ.json
index 3718c7767f..89d7c500da 100644
--- a/src/locales/kk-KZ.json
+++ b/src/locales/kk-KZ.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/km-KH.json b/src/locales/km-KH.json
index 1ea6299372..a51c437a20 100644
--- a/src/locales/km-KH.json
+++ b/src/locales/km-KH.json
@@ -264,16 +264,11 @@
"canvasTooBigTip": ""
},
"errorSplash": {
- "headingMain_pre": "",
- "headingMain_button": "",
+ "headingMain": "",
"clearCanvasMessage": "",
- "clearCanvasMessage_button": "",
"clearCanvasCaveat": "",
- "trackedToSentry_pre": "",
- "trackedToSentry_post": "",
- "openIssueMessage_pre": "",
- "openIssueMessage_button": "",
- "openIssueMessage_post": "",
+ "trackedToSentry": "",
+ "openIssueMessage": "",
"sceneContent": ""
},
"roomDialog": {
@@ -353,29 +348,16 @@
"required": "",
"website": ""
},
- "noteDescription": {
- "pre": "",
- "link": "",
- "post": ""
- },
- "noteGuidelines": {
- "pre": "",
- "link": "",
- "post": ""
- },
- "noteLicense": {
- "pre": "",
- "link": "",
- "post": ""
- },
+ "noteDescription": "",
+ "noteGuidelines": "",
+ "noteLicense": "",
"noteItems": "",
"atleastOneLibItem": "",
"republishWarning": ""
},
"publishSuccessDialog": {
"title": "",
- "content": "",
- "link": ""
+ "content": ""
},
"confirmDialog": {
"resetLibrary": "",
@@ -412,63 +394,40 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
- "transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "transparent": "ថ្លាមើលធ្លុះ",
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
- "center_heading": "",
- "center_heading_plus": "",
- "menuHint": ""
+ "center_heading": "ទិន្នន័យទាំងអស់របស់អ្នក ត្រូវបានរក្សាទុកនៅក្នុង browser របស់អ្នក ។",
+ "center_heading_plus": "តើអ្នកចង់ទៅ Excalidraw+ វិញ ឬ មែន?",
+ "menuHint": "នាំចេញ ចំណូលចិត្ត ភាសា ..."
},
"defaults": {
- "menuHint": "",
- "center_heading": "",
- "toolbarHint": "",
- "helpHint": ""
+ "menuHint": "ការនាំចេញ ចំណូលចិត្ត និង ច្រើនទៀត...",
+ "center_heading": "ងាយស្រួល ។ ធ្វើ ។ ដ្យាក្រាម ។",
+ "toolbarHint": "ជ្រើសរើសឧបករណ៍មួយ និង ចាប់ផ្តើមគូរ!",
+ "helpHint": "ផ្លូវកាត់ & ជំនួយ"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/ko-KR.json b/src/locales/ko-KR.json
index 20bdd43062..3ec5233d7b 100644
--- a/src/locales/ko-KR.json
+++ b/src/locales/ko-KR.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "단일 요소로 붙여넣거나, 기존 텍스트 에디터에 붙여넣으려면 {{shortcut}} 을 사용하세요."
},
"colors": {
- "ffffff": "화이트",
- "f8f9fa": "회색 0",
- "f1f3f5": "회색 1",
- "fff5f5": "빨강색 0",
- "fff0f6": "핑크색 0",
- "f8f0fc": "그레이프 0",
- "f3f0ff": "바이올렛 0",
- "edf2ff": "남색 0",
- "e7f5ff": "파란색 0",
- "e3fafc": "청록색 0",
- "e6fcf5": "틸 0",
- "ebfbee": "녹색 0",
- "f4fce3": "라임 0",
- "fff9db": "노란색 0",
- "fff4e6": "주황색 0",
"transparent": "투명",
- "ced4da": "회색 4",
- "868e96": "회색 6",
- "fa5252": "빨강색 6",
- "e64980": "핑크색 6",
- "be4bdb": "그레이프 6",
- "7950f2": "바이올렛 6",
- "4c6ef5": "남색 6",
- "228be6": "파란색 6",
- "15aabf": "청록색 6",
- "12b886": "틸 6",
- "40c057": "녹색 6",
- "82c91e": "라임 6",
- "fab005": "노란색 6",
- "fd7e14": "주황색 6",
- "000000": "검정색",
- "343a40": "회색 8",
- "495057": "회색 7",
- "c92a2a": "빨강색 9",
- "a61e4d": "핑크색 9",
- "862e9c": "그레이프 9",
- "5f3dc4": "바이올렛 9",
- "364fc7": "남색 9",
- "1864ab": "파란색 9",
- "0b7285": "청록색 9",
- "087f5b": "틸 9",
- "2b8a3e": "녹색 9",
- "5c940d": "라임 9",
- "e67700": "노란색 9",
- "d9480f": "주황색 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "도구를 선택하고, 그리세요!",
"helpHint": "단축키 & 도움말"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/ku-TR.json b/src/locales/ku-TR.json
index 1e2afe4447..90f4ceec67 100644
--- a/src/locales/ku-TR.json
+++ b/src/locales/ku-TR.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "بۆ دانانەوە وەکو یەک توخم یان دانانەوە بۆ نێو دەسکاریکەرێکی دەق کە بوونی هەیە {{shortcut}} بەکاربهێنە"
},
"colors": {
- "ffffff": "سپی",
- "f8f9fa": "خۆڵەمێشی 0",
- "f1f3f5": "خۆڵەمێشی 1",
- "fff5f5": "سور 0",
- "fff0f6": "پەمەی 0",
- "f8f0fc": "مێوژی 0",
- "f3f0ff": "مۆر 0",
- "edf2ff": "نیلی 0",
- "e7f5ff": "شین 0",
- "e3fafc": "شینی ئاسمانی 0",
- "e6fcf5": "سەوزباوی 0",
- "ebfbee": "سهوز 0",
- "f4fce3": "نارنجی 0",
- "fff9db": "زەرد 0",
- "fff4e6": "پرتەقاڵی 0",
"transparent": "ڕوون",
- "ced4da": "خۆڵەمێشی 4",
- "868e96": "خۆڵەمێشی 6",
- "fa5252": "سور 6",
- "e64980": "پەمەی 6",
- "be4bdb": "مێوژی 6",
- "7950f2": "مۆر 6",
- "4c6ef5": "نیلی 6",
- "228be6": "شین 6",
- "15aabf": "شینی ئاسمانی 6",
- "12b886": "سەوزباوی 6",
- "40c057": "سهوز 6",
- "82c91e": "نارنجی 6",
- "fab005": "زەرد 6",
- "fd7e14": "پرتەقاڵی 6",
- "000000": "ڕەش",
- "343a40": "خۆڵەمێشی 8",
- "495057": "خۆڵەمێشی 7",
- "c92a2a": "سور 9",
- "a61e4d": "پەمەی 9",
- "862e9c": "مێوژی 9",
- "5f3dc4": "مۆر 9",
- "364fc7": "نیلی 9",
- "1864ab": "شین 9",
- "0b7285": "شینی ئاسمانی 9",
- "087f5b": "سەوزباوی 9",
- "2b8a3e": "سهوز 9",
- "5c940d": "نارنجی 9",
- "e67700": "زەرد 9",
- "d9480f": "پرتەقاڵی 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "ئامرازێک هەڵبگرە و دەستبکە بە کێشان!",
"helpHint": "قەدبڕەکان و یارمەتی"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/lt-LT.json b/src/locales/lt-LT.json
index 20ce45a5e3..7fb6e9ffe6 100644
--- a/src/locales/lt-LT.json
+++ b/src/locales/lt-LT.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Balta",
- "f8f9fa": "Pilka 0",
- "f1f3f5": "Pilka 1",
- "fff5f5": "Raudona 0",
- "fff0f6": "Rožinė 0",
- "f8f0fc": "",
- "f3f0ff": "Violetinė 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Mėlyna 0",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "Žalia 0",
- "f4fce3": "",
- "fff9db": "Geltona 0",
- "fff4e6": "Oranžinė 0",
"transparent": "Permatoma",
- "ced4da": "Pilka 4",
- "868e96": "Pilka 6",
- "fa5252": "Raudona 6",
- "e64980": "Rožinė 6",
- "be4bdb": "",
- "7950f2": "Violetinė 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Mėlyna 6",
- "15aabf": "",
- "12b886": "",
- "40c057": "Žalia 6",
- "82c91e": "",
- "fab005": "Geltona 6",
- "fd7e14": "Oranžinė 6",
- "000000": "Juoda",
- "343a40": "Pilna 8",
- "495057": "Pilka 7",
- "c92a2a": "Raudona 9",
- "a61e4d": "Rožinė 9",
- "862e9c": "",
- "5f3dc4": "Violetinė 9",
- "364fc7": "Indigo 9",
- "1864ab": "Mėlyna 9",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "Žalia 9",
- "5c940d": "",
- "e67700": "Geltona 9",
- "d9480f": "Oranžinė 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/lv-LV.json b/src/locales/lv-LV.json
index c8c90d4267..2a5b84055c 100644
--- a/src/locales/lv-LV.json
+++ b/src/locales/lv-LV.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Izmantojiet {{shortcut}}, lai ielīmētu kā jaunu elementu, vai ielīmētu esošā teksta lauciņā"
},
"colors": {
- "ffffff": "Balts",
- "f8f9fa": "Pelēks 0",
- "f1f3f5": "Pelēks 1",
- "fff5f5": "Sarkans 0",
- "fff0f6": "Rozā 0",
- "f8f0fc": "Vīnogu 0",
- "f3f0ff": "Violets 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Zils 0",
- "e3fafc": "Ciāns 0",
- "e6fcf5": "Zilganzaļš 0",
- "ebfbee": "Zaļš 0",
- "f4fce3": "Laims 0",
- "fff9db": "Dzeltens 0",
- "fff4e6": "Oranžs 0",
"transparent": "Caurspīdīgs",
- "ced4da": "Pelēks 4",
- "868e96": "Pelēks 6",
- "fa5252": "Sarkans 6",
- "e64980": "Rozā 6",
- "be4bdb": "Vīnogu 6",
- "7950f2": "Violets 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Zils 6",
- "15aabf": "Ciāns 6",
- "12b886": "Zilganzaļš 6",
- "40c057": "Zaļš 6",
- "82c91e": "Laims 6",
- "fab005": "Dzeltens 6",
- "fd7e14": "Oranžs 6",
- "000000": "Melns",
- "343a40": "Pelēks 8",
- "495057": "Pelēks 7",
- "c92a2a": "Sarkans 9",
- "a61e4d": "Rozā 9",
- "862e9c": "Vīnogu 9",
- "5f3dc4": "Violets 9",
- "364fc7": "Indigo 9",
- "1864ab": "Zils 9",
- "0b7285": "Ciāns 9",
- "087f5b": "Zilganzaļš 9",
- "2b8a3e": "Zaļš 9",
- "5c940d": "Laims 9",
- "e67700": "Dzeltens 9",
- "d9480f": "Oranžs 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Izvēlies rīku un sāc zīmēt!",
"helpHint": "Īsceļi un palīdzība"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/mr-IN.json b/src/locales/mr-IN.json
index 85e346d08b..275e1bca96 100644
--- a/src/locales/mr-IN.json
+++ b/src/locales/mr-IN.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "एक घटक म्हणून चिपकावण्या साठी {{shortcut}} वापरा,\nकिंवा विद्यमान मजकूर संपादकात चिपकवा"
},
"colors": {
- "ffffff": "पांढरा",
- "f8f9fa": "करडा 0",
- "f1f3f5": "करडा 1",
- "fff5f5": "लाल 0",
- "fff0f6": "गुलाबी 0",
- "f8f0fc": "अंगूरी 0",
- "f3f0ff": "जांभळा 0",
- "edf2ff": "बैंगनी 0",
- "e7f5ff": "नीळा 0",
- "e3fafc": "आसमानी 0",
- "e6fcf5": "पाचू 0",
- "ebfbee": "हिरवा 0",
- "f4fce3": "लिंबु 0",
- "fff9db": "पिवळा 0",
- "fff4e6": "नारंगी 0",
"transparent": "पारदर्शक",
- "ced4da": "करडा 4",
- "868e96": "करडा 6",
- "fa5252": "लाल 6",
- "e64980": "गुलाबी 6",
- "be4bdb": "अंगूरी 6",
- "7950f2": "जांभळा 6",
- "4c6ef5": "बैंगनी 6",
- "228be6": "नीळा 6",
- "15aabf": "आसमानी 6",
- "12b886": "पाचू 6",
- "40c057": "हिरवा 6",
- "82c91e": "लिंबु 6",
- "fab005": "पिवळा 6",
- "fd7e14": "नारंगी 6",
- "000000": "काळा",
- "343a40": "करडा 8",
- "495057": "करडा 7",
- "c92a2a": "लाल 9",
- "a61e4d": "गुलाबी 9",
- "862e9c": "अंगूरी 9",
- "5f3dc4": "जामुनी 9",
- "364fc7": "बैंगनी 9",
- "1864ab": "नीला 9",
- "0b7285": "आसमानी 9",
- "087f5b": "पाचू 9",
- "2b8a3e": "हरा 9",
- "5c940d": "नीबू 9",
- "e67700": "पीला 9",
- "d9480f": "नारंगी 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "एक साधन निवडा आणि चित्रीकरण सुरु करा!",
"helpHint": "शॉर्टकट आणि सहाय्य"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/my-MM.json b/src/locales/my-MM.json
index 50f8bb5609..ffca0c201b 100644
--- a/src/locales/my-MM.json
+++ b/src/locales/my-MM.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/nb-NO.json b/src/locales/nb-NO.json
index 66b197317d..c624ac8e5f 100644
--- a/src/locales/nb-NO.json
+++ b/src/locales/nb-NO.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Bruk {{shortcut}} for å lime inn som ett enkelt element,\neller lim inn i en eksisterende tekstbehandler"
},
"colors": {
- "ffffff": "Hvit",
- "f8f9fa": "Grå 0",
- "f1f3f5": "Grå 1",
- "fff5f5": "Rød 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Drue 0",
- "f3f0ff": "Fiolett 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Blå 0",
- "e3fafc": "Turkis 0",
- "e6fcf5": "Blågrønn 0",
- "ebfbee": "Grønn 0",
- "f4fce3": "Limegrønn 0",
- "fff9db": "Gul 0",
- "fff4e6": "Oransje 0",
"transparent": "Gjennomsiktig",
- "ced4da": "Grå 4",
- "868e96": "Grå 6",
- "fa5252": "Rød 6",
- "e64980": "Rosa 6",
- "be4bdb": "Drue 6",
- "7950f2": "Fiolett 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Blå 6",
- "15aabf": "Turkis 6",
- "12b886": "Blågrønn 6",
- "40c057": "Grønn 6",
- "82c91e": "Limegrønn 6",
- "fab005": "Gul 6",
- "fd7e14": "Oransje 6",
- "000000": "Sort",
- "343a40": "Grå 8",
- "495057": "Grå 7",
- "c92a2a": "Rød 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Drue 9",
- "5f3dc4": "Fiolett 9",
- "364fc7": "Indigo 9",
- "1864ab": "Blå 9",
- "0b7285": "Turkis 9",
- "087f5b": "Blågrønn 9",
- "2b8a3e": "Grønn 9",
- "5c940d": "Limegrønn 9",
- "e67700": "Gul 9",
- "d9480f": "Oransje 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Velg et verktøy og start å tegne!",
"helpHint": "Snarveier & hjelp"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/nl-NL.json b/src/locales/nl-NL.json
index e94b89f0e7..af27dd94ae 100644
--- a/src/locales/nl-NL.json
+++ b/src/locales/nl-NL.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Gebruik {{shortcut}} om te plakken als een enkel element,\nof plak in een bestaande teksteditor"
},
"colors": {
- "ffffff": "Wit",
- "f8f9fa": "Grijs 0",
- "f1f3f5": "Grijs 1",
- "fff5f5": "Rood 0",
- "fff0f6": "Roze 0",
- "f8f0fc": "Druiven 0",
- "f3f0ff": "Violet 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Blauw 0",
- "e3fafc": "Cyaan 0",
- "e6fcf5": "Groenblauw 0",
- "ebfbee": "Groen 0",
- "f4fce3": "Limoen 0",
- "fff9db": "Geel 0",
- "fff4e6": "Oranje 0",
"transparent": "Transparant",
- "ced4da": "Grijs 4",
- "868e96": "Grijs 6",
- "fa5252": "Rood 6",
- "e64980": "Roze 6",
- "be4bdb": "Druiven 6",
- "7950f2": "Violet",
- "4c6ef5": "Indigo 6",
- "228be6": "Blauw 6",
- "15aabf": "Cyaan 6",
- "12b886": "Groenblauw 6",
- "40c057": "Groen 6",
- "82c91e": "Limoen 6",
- "fab005": "Geel 6",
- "fd7e14": "Oranje 6",
- "000000": "Zwart",
- "343a40": "Grijs 8",
- "495057": "Grijs 7",
- "c92a2a": "Rood 9",
- "a61e4d": "Roze 9",
- "862e9c": "Druiven 9",
- "5f3dc4": "Violet 9",
- "364fc7": "Indigo 9",
- "1864ab": "Blauw 9",
- "0b7285": "Cyaan 9",
- "087f5b": "Groenblauw 9",
- "2b8a3e": "Groen 9",
- "5c940d": "Limoen 9",
- "e67700": "Geel 9",
- "d9480f": "Oranje 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Kies een tool & begin met tekenen!",
"helpHint": "Snelkoppelingen en hulp"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/nn-NO.json b/src/locales/nn-NO.json
index 7551011714..eb2ed1bd77 100644
--- a/src/locales/nn-NO.json
+++ b/src/locales/nn-NO.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Kvit",
- "f8f9fa": "Grå 0",
- "f1f3f5": "Grå 1",
- "fff5f5": "Raud 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Drue 0",
- "f3f0ff": "Fiolett 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Blå 0",
- "e3fafc": "Turkis 0",
- "e6fcf5": "Blågrøn 0",
- "ebfbee": "Grøn 0",
- "f4fce3": "Limegrøn 0",
- "fff9db": "Gul 0",
- "fff4e6": "Oransje 0",
"transparent": "Gjennomsiktig",
- "ced4da": "Grå 4",
- "868e96": "Grå 6",
- "fa5252": "Raud 6",
- "e64980": "Rosa 6",
- "be4bdb": "Drue 6",
- "7950f2": "Fiolett 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Blå 6",
- "15aabf": "Turkis 6",
- "12b886": "Blågrøn 6",
- "40c057": "Grøn 6",
- "82c91e": "Limegrøn 6",
- "fab005": "Gul 6",
- "fd7e14": "Oransje 6",
- "000000": "Svart",
- "343a40": "Grå 8",
- "495057": "Grå 7",
- "c92a2a": "Raud 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Drue 9",
- "5f3dc4": "Fiolett 9",
- "364fc7": "Indigo 9",
- "1864ab": "Blå 9",
- "0b7285": "Turkis 9",
- "087f5b": "Blågrøn 9",
- "2b8a3e": "Grøn 9",
- "5c940d": "Limegrøn 9",
- "e67700": "Gul 9",
- "d9480f": "Oransj 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/oc-FR.json b/src/locales/oc-FR.json
index a15c33b931..5628692f8c 100644
--- a/src/locales/oc-FR.json
+++ b/src/locales/oc-FR.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Blanc",
- "f8f9fa": "Gris 0",
- "f1f3f5": "Gris 0",
- "fff5f5": "Roge 0",
- "fff0f6": "Ròse 0",
- "f8f0fc": "Bordèu 0",
- "f3f0ff": "Violet 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Blau 0",
- "e3fafc": "Cian 0",
- "e6fcf5": "Esmerauda 0",
- "ebfbee": "Verd 0",
- "f4fce3": "Verd citron 0",
- "fff9db": "Jaune 0",
- "fff4e6": "Irange 0",
"transparent": "Transparéncia",
- "ced4da": "Gris 4",
- "868e96": "Gris 6",
- "fa5252": "Roge 6",
- "e64980": "Ròse 6",
- "be4bdb": "Bordèu 6",
- "7950f2": "Violet 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Blau 6",
- "15aabf": "Cian 6",
- "12b886": "Esmerauda 6",
- "40c057": "Verd 6",
- "82c91e": "Verd citron 6",
- "fab005": "Jaune 6",
- "fd7e14": "Irange 6",
- "000000": "Negre",
- "343a40": "Gris 8",
- "495057": "Gris 7",
- "c92a2a": "Roge 9",
- "a61e4d": "Ròse 9",
- "862e9c": "Bordèu 9",
- "5f3dc4": "Violet 9",
- "364fc7": "Indigo 9",
- "1864ab": "Blau 9",
- "0b7285": "Cian 9",
- "087f5b": "Esmerauda 9",
- "2b8a3e": "Verd 9",
- "5c940d": "Verd citron 9",
- "e67700": "Jaune 9",
- "d9480f": "Irange 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Prenètz un esplech e començatz de dessenhar !",
"helpHint": "Acorchis e ajuda"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/pa-IN.json b/src/locales/pa-IN.json
index 9131afd6d2..b270d3e7ff 100644
--- a/src/locales/pa-IN.json
+++ b/src/locales/pa-IN.json
@@ -1,7 +1,7 @@
{
"labels": {
"paste": "ਪੇਸਟ ਕਰੋ",
- "pasteAsPlaintext": "",
+ "pasteAsPlaintext": "ਸਾਦੇ ਪਾਠ ਵਜੋਂ ਪੇਸਟ ਕਰੋ",
"pasteCharts": "ਚਾਰਟ ਪੇਸਟ ਕਰੋ",
"selectAll": "ਸਾਰੇ ਚੁਣੋ",
"multiSelect": "ਐਲੀਮੈਂਟ ਨੂੰ ਚੋਣ ਵਿੱਚ ਜੋੜੋ",
@@ -10,7 +10,7 @@
"copy": "ਕਾਪੀ ਕਰੋ",
"copyAsPng": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ PNG ਵਜੋਂ ਕਾਪੀ ਕਰੋ",
"copyAsSvg": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ SVG ਵਜੋਂ ਕਾਪੀ ਕਰੋ",
- "copyText": "",
+ "copyText": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਪਾਠ ਵਜੋਂ ਕਾਪੀ ਕਰੋ",
"bringForward": "ਅੱਗੇ ਲਿਆਓ",
"sendToBack": "ਸਭ ਤੋਂ ਪਿੱਛੇ ਭੇਜੋ",
"bringToFront": "ਸਭ ਤੋਂ ਅੱਗੇ ਲਿਆਓ",
@@ -73,7 +73,7 @@
"layers": "ਪਰਤਾਂ",
"actions": "ਕਾਰਵਾਈਆਂ",
"language": "ਭਾਸ਼ਾ",
- "liveCollaboration": "",
+ "liveCollaboration": "ਲਾਇਵ ਸਹਿਯੋਗ...",
"duplicateSelection": "ਡੁਪਲੀਕੇਟ ਬਣਾਓ",
"untitled": "ਬੇ-ਸਿਰਨਾਵਾਂ",
"name": "ਨਾਂ",
@@ -109,37 +109,37 @@
"excalidrawLib": "ਐਕਸਕਲੀਡਰਾਅ ਲਾਇਬ੍ਰੇਰੀ",
"decreaseFontSize": "ਫੌਂਟ ਦਾ ਅਕਾਰ ਘਟਾਓ",
"increaseFontSize": "ਫੌਂਟ ਦਾ ਅਕਾਰ ਵਧਾਓ",
- "unbindText": "",
+ "unbindText": "ਪਾਠ ਨੂੰ ਵੱਖ ਕਰੋ",
"bindText": "ਪਾਠ ਨੂੰ ਕੰਟੇਨਰ ਨਾਲ ਬੰਨ੍ਹੋ",
- "createContainerFromText": "",
+ "createContainerFromText": "ਪਾਠ ਨੂੰ ਕੰਟੇਨਰ ਵਿੱਚ ਇਕੱਠਾ ਕਰੋ",
"link": {
"edit": "ਕੜੀ ਸੋਧੋ",
"create": "ਕੜੀ ਬਣਾਓ",
"label": "ਕੜੀ"
},
"lineEditor": {
- "edit": "",
- "exit": ""
+ "edit": "ਪੰਕਤੀ ਸੋਧੋ",
+ "exit": "ਪੰਕਤੀ ਸੋਧਕ 'ਤੋਂ ਬਾਹਰ ਨਿਕਲੋ"
},
"elementLock": {
- "lock": "",
- "unlock": "",
- "lockAll": "",
- "unlockAll": ""
+ "lock": "ਲਾਕ ਕਰੋ",
+ "unlock": "ਅਨਲਾਕ ਕਰੋ",
+ "lockAll": "ਸਭ ਲਾਕ ਕਰੋ",
+ "unlockAll": "ਸਭ ਅਨਲਾਕ ਕਰੋ"
},
- "statusPublished": "",
- "sidebarLock": ""
+ "statusPublished": "ਪ੍ਰਕਾਸ਼ਤ ਹੈ",
+ "sidebarLock": "ਸਾਈਡਬਾਰ ਨੂੰ ਖੁੱਲ੍ਹਾ ਰੱਖੋ"
},
"library": {
- "noItems": "",
+ "noItems": "ਹਾਲੇ ਤੱਕ ਕੋਈ ਚੀਜ ਜੋੜੀ ਨਹੀਂ ਗਈ...",
"hint_emptyLibrary": "",
"hint_emptyPrivateLibrary": ""
},
"buttons": {
"clearReset": "ਕੈਨਵਸ ਰੀਸੈੱਟ ਕਰੋ",
"exportJSON": "ਫਾਈਲ ਵਿੱਚ ਨਿਰਯਾਤ ਕਰੋ",
- "exportImage": "",
- "export": "",
+ "exportImage": "ਤਸਵੀਰ ਨਿਰਯਾਤ ਕਰੋ...",
+ "export": "ਇਸ ਵਿੱਚ ਸਾਂਭੋ...",
"exportToPng": "PNG ਵਿੱਚ ਨਿਰਯਾਤ ਕਰੋ",
"exportToSvg": "SVG ਵਿੱਚ ਨਿਰਯਾਤ ਕਰੋ",
"copyToClipboard": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰੋ",
@@ -147,7 +147,7 @@
"scale": "ਪੈਮਾਇਸ਼",
"save": "ਮੌਜੂਦਾ ਫਾਈਲ ਵਿੱਚ ਸਾਂਭੋ",
"saveAs": "ਇਸ ਵਜੋਂ ਸਾਂਭੋ",
- "load": "",
+ "load": "ਖੋਲ੍ਹੋ",
"getShareableLink": "ਸਾਂਝੀ ਕਰਨ ਵਾਲੀ ਲਿੰਕ ਲਵੋ",
"close": "ਬੰਦ ਕਰੋ",
"selectLanguage": "ਭਾਸ਼ਾ ਚੁਣੋ",
@@ -181,7 +181,7 @@
"couldNotLoadInvalidFile": "ਨਜਾਇਜ਼ ਫਾਈਲ ਲੋਡ ਨਹੀਂ ਕਰ ਸਕੇ",
"importBackendFailed": "ਬੈਕਐੱਨਡ ਤੋਂ ਆਯਾਤ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਰਹੇ।",
"cannotExportEmptyCanvas": "ਖਾਲੀ ਕੈਨਵਸ ਨਿਰਯਾਤ ਨਹੀਂ ਕਰ ਸਕਦੇ।",
- "couldNotCopyToClipboard": "",
+ "couldNotCopyToClipboard": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ।",
"decryptFailed": "ਡਾਟਾ ਡੀਕਰਿਪਟ ਨਹੀਂ ਕਰ ਸਕੇ।",
"uploadedSecurly": "ਅੱਪਲੋਡ ਸਿਰੇ-ਤੋਂ-ਸਿਰੇ ਤੱਕ ਇਨਕਰਿਪਸ਼ਨ ਨਾਲ ਸੁਰੱਖਿਅਤ ਕੀਤੀ ਹੋਈ ਹੈ, ਜਿਸਦਾ ਮਤਲਬ ਇਹ ਹੈ ਕਿ Excalidraw ਸਰਵਰ ਅਤੇ ਤੀਜੀ ਧਿਰ ਦੇ ਬੰਦੇ ਸਮੱਗਰੀ ਨੂੰ ਪੜ੍ਹ ਨਹੀਂ ਸਕਦੇ।",
"loadSceneOverridePrompt": "ਬਾਹਰੀ ਡਰਾਇੰਗ ਨੂੰ ਲੋਡ ਕਰਨਾ ਤੁਹਾਡੀ ਮੌਜੂਦਾ ਸਮੱਗਰੀ ਦੀ ਥਾਂ ਲੈ ਲਵੇਗਾ। ਕੀ ਤੁਸੀਂ ਜਾਰੀ ਰੱਖਣਾ ਚਾਹੁੰਦੇ ਹੋ?",
@@ -198,13 +198,13 @@
"collabOfflineWarning": ""
},
"errors": {
- "unsupportedFileType": "",
- "imageInsertError": "",
- "fileTooBig": "",
+ "unsupportedFileType": "ਫਾਈਲ ਦੀ ਕਿਸਮ ਦਾ ਸਮਰਥਨ ਨਹੀਂ ਕੀਤਾ ਜਾਂਦਾ।",
+ "imageInsertError": "ਚਿੱਤਰ ਸ਼ਾਮਲ ਨਹੀਂ ਜਾ ਸਕਿਆ, ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ...",
+ "fileTooBig": "ਫਾਈਲ ਬਹੁਤ ਜ਼ਿਆਦਾ ਵੱਡੀ ਹੈ। ਵੱਧ-ਤੋਂ-ਵੱਧ ਪ੍ਰਵਾਨਤ ਅਕਾਰ {{maxSize}} ਹੈ।",
"svgImageInsertError": "",
"invalidSVGString": "SVG ਨਜਾਇਜ਼ ਹੈ।",
"cannotResolveCollabServer": "",
- "importLibraryError": "",
+ "importLibraryError": "ਲਾਇਬ੍ਰੇਰੀ ਲੋਡ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ",
"collabSaveFailed": "",
"collabSaveFailed_sizeExceeded": "",
"brave_measure_text_error": {
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "ਚਿੱਟਾ",
- "f8f9fa": "ਸੁਰਮਈ 0",
- "f1f3f5": "ਸੁਰਮਈ 1",
- "fff5f5": "ਲਾਲ 0",
- "fff0f6": "ਗੁਲਾਬੀ 0",
- "f8f0fc": "ਅੰਗੂਰੀ 0",
- "f3f0ff": "ਜਾਮਣੀ 0",
- "edf2ff": "ਗੂੜ੍ਹਾ ਨੀਲਾ 0",
- "e7f5ff": "ਨੀਲਾ 0",
- "e3fafc": "ਫਿਰੋਜੀ 0",
- "e6fcf5": "ਟੀਲ 0",
- "ebfbee": "ਹਰਾ 0",
- "f4fce3": "ਲਾਇਮ 0",
- "fff9db": "ਪੀਲਾ 0",
- "fff4e6": "ਸੰਤਰੀ 0",
"transparent": "ਪਾਰਦਰਸ਼ੀ",
- "ced4da": "ਸੁਰਮਈ 4",
- "868e96": "ਸੁਰਮਈ 6",
- "fa5252": "ਲਾਲ 6",
- "e64980": "ਗੁਲਾਬੀ 6",
- "be4bdb": "ਅੰਗੂਰੀ 6",
- "7950f2": "ਜਾਮਣੀ 6",
- "4c6ef5": "ਗੂੜ੍ਹਾ ਨੀਲਾ 6",
- "228be6": "ਨੀਲਾ 6",
- "15aabf": "ਫਿਰੋਜੀ 6",
- "12b886": "ਟੀਲ 6",
- "40c057": "ਹਰਾ 6",
- "82c91e": "ਲਾਇਮ 6",
- "fab005": "ਪੀਲਾ 6",
- "fd7e14": "ਸੰਤਰੀ 6",
- "000000": "ਕਾਲਾ",
- "343a40": "ਸੁਰਮਈ 8",
- "495057": "ਸੁਰਮਈ 7",
- "c92a2a": "ਲਾਲ 9",
- "a61e4d": "ਗੁਲਾਬੀ 9",
- "862e9c": "ਅੰਗੂਰੀ 9",
- "5f3dc4": "ਜਾਮਣੀ 9",
- "364fc7": "ਗੂੜ੍ਹਾ ਨੀਲਾ 9",
- "1864ab": "ਨੀਲਾ 9",
- "0b7285": "ਫਿਰੋਜੀ 9",
- "087f5b": "ਟੀਲ 9",
- "2b8a3e": "ਹਰਾ 9",
- "5c940d": "ਲਾਇਮ 9",
- "e67700": "ਪੀਲਾ 9",
- "d9480f": "ਸੰਤਰੀ 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/percentages.json b/src/locales/percentages.json
index ea7a668f8b..1619ae9714 100644
--- a/src/locales/percentages.json
+++ b/src/locales/percentages.json
@@ -1,55 +1,55 @@
{
- "ar-SA": 90,
- "bg-BG": 53,
- "bn-BD": 59,
- "ca-ES": 98,
- "cs-CZ": 73,
- "da-DK": 32,
- "de-DE": 100,
- "el-GR": 97,
+ "ar-SA": 83,
+ "bg-BG": 57,
+ "bn-BD": 63,
+ "ca-ES": 92,
+ "cs-CZ": 67,
+ "da-DK": 35,
+ "de-DE": 94,
+ "el-GR": 92,
"en": 100,
- "es-ES": 99,
- "eu-ES": 98,
- "fa-IR": 100,
- "fi-FI": 98,
- "fr-FR": 98,
- "gl-ES": 98,
- "he-IL": 98,
- "hi-IN": 71,
- "hu-HU": 87,
- "id-ID": 97,
- "it-IT": 98,
- "ja-JP": 98,
- "kaa": 20,
- "kab-KAB": 93,
- "kk-KZ": 20,
- "km-KH": 0,
- "ko-KR": 100,
- "ku-TR": 100,
- "lt-LT": 62,
- "lv-LV": 99,
- "mr-IN": 99,
- "my-MM": 40,
- "nb-NO": 100,
- "nl-NL": 91,
- "nn-NO": 87,
- "oc-FR": 96,
- "pa-IN": 81,
- "pl-PL": 88,
- "pt-BR": 98,
- "pt-PT": 99,
- "ro-RO": 100,
- "ru-RU": 100,
- "si-LK": 8,
- "sk-SK": 100,
- "sl-SI": 100,
- "sv-SE": 100,
- "ta-IN": 92,
- "th-TH": 40,
- "tr-TR": 96,
- "uk-UA": 95,
- "vi-VN": 56,
- "zh-CN": 100,
- "zh-HK": 25,
- "zh-TW": 100
+ "es-ES": 93,
+ "eu-ES": 94,
+ "fa-IR": 93,
+ "fi-FI": 92,
+ "fr-FR": 93,
+ "gl-ES": 92,
+ "he-IL": 91,
+ "hi-IN": 74,
+ "hu-HU": 80,
+ "id-ID": 92,
+ "it-IT": 94,
+ "ja-JP": 92,
+ "kaa": 18,
+ "kab-KAB": 92,
+ "kk-KZ": 22,
+ "km-KH": 2,
+ "ko-KR": 94,
+ "ku-TR": 94,
+ "lt-LT": 59,
+ "lv-LV": 93,
+ "mr-IN": 93,
+ "my-MM": 43,
+ "nb-NO": 94,
+ "nl-NL": 87,
+ "nn-NO": 81,
+ "oc-FR": 91,
+ "pa-IN": 82,
+ "pl-PL": 83,
+ "pt-BR": 94,
+ "pt-PT": 93,
+ "ro-RO": 94,
+ "ru-RU": 94,
+ "si-LK": 9,
+ "sk-SK": 94,
+ "sl-SI": 94,
+ "sv-SE": 94,
+ "ta-IN": 86,
+ "th-TH": 41,
+ "tr-TR": 91,
+ "uk-UA": 94,
+ "vi-VN": 59,
+ "zh-CN": 94,
+ "zh-HK": 27,
+ "zh-TW": 94
}
diff --git a/src/locales/pl-PL.json b/src/locales/pl-PL.json
index 047e5ec6b9..e05fdc65c1 100644
--- a/src/locales/pl-PL.json
+++ b/src/locales/pl-PL.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "Biały",
- "f8f9fa": "Szary 0",
- "f1f3f5": "Szary 1",
- "fff5f5": "Czerwony 0",
- "fff0f6": "Różowy 0",
- "f8f0fc": "Bordowy 0",
- "f3f0ff": "Fioletowy 0",
- "edf2ff": "Granatowy 0",
- "e7f5ff": "Niebieski 0",
- "e3fafc": "Błękitny 0",
- "e6fcf5": "Turkusowy 0",
- "ebfbee": "Zielony 0",
- "f4fce3": "Limonkowy 0",
- "fff9db": "Żółty 0",
- "fff4e6": "Pomarańczowy 0",
"transparent": "Przezroczysty",
- "ced4da": "Szary 4",
- "868e96": "Szary 6",
- "fa5252": "Czerwony 6",
- "e64980": "Różowy 6",
- "be4bdb": "Bordowy 6",
- "7950f2": "Fioletowy 6",
- "4c6ef5": "Granatowy 6",
- "228be6": "Niebieski 6",
- "15aabf": "Błękitny 6",
- "12b886": "Turkusowy 6",
- "40c057": "Zielony 6",
- "82c91e": "Limonkowy 6",
- "fab005": "Żółty 6",
- "fd7e14": "Pomarańczowy 6",
- "000000": "Czarny",
- "343a40": "Szary 8",
- "495057": "Szary 7",
- "c92a2a": "Czerwony 9",
- "a61e4d": "Różowy 9",
- "862e9c": "Bordowy 9",
- "5f3dc4": "Fioletowy 9",
- "364fc7": "Granatowy 9",
- "1864ab": "Niebieski 9",
- "0b7285": "Błękitny 9",
- "087f5b": "Turkusowy 9",
- "2b8a3e": "Zielony 9",
- "5c940d": "Limonkowy 9",
- "e67700": "Żółty 9",
- "d9480f": "Pomarańczowy 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/pt-BR.json b/src/locales/pt-BR.json
index bf4f7d4453..30ae031d55 100644
--- a/src/locales/pt-BR.json
+++ b/src/locales/pt-BR.json
@@ -54,7 +54,7 @@
"veryLarge": "Muito grande",
"solid": "Sólido",
"hachure": "Hachura",
- "zigzag": "",
+ "zigzag": "Zigue-zague",
"crossHatch": "Hachura cruzada",
"thin": "Fino",
"bold": "Espesso",
@@ -111,7 +111,7 @@
"increaseFontSize": "Aumentar o tamanho da fonte",
"unbindText": "Desvincular texto",
"bindText": "Vincular texto ao contêiner",
- "createContainerFromText": "",
+ "createContainerFromText": "Envolver texto em um contêiner",
"link": {
"edit": "Editar link",
"create": "Criar link",
@@ -208,10 +208,10 @@
"collabSaveFailed": "Não foi possível salvar no banco de dados do servidor. Se os problemas persistirem, salve o arquivo localmente para garantir que não perca o seu trabalho.",
"collabSaveFailed_sizeExceeded": "Não foi possível salvar no banco de dados do servidor, a tela parece ser muito grande. Se os problemas persistirem, salve o arquivo localmente para garantir que não perca o seu trabalho.",
"brave_measure_text_error": {
- "line1": "",
- "line2": "",
- "line3": "",
- "line4": ""
+ "line1": "Parece que você está usando o navegador Brave com a configuração Bloquear Impressões Digitais no modo agressivo.",
+ "line2": "Isso pode acabar quebrando Elementos de Texto em seus desenhos.",
+ "line3": "Recomendamos fortemente desativar essa configuração. Você pode acessar o passo a passo sobre como fazer isso.",
+ "line4": "Se desativar essa configuração não corrigir a exibição de elementos de texto, por favor abra uma issue em nosso GitHub, ou mande uma mensagem em nosso Discord "
}
},
"toolBar": {
@@ -306,8 +306,8 @@
"doubleClick": "clique duplo",
"drag": "arrastar",
"editor": "Editor",
- "editLineArrowPoints": "",
- "editText": "",
+ "editLineArrowPoints": "Editar linha/ponta da seta",
+ "editText": "Editar texto / adicionar etiqueta",
"github": "Encontrou algum problema? Nos informe",
"howto": "Siga nossos guias",
"or": "ou",
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Use {{shortcut}} para colar como um único elemento,\nou cole em um editor de texto já existente"
},
"colors": {
- "ffffff": "Braco",
- "f8f9fa": "Cinza 0",
- "f1f3f5": "Cinza 1",
- "fff5f5": "Vermelho 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Uva 0",
- "f3f0ff": "Violeta 0",
- "edf2ff": "Índigo 0",
- "e7f5ff": "Azul 0",
- "e3fafc": "Ciano 0",
- "e6fcf5": "Verde-azulado 0",
- "ebfbee": "Verde 0",
- "f4fce3": "Lima 0",
- "fff9db": "Amarelo 0",
- "fff4e6": "Laranja 0",
"transparent": "Transparente",
- "ced4da": "Cinza 4",
- "868e96": "Cinza 6",
- "fa5252": "Vermelho 6",
- "e64980": "Rosa 6",
- "be4bdb": "Uva 6",
- "7950f2": "Violeta 6",
- "4c6ef5": "Índigo 6",
- "228be6": "Azul 6",
- "15aabf": "Ciano 6",
- "12b886": "Verde-azulado 6",
- "40c057": "Verde 6",
- "82c91e": "Lima 6",
- "fab005": "Amarelo 6",
- "fd7e14": "Laranja 6",
- "000000": "Preto",
- "343a40": "Cinza 8",
- "495057": "Cinza 7",
- "c92a2a": "Vermelho 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Uva 9",
- "5f3dc4": "Violeta 9",
- "364fc7": "Índigo 9",
- "1864ab": "Azul 9",
- "0b7285": "Ciano 9",
- "087f5b": "Verde-azulado 9",
- "2b8a3e": "Verde 9",
- "5c940d": "Lima 9",
- "e67700": "Amarelo 9",
- "d9480f": "Laranja 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Escolha uma ferramenta e comece a desenhar!",
"helpHint": "Atalhos e ajuda"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/pt-PT.json b/src/locales/pt-PT.json
index 0070d162cb..943e5db3f7 100644
--- a/src/locales/pt-PT.json
+++ b/src/locales/pt-PT.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Usar {{shortcut}} para colar como um único elemento,\nou colar num editor de texto existente"
},
"colors": {
- "ffffff": "Branco",
- "f8f9fa": "Cinza 0",
- "f1f3f5": "Cinza 1",
- "fff5f5": "Vermelho 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Uva 0",
- "f3f0ff": "Violeta 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Azul 0",
- "e3fafc": "Ciano 0",
- "e6fcf5": "Verde-azulado 0",
- "ebfbee": "Verde 0",
- "f4fce3": "Lima 0",
- "fff9db": "Amarelo 0",
- "fff4e6": "Laranja 0",
"transparent": "Transparente",
- "ced4da": "Cinza 4",
- "868e96": "Cinza 6",
- "fa5252": "Vermelho 6",
- "e64980": "Rosa 6",
- "be4bdb": "Uva 6",
- "7950f2": "Violeta 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Azul 6",
- "15aabf": "Ciano 6",
- "12b886": "Verde-azulado 6",
- "40c057": "Verde 6",
- "82c91e": "Lima 6",
- "fab005": "Amarelo 6",
- "fd7e14": "Laranja 6",
- "000000": "Preto",
- "343a40": "Cinza 8",
- "495057": "Cinza 7",
- "c92a2a": "Vermelho 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Uva 9",
- "5f3dc4": "Violeta 9",
- "364fc7": "Indigo 9",
- "1864ab": "Azul 9",
- "0b7285": "Ciano 9",
- "087f5b": "Verde-azulado 9",
- "2b8a3e": "Verde 9",
- "5c940d": "Lima 9",
- "e67700": "Amarelo 9",
- "d9480f": "Laranja 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Escolha uma ferramenta e comece a desenhar!",
"helpHint": "Atalhos e ajuda"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/ro-RO.json b/src/locales/ro-RO.json
index ddcd2c59de..5440f8f722 100644
--- a/src/locales/ro-RO.json
+++ b/src/locales/ro-RO.json
@@ -264,11 +264,11 @@
"canvasTooBigTip": "Sfat: încearcă să apropii puțin mai mult elementele cele mai îndepărtate."
},
"errorSplash": {
- "headingMain": "A apărut o eroare. Încearcă să reîncarci pagina. ",
- "clearCanvasMessage": "Dacă reîncărcarea nu funcționează, încearcă să golești pânza. ",
+ "headingMain": "A apărut o eroare. Încearcă să reîncarci pagina .",
+ "clearCanvasMessage": "Dacă reîncărcarea nu funcționează, încearcă să ștergi pânza .",
"clearCanvasCaveat": " Acest lucru va duce la pierderea progresului ",
"trackedToSentry": "Eroarea cu identificatorul {{eventId}} a fost urmărită în sistemul nostru.",
- "openIssueMessage": "Am luat măsuri de precauție pentru a nu include informații despre scenă în eroare. Dacă scena nu este privată, te rugăm să ne oferi mai multe informații în monitorul nostru pentru erori. Te rugăm să incluzi informațiile de mai jos prin copierea și lipirea în problema GitHub.",
+ "openIssueMessage": "Am luat măsuri de precauție pentru a nu include informații despre scenă în eroare. Dacă scena nu este privată, oferă-ne mai multe informații în monitorul nostru pentru erori . Include informațiile de mai jos copiindu-le și lipindu-le în tichetul cu problemă de pe GitHub.",
"sceneContent": "Conținutul scenei:"
},
"roomDialog": {
@@ -348,8 +348,8 @@
"required": "Obligatoriu",
"website": "Introdu un URL valid"
},
- "noteDescription": "Trimite-ți biblioteca pentru fi inclus în depozitul de biblioteci publicepentru utilizarea de către alte persoane în desenele lor.",
- "noteGuidelines": "Biblioteca trebuie aprobată manual. Citește orientările înainte de trimitere. Vei avea nevoie de un cont GitHub pentru a comunica și efectua modificări, dacă este cazul, însă nu este strict necesar.",
+ "noteDescription": "Trimite-ți biblioteca pentru a fi inclusă în depozitul de biblioteci publice în vederea utilizării de către alte persoane în desenele lor.",
+ "noteGuidelines": "Biblioteca trebuie aprobată manual mai întâi. Citește orientările înainte de trimitere. Vei avea nevoie de un cont GitHub pentru a comunica și efectua modificări, dacă este cazul, însă nu este strict necesar.",
"noteLicense": "Prin trimiterea bibliotecii, ești de acord că aceasta va fi publicată sub Licența MIT, care, pe scurt, înseamnă că oricine o poate folosi fără restricții.",
"noteItems": "Fiecare element din bibliotecă trebuie să aibă propriul nume astfel încât să fie filtrabil. Următoarele elemente din bibliotecă vor fi incluse:",
"atleastOneLibItem": "Selectează cel puțin un element din bibliotecă pentru a începe",
@@ -357,7 +357,7 @@
},
"publishSuccessDialog": {
"title": "Bibliotecă trimisă",
- "content": "Îți mulțumim, {{authorName}}. Biblioteca ta a fost trimisă spre revizuire. Poți urmări starea aici"
+ "content": "Îți mulțumim, {{authorName}}. Biblioteca a fost trimisă spre revizuire. Poți urmări starea aici"
},
"confirmDialog": {
"resetLibrary": "Resetare bibliotecă",
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Folosește {{shortcut}} pentru a insera ca un singur element\nsau insera într-un editor de text existent"
},
"colors": {
- "ffffff": "Alb",
- "f8f9fa": "Gri 0",
- "f1f3f5": "Gri 1",
- "fff5f5": "Roșu 0",
- "fff0f6": "Roz 0",
- "f8f0fc": "Struguriu 0",
- "f3f0ff": "Violet 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Albastru 0",
- "e3fafc": "Cyan 0",
- "e6fcf5": "Cyan-verde",
- "ebfbee": "Verde 0",
- "f4fce3": "Verde-limetă",
- "fff9db": "Galben 0",
- "fff4e6": "Portocaliu 0",
"transparent": "Transparent",
- "ced4da": "Gri 4",
- "868e96": "Gri 6",
- "fa5252": "Roșu 6",
- "e64980": "Roz 6",
- "be4bdb": "Struguriu 6",
- "7950f2": "Violet 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Albastru 6",
- "15aabf": "Cyan 6",
- "12b886": "Cyan-verde 6",
- "40c057": "Verde 6",
- "82c91e": "Verde-limetă 6",
- "fab005": "Galben 6",
- "fd7e14": "Portocaliu 6",
- "000000": "Negru",
- "343a40": "Gri 8",
- "495057": "Gri 7",
- "c92a2a": "Roșu 9",
- "a61e4d": "Roz 9",
- "862e9c": "Struguriu 9",
- "5f3dc4": "Violet 9",
- "364fc7": "Indigo 9",
- "1864ab": "Albastru 9",
- "0b7285": "Cyan 9",
- "087f5b": "Cyan-verde 9",
- "2b8a3e": "Verde 9",
- "5c940d": "Verde-limetă 9",
- "e67700": "Galben 9",
- "d9480f": "Portocaliu 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Alege un instrument și începe să desenezi!",
"helpHint": "Comenzi rapide și ajutor"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/ru-RU.json b/src/locales/ru-RU.json
index c4680a7f65..7ba5b3374e 100644
--- a/src/locales/ru-RU.json
+++ b/src/locales/ru-RU.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Используйте {{shortcut}}, чтобы вставить один объект,\nили вставьте в существующий текстовый редактор"
},
"colors": {
- "ffffff": "Белый",
- "f8f9fa": "Серый 0",
- "f1f3f5": "Серый 1",
- "fff5f5": "Красный 0",
- "fff0f6": "Розовый 0",
- "f8f0fc": "Виноградный 0",
- "f3f0ff": "Фиолетовый 0",
- "edf2ff": "Индиго 0",
- "e7f5ff": "Синий 0",
- "e3fafc": "Голубой 0",
- "e6fcf5": "Бирюзовый 0",
- "ebfbee": "Зелёный 0",
- "f4fce3": "Лайм 0",
- "fff9db": "Жёлтый 0",
- "fff4e6": "Оранжевый 0",
"transparent": "Прозрачный",
- "ced4da": "Серый 4",
- "868e96": "Серый 6",
- "fa5252": "Красный 6",
- "e64980": "Розовый 6",
- "be4bdb": "Виноградный 6",
- "7950f2": "Фиолетовый 6",
- "4c6ef5": "Индиго 6",
- "228be6": "Синий 6",
- "15aabf": "Голубой 6",
- "12b886": "Бирюзовый 6",
- "40c057": "Зелёный 6",
- "82c91e": "Лайм 6",
- "fab005": "Жёлтый 6",
- "fd7e14": "Оранжевый 6",
- "000000": "Чёрный",
- "343a40": "Серый 8",
- "495057": "Серый 7",
- "c92a2a": "Красный 9",
- "a61e4d": "Розовый 9",
- "862e9c": "Виноградный 9",
- "5f3dc4": "Фиолетовый 9",
- "364fc7": "Индиго 9",
- "1864ab": "Синий 9",
- "0b7285": "Голубой 9",
- "087f5b": "Бирюзовый 9",
- "2b8a3e": "Зелёный 9",
- "5c940d": "Лайм 9",
- "e67700": "Жёлтый 9",
- "d9480f": "Оранжевый 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Выберите инструмент и начните рисовать!",
"helpHint": "Сочетания клавиш и помощь"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/si-LK.json b/src/locales/si-LK.json
index 60a3d2f1fd..e3b5a53572 100644
--- a/src/locales/si-LK.json
+++ b/src/locales/si-LK.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/sk-SK.json b/src/locales/sk-SK.json
index 4e97ba73eb..2123d7c1ad 100644
--- a/src/locales/sk-SK.json
+++ b/src/locales/sk-SK.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Použitím {{shortcut}} vložte ako samostatný prvok alebo vložte do existujúceho editovaného textu"
},
"colors": {
- "ffffff": "Biela",
- "f8f9fa": "Sivá 0",
- "f1f3f5": "Sivá 1",
- "fff5f5": "Červená 0",
- "fff0f6": "Ružová 0",
- "f8f0fc": "Hroznová fialová 0",
- "f3f0ff": "Fialová 0",
- "edf2ff": "Tmavomodrá 0",
- "e7f5ff": "Modrá 0",
- "e3fafc": "Azúrová 0",
- "e6fcf5": "Modrozelená 0",
- "ebfbee": "Zelená 0",
- "f4fce3": "Limetková 0",
- "fff9db": "Žltá 0",
- "fff4e6": "Oranžová 0",
"transparent": "Priehľadná",
- "ced4da": "Sivá 4",
- "868e96": "Sivá 6",
- "fa5252": "Červená 6",
- "e64980": "Ružová 6",
- "be4bdb": "Hroznová fialová 6",
- "7950f2": "Fialová 6",
- "4c6ef5": "Tmavomodrá 6",
- "228be6": "Modrá 6",
- "15aabf": "Azúrová 6",
- "12b886": "Modrozelená 6",
- "40c057": "Zelená 6",
- "82c91e": "Limetková 6",
- "fab005": "Žltá 6",
- "fd7e14": "Oranžová 6",
- "000000": "Čierna",
- "343a40": "Sivá 8",
- "495057": "Sivá 7",
- "c92a2a": "Červená 9",
- "a61e4d": "Ružová 9",
- "862e9c": "Hroznová fialová 9",
- "5f3dc4": "Fialová 9",
- "364fc7": "Tmavomodrá 9",
- "1864ab": "Modrá 9",
- "0b7285": "Azúrová 9",
- "087f5b": "Modrozelená 9",
- "2b8a3e": "Zelená 9",
- "5c940d": "Limetková 9",
- "e67700": "Žltá 9",
- "d9480f": "Oranžová 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Zvoľte nástroj a začnite kresliť!",
"helpHint": "Klávesové skratky a pomocník"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/sl-SI.json b/src/locales/sl-SI.json
index 1b59573846..902b2476fe 100644
--- a/src/locales/sl-SI.json
+++ b/src/locales/sl-SI.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Uporabite {{shortcut}}, da prilepite kot en element,\n ali prilepite v obstoječ urejevalnik besedil"
},
"colors": {
- "ffffff": "Bela",
- "f8f9fa": "Siva 0",
- "f1f3f5": "Siva 1",
- "fff5f5": "Rdeča 0",
- "fff0f6": "Roza 0",
- "f8f0fc": "Grozdje 0",
- "f3f0ff": "Vijolična 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Modra 0",
- "e3fafc": "Cijan 0",
- "e6fcf5": "Modrozelena 0",
- "ebfbee": "Zelena 0",
- "f4fce3": "Limeta 0",
- "fff9db": "Rumena 0",
- "fff4e6": "Oranžna 0",
"transparent": "Prosojno",
- "ced4da": "Siva 4",
- "868e96": "Siva 6",
- "fa5252": "Rdeča 6",
- "e64980": "Roza 6",
- "be4bdb": "Grozdje 6",
- "7950f2": "Vijolična 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Modra 6",
- "15aabf": "Cijan 6",
- "12b886": "Modrozelena 6",
- "40c057": "Zelena 6",
- "82c91e": "Limeta 6",
- "fab005": "Rumena 6",
- "fd7e14": "Oranžna 6",
- "000000": "Črna",
- "343a40": "Siva 8",
- "495057": "Siva 7",
- "c92a2a": "Rdeča 9",
- "a61e4d": "Roza 9",
- "862e9c": "Grozdje 9",
- "5f3dc4": "Vijolična 9",
- "364fc7": "Indigo 9",
- "1864ab": "Modra 9",
- "0b7285": "Cijan 9",
- "087f5b": "Modrozelena 9",
- "2b8a3e": "Zelena 9",
- "5c940d": "Limeta 9",
- "e67700": "Rumena 9",
- "d9480f": "Oranžna 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Izberi orodje in začni z risanjem!",
"helpHint": "Bližnjice in pomoč"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/sv-SE.json b/src/locales/sv-SE.json
index a3d98d7a7b..641e3ce667 100644
--- a/src/locales/sv-SE.json
+++ b/src/locales/sv-SE.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Använd {{shortcut}} för att klistra in som ett enda element,\neller klistra in i en befintlig textredigerare"
},
"colors": {
- "ffffff": "Vit",
- "f8f9fa": "Grå 0",
- "f1f3f5": "Grå 1",
- "fff5f5": "Röd 0",
- "fff0f6": "Rosa 0",
- "f8f0fc": "Lila 0",
- "f3f0ff": "Violett 0",
- "edf2ff": "Indigo 0",
- "e7f5ff": "Blå 0",
- "e3fafc": "Turkos 0",
- "e6fcf5": "Blågrön 0",
- "ebfbee": "Grön 0",
- "f4fce3": "Limegrön 0",
- "fff9db": "Gul 0",
- "fff4e6": "Orange 0",
"transparent": "Genomskinlig",
- "ced4da": "Grå 4",
- "868e96": "Grå 6",
- "fa5252": "Röd 6",
- "e64980": "Rosa 6",
- "be4bdb": "Lila 6",
- "7950f2": "Violett 6",
- "4c6ef5": "Indigo 6",
- "228be6": "Blå 6",
- "15aabf": "Turkos 6",
- "12b886": "Blågrön 6",
- "40c057": "Grön 6",
- "82c91e": "Limegrön 6",
- "fab005": "Gul 6",
- "fd7e14": "Orange 6",
- "000000": "Svart",
- "343a40": "Grå 8",
- "495057": "Grå 7",
- "c92a2a": "Röd 9",
- "a61e4d": "Rosa 9",
- "862e9c": "Lila 9",
- "5f3dc4": "Violett 9",
- "364fc7": "Indigo 9",
- "1864ab": "Blå 9",
- "0b7285": "Turkos 9",
- "087f5b": "Blågrön 9",
- "2b8a3e": "Grön 9",
- "5c940d": "Limegrön 9",
- "e67700": "Gul 9",
- "d9480f": "Orange 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Välj ett verktyg & börja rita!",
"helpHint": "Genvägar & hjälp"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/ta-IN.json b/src/locales/ta-IN.json
index b82220f4a0..640334e974 100644
--- a/src/locales/ta-IN.json
+++ b/src/locales/ta-IN.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "வெள்ளை",
- "f8f9fa": "சாம்பல்நிறம் 0",
- "f1f3f5": "சாம்பல்நிறம் 1",
- "fff5f5": "சிகப்பு 0",
- "fff0f6": "இளஞ்சிவப்பு 0",
- "f8f0fc": "திராட்சை 0",
- "f3f0ff": "ஊதா 0",
- "edf2ff": "கருநீலம் 0",
- "e7f5ff": "நீலம் 0",
- "e3fafc": "மயில்நிறம் 0",
- "e6fcf5": "டீல் 0",
- "ebfbee": "பச்சை 0",
- "f4fce3": "தேசிக்காய்நிறம் 0",
- "fff9db": "மஞ்சள் 0",
- "fff4e6": "ஆரஞ்சு 0",
"transparent": "ஒளிபுகுத்தன்மை",
- "ced4da": "சாம்பல்நிறம் 4",
- "868e96": "சாம்பல்நிறம் 6",
- "fa5252": "சிகப்பு 6",
- "e64980": "இளஞ்சிவப்பு 6",
- "be4bdb": "திராட்சை 6",
- "7950f2": "ஊதா 6",
- "4c6ef5": "கருநீலம் 6",
- "228be6": "நீலம் 6",
- "15aabf": "மயில்நிறம் 6",
- "12b886": "டீல் 6",
- "40c057": "பச்சை 6",
- "82c91e": "தேசிக்காய்நிறம் 6",
- "fab005": "மஞ்சள் 6",
- "fd7e14": "ஆரஞ்சு 6",
- "000000": "கருப்பு",
- "343a40": "சாம்பல்நிறம் 8",
- "495057": "சாம்பல்நிறம் 7",
- "c92a2a": "சிகப்பு 9",
- "a61e4d": "இளஞ்சிவப்பு 9",
- "862e9c": "திராட்சை 9",
- "5f3dc4": "ஊதா 9",
- "364fc7": "கருநீலம் 9",
- "1864ab": "நீலம் 9",
- "0b7285": "மயில்நிறம் 9",
- "087f5b": "டீல் 9",
- "2b8a3e": "பச்சை 9",
- "5c940d": "தேசிக்காய்நிறம் 9",
- "e67700": "மஞ்சள் 9",
- "d9480f": "ஆரஞ்சு 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "கருவியைத் தேர்ந்தெடு & வரை!",
"helpHint": "குறுக்குவழிகள் & உதவி"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/th-TH.json b/src/locales/th-TH.json
index 3860af21d8..e7ca29d252 100644
--- a/src/locales/th-TH.json
+++ b/src/locales/th-TH.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "สีขาว",
- "f8f9fa": "สีเทา 0",
- "f1f3f5": "สีเทา 1",
- "fff5f5": "สีแดง 0",
- "fff0f6": "สีชมพู 0",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "สีเทา 4",
- "868e96": "สีเทา 6",
- "fa5252": "สีแดง 6",
- "e64980": "สีชมพู 6",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/tr-TR.json b/src/locales/tr-TR.json
index a48a16408c..1022737972 100644
--- a/src/locales/tr-TR.json
+++ b/src/locales/tr-TR.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "Tekil obje olarak yapıştırmak için veya var olan bir metin editörüne yapıştırmak için {{shortcut}} kullanın"
},
"colors": {
- "ffffff": "Beyaz",
- "f8f9fa": "Gri 0",
- "f1f3f5": "Gri 1",
- "fff5f5": "Kırmızı 0",
- "fff0f6": "Pembe 0",
- "f8f0fc": "Koyu Mor 0",
- "f3f0ff": "Mor 0",
- "edf2ff": "Çivit 0",
- "e7f5ff": "Mavi 0",
- "e3fafc": "Camgöbeği 0",
- "e6fcf5": "Deniz Mavisi 0",
- "ebfbee": "Yeşil 0",
- "f4fce3": "Yeşil 0",
- "fff9db": "Sarı 0",
- "fff4e6": "Turuncu 0",
"transparent": "Şeffaf",
- "ced4da": "Gri 4",
- "868e96": "Gri 6",
- "fa5252": "Kırmızı 6",
- "e64980": "Pembe 6",
- "be4bdb": "Koyu Mor 6",
- "7950f2": "Mor 6",
- "4c6ef5": "Çivit 6",
- "228be6": "Mavi 6",
- "15aabf": "Camgöbeği 6",
- "12b886": "Deniz Mavisi 6",
- "40c057": "Yeşil 6",
- "82c91e": "Green 6",
- "fab005": "Sarı 6",
- "fd7e14": "Turuncu 6",
- "000000": "Siyah",
- "343a40": "Gri 8",
- "495057": "Gri 7",
- "c92a2a": "Kırmızı 9",
- "a61e4d": "Pembe 9",
- "862e9c": "Koyu Mor 9",
- "5f3dc4": "Mor 9",
- "364fc7": "Çivit 9",
- "1864ab": "Mavi 9",
- "0b7285": "Camgöbeği 9",
- "087f5b": "Deniz Mavisi 9",
- "2b8a3e": "Yeşil 9",
- "5c940d": "Yeşil 9",
- "e67700": "Sarı 9",
- "d9480f": "Turuncu 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "Bir araç seçin ve çizime başlayın!",
"helpHint": "Kısayollar & yardım"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/uk-UA.json b/src/locales/uk-UA.json
index 1f8a70c76c..53dd31d559 100644
--- a/src/locales/uk-UA.json
+++ b/src/locales/uk-UA.json
@@ -54,7 +54,7 @@
"veryLarge": "Дуже великий",
"solid": "Суцільна",
"hachure": "Штриховка",
- "zigzag": "",
+ "zigzag": "Зиґзаґ",
"crossHatch": "Перехресна штриховка",
"thin": "Тонкий",
"bold": "Жирний",
@@ -73,7 +73,7 @@
"layers": "Шари",
"actions": "Дії",
"language": "Мова",
- "liveCollaboration": "Спільна робота у режимі реального часу...",
+ "liveCollaboration": "Спільна робота наживо...",
"duplicateSelection": "Дублювати",
"untitled": "Без назви",
"name": "Ім’я",
@@ -111,7 +111,7 @@
"increaseFontSize": "Збільшити розмір шрифту",
"unbindText": "Відв'язати текст",
"bindText": "Прив’язати текст до контейнера",
- "createContainerFromText": "",
+ "createContainerFromText": "Огорнути текст у контейнер",
"link": {
"edit": "Редагування посилання",
"create": "Створити посилання",
@@ -205,13 +205,13 @@
"invalidSVGString": "Недійсний SVG.",
"cannotResolveCollabServer": "Не вдалося приєднатися до сервера. Перезавантажте сторінку та повторіть спробу.",
"importLibraryError": "Не вдалося завантажити бібліотеку",
- "collabSaveFailed": "",
- "collabSaveFailed_sizeExceeded": "",
+ "collabSaveFailed": "Не вдалося зберегти у базу даних сервера. Якщо проблеми не зникнуть, Вам слід зберегти файл локально, щоб не втратити роботу.",
+ "collabSaveFailed_sizeExceeded": "Полотно завелике! Не вдалося зберегти у базу даних сервера. Вам слід зберегти файл локально, щоб не втратити свою роботу.",
"brave_measure_text_error": {
- "line1": "",
- "line2": "",
- "line3": "",
- "line4": ""
+ "line1": "Ви використовуєте браузер Brave з увімкненим налаштуванням Агресивного Блокування Розпізнавання Пристрою .",
+ "line2": "Це може нашкодити текстовим елементам у ваших малюнках.",
+ "line3": "Ми наполегливо рекомендуємо вимкнути це налаштування. Виконайте наступні кроки, щоб виправити це.",
+ "line4": "Якщо вимкнення цього параметра не вирішує показ текстових елементів, тоді створіть, будь ласка, запит на розв'язання проблеми на нашому GitHub або напишіть нам у Discord "
}
},
"toolBar": {
@@ -229,7 +229,7 @@
"penMode": "Режим пера - запобігання дотику",
"link": "Додати/Оновити посилання для вибраної форми",
"eraser": "Очищувач",
- "hand": ""
+ "hand": "Рука (інструмент для панорамування)"
},
"headings": {
"canvasActions": "Дії з полотном",
@@ -237,7 +237,7 @@
"shapes": "Фігури"
},
"hints": {
- "canvasPanning": "",
+ "canvasPanning": "Щоб перемістити полотно, утримуйте коліщатко миші або пробіл під час перетягування, або скористайтеся інструментом Рука",
"linearElement": "Натисніть щоб додати кілька точок. Перетягніть щоб намалювати одну лінію",
"freeDraw": "Натисніть і потягніть, відпустіть коли завершите",
"text": "Порада: можна також додати текст, двічі клацнувши по будь-якому місці інструментом вибору",
@@ -248,7 +248,7 @@
"resize": "Ви можете зберегти пропорції, утримуючи SHIFT під час зміни розміру,\nутримуйте ALT для змінення розміру від центру",
"resizeImage": "Ви можете змінювати розміри утримуючи клавішу SHIFT, втримуйте клавішу ALT щоб змінювати розмір відносно центру",
"rotate": "Ви можете обмежити кути, утримуючи SHIFT під час обертання",
- "lineEditor_info": "",
+ "lineEditor_info": "Утримуйте CtrlOrCmd і двічі клацніть або натисніть CtrlOrCmd + Enter, щоб редагувати цятки",
"lineEditor_pointSelected": "Натисніть Delete для видалення точку (точок), або Ctrl/Cmd+D для дублювання, перетаскування працює як звично",
"lineEditor_nothingSelected": "Виберіть точку для редагування (втримуйте клавішу SHIFT для вибору кількох точок), або клавішу Alt для додавання нових точок",
"placeImage": "Клацніть, щоб розмістити зображення, або натисніть та потягніть щоб змінити його розмір",
@@ -256,7 +256,7 @@
"bindTextToElement": "Натисніть Enter, щоб додати текст",
"deepBoxSelect": "Втримуйте Ctrl/Cmd для глибокого виділення та щоб попередити перетягування",
"eraserRevert": "Втримуйте клавішу Alt, щоб повернути елементи позначені для видалення",
- "firefox_clipboard_write": ""
+ "firefox_clipboard_write": "Цю функцію можна ввімкнути, встановивши значення \"true\" для налаштування \"dom.events.asyncClipboard.clipboardItem\". Перейдіть на сторінку «about:config», щоб змінити налаштування браузера у Firefox."
},
"canvasError": {
"cannotShowPreview": "Не вдається показати попередній перегляд",
@@ -306,8 +306,8 @@
"doubleClick": "подвійний клік",
"drag": "перетягнути",
"editor": "Редактор",
- "editLineArrowPoints": "",
- "editText": "",
+ "editLineArrowPoints": "Редагувати лінію/стрілки",
+ "editText": "Редагувати текст / додати позначку",
"github": "Знайшли помилку? Повідомте",
"howto": "Дотримуйтесь наших інструкцій",
"or": "або",
@@ -391,66 +391,43 @@
"fileSavedToFilename": "Збережено в {filename}",
"canvas": "полотно",
"selection": "виділення",
- "pasteAsSingleElement": ""
+ "pasteAsSingleElement": "Використайте {{shortcut}} для вставки самостійного зразка або використайте в текстовому редакторі"
},
"colors": {
- "ffffff": "Білий",
- "f8f9fa": "Сірий 0",
- "f1f3f5": "Сірий 1",
- "fff5f5": "Червоний 0",
- "fff0f6": "Рожевий 0",
- "f8f0fc": "Виноград 0",
- "f3f0ff": "Фіолетовий 0",
- "edf2ff": "Індиго 0",
- "e7f5ff": "Синій 0",
- "e3fafc": "Ціан 0",
- "e6fcf5": "Зеленувато-блакитний 0",
- "ebfbee": "Зелений 0",
- "f4fce3": "Лайм 0",
- "fff9db": "Жовтий 0",
- "fff4e6": "Помаранчевий 0",
"transparent": "Прозорий",
- "ced4da": "Сірий 4",
- "868e96": "Сірий 6",
- "fa5252": "Червоний 6",
- "e64980": "Рожевий 6",
- "be4bdb": "Виноград 6",
- "7950f2": "Фіолетовий 6",
- "4c6ef5": "Індиго 6",
- "228be6": "Синій 6",
- "15aabf": "Ціан 6",
- "12b886": "Зеленувато-блакитний 6",
- "40c057": "Зелений 6",
- "82c91e": "Лайм 6",
- "fab005": "Жовтий 6",
- "fd7e14": "Помаранчевий 6",
- "000000": "Чорний",
- "343a40": "Сірий 8",
- "495057": "Сірий 7",
- "c92a2a": "Червоний 9",
- "a61e4d": "Рожевий 9",
- "862e9c": "Виноград 9",
- "5f3dc4": "Фіолетовий 9",
- "364fc7": "Індиго 9",
- "1864ab": "Синій 9",
- "0b7285": "Ціан 9",
- "087f5b": "Зеленувато-блакитний 9",
- "2b8a3e": "Зелений 9",
- "5c940d": "Лаймовий 9",
- "e67700": "Жовтий 9",
- "d9480f": "Помаранчевий 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
- "center_heading": "",
- "center_heading_plus": "",
- "menuHint": ""
+ "center_heading": "Всі ваші дані збережено локально у Вашому браузері.",
+ "center_heading_plus": "Чи бажаєте перейти до Excalidraw+?",
+ "menuHint": "Експорт, налаштування, мови, ..."
},
"defaults": {
- "menuHint": "",
- "center_heading": "",
+ "menuHint": "Експорт, налаштування та багато іншого...",
+ "center_heading": "Діаграми. Робити. Просто.",
"toolbarHint": "Оберіть інструмент і почніть малювати!",
"helpHint": "Гарячі клавіші і допомога"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/vi-VN.json b/src/locales/vi-VN.json
index 1015b0393f..63a4cd68c5 100644
--- a/src/locales/vi-VN.json
+++ b/src/locales/vi-VN.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "Chàm 9",
- "1864ab": "Xanh Dương 9",
- "0b7285": "Lục Lam 9",
- "087f5b": "Xanh Mòng Két 9",
- "2b8a3e": "Xanh Lá 9",
- "5c940d": "Chanh Xanh 9",
- "e67700": "Vàng 9",
- "d9480f": "Cam 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/zh-CN.json b/src/locales/zh-CN.json
index 522cd8420d..93ad2c9480 100644
--- a/src/locales/zh-CN.json
+++ b/src/locales/zh-CN.json
@@ -16,7 +16,7 @@
"bringToFront": "置于顶层",
"sendBackward": "下移一层",
"delete": "删除",
- "copyStyles": "复制样式",
+ "copyStyles": "拷贝样式",
"pasteStyles": "粘贴样式",
"stroke": "描边",
"background": "背景",
@@ -210,7 +210,7 @@
"brave_measure_text_error": {
"line1": "您似乎正在使用 Brave 浏览器并启用了积极阻止指纹识别 的设置。",
"line2": "这可能会破坏绘图中的 文本元素 。",
- "line3": "我们强烈建议禁用此设置。您可以按照 这些步骤 来设置。",
+ "line3": "我们强烈建议禁用此设置。您可以按照 这些步骤来设置。",
"line4": "如果禁用此设置无法修复文本元素的显示,请在 GitHub 上提交一个 issue ,或者在 Discord 上反馈"
}
},
@@ -264,16 +264,16 @@
"canvasTooBigTip": "提示:尝试将最远的元素移动到和其它元素更近一些。"
},
"errorSplash": {
- "headingMain": "遇到异常。请尝试重新加载页面。 ",
- "clearCanvasMessage": "如果重新加载页面无效, 请尝试清除画布。 ",
+ "headingMain": "遇到异常。请尝试重新加载页面 。",
+ "clearCanvasMessage": "如果重新加载页面无效,请尝试清除画布 。",
"clearCanvasCaveat": "这会造成当前工作丢失",
- "trackedToSentry": "带有标识符的错误{{eventId}}已在我们的系统中跟踪",
- "openIssueMessage": "我们非常谨慎地处理错误信息,您的画布内容不会被包含在错误报告中。如果您的画布内容不需要保持私密,请考虑使用我们的错误追踪器。 请复制并粘贴以下信息到 GitHub Issue 中。",
+ "trackedToSentry": "标识符为{{eventId}}的错误已在我们的系统中被记录",
+ "openIssueMessage": "我们非常谨慎地处理错误信息,您的画布内容不会被包含在错误报告中。如果您的画布内容不需要保持私密,请考虑在我们的 bug 跟踪系统 上提供更多信息。请复制粘贴以下信息到 GitHub Issue 中。",
"sceneContent": "画布内容:"
},
"roomDialog": {
"desc_intro": "你可以邀请其他人到目前的画面中与你协作。",
- "desc_privacy": "别担心, 该会话使用端到端加密, 无论绘制什么都将保持私密,甚至连我们的服务器也无法查看。",
+ "desc_privacy": "别担心,该会话使用端到端加密,无论绘制什么都将保持私密,甚至连我们的服务器也无法查看。",
"button_startSession": "启动会议",
"button_stopSession": "结束会议",
"desc_inProgressIntro": "实时协作会议正在进行。",
@@ -348,23 +348,23 @@
"required": "必填",
"website": "输入一个有效的URL"
},
- "noteDescription": "提交后,您的素材库将被包含在 公共素材库广场以供其他人在绘图中使用。",
- "noteGuidelines": "提交的素材库需先经人工审核。在提交之前,请先阅读 指南 。后续沟通和对库的修改需要 GitHub 账号,但这不是必须的。",
- "noteLicense": "提交即表明您已同意素材库将遵循 MIT 许可证, 简而言之,任何人都可以不受限制地使用它们。",
+ "noteDescription": "提交后,您的素材库将被包含在 公共素材库广场以供其他人在绘图中使用。",
+ "noteGuidelines": "提交的素材库需先经人工审核。在提交之前,请先阅读 指南 。后续沟通和对库的修改需要 GitHub 账号,但这不是必须的。",
+ "noteLicense": "提交即表明您已同意素材库将遵循 MIT 许可证,简而言之,任何人都可以不受限制地使用它们。",
"noteItems": "素材库中每个项目都有各自的名称以供筛选。以下项目将被包含:",
"atleastOneLibItem": "请选择至少一个素材库以开始",
"republishWarning": "注意:部分选中的项目已经发布或提交。请仅在更新已有或已提交的素材库时重复提交项目。"
},
"publishSuccessDialog": {
"title": "素材库已提交",
- "content": "谢谢你 {{authorName}}。您的素材库已被提交审核。跟进此次提交的状态请点击 此处"
+ "content": "谢谢你 {{authorName}}。您的素材库已被提交审核。请点击 此处跟进此次提交的状态"
},
"confirmDialog": {
"resetLibrary": "重置素材库",
"removeItemsFromLib": "从素材库中删除选中的项目"
},
"encrypted": {
- "tooltip": "您的绘图采用的端到端加密,其内容对于Excalidraw服务器是不可见的。",
+ "tooltip": "您的绘图采用端到端加密,其内容对于 Excalidraw 服务器是不可见的。",
"link": "Excalidraw 中关于端到端加密的博客"
},
"stats": {
@@ -384,7 +384,7 @@
},
"toast": {
"addedToLibrary": "添加到素材库中",
- "copyStyles": "复制样式",
+ "copyStyles": "样式已拷贝。",
"copyToClipboard": "已复制到剪切板。",
"copyToClipboardAsPng": "已将 {{exportSelection}} 作为 PNG 复制到剪贴板\n({{exportColorScheme}})",
"fileSaved": "文件已保存。",
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "使用 {{shortcut}} 粘贴为单个元素,\n或粘贴到现有的文本编辑器里"
},
"colors": {
- "ffffff": "白",
- "f8f9fa": "灰 0",
- "f1f3f5": "灰 1",
- "fff5f5": "红 0",
- "fff0f6": "粉红 0",
- "f8f0fc": "紫红 0",
- "f3f0ff": "蓝紫 0",
- "edf2ff": "靛蓝 0",
- "e7f5ff": "蓝 0",
- "e3fafc": "青 0",
- "e6fcf5": "蓝绿 0",
- "ebfbee": "绿 0",
- "f4fce3": "柠檬绿 0",
- "fff9db": "黄 0",
- "fff4e6": "橙 0",
"transparent": "透明",
- "ced4da": "灰 4",
- "868e96": "灰 6",
- "fa5252": "红 6",
- "e64980": "粉红 6",
- "be4bdb": "紫红 6",
- "7950f2": "蓝紫 6",
- "4c6ef5": "靛蓝 6",
- "228be6": "蓝 6",
- "15aabf": "青 6",
- "12b886": "蓝绿 6",
- "40c057": "绿 6",
- "82c91e": "柠檬绿 6",
- "fab005": "黄 6",
- "fd7e14": "橙 6",
- "000000": "黑",
- "343a40": "灰 8",
- "495057": "灰 7",
- "c92a2a": "红 9",
- "a61e4d": "粉红 9",
- "862e9c": "紫红 9",
- "5f3dc4": "蓝紫 9",
- "364fc7": "靛蓝 9",
- "1864ab": "蓝 9",
- "0b7285": "青 9",
- "087f5b": "蓝绿 9",
- "2b8a3e": "绿 9",
- "5c940d": "柠檬绿 9",
- "e67700": "黄 9",
- "d9480f": "橙 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "选择工具并开始绘图!",
"helpHint": "快捷键和帮助"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/zh-HK.json b/src/locales/zh-HK.json
index 5279371639..6d03449d12 100644
--- a/src/locales/zh-HK.json
+++ b/src/locales/zh-HK.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": ""
},
"colors": {
- "ffffff": "",
- "f8f9fa": "",
- "f1f3f5": "",
- "fff5f5": "",
- "fff0f6": "",
- "f8f0fc": "",
- "f3f0ff": "",
- "edf2ff": "",
- "e7f5ff": "",
- "e3fafc": "",
- "e6fcf5": "",
- "ebfbee": "",
- "f4fce3": "",
- "fff9db": "",
- "fff4e6": "",
"transparent": "",
- "ced4da": "",
- "868e96": "",
- "fa5252": "",
- "e64980": "",
- "be4bdb": "",
- "7950f2": "",
- "4c6ef5": "",
- "228be6": "",
- "15aabf": "",
- "12b886": "",
- "40c057": "",
- "82c91e": "",
- "fab005": "",
- "fd7e14": "",
- "000000": "",
- "343a40": "",
- "495057": "",
- "c92a2a": "",
- "a61e4d": "",
- "862e9c": "",
- "5f3dc4": "",
- "364fc7": "",
- "1864ab": "",
- "0b7285": "",
- "087f5b": "",
- "2b8a3e": "",
- "5c940d": "",
- "e67700": "",
- "d9480f": ""
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "",
"helpHint": ""
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/locales/zh-TW.json b/src/locales/zh-TW.json
index 08965de95b..3be58ef564 100644
--- a/src/locales/zh-TW.json
+++ b/src/locales/zh-TW.json
@@ -394,51 +394,21 @@
"pasteAsSingleElement": "使用 {{shortcut}} 以做為單一物件貼上,\n或貼上至現有的文字編輯器"
},
"colors": {
- "ffffff": "白",
- "f8f9fa": "灰 0",
- "f1f3f5": "灰 1",
- "fff5f5": "紅 0",
- "fff0f6": "粉紅 0",
- "f8f0fc": "深紫 0",
- "f3f0ff": "藍紫 0",
- "edf2ff": "靛藍 0",
- "e7f5ff": "藍 0",
- "e3fafc": "青 0",
- "e6fcf5": "藍綠 0",
- "ebfbee": "綠 0",
- "f4fce3": "黃綠 0",
- "fff9db": "黃 0",
- "fff4e6": "橘 0",
"transparent": "透明",
- "ced4da": "灰 4",
- "868e96": "灰 6",
- "fa5252": "紅 6",
- "e64980": "粉紅 6",
- "be4bdb": "深紫 6",
- "7950f2": "藍紫 6",
- "4c6ef5": "靛藍 6",
- "228be6": "藍 6",
- "15aabf": "青 6",
- "12b886": "藍綠 6",
- "40c057": "綠 6",
- "82c91e": "黃綠 6",
- "fab005": "黃 6",
- "fd7e14": "橘 6",
- "000000": "黑",
- "343a40": "灰 8",
- "495057": "灰 7",
- "c92a2a": "紅 9",
- "a61e4d": "粉紅 9",
- "862e9c": "深紫 9",
- "5f3dc4": "藍紫 9",
- "364fc7": "靛藍 9",
- "1864ab": "藍 9",
- "0b7285": "青 9",
- "087f5b": "藍綠 9",
- "2b8a3e": "綠 9",
- "5c940d": "黃綠 9",
- "e67700": "黃 9",
- "d9480f": "橘 9"
+ "black": "",
+ "white": "",
+ "red": "",
+ "pink": "",
+ "grape": "",
+ "violet": "",
+ "gray": "",
+ "blue": "",
+ "cyan": "",
+ "teal": "",
+ "green": "",
+ "yellow": "",
+ "orange": "",
+ "bronze": ""
},
"welcomeScreen": {
"app": {
@@ -452,5 +422,12 @@
"toolbarHint": "選個工具開始畫圖吧!",
"helpHint": "快速鍵與說明"
}
+ },
+ "colorPicker": {
+ "mostUsedCustomColors": "",
+ "colors": "",
+ "shades": "",
+ "hexCode": "",
+ "noShades": ""
}
}
diff --git a/src/packages/excalidraw/example/App.tsx b/src/packages/excalidraw/example/App.tsx
index 464278570b..e01e589c3e 100644
--- a/src/packages/excalidraw/example/App.tsx
+++ b/src/packages/excalidraw/example/App.tsx
@@ -30,6 +30,7 @@ import { NonDeletedExcalidrawElement } from "../../../element/types";
import { ImportedLibraryData } from "../../../data/types";
import CustomFooter from "./CustomFooter";
import MobileFooter from "./MobileFooter";
+import { KEYS } from "../../../keys";
declare global {
interface Window {
@@ -55,9 +56,9 @@ type PointerDownState = {
y: number;
};
};
+
// This is so that we use the bundled excalidraw.development.js file instead
// of the actual source code
-
const {
exportToCanvas,
exportToSvg,
@@ -161,8 +162,7 @@ export default function App({ appTitle, useCustom, customArgs }: AppProps) {
onClick={() => alert("This is an empty top right UI")}
style={{ height: "2.5rem" }}
>
- {" "}
- Click me{" "}
+ Click me
>
);
@@ -474,7 +474,7 @@ export default function App({ appTitle, useCustom, customArgs }: AppProps) {
}}
onBlur={saveComment}
onKeyDown={(event) => {
- if (!event.shiftKey && event.key === "Enter") {
+ if (!event.shiftKey && event.key === KEYS.ENTER) {
event.preventDefault();
saveComment();
}
@@ -511,9 +511,11 @@ export default function App({ appTitle, useCustom, customArgs }: AppProps) {
);
};
+
return (
{appTitle}
+ {/* TODO fix type */}
Load Scene or Library
diff --git a/src/packages/excalidraw/example/CustomFooter.tsx b/src/packages/excalidraw/example/CustomFooter.tsx
index fbc2ea7323..5c47de6c68 100644
--- a/src/packages/excalidraw/example/CustomFooter.tsx
+++ b/src/packages/excalidraw/example/CustomFooter.tsx
@@ -65,8 +65,7 @@ const CustomFooter = ({
className="custom-footer"
onClick={() => alert("This is dummy footer")}
>
- {" "}
- custom footer{" "}
+ custom footer
>
);
diff --git a/src/packages/excalidraw/example/sidebar/ExampleSidebar.tsx b/src/packages/excalidraw/example/sidebar/ExampleSidebar.tsx
index 793d17b05f..4c51ecdc26 100644
--- a/src/packages/excalidraw/example/sidebar/ExampleSidebar.tsx
+++ b/src/packages/excalidraw/example/sidebar/ExampleSidebar.tsx
@@ -11,7 +11,7 @@ export default function Sidebar({ children }: { children: React.ReactNode }) {
Empty Home
- Empty About {" "}
+ Empty About
diff --git a/src/packages/excalidraw/package.json b/src/packages/excalidraw/package.json
index 57f6ce3951..9b6acfdd86 100644
--- a/src/packages/excalidraw/package.json
+++ b/src/packages/excalidraw/package.json
@@ -63,7 +63,7 @@
"sass-loader": "13.0.2",
"terser-webpack-plugin": "5.3.3",
"ts-loader": "9.3.1",
- "typescript": "4.7.4",
+ "typescript": "4.9.4",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.10.0",
diff --git a/src/packages/excalidraw/yarn.lock b/src/packages/excalidraw/yarn.lock
index 339cda9390..485d3cd003 100644
--- a/src/packages/excalidraw/yarn.lock
+++ b/src/packages/excalidraw/yarn.lock
@@ -3678,10 +3678,10 @@ type-is@~1.6.18:
media-typer "0.3.0"
mime-types "~2.1.24"
-typescript@4.7.4:
- version "4.7.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
- integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
+typescript@4.9.4:
+ version "4.9.4"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
+ integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.0"
diff --git a/src/tests/MobileMenu.test.tsx b/src/tests/MobileMenu.test.tsx
index 41d5d01690..60059cb2e5 100644
--- a/src/tests/MobileMenu.test.tsx
+++ b/src/tests/MobileMenu.test.tsx
@@ -29,6 +29,7 @@ describe("Test MobileMenu", () => {
expect(h.app.device).toMatchInlineSnapshot(`
Object {
"canDeviceFitSidebar": false,
+ "isLandscape": true,
"isMobile": true,
"isSmScreen": false,
"isTouchScreen": false,
diff --git a/src/tests/__snapshots__/contextmenu.test.tsx.snap b/src/tests/__snapshots__/contextmenu.test.tsx.snap
index 531fb16d22..5e3a5b2214 100644
--- a/src/tests/__snapshots__/contextmenu.test.tsx.snap
+++ b/src/tests/__snapshots__/contextmenu.test.tsx.snap
@@ -247,7 +247,7 @@ Object {
Object {
"contextItemLabel": [Function],
"keyTest": [Function],
- "name": "toggleLock",
+ "name": "toggleElementLock",
"perform": [Function],
"trackEvent": Object {
"category": "element",
@@ -279,7 +279,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -369,7 +369,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -402,7 +402,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -459,7 +459,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -546,7 +546,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -559,786 +559,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element selecting 'Add to library' in context menu adds element to library: [end of test] history 1`] = `
Object {
"recording": false,
@@ -1384,7 +604,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1425,7 +645,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -1510,7 +730,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1541,7 +761,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1554,788 +774,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 2066753033,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 735304455,
- "width": 20,
- "x": -50,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 271613161,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element selecting 'Bring forward' in context menu brings element forward: [end of test] history 1`] = `
Object {
"recording": false,
@@ -2381,7 +819,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2423,7 +861,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2451,7 +889,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2493,7 +931,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2521,7 +959,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2562,7 +1000,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -2647,7 +1085,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2678,7 +1116,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2691,788 +1129,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 2066753033,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 735304455,
- "width": 20,
- "x": -50,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 271613161,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element selecting 'Bring to front' in context menu brings element to front: [end of test] history 1`] = `
Object {
"recording": false,
@@ -3518,7 +1174,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3560,7 +1216,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3588,7 +1244,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3630,7 +1286,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3658,7 +1314,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3699,7 +1355,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -3786,7 +1442,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3799,786 +1455,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element selecting 'Copy styles' in context menu copies styles: [end of test] history 1`] = `
Object {
"recording": false,
@@ -4624,7 +1500,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4665,7 +1541,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -4747,800 +1623,20 @@ Object {
"roundness": Object {
"type": 3,
},
- "seed": 337897,
- "strokeColor": "#000000",
+ "seed": 1278240551,
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
"updated": 1,
"version": 3,
- "versionNonce": 449462985,
+ "versionNonce": 453191,
"width": 20,
"x": -10,
"y": 0,
}
`;
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": true,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 888958951,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element selecting 'Delete' in context menu deletes element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -5585,14 +1681,14 @@ Object {
"roundness": Object {
"type": 3,
},
- "seed": 337897,
- "strokeColor": "#000000",
+ "seed": 1278240551,
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
"updated": 1,
"version": 2,
- "versionNonce": 1278240551,
+ "versionNonce": 449462985,
"width": 20,
"x": -10,
"y": 0,
@@ -5625,14 +1721,14 @@ Object {
"roundness": Object {
"type": 3,
},
- "seed": 337897,
- "strokeColor": "#000000",
+ "seed": 1278240551,
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
"updated": 1,
"version": 3,
- "versionNonce": 449462985,
+ "versionNonce": 453191,
"width": 20,
"x": -10,
"y": 0,
@@ -5667,7 +1763,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -5752,7 +1848,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -5783,7 +1879,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -5796,788 +1892,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
-exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21_copy",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 2066753033,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 20,
- "x": -70,
- "y": 0,
-}
-`;
-
exports[`contextMenu element selecting 'Duplicate' in context menu duplicates element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -6623,7 +1937,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6665,7 +1979,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6693,7 +2007,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6734,7 +2048,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -6827,7 +2141,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6860,7 +2174,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6873,792 +2187,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 651223591,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
-exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 20,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 2066753033,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 348321737,
- "width": 20,
- "x": -50,
- "y": 20,
-}
-`;
-
exports[`contextMenu element selecting 'Group selection' in context menu groups selected elements: [end of test] history 1`] = `
Object {
"recording": false,
@@ -7704,7 +2232,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7746,7 +2274,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7774,7 +2302,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7822,7 +2350,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7852,7 +2380,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7884,7 +2412,7 @@ Object {
"collaborators": Map {},
"contextMenu": null,
"currentChartType": "bar",
- "currentItemBackgroundColor": "#e64980",
+ "currentItemBackgroundColor": "#a5d8ff",
"currentItemEndArrowhead": "arrow",
"currentItemFillStyle": "cross-hatch",
"currentItemFontFamily": 1,
@@ -7893,7 +2421,7 @@ Object {
"currentItemRoughness": 2,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#c92a2a",
+ "currentItemStrokeColor": "#e03131",
"currentItemStrokeStyle": "dotted",
"currentItemStrokeWidth": 2,
"currentItemTextAlign": "left",
@@ -7922,7 +2450,7 @@ Object {
"offsetTop": 10,
"openDialog": null,
"openMenu": null,
- "openPopup": "backgroundColorPicker",
+ "openPopup": null,
"openSidebar": null,
"pasteDialog": Object {
"data": null,
@@ -7965,7 +2493,7 @@ Object {
exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 0 1`] = `
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -7980,7 +2508,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "dotted",
"strokeWidth": 2,
"type": "rectangle",
@@ -7996,7 +2524,7 @@ Object {
exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 1 1`] = `
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -8011,7 +2539,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "dotted",
"strokeWidth": 2,
"type": "rectangle",
@@ -8024,788 +2552,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#e64980",
- "boundElements": null,
- "fillStyle": "cross-hatch",
- "groupIds": Array [],
- "height": 20,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 60,
- "roughness": 2,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1532871783,
- "strokeColor": "#c92a2a",
- "strokeStyle": "dotted",
- "strokeWidth": 2,
- "type": "rectangle",
- "updated": 1,
- "version": 9,
- "versionNonce": 337026951,
- "width": 20,
- "x": -50,
- "y": 20,
-}
-`;
-
exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] history 1`] = `
Object {
"recording": false,
@@ -8851,7 +2597,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -8893,7 +2639,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -8921,7 +2667,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -8963,7 +2709,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -8991,7 +2737,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9033,7 +2779,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9046,7 +2792,7 @@ Object {
},
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -9061,7 +2807,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9103,7 +2849,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9116,7 +2862,7 @@ Object {
},
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -9131,7 +2877,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9173,7 +2919,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9186,7 +2932,7 @@ Object {
},
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -9201,7 +2947,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "solid",
"strokeWidth": 2,
"type": "rectangle",
@@ -9243,7 +2989,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9256,7 +3002,7 @@ Object {
},
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -9271,7 +3017,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "dotted",
"strokeWidth": 2,
"type": "rectangle",
@@ -9313,7 +3059,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9326,7 +3072,7 @@ Object {
},
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -9341,7 +3087,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "dotted",
"strokeWidth": 2,
"type": "rectangle",
@@ -9383,7 +3129,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9396,7 +3142,7 @@ Object {
},
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -9411,7 +3157,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "dotted",
"strokeWidth": 2,
"type": "rectangle",
@@ -9438,7 +3184,7 @@ Object {
"elements": Array [
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -9453,7 +3199,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "dotted",
"strokeWidth": 2,
"type": "rectangle",
@@ -9466,7 +3212,7 @@ Object {
},
Object {
"angle": 0,
- "backgroundColor": "#e64980",
+ "backgroundColor": "#a5d8ff",
"boundElements": null,
"fillStyle": "cross-hatch",
"groupIds": Array [],
@@ -9481,7 +3227,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#c92a2a",
+ "strokeColor": "#e03131",
"strokeStyle": "dotted",
"strokeWidth": 2,
"type": "rectangle",
@@ -9500,7 +3246,7 @@ Object {
exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] number of elements 1`] = `2`;
-exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] number of renders 1`] = `33`;
+exports[`contextMenu element selecting 'Paste styles' in context menu pastes styles: [end of test] number of renders 1`] = `32`;
exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] appState 1`] = `
Object {
@@ -9522,7 +3268,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -9607,7 +3353,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9638,7 +3384,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9651,788 +3397,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 2066753033,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 271613161,
- "width": 20,
- "x": -50,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element selecting 'Send backward' in context menu sends element backward: [end of test] history 1`] = `
Object {
"recording": false,
@@ -10478,7 +3442,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10520,7 +3484,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10548,7 +3512,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10590,7 +3554,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10618,7 +3582,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10659,7 +3623,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -10744,7 +3708,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10775,7 +3739,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10788,786 +3752,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element selecting 'Send to back' in context menu sends element to back: [end of test] history 1`] = `
Object {
"recording": false,
@@ -11613,7 +3797,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11655,7 +3839,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11683,7 +3867,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11725,7 +3909,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11753,7 +3937,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11794,7 +3978,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -11883,7 +4067,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11914,7 +4098,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11927,788 +4111,6 @@ Object {
}
`;
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 453187241,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
-exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 1532871783,
- "width": 20,
- "x": -50,
- "y": 20,
-}
-`;
-
exports[`contextMenu element selecting 'Ungroup selection' in context menu ungroups selected group: [end of test] history 1`] = `
Object {
"recording": false,
@@ -12754,7 +4156,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12796,7 +4198,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12824,7 +4226,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12872,7 +4274,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12902,7 +4304,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12946,7 +4348,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12974,7 +4376,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -13242,7 +4644,7 @@ Object {
Object {
"contextItemLabel": [Function],
"keyTest": [Function],
- "name": "toggleLock",
+ "name": "toggleElementLock",
"perform": [Function],
"trackEvent": Object {
"category": "element",
@@ -13274,7 +4676,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -13365,7 +4767,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -13396,7 +4798,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -13409,788 +4811,6 @@ Object {
}
`;
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 10,
- "x": -80,
- "y": -10,
-}
-`;
-
-exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 2066753033,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 735304455,
- "width": 10,
- "x": -60,
- "y": -10,
-}
-`;
-
exports[`contextMenu element shows 'Group selection' in context menu for multiple selected elements: [end of test] history 1`] = `
Object {
"recording": false,
@@ -14236,7 +4856,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14278,7 +4898,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14306,7 +4926,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14574,7 +5194,7 @@ Object {
Object {
"contextItemLabel": [Function],
"keyTest": [Function],
- "name": "toggleLock",
+ "name": "toggleElementLock",
"perform": [Function],
"trackEvent": Object {
"category": "element",
@@ -14606,7 +5226,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -14701,7 +5321,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14734,7 +5354,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14747,792 +5367,6 @@ Object {
}
`;
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id25",
- ],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1189086535,
- "width": 10,
- "x": -80,
- "y": -10,
-}
-`;
-
-exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id25",
- ],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 453187241,
- "width": 10,
- "x": -60,
- "y": -10,
-}
-`;
-
exports[`contextMenu element shows 'Ungroup selection' in context menu for group inside selected elements: [end of test] history 1`] = `
Object {
"recording": false,
@@ -15578,7 +5412,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15620,7 +5454,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15648,7 +5482,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15697,7 +5531,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15727,7 +5561,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15808,6 +5642,16 @@ Object {
"category": "canvas",
},
},
+ Object {
+ "contextItemLabel": "labels.elementLock.unlockAll",
+ "name": "unlockAllElements",
+ "perform": [Function],
+ "predicate": [Function],
+ "trackEvent": Object {
+ "category": "canvas",
+ },
+ "viewMode": false,
+ },
"separator",
Object {
"checked": [Function],
@@ -15873,7 +5717,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -15938,784 +5782,6 @@ Object {
}
`;
-exports[`contextMenu element shows context menu for canvas: [end of test] element 0 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id0",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 10,
- "y": 10,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows context menu for canvas: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
exports[`contextMenu element shows context menu for canvas: [end of test] history 1`] = `
Object {
"recording": false,
@@ -16987,7 +6053,7 @@ Object {
Object {
"contextItemLabel": [Function],
"keyTest": [Function],
- "name": "toggleLock",
+ "name": "toggleElementLock",
"perform": [Function],
"trackEvent": Object {
"category": "element",
@@ -17019,7 +6085,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -17333,7 +6399,7 @@ Object {
Object {
"contextItemLabel": [Function],
"keyTest": [Function],
- "name": "toggleLock",
+ "name": "toggleElementLock",
"perform": [Function],
"trackEvent": Object {
"category": "element",
@@ -17365,7 +6431,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -17450,7 +6516,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -17481,7 +6547,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -17512,7 +6578,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -17525,788 +6591,6 @@ Object {
}
`;
-exports[`contextMenu element shows context menu for element: [end of test] element 1 2`] = `
-Object {
- "angle": 0,
- "backgroundColor": "red",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 0,
- "y": 0,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`contextMenu element shows context menu for element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 20,
- "x": -80,
- "y": -10,
-}
-`;
-
exports[`contextMenu element shows context menu for element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -18352,7 +6636,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
diff --git a/src/tests/__snapshots__/dragCreate.test.tsx.snap b/src/tests/__snapshots__/dragCreate.test.tsx.snap
index ffcf57b0de..4508fd3c71 100644
--- a/src/tests/__snapshots__/dragCreate.test.tsx.snap
+++ b/src/tests/__snapshots__/dragCreate.test.tsx.snap
@@ -35,7 +35,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -68,7 +68,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -101,7 +101,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -147,7 +147,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -180,7 +180,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
diff --git a/src/tests/__snapshots__/linearElementEditor.test.tsx.snap b/src/tests/__snapshots__/linearElementEditor.test.tsx.snap
index a2f142b663..d1a73e72f8 100644
--- a/src/tests/__snapshots__/linearElementEditor.test.tsx.snap
+++ b/src/tests/__snapshots__/linearElementEditor.test.tsx.snap
@@ -5,7 +5,7 @@ exports[`Test Linear Elements Test bound text element should match styles for te
class="excalidraw-wysiwyg"
data-type="wysiwyg"
dir="auto"
- style="position: absolute; display: inline-block; min-height: 1em; margin: 0px; padding: 0px; border: 0px; outline: 0; resize: none; background: transparent; overflow: hidden; z-index: var(--zIndex-wysiwyg); word-break: break-word; white-space: pre-wrap; overflow-wrap: break-word; box-sizing: content-box; width: 10.5px; height: 25px; left: 35px; top: 7.5px; transform: translate(0px, 0px) scale(1) rotate(0deg); text-align: center; vertical-align: middle; color: rgb(0, 0, 0); opacity: 1; filter: var(--theme-filter); max-height: -7.5px; font: Emoji 20px 20px; line-height: 1.25; font-family: Virgil, Segoe UI Emoji;"
+ style="position: absolute; display: inline-block; min-height: 1em; margin: 0px; padding: 0px; border: 0px; outline: 0; resize: none; background: transparent; overflow: hidden; z-index: var(--zIndex-wysiwyg); word-break: break-word; white-space: pre-wrap; overflow-wrap: break-word; box-sizing: content-box; width: 10.5px; height: 25px; left: 35px; top: 7.5px; transform: translate(0px, 0px) scale(1) rotate(0deg); text-align: center; vertical-align: middle; color: rgb(30, 30, 30); opacity: 1; filter: var(--theme-filter); max-height: -7.5px; font: Emoji 20px 20px; line-height: 1.25; font-family: Virgil, Segoe UI Emoji;"
tabindex="0"
wrap="off"
/>
diff --git a/src/tests/__snapshots__/move.test.tsx.snap b/src/tests/__snapshots__/move.test.tsx.snap
index 7c0eed29bf..b214243c54 100644
--- a/src/tests/__snapshots__/move.test.tsx.snap
+++ b/src/tests/__snapshots__/move.test.tsx.snap
@@ -18,7 +18,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -49,7 +49,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -80,7 +80,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -116,7 +116,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -152,7 +152,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -206,7 +206,7 @@ Object {
"focus": -0.6000000000000001,
"gap": 10,
},
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
diff --git a/src/tests/__snapshots__/multiPointCreate.test.tsx.snap b/src/tests/__snapshots__/multiPointCreate.test.tsx.snap
index 03ef0d26ba..a1ce563629 100644
--- a/src/tests/__snapshots__/multiPointCreate.test.tsx.snap
+++ b/src/tests/__snapshots__/multiPointCreate.test.tsx.snap
@@ -40,7 +40,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -93,7 +93,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
diff --git a/src/tests/__snapshots__/regressionTests.test.tsx.snap b/src/tests/__snapshots__/regressionTests.test.tsx.snap
index 60cfb79626..68d87ef33c 100644
--- a/src/tests/__snapshots__/regressionTests.test.tsx.snap
+++ b/src/tests/__snapshots__/regressionTests.test.tsx.snap
@@ -20,7 +20,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -116,7 +116,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -149,7 +149,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -182,7 +182,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -195,790 +195,6 @@ Object {
}
`;
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 30,
- "y": 70,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 271613161,
- "width": 10,
- "x": 30,
- "y": 100,
-}
-`;
-
exports[`given element A and group of elements B and given both are selected when user clicks on B, on pointer up only elements from B should be selected: [end of test] history 1`] = `
Object {
"recording": false,
@@ -1024,7 +240,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1066,7 +282,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1094,7 +310,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1136,7 +352,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1164,7 +380,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1192,7 +408,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1239,7 +455,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1269,7 +485,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1299,7 +515,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1340,7 +556,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -1443,7 +659,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1476,7 +692,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1509,7 +725,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -1522,794 +738,6 @@ Object {
}
`;
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 100,
- "x": 140,
- "y": 150,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id25",
- ],
- "height": 100,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 348321737,
- "width": 100,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id25",
- ],
- "height": 100,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1189086535,
- "width": 100,
- "x": 250,
- "y": 260,
-}
-`;
-
exports[`given element A and group of elements B and given both are selected when user shift-clicks on B, on pointer up only element A should be selected: [end of test] history 1`] = `
Object {
"recording": false,
@@ -2355,7 +783,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2397,7 +825,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2425,7 +853,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2467,7 +895,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2495,7 +923,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2523,7 +951,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2569,7 +997,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2599,7 +1027,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2629,7 +1057,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2670,7 +1098,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -2759,7 +1187,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2793,7 +1221,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2826,7 +1254,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -2839,759 +1267,6 @@ Object {
}
`;
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 60,
- "y": 40,
-}
-`;
-
exports[`regression tests Cmd/Ctrl-click exclusively select element under pointer: [end of test] history 1`] = `
Object {
"recording": false,
@@ -3637,7 +1312,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3679,7 +1354,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3707,7 +1382,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3756,7 +1431,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3786,7 +1461,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3831,7 +1506,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3861,7 +1536,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3905,7 +1580,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3935,7 +1610,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -3963,7 +1638,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4014,7 +1689,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4045,7 +1720,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4075,7 +1750,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4121,7 +1796,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4152,7 +1827,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4182,7 +1857,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4228,7 +1903,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4259,7 +1934,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4289,7 +1964,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -4330,7 +2005,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -4418,7 +2093,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -4431,786 +2106,6 @@ Object {
}
`;
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 3,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 55,
- "y": 65,
-}
-`;
-
exports[`regression tests Drags selected element when hitting only bounding box and keeps element selected: [end of test] history 1`] = `
Object {
"recording": false,
@@ -5256,7 +2151,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -5299,7 +2194,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -5340,7 +2235,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -5433,7 +2328,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -5466,7 +2361,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -5499,7 +2394,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -5512,794 +2407,6 @@ Object {
}
`;
-exports[`regression tests adjusts z order when grouping: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 60,
- "y": 50,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id26",
- ],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1189086535,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
-exports[`regression tests adjusts z order when grouping: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id26",
- ],
- "height": 10,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 453187241,
- "width": 10,
- "x": 80,
- "y": 50,
-}
-`;
-
exports[`regression tests adjusts z order when grouping: [end of test] history 1`] = `
Object {
"recording": false,
@@ -6345,7 +2452,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6387,7 +2494,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6415,7 +2522,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6457,7 +2564,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6485,7 +2592,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6513,7 +2620,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6560,7 +2667,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6590,7 +2697,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6620,7 +2727,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6661,7 +2768,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -6749,7 +2856,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6780,7 +2887,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -6793,757 +2900,6 @@ Object {
}
`;
-exports[`regression tests alt-drag duplicates an element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests alt-drag duplicates an element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests alt-drag duplicates an element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -7589,7 +2945,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7632,7 +2988,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7660,7 +3016,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7701,7 +3057,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -7786,7 +3142,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -7799,786 +3155,6 @@ Object {
}
`;
-exports[`regression tests arrow keys: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests arrow keys: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 8,
- "versionNonce": 348321737,
- "width": 10,
- "x": 39,
- "y": 49,
-}
-`;
-
exports[`regression tests arrow keys: [end of test] history 1`] = `
Object {
"recording": false,
@@ -8624,7 +3200,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -8665,7 +3241,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -8753,7 +3329,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -8784,7 +3360,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -8815,7 +3391,7 @@ Object {
"type": 2,
},
"seed": 2019559783,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -8828,790 +3404,6 @@ Object {
}
`;
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 200,
- "x": 130,
- "y": 140,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 2066753033,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1189086535,
- "width": 200,
- "x": 330,
- "y": 340,
-}
-`;
-
-exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 350,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 271613161,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 651223591,
- "width": 350,
- "x": 330,
- "y": 340,
-}
-`;
-
exports[`regression tests can drag element that covers another element, while another elem is selected: [end of test] history 1`] = `
Object {
"recording": false,
@@ -9657,7 +3449,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9699,7 +3491,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9727,7 +3519,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9769,7 +3561,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9797,7 +3589,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9825,7 +3617,7 @@ Object {
"type": 2,
},
"seed": 2019559783,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -9868,7 +3660,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9896,7 +3688,7 @@ Object {
"type": 3,
},
"seed": 453191,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -9924,7 +3716,7 @@ Object {
"type": 2,
},
"seed": 2019559783,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -9956,7 +3748,7 @@ Object {
"collaborators": Map {},
"contextMenu": null,
"currentChartType": "bar",
- "currentItemBackgroundColor": "#fa5252",
+ "currentItemBackgroundColor": "#ffc9c9",
"currentItemEndArrowhead": "arrow",
"currentItemFillStyle": "hachure",
"currentItemFontFamily": 1,
@@ -9965,7 +3757,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#5f3dc4",
+ "currentItemStrokeColor": "#1971c2",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -9994,7 +3786,7 @@ Object {
"offsetTop": 0,
"openDialog": null,
"openMenu": null,
- "openPopup": "strokeColorPicker",
+ "openPopup": "elementStroke",
"openSidebar": null,
"pasteDialog": Object {
"data": null,
@@ -10035,7 +3827,7 @@ Object {
exports[`regression tests change the properties of a shape: [end of test] element 0 1`] = `
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -10050,799 +3842,19 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#5f3dc4",
+ "strokeColor": "#1971c2",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
"updated": 1,
- "version": 4,
- "versionNonce": 453191,
+ "version": 5,
+ "versionNonce": 401146281,
"width": 10,
"x": 10,
"y": 10,
}
`;
-exports[`regression tests change the properties of a shape: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests change the properties of a shape: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fa5252",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#5f3dc4",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests change the properties of a shape: [end of test] history 1`] = `
Object {
"recording": false,
@@ -10888,7 +3900,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10915,7 +3927,7 @@ Object {
"elements": Array [
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffec99",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -10930,7 +3942,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10957,7 +3969,7 @@ Object {
"elements": Array [
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -10972,7 +3984,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#5f3dc4",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -10985,13 +3997,55 @@ Object {
},
],
},
+ Object {
+ "appState": Object {
+ "editingGroupId": null,
+ "editingLinearElement": null,
+ "name": "Untitled-201933152653",
+ "selectedElementIds": Object {
+ "id0": true,
+ },
+ "selectedGroupIds": Object {},
+ "viewBackgroundColor": "#ffffff",
+ },
+ "elements": Array [
+ Object {
+ "angle": 0,
+ "backgroundColor": "#ffc9c9",
+ "boundElements": null,
+ "fillStyle": "hachure",
+ "groupIds": Array [],
+ "height": 10,
+ "id": "id0",
+ "isDeleted": false,
+ "link": null,
+ "locked": false,
+ "opacity": 100,
+ "roughness": 1,
+ "roundness": Object {
+ "type": 3,
+ },
+ "seed": 337897,
+ "strokeColor": "#1971c2",
+ "strokeStyle": "solid",
+ "strokeWidth": 1,
+ "type": "rectangle",
+ "updated": 1,
+ "version": 5,
+ "versionNonce": 401146281,
+ "width": 10,
+ "x": 10,
+ "y": 10,
+ },
+ ],
+ },
],
}
`;
exports[`regression tests change the properties of a shape: [end of test] number of elements 1`] = `1`;
-exports[`regression tests change the properties of a shape: [end of test] number of renders 1`] = `15`;
+exports[`regression tests change the properties of a shape: [end of test] number of renders 1`] = `14`;
exports[`regression tests click on an element and drag it: [dragged] appState 1`] = `
Object {
@@ -11013,7 +4067,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -11101,7 +4155,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11114,786 +4168,6 @@ Object {
}
`;
-exports[`regression tests click on an element and drag it: [dragged] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [dragged] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 50,
- "y": 60,
-}
-`;
-
exports[`regression tests click on an element and drag it: [dragged] history 1`] = `
Object {
"recording": false,
@@ -11939,7 +4213,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -11982,7 +4256,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12023,7 +4297,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -12113,7 +4387,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12126,786 +4400,6 @@ Object {
}
`;
-exports[`regression tests click on an element and drag it: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests click on an element and drag it: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 271613161,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests click on an element and drag it: [end of test] history 1`] = `
Object {
"recording": false,
@@ -12951,7 +4445,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -12994,7 +4488,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -13038,7 +4532,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -13079,7 +4573,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -13167,7 +4661,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -13198,7 +4692,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -13211,788 +4705,6 @@ Object {
}
`;
-exports[`regression tests click to select a shape: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
-exports[`regression tests click to select a shape: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 60,
- "y": 50,
-}
-`;
-
exports[`regression tests click to select a shape: [end of test] history 1`] = `
Object {
"recording": false,
@@ -14038,7 +4750,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14080,7 +4792,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14108,7 +4820,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14149,7 +4861,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -14238,7 +4950,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14269,7 +4981,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14300,7 +5012,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -14313,798 +5025,6 @@ Object {
}
`;
-exports[`regression tests click-drag to select a group: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- Object {
- "id": "id14",
- "type": "arrow",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 5,
- "versionNonce": 1439318121,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": Object {
- "elementId": "id6",
- "focus": -1,
- "gap": 15,
- },
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 6,
- "versionNonce": 337026951,
- "width": 300,
- "x": -75,
- "y": 65,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 1532871783,
- "verticalAlign": "middle",
- "width": 160,
- "x": -5,
- "y": 52.5,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 60,
- "y": 50,
-}
-`;
-
-exports[`regression tests click-drag to select a group: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 271613161,
- "width": 10,
- "x": 80,
- "y": 50,
-}
-`;
-
exports[`regression tests click-drag to select a group: [end of test] history 1`] = `
Object {
"recording": false,
@@ -15150,7 +5070,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15192,7 +5112,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15220,7 +5140,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15262,7 +5182,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15290,7 +5210,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15318,7 +5238,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15359,7 +5279,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -15382,7 +5302,7 @@ Object {
"type": 2,
},
"seed": 2019559783,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -15453,7 +5373,7 @@ Object {
"type": 2,
},
"seed": 2019559783,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -15500,7 +5420,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -15531,7 +5451,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -15544,788 +5464,6 @@ Object {
}
`;
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 140,
- "y": 150,
-}
-`;
-
exports[`regression tests deselects group of selected elements on pointer down when pointer doesn't hit any element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -16371,7 +5509,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -16413,7 +5551,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -16441,7 +5579,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -16482,7 +5620,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -16505,7 +5643,7 @@ Object {
"type": 2,
},
"seed": 2019559783,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -16596,7 +5734,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -16627,7 +5765,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -16640,788 +5778,6 @@ Object {
}
`;
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 140,
- "y": 150,
-}
-`;
-
exports[`regression tests deselects group of selected elements on pointer up when pointer hits common bounding box without hitting any element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -17467,7 +5823,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -17509,7 +5865,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -17537,7 +5893,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -17578,7 +5934,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -17601,7 +5957,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -17670,7 +6026,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -17717,7 +6073,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -17730,786 +6086,6 @@ Object {
}
`;
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
exports[`regression tests deselects selected element on pointer down when pointer doesn't hit any element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -18555,7 +6131,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -18596,7 +6172,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -18683,7 +6259,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -18696,786 +6272,6 @@ Object {
}
`;
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 100,
- "x": 30,
- "y": 40,
-}
-`;
-
exports[`regression tests deselects selected element, on pointer up, when click hits element bounding box but doesn't hit the element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -19521,7 +6317,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -19562,7 +6358,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -19649,7 +6445,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -19682,7 +6478,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -19715,7 +6511,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -19728,832 +6524,6 @@ Object {
}
`;
-exports[`regression tests double click to edit a group: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 453187241,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1532871783,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1704745353,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 5,
- "versionNonce": 337026951,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1439318121,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 5,
- "versionNonce": 1934038695,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 425216841,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 5,
- "versionNonce": 2140907975,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 413268521,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 5,
- "versionNonce": 909170919,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 613600521,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 1016275975,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1688617961,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 2,
- "versionNonce": 1388251943,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 82304713,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 86052423,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 603135401,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [
- "id24",
- ],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 513125735,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 15958153,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1516857479,
- "width": 10,
- "x": 60,
- "y": 50,
-}
-`;
-
-exports[`regression tests double click to edit a group: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 10,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1772390249,
- "width": 10,
- "x": 80,
- "y": 50,
-}
-`;
-
exports[`regression tests double click to edit a group: [end of test] history 1`] = `
Object {
"recording": false,
@@ -20599,7 +6569,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20641,7 +6611,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20669,7 +6639,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20711,7 +6681,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20739,7 +6709,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20767,7 +6737,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20815,7 +6785,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20845,7 +6815,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20875,7 +6845,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -20916,7 +6886,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -21008,7 +6978,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -21039,7 +7009,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -21052,788 +7022,6 @@ Object {
}
`;
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 651223591,
- "width": 10,
- "x": 55,
- "y": 65,
-}
-`;
-
-exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 3,
- "versionNonce": 348321737,
- "width": 10,
- "x": 165,
- "y": 175,
-}
-`;
-
exports[`regression tests drags selected elements from point inside common bounding box that doesn't hit any element and keeps elements selected after dragging: [end of test] history 1`] = `
Object {
"recording": false,
@@ -21879,7 +7067,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -21921,7 +7109,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -21949,7 +7137,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -21994,7 +7182,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -22022,7 +7210,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -22063,7 +7251,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -22148,7 +7336,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -22179,7 +7367,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -22210,7 +7398,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -22256,7 +7444,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -22302,7 +7490,7 @@ Object {
"seed": 238820263,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -22355,7 +7543,7 @@ Object {
"seed": 1505387817,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -22408,7 +7596,7 @@ Object {
"seed": 760410951,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -22461,7 +7649,7 @@ Object {
"roundness": null,
"seed": 941653321,
"simulatePressure": false,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "freedraw",
@@ -22474,866 +7662,6 @@ Object {
}
`;
-exports[`regression tests draw every type of shape: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 20,
- "x": 40,
- "y": 30,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 20,
- "x": 70,
- "y": 30,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 271613161,
- "width": 20,
- "x": 100,
- "y": 30,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 24 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id24",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 50,
- 10,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 651223591,
- "startArrowhead": null,
- "startBinding": Object {
- "elementId": "id2",
- "focus": -0.7600000000000001,
- "gap": 1,
- },
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 4,
- "versionNonce": 453187241,
- "width": 50,
- "x": 160,
- "y": 30,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 25 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id25",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 50,
- 10,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1704745353,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 3,
- "versionNonce": 1439318121,
- "width": 50,
- "x": 250,
- "y": 30,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 26 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id26",
- "isDeleted": false,
- "lastCommittedPoint": Array [
- 80,
- 20,
- ],
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 50,
- 10,
- ],
- Array [
- 80,
- 20,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1934038695,
- "startArrowhead": null,
- "startBinding": Object {
- "elementId": "id6",
- "focus": -0.6417910447761194,
- "gap": 1,
- },
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 8,
- "versionNonce": 1688617961,
- "width": 80,
- "x": 340,
- "y": 30,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 27 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id27",
- "isDeleted": false,
- "lastCommittedPoint": Array [
- 80,
- 20,
- ],
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 50,
- 10,
- ],
- Array [
- 80,
- 20,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 82304713,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 7,
- "versionNonce": 1772390249,
- "width": 80,
- "x": 460,
- "y": 30,
-}
-`;
-
-exports[`regression tests draw every type of shape: [end of test] element 28 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id28",
- "isDeleted": false,
- "lastCommittedPoint": Array [
- 50,
- 10,
- ],
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 50,
- 10,
- ],
- Array [
- 50,
- 10,
- ],
- ],
- "pressures": Array [
- 0,
- 0,
- 0,
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1448656807,
- "simulatePressure": false,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "freedraw",
- "updated": 1,
- "version": 4,
- "versionNonce": 836141353,
- "width": 50,
- "x": 580,
- "y": 30,
-}
-`;
-
exports[`regression tests draw every type of shape: [end of test] history 1`] = `
Object {
"recording": false,
@@ -23379,7 +7707,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -23421,7 +7749,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -23449,7 +7777,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -23491,7 +7819,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -23519,7 +7847,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -23547,7 +7875,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -23589,7 +7917,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -23617,7 +7945,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -23645,7 +7973,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -23688,7 +8016,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -23730,7 +8058,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -23758,7 +8086,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -23786,7 +8114,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -23829,7 +8157,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -23872,7 +8200,7 @@ Object {
"seed": 238820263,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -23914,7 +8242,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -23942,7 +8270,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -23970,7 +8298,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -24013,7 +8341,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24056,7 +8384,7 @@ Object {
"seed": 238820263,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -24102,7 +8430,7 @@ Object {
"seed": 1505387817,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24144,7 +8472,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -24172,7 +8500,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -24200,7 +8528,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -24243,7 +8571,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24286,7 +8614,7 @@ Object {
"seed": 238820263,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -24336,7 +8664,7 @@ Object {
"seed": 1505387817,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24378,7 +8706,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -24406,7 +8734,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -24434,7 +8762,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -24477,7 +8805,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24520,7 +8848,7 @@ Object {
"seed": 238820263,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -24570,7 +8898,7 @@ Object {
"seed": 1505387817,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24616,7 +8944,7 @@ Object {
"seed": 760410951,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -24658,7 +8986,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -24686,7 +9014,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -24714,7 +9042,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -24757,7 +9085,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24800,7 +9128,7 @@ Object {
"seed": 238820263,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -24850,7 +9178,7 @@ Object {
"seed": 1505387817,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -24900,7 +9228,7 @@ Object {
"seed": 760410951,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -24942,7 +9270,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -24970,7 +9298,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -24998,7 +9326,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -25041,7 +9369,7 @@ Object {
"seed": 1150084233,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -25084,7 +9412,7 @@ Object {
"seed": 238820263,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -25134,7 +9462,7 @@ Object {
"seed": 1505387817,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -25184,7 +9512,7 @@ Object {
"seed": 760410951,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -25234,7 +9562,7 @@ Object {
"roundness": null,
"seed": 941653321,
"simulatePressure": false,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "freedraw",
@@ -25275,7 +9603,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -25365,7 +9693,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -25396,7 +9724,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -25427,7 +9755,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -25440,790 +9768,6 @@ Object {
}
`;
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 100,
- "x": 140,
- "y": 150,
-}
-`;
-
-exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 2,
- "versionNonce": 271613161,
- "width": 100,
- "x": 340,
- "y": 350,
-}
-`;
-
exports[`regression tests given a group of selected elements with an element that is not selected inside the group common bounding box when element that is not selected is clicked should switch selection to not selected element on pointer up: [end of test] history 1`] = `
Object {
"recording": false,
@@ -26269,7 +9813,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -26311,7 +9855,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -26339,7 +9883,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -26381,7 +9925,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -26409,7 +9953,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -26437,7 +9981,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -26469,7 +10013,7 @@ Object {
"collaborators": Map {},
"contextMenu": null,
"currentChartType": "bar",
- "currentItemBackgroundColor": "#fa5252",
+ "currentItemBackgroundColor": "#ffc9c9",
"currentItemEndArrowhead": "arrow",
"currentItemFillStyle": "hachure",
"currentItemFontFamily": 1,
@@ -26478,7 +10022,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -26507,7 +10051,7 @@ Object {
"offsetTop": 0,
"openDialog": null,
"openMenu": null,
- "openPopup": null,
+ "openPopup": "elementBackground",
"openSidebar": null,
"pasteDialog": Object {
"data": null,
@@ -26554,11 +10098,11 @@ Object {
exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 0 1`] = `
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
- "height": 0,
+ "height": 1000,
"id": "id0",
"isDeleted": false,
"link": null,
@@ -26569,14 +10113,14 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
"updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 0,
+ "version": 2,
+ "versionNonce": 1278240551,
+ "width": 1000,
"x": 0,
"y": 0,
}
@@ -26585,7 +10129,7 @@ Object {
exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 1 1`] = `
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -26599,802 +10143,20 @@ Object {
"roundness": Object {
"type": 2,
},
- "seed": 1278240551,
- "strokeColor": "#000000",
+ "seed": 449462985,
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
"updated": 1,
"version": 2,
- "versionNonce": 449462985,
+ "versionNonce": 453191,
"width": 1000,
"x": 500,
"y": 500,
}
`;
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fa5252",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 0,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fa5252",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 1000,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1177973545,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 888958951,
- "width": 1000,
- "x": 530,
- "y": 540,
-}
-`;
-
exports[`regression tests given a selected element A and a not selected element B with higher z-index than A and given B partially overlaps A when there's a shift-click on the overlapped section B is added to the selection: [end of test] history 1`] = `
Object {
"recording": false,
@@ -27416,18 +10178,20 @@ Object {
"editingGroupId": null,
"editingLinearElement": null,
"name": "Untitled-201933152653",
- "selectedElementIds": Object {},
+ "selectedElementIds": Object {
+ "id0": true,
+ },
"selectedGroupIds": Object {},
"viewBackgroundColor": "#ffffff",
},
"elements": Array [
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
- "height": 0,
+ "height": 1000,
"id": "id0",
"isDeleted": false,
"link": null,
@@ -27438,14 +10202,14 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
"updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 0,
+ "version": 2,
+ "versionNonce": 1278240551,
+ "width": 1000,
"x": 0,
"y": 0,
},
@@ -27465,11 +10229,11 @@ Object {
"elements": Array [
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
- "height": 0,
+ "height": 1000,
"id": "id0",
"isDeleted": false,
"link": null,
@@ -27480,20 +10244,20 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
"updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 0,
+ "version": 2,
+ "versionNonce": 1278240551,
+ "width": 1000,
"x": 0,
"y": 0,
},
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -27507,14 +10271,14 @@ Object {
"roundness": Object {
"type": 2,
},
- "seed": 1278240551,
- "strokeColor": "#000000",
+ "seed": 449462985,
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
"updated": 1,
"version": 2,
- "versionNonce": 449462985,
+ "versionNonce": 453191,
"width": 1000,
"x": 500,
"y": 500,
@@ -27549,7 +10313,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -27638,7 +10402,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -27669,7 +10433,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -27728,7 +10492,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -27756,7 +10520,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -27797,7 +10561,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -27887,7 +10651,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -27918,7 +10682,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -27977,7 +10741,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -28005,7 +10769,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -28049,7 +10813,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -28077,7 +10841,7 @@ Object {
"type": 3,
},
"seed": 1278240551,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -28118,7 +10882,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -28203,7 +10967,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -28216,786 +10980,6 @@ Object {
}
`;
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key 2 selects rectangle tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key 2 selects rectangle tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -29041,7 +11025,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -29082,7 +11066,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -29167,7 +11151,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -29180,786 +11164,6 @@ Object {
}
`;
-exports[`regression tests key 3 selects diamond tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key 3 selects diamond tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key 3 selects diamond tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -30005,7 +11209,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -30046,7 +11250,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -30131,7 +11335,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -30144,786 +11348,6 @@ Object {
}
`;
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key 4 selects ellipse tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key 4 selects ellipse tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -30969,7 +11393,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -31010,7 +11434,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -31133,7 +11557,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -31146,801 +11570,6 @@ Object {
}
`;
-exports[`regression tests key 5 selects arrow tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key 5 selects arrow tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 10,
- 10,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 888958951,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key 5 selects arrow tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -32001,7 +11630,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -32042,7 +11671,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -32165,7 +11794,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -32178,801 +11807,6 @@ Object {
}
`;
-exports[`regression tests key 6 selects line tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key 6 selects line tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 10,
- 10,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 3,
- "versionNonce": 888958951,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key 6 selects line tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -33033,7 +11867,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -33074,7 +11908,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -33181,7 +12015,7 @@ Object {
"roundness": null,
"seed": 337897,
"simulatePressure": false,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "freedraw",
@@ -33194,808 +12028,6 @@ Object {
}
`;
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key 7 selects freedraw tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "lastCommittedPoint": Array [
- 10,
- 10,
- ],
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 10,
- 10,
- ],
- Array [
- 10,
- 10,
- ],
- ],
- "pressures": Array [
- 0,
- 0,
- 0,
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1573789895,
- "simulatePressure": false,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "freedraw",
- "updated": 1,
- "version": 4,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key 7 selects freedraw tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -34063,7 +12095,7 @@ Object {
"roundness": null,
"seed": 337897,
"simulatePressure": false,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "freedraw",
@@ -34104,7 +12136,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -34227,7 +12259,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -34240,801 +12272,6 @@ Object {
}
`;
-exports[`regression tests key a selects arrow tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key a selects arrow tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 10,
- 10,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 888958951,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key a selects arrow tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -35095,7 +12332,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -35136,7 +12373,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -35221,7 +12458,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -35234,786 +12471,6 @@ Object {
}
`;
-exports[`regression tests key d selects diamond tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key d selects diamond tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key d selects diamond tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -36059,7 +12516,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -36100,7 +12557,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -36223,7 +12680,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -36236,801 +12693,6 @@ Object {
}
`;
-exports[`regression tests key l selects line tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key l selects line tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 10,
- 10,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 3,
- "versionNonce": 888958951,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key l selects line tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -37091,7 +12753,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -37132,7 +12794,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -37217,7 +12879,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -37230,786 +12892,6 @@ Object {
}
`;
-exports[`regression tests key o selects ellipse tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key o selects ellipse tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key o selects ellipse tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -38055,7 +12937,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -38096,7 +12978,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -38203,7 +13085,7 @@ Object {
"roundness": null,
"seed": 337897,
"simulatePressure": false,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "freedraw",
@@ -38216,808 +13098,6 @@ Object {
}
`;
-exports[`regression tests key p selects freedraw tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key p selects freedraw tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "lastCommittedPoint": Array [
- 10,
- 10,
- ],
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 10,
- 10,
- ],
- Array [
- 10,
- 10,
- ],
- ],
- "pressures": Array [
- 0,
- 0,
- 0,
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1573789895,
- "simulatePressure": false,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "freedraw",
- "updated": 1,
- "version": 4,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key p selects freedraw tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -39085,7 +13165,7 @@ Object {
"roundness": null,
"seed": 337897,
"simulatePressure": false,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "freedraw",
@@ -39126,7 +13206,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -39211,7 +13291,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -39224,786 +13304,6 @@ Object {
}
`;
-exports[`regression tests key r selects rectangle tool: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests key r selects rectangle tool: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
exports[`regression tests key r selects rectangle tool: [end of test] history 1`] = `
Object {
"recording": false,
@@ -40049,7 +13349,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -40090,7 +13390,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -40188,7 +13488,7 @@ Object {
"type": 3,
},
"seed": 915032327,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -40221,7 +13521,7 @@ Object {
"type": 3,
},
"seed": 747212839,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -40254,7 +13554,7 @@ Object {
"type": 3,
},
"seed": 760410951,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -40287,7 +13587,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -40320,7 +13620,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -40353,7 +13653,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -40366,687 +13666,6 @@ Object {
}
`;
-exports[`regression tests make a group and duplicate it: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- Object {
- "id": "id14",
- "type": "arrow",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 5,
- "versionNonce": 1704745353,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": Object {
- "elementId": "id6",
- "focus": -0.7142857142857143,
- "gap": 1,
- },
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 5,
- "versionNonce": 1532871783,
- "width": 300,
- "x": -60,
- "y": 60,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1189086535,
- "verticalAlign": "middle",
- "width": 160,
- "x": 10,
- "y": 47.5,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 60,
- "y": 50,
-}
-`;
-
-exports[`regression tests make a group and duplicate it: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 271613161,
- "width": 10,
- "x": 80,
- "y": 50,
-}
-`;
-
exports[`regression tests make a group and duplicate it: [end of test] history 1`] = `
Object {
"recording": false,
@@ -41092,7 +13711,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41134,7 +13753,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41162,7 +13781,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41204,7 +13823,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41232,7 +13851,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41260,7 +13879,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41309,7 +13928,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41339,7 +13958,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41369,7 +13988,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41419,7 +14038,7 @@ Object {
"type": 3,
},
"seed": 915032327,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41449,7 +14068,7 @@ Object {
"type": 3,
},
"seed": 747212839,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41479,7 +14098,7 @@ Object {
"type": 3,
},
"seed": 760410951,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41509,7 +14128,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41539,7 +14158,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41569,7 +14188,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41610,7 +14229,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -41699,7 +14318,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41730,7 +14349,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -41743,788 +14362,6 @@ Object {
}
`;
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 3,
- "versionNonce": 1448656807,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1750184521,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1150300871,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 836141353,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 6,
- "versionNonce": 1571570151,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402893321,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 6,
- "versionNonce": 314141959,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 564464361,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 6,
- "versionNonce": 2134127655,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 1685439945,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 6,
- "versionNonce": 453580615,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 1194075305,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 4,
- "versionNonce": 747935335,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 91465609,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 3,
- "versionNonce": 2057515399,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 4,
- "versionNonce": 1502072425,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 1047619751,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 708057417,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 1437318087,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 2027161641,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
-exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 879667943,
- "width": 10,
- "x": 60,
- "y": 50,
-}
-`;
-
exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] history 1`] = `
Object {
"recording": false,
@@ -42570,7 +14407,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -42612,7 +14449,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -42640,7 +14477,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -42681,7 +14518,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -42748,784 +14585,6 @@ Object {
}
`;
-exports[`regression tests pinch-to-zoom works: [end of test] element 0 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id0",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 10,
- "y": 10,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests pinch-to-zoom works: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
exports[`regression tests pinch-to-zoom works: [end of test] history 1`] = `
Object {
"recording": false,
@@ -43570,7 +14629,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -43635,784 +14694,6 @@ Object {
}
`;
-exports[`regression tests rerenders UI on language change: [end of test] element 0 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id0",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 10,
- "y": 10,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests rerenders UI on language change: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
exports[`regression tests rerenders UI on language change: [end of test] history 1`] = `
Object {
"recording": false,
@@ -44457,7 +14738,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -44545,7 +14826,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -44558,786 +14839,6 @@ Object {
}
`;
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
exports[`regression tests shift click on selected element should deselect it on pointer up: [end of test] history 1`] = `
Object {
"recording": false,
@@ -45383,7 +14884,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -45424,7 +14925,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -45518,7 +15019,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -45549,7 +15050,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -45562,788 +15063,6 @@ Object {
}
`;
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 348321737,
- "width": 10,
- "x": 50,
- "y": 60,
-}
-`;
-
-exports[`regression tests shift-click to multiselect, then drag: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1189086535,
- "width": 10,
- "x": 70,
- "y": 60,
-}
-`;
-
exports[`regression tests shift-click to multiselect, then drag: [end of test] history 1`] = `
Object {
"recording": false,
@@ -46389,7 +15108,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46431,7 +15150,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46459,7 +15178,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46505,7 +15224,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46533,7 +15252,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46574,7 +15293,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -46665,7 +15384,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46696,7 +15415,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46727,7 +15446,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -46740,802 +15459,6 @@ Object {
}
`;
-exports[`regression tests should group elements and ungroup them: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- Object {
- "id": "id14",
- "type": "arrow",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 5,
- "versionNonce": 1704745353,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": Object {
- "elementId": "id6",
- "focus": -0.7142857142857143,
- "gap": 1,
- },
- "fillStyle": "hachure",
- "groupIds": Array [
- "id25",
- ],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 6,
- "versionNonce": 337026951,
- "width": 300,
- "x": -60,
- "y": 60,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id25",
- ],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 4,
- "versionNonce": 1439318121,
- "verticalAlign": "middle",
- "width": 160,
- "x": 10,
- "y": 47.5,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 40,
- "y": 50,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 60,
- "y": 50,
-}
-`;
-
-exports[`regression tests should group elements and ungroup them: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 271613161,
- "width": 10,
- "x": 80,
- "y": 50,
-}
-`;
-
exports[`regression tests should group elements and ungroup them: [end of test] history 1`] = `
Object {
"recording": false,
@@ -47581,7 +15504,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47623,7 +15546,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47651,7 +15574,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47693,7 +15616,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47721,7 +15644,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47749,7 +15672,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47798,7 +15721,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47828,7 +15751,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47858,7 +15781,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47904,7 +15827,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47932,7 +15855,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47960,7 +15883,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -47992,7 +15915,7 @@ Object {
"collaborators": Map {},
"contextMenu": null,
"currentChartType": "bar",
- "currentItemBackgroundColor": "#fa5252",
+ "currentItemBackgroundColor": "#ffc9c9",
"currentItemEndArrowhead": "arrow",
"currentItemFillStyle": "hachure",
"currentItemFontFamily": 1,
@@ -48001,7 +15924,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -48030,7 +15953,7 @@ Object {
"offsetTop": 0,
"openDialog": null,
"openMenu": null,
- "openPopup": null,
+ "openPopup": "elementBackground",
"openSidebar": null,
"pasteDialog": Object {
"data": null,
@@ -48046,6 +15969,7 @@ Object {
"scrolledOutside": false,
"selectedElementIds": Object {
"id0": true,
+ "id1": true,
},
"selectedGroupIds": Object {},
"selectedLinearElement": null,
@@ -48071,7 +15995,7 @@ Object {
exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 0 1`] = `
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -48086,7 +16010,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -48099,786 +16023,6 @@ Object {
}
`;
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fa5252",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 888958951,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
exports[`regression tests should show fill icons when element has non transparent background: [end of test] history 1`] = `
Object {
"recording": false,
@@ -48924,7 +16068,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -48951,7 +16095,7 @@ Object {
"elements": Array [
Object {
"angle": 0,
- "backgroundColor": "#fa5252",
+ "backgroundColor": "#ffc9c9",
"boundElements": null,
"fillStyle": "hachure",
"groupIds": Array [],
@@ -48966,7 +16110,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -48985,7 +16129,7 @@ Object {
exports[`regression tests should show fill icons when element has non transparent background: [end of test] number of elements 1`] = `1`;
-exports[`regression tests should show fill icons when element has non transparent background: [end of test] number of renders 1`] = `14`;
+exports[`regression tests should show fill icons when element has non transparent background: [end of test] number of renders 1`] = `13`;
exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] appState 1`] = `
Object {
@@ -49007,7 +16151,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -49106,7 +16250,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -49140,7 +16284,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -49174,7 +16318,7 @@ Object {
"type": 3,
},
"seed": 1014066025,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -49208,7 +16352,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -49221,825 +16365,6 @@ Object {
}
`;
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2140907975,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 413268521,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 5,
- "versionNonce": 909170919,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id29",
- ],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 613600521,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 5,
- "versionNonce": 1016275975,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id29",
- ],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1688617961,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 5,
- "versionNonce": 1388251943,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id29",
- ],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 82304713,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 5,
- "versionNonce": 86052423,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id29",
- ],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 603135401,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 513125735,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id29",
- ],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 15958153,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 2,
- "versionNonce": 1516857479,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 1772390249,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id29",
- ],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1448656807,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1750184521,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [
- "id29",
- ],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1150300871,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 836141353,
- "width": 10,
- "x": 40,
- "y": 40,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1571570151,
- "width": 10,
- "x": 80,
- "y": 40,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 10,
- "id": "id25",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 651223591,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1402893321,
- "width": 10,
- "x": 40,
- "y": 90,
-}
-`;
-
-exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] element 24 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id29",
- ],
- "height": 10,
- "id": "id26",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1189086535,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 314141959,
- "width": 10,
- "x": 80,
- "y": 90,
-}
-`;
-
exports[`regression tests single-clicking on a subgroup of a selected group should not alter selection: [end of test] history 1`] = `
Object {
"recording": false,
@@ -50085,7 +16410,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50127,7 +16452,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50155,7 +16480,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50204,7 +16529,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50234,7 +16559,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50278,7 +16603,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50308,7 +16633,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50336,7 +16661,7 @@ Object {
"type": 3,
},
"seed": 1014066025,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50380,7 +16705,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50410,7 +16735,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50438,7 +16763,7 @@ Object {
"type": 3,
},
"seed": 1014066025,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50466,7 +16791,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50515,7 +16840,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50545,7 +16870,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50575,7 +16900,7 @@ Object {
"type": 3,
},
"seed": 1014066025,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50605,7 +16930,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50655,7 +16980,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50686,7 +17011,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50717,7 +17042,7 @@ Object {
"type": 3,
},
"seed": 1014066025,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50748,7 +17073,7 @@ Object {
"type": 3,
},
"seed": 400692809,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -50789,7 +17114,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -50854,784 +17179,6 @@ Object {
}
`;
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 0 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id0",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 10,
- "y": 10,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests spacebar + drag scrolls the canvas: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
exports[`regression tests spacebar + drag scrolls the canvas: [end of test] history 1`] = `
Object {
"recording": false,
@@ -51676,7 +17223,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -51765,7 +17312,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -51799,7 +17346,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -51833,7 +17380,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -51846,832 +17393,6 @@ Object {
}
`;
-exports[`regression tests supports nested groups: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 453187241,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1532871783,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1704745353,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 5,
- "versionNonce": 337026951,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1439318121,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 5,
- "versionNonce": 1934038695,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 425216841,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 5,
- "versionNonce": 2140907975,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 413268521,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 5,
- "versionNonce": 909170919,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 613600521,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 1016275975,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 1688617961,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 2,
- "versionNonce": 1388251943,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 82304713,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [
- "id24",
- ],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 86052423,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 603135401,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [
- "id24",
- ],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 3,
- "versionNonce": 513125735,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 50,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 15958153,
- "width": 50,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 50,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1516857479,
- "width": 50,
- "x": 130,
- "y": 140,
-}
-`;
-
-exports[`regression tests supports nested groups: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [
- "id24",
- ],
- "height": 50,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 3,
- "versionNonce": 1772390249,
- "width": 50,
- "x": 230,
- "y": 240,
-}
-`;
-
exports[`regression tests supports nested groups: [end of test] history 1`] = `
Object {
"recording": false,
@@ -52717,7 +17438,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52759,7 +17480,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52787,7 +17508,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52829,7 +17550,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52857,7 +17578,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52885,7 +17606,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52933,7 +17654,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52963,7 +17684,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -52993,7 +17714,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53039,7 +17760,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53069,7 +17790,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53099,7 +17820,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53147,7 +17868,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53178,7 +17899,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53209,7 +17930,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53258,7 +17979,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53289,7 +18010,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53320,7 +18041,7 @@ Object {
"type": 3,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53361,7 +18082,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -53384,7 +18105,7 @@ Object {
"type": 2,
},
"seed": 1116226695,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -53457,7 +18178,7 @@ Object {
"type": 2,
},
"seed": 1116226695,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -53504,7 +18225,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -53535,7 +18256,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -53566,7 +18287,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -53579,790 +18300,6 @@ Object {
}
`;
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 100,
- "x": 140,
- "y": 150,
-}
-`;
-
-exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id23",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 735304455,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 2,
- "versionNonce": 271613161,
- "width": 100,
- "x": 340,
- "y": 350,
-}
-`;
-
exports[`regression tests switches from group of selected elements to another element on pointer down: [end of test] history 1`] = `
Object {
"recording": false,
@@ -54408,7 +18345,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -54450,7 +18387,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -54478,7 +18415,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -54520,7 +18457,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -54548,7 +18485,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -54576,7 +18513,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -54617,7 +18554,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -54640,7 +18577,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -54711,7 +18648,7 @@ Object {
"type": 2,
},
"seed": 401146281,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "selection",
@@ -54758,7 +18695,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -54789,7 +18726,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -54802,788 +18739,6 @@ Object {
}
`;
-exports[`regression tests switches selected element on pointer down: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 10,
- "x": 30,
- "y": 40,
-}
-`;
-
-exports[`regression tests switches selected element on pointer down: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 10,
- "x": 50,
- "y": 60,
-}
-`;
-
exports[`regression tests switches selected element on pointer down: [end of test] history 1`] = `
Object {
"recording": false,
@@ -55629,7 +18784,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -55671,7 +18826,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -55699,7 +18854,7 @@ Object {
"type": 2,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -55740,7 +18895,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -55807,784 +18962,6 @@ Object {
}
`;
-exports[`regression tests two-finger scroll works: [end of test] element 0 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id0",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 10,
- "y": 10,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 3,
- "versionNonce": 1177973545,
- "width": 300,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests two-finger scroll works: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
exports[`regression tests two-finger scroll works: [end of test] history 1`] = `
Object {
"recording": false,
@@ -56629,7 +19006,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -56714,7 +19091,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -56745,7 +19122,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -56794,7 +19171,7 @@ Object {
"seed": 401146281,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -56807,820 +19184,6 @@ Object {
}
`;
-exports[`regression tests undo/redo drawing an element: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- Object {
- "id": "id23",
- "type": "arrow",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 5,
- "versionNonce": 337026951,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 21 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 10,
- "id": "id21",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 1573789895,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1177973545,
- "width": 20,
- "x": 40,
- "y": 30,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 22 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id22",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": Object {
- "type": 3,
- },
- "seed": 888958951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 2066753033,
- "width": 30,
- "x": 70,
- "y": 40,
-}
-`;
-
-exports[`regression tests undo/redo drawing an element: [end of test] element 23 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": null,
- "endArrowhead": "arrow",
- "endBinding": Object {
- "elementId": "id6",
- "focus": -1.0000000000000002,
- "gap": 5,
- },
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 20,
- "id": "id23",
- "isDeleted": false,
- "lastCommittedPoint": Array [
- 100,
- 20,
- ],
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 60,
- 10,
- ],
- Array [
- 100,
- 20,
- ],
- ],
- "roughness": 1,
- "roundness": Object {
- "type": 2,
- },
- "seed": 735304455,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 9,
- "versionNonce": 1439318121,
- "width": 100,
- "x": 160,
- "y": 50,
-}
-`;
-
exports[`regression tests undo/redo drawing an element: [end of test] history 1`] = `
Object {
"recording": false,
@@ -57654,7 +19217,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -57682,7 +19245,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -57732,7 +19295,7 @@ Object {
"seed": 401146281,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -57774,7 +19337,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -57802,7 +19365,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -57848,7 +19411,7 @@ Object {
"seed": 401146281,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -57903,7 +19466,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -57945,7 +19508,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -57973,7 +19536,7 @@ Object {
"type": 3,
},
"seed": 449462985,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
@@ -58014,7 +19577,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -58079,784 +19642,6 @@ Object {
}
`;
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 0 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id0",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 10,
- "y": 10,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests updates fontSize & fontFamily appState: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
exports[`regression tests updates fontSize & fontFamily appState: [end of test] history 1`] = `
Object {
"recording": false,
@@ -58901,7 +19686,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
@@ -58966,784 +19751,6 @@ Object {
}
`;
-exports[`regression tests zoom hotkeys: [end of test] element 0 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id0",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 337897,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 10,
- "y": 10,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 1 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id1",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1278240551,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 50,
- "y": 200,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 2 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id2",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 449462985,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 100,
- "x": 120,
- "y": 20,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 3 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": null,
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id3",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO",
- "roughness": 1,
- "roundness": null,
- "seed": 453191,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "verticalAlign": "top",
- "width": 50,
- "x": 300,
- "y": 100,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 4 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#4dabf7",
- "boundElements": Array [],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 200,
- "id": "id4",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 401146281,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 500,
- "x": 100,
- "y": 200,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 5 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id5",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 2019559783,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "arrow",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": 100,
- "y": 20,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 6 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id7",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 35,
- "id": "id6",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1150084233,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 4,
- "versionNonce": 400692809,
- "width": 160,
- "x": 240,
- "y": 30,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 7 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id6",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id7",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1116226695,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM RECT",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1604849351,
- "verticalAlign": "middle",
- "width": 150,
- "x": 245,
- "y": 35,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 8 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id9",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 49,
- "id": "id8",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1505387817,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "ellipse",
- "updated": 1,
- "version": 4,
- "versionNonce": 81784553,
- "width": 269,
- "x": 400,
- "y": 410,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 9 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id8",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id9",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ELLIPSE",
- "roughness": 1,
- "roundness": null,
- "seed": 23633383,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ELLIPSE",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 747212839,
- "verticalAlign": "middle",
- "width": 180,
- "x": 444.39413793040933,
- "y": 422.17588386092956,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 10 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id11",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 70,
- "id": "id10",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1723083209,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1315507081,
- "width": 440,
- "x": 10,
- "y": 530,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 11 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id10",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id11",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond",
- "roughness": 1,
- "roundness": null,
- "seed": 760410951,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1898319239,
- "verticalAlign": "middle",
- "width": 210,
- "x": 125,
- "y": 552.5,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 12 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "#fff3bf",
- "boundElements": Array [
- Object {
- "id": "id13",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 120,
- "id": "id12",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 640725609,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 2,
- "type": "diamond",
- "updated": 1,
- "version": 4,
- "versionNonce": 1402203177,
- "width": 440,
- "x": 199,
- "y": 123,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 13 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id12",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 50,
- "id": "id13",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO Text In Diamond
- with props",
- "roughness": 1,
- "roundness": null,
- "seed": 406373543,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO Text In Diamond
- with props",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1359939303,
- "verticalAlign": "middle",
- "width": 210,
- "x": 314,
- "y": 158,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 14 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id15",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id14",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1349943049,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 2101589481,
- "width": 0,
- "x": -120,
- "y": 40,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 15 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id14",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id15",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO FROM ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 2004587015,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO FROM ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 845789479,
- "verticalAlign": "middle",
- "width": 160,
- "x": -50,
- "y": 27.5,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 16 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [],
- "endArrowhead": null,
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 24,
- "id": "id16",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 200,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 1292308681,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "line",
- "updated": 1,
- "version": 1,
- "versionNonce": 0,
- "width": 200,
- "x": -202,
- "y": 70,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 17 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id18",
- "type": "text",
- },
- ],
- "endArrowhead": "arrow",
- "endBinding": null,
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 0,
- "id": "id17",
- "isDeleted": false,
- "lastCommittedPoint": null,
- "link": null,
- "locked": false,
- "opacity": 100,
- "points": Array [
- Array [
- 0,
- 0,
- ],
- Array [
- 300,
- 0,
- ],
- ],
- "roughness": 1,
- "roundness": null,
- "seed": 927333447,
- "startArrowhead": null,
- "startBinding": null,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "arrow",
- "updated": 1,
- "version": 2,
- "versionNonce": 1508694887,
- "width": 0,
- "x": -190,
- "y": 169,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 18 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id17",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 20,
- "groupIds": Array [],
- "height": 25,
- "id": "id18",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO LABELED ARROW",
- "roughness": 1,
- "roundness": null,
- "seed": 1163661225,
- "strokeColor": "#099268",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO LABELED ARROW",
- "textAlign": "center",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 745419401,
- "verticalAlign": "middle",
- "width": 190,
- "x": -135,
- "y": 156.5,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 19 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "boundElements": Array [
- Object {
- "id": "id20",
- "type": "text",
- },
- ],
- "fillStyle": "hachure",
- "groupIds": Array [],
- "height": 100,
- "id": "id19",
- "isDeleted": false,
- "link": null,
- "locked": false,
- "opacity": 100,
- "roughness": 1,
- "roundness": null,
- "seed": 1051383431,
- "strokeColor": "#495057",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "type": "rectangle",
- "updated": 1,
- "version": 2,
- "versionNonce": 1279028647,
- "width": 113.3515625,
- "x": -300,
- "y": 200,
-}
-`;
-
-exports[`regression tests zoom hotkeys: [end of test] element 20 1`] = `
-Object {
- "angle": 0,
- "backgroundColor": "transparent",
- "baseline": 0,
- "boundElements": Array [],
- "containerId": "id19",
- "fillStyle": "hachure",
- "fontFamily": 1,
- "fontSize": 13.5,
- "groupIds": Array [],
- "height": 16.875,
- "id": "id20",
- "isDeleted": false,
- "lineHeight": 1.25,
- "link": null,
- "locked": false,
- "opacity": 100,
- "originalText": "HELLO RECT",
- "roughness": 1,
- "roundness": null,
- "seed": 1996028265,
- "strokeColor": "#000000",
- "strokeStyle": "solid",
- "strokeWidth": 1,
- "text": "HELLO RECT",
- "textAlign": "left",
- "type": "text",
- "updated": 1,
- "version": 2,
- "versionNonce": 1984422985,
- "verticalAlign": "top",
- "width": 100,
- "x": -295,
- "y": 205,
-}
-`;
-
exports[`regression tests zoom hotkeys: [end of test] history 1`] = `
Object {
"recording": false,
diff --git a/src/tests/__snapshots__/selection.test.tsx.snap b/src/tests/__snapshots__/selection.test.tsx.snap
index 6379fa0aac..61c4dc97a8 100644
--- a/src/tests/__snapshots__/selection.test.tsx.snap
+++ b/src/tests/__snapshots__/selection.test.tsx.snap
@@ -33,7 +33,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -79,7 +79,7 @@ Object {
"seed": 337897,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -110,7 +110,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "diamond",
@@ -141,7 +141,7 @@ Object {
"type": 2,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "ellipse",
@@ -172,7 +172,7 @@ Object {
"type": 3,
},
"seed": 337897,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "rectangle",
diff --git a/src/tests/clients.test.ts b/src/tests/clients.test.ts
index a6a6901b11..e78cf18642 100644
--- a/src/tests/clients.test.ts
+++ b/src/tests/clients.test.ts
@@ -1,44 +1,39 @@
-import { getClientInitials } from "../clients";
+import { getNameInitial } from "../clients";
describe("getClientInitials", () => {
it("returns substring if one name provided", () => {
- const result = getClientInitials("Alan");
- expect(result).toBe("A");
+ expect(getNameInitial("Alan")).toBe("A");
});
it("returns initials", () => {
- const result = getClientInitials("John Doe");
- expect(result).toBe("J");
+ expect(getNameInitial("John Doe")).toBe("J");
});
it("returns correct initials if many names provided", () => {
- const result = getClientInitials("John Alan Doe");
- expect(result).toBe("J");
+ expect(getNameInitial("John Alan Doe")).toBe("J");
});
it("returns single initial if 1 letter provided", () => {
- const result = getClientInitials("z");
- expect(result).toBe("Z");
+ expect(getNameInitial("z")).toBe("Z");
});
it("trims trailing whitespace", () => {
- const result = getClientInitials(" q ");
- expect(result).toBe("Q");
+ expect(getNameInitial(" q ")).toBe("Q");
});
it('returns "?" if falsey value provided', () => {
- let result = getClientInitials("");
- expect(result).toBe("?");
-
- result = getClientInitials(undefined);
- expect(result).toBe("?");
-
- result = getClientInitials(null);
- expect(result).toBe("?");
+ expect(getNameInitial("")).toBe("?");
+ expect(getNameInitial(undefined)).toBe("?");
+ expect(getNameInitial(null)).toBe("?");
});
it('returns "?" when value is blank', () => {
- const result = getClientInitials(" ");
- expect(result).toBe("?");
+ expect(getNameInitial(" ")).toBe("?");
+ });
+
+ it("works with multibyte strings", () => {
+ expect(getNameInitial("😀")).toBe("😀");
+ // but doesn't work with emoji ZWJ sequences
+ expect(getNameInitial("👨👩👦")).toBe("👨");
});
});
diff --git a/src/tests/contextmenu.test.tsx b/src/tests/contextmenu.test.tsx
index 55841b2432..9b4007b034 100644
--- a/src/tests/contextmenu.test.tsx
+++ b/src/tests/contextmenu.test.tsx
@@ -9,6 +9,7 @@ import {
queryByText,
queryAllByText,
waitFor,
+ togglePopover,
} from "./test-utils";
import ExcalidrawApp from "../excalidraw-app";
import * as Renderer from "../renderer/renderScene";
@@ -19,7 +20,6 @@ import { ShortcutName } from "../actions/shortcuts";
import { copiedStyles } from "../actions/actionStyles";
import { API } from "./helpers/api";
import { setDateTimeForTests } from "../utils";
-import { t } from "../i18n";
import { LibraryItem } from "../types";
const checkpoint = (name: string) => {
@@ -125,7 +125,7 @@ describe("contextMenu element", () => {
"bringToFront",
"duplicateSelection",
"hyperlink",
- "toggleLock",
+ "toggleElementLock",
];
expect(contextMenu).not.toBeNull();
@@ -212,7 +212,7 @@ describe("contextMenu element", () => {
"sendToBack",
"bringToFront",
"duplicateSelection",
- "toggleLock",
+ "toggleElementLock",
];
expect(contextMenu).not.toBeNull();
@@ -263,7 +263,7 @@ describe("contextMenu element", () => {
"sendToBack",
"bringToFront",
"duplicateSelection",
- "toggleLock",
+ "toggleElementLock",
];
expect(contextMenu).not.toBeNull();
@@ -287,7 +287,7 @@ describe("contextMenu element", () => {
});
const contextMenu = UI.queryContextMenu();
expect(copiedStyles).toBe("{}");
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Copy styles")!);
+ fireEvent.click(queryByText(contextMenu!, "Copy styles")!);
expect(copiedStyles).not.toBe("{}");
const element = JSON.parse(copiedStyles)[0];
expect(element).toEqual(API.getSelectedElement());
@@ -303,10 +303,10 @@ describe("contextMenu element", () => {
mouse.up(20, 20);
// Change some styles of second rectangle
- UI.clickLabeledElement("Stroke");
- UI.clickLabeledElement(t("colors.c92a2a"));
- UI.clickLabeledElement("Background");
- UI.clickLabeledElement(t("colors.e64980"));
+ togglePopover("Stroke");
+ UI.clickOnTestId("color-red");
+ togglePopover("Background");
+ UI.clickOnTestId("color-blue");
// Fill style
fireEvent.click(screen.getByTitle("Cross-hatch"));
// Stroke width
@@ -320,15 +320,22 @@ describe("contextMenu element", () => {
target: { value: "60" },
});
+ // closing the background popover as this blocks
+ // context menu from rendering after we started focussing
+ // the popover once rendered :/
+ togglePopover("Background");
+
mouse.reset();
+
// Copy styles of second rectangle
fireEvent.contextMenu(GlobalTestState.canvas, {
button: 2,
clientX: 40,
clientY: 40,
});
+
let contextMenu = UI.queryContextMenu();
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Copy styles")!);
+ fireEvent.click(queryByText(contextMenu!, "Copy styles")!);
const secondRect = JSON.parse(copiedStyles)[0];
expect(secondRect.id).toBe(h.elements[1].id);
@@ -340,12 +347,12 @@ describe("contextMenu element", () => {
clientY: 10,
});
contextMenu = UI.queryContextMenu();
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Paste styles")!);
+ fireEvent.click(queryByText(contextMenu!, "Paste styles")!);
const firstRect = API.getSelectedElement();
expect(firstRect.id).toBe(h.elements[0].id);
- expect(firstRect.strokeColor).toBe("#c92a2a");
- expect(firstRect.backgroundColor).toBe("#e64980");
+ expect(firstRect.strokeColor).toBe("#e03131");
+ expect(firstRect.backgroundColor).toBe("#a5d8ff");
expect(firstRect.fillStyle).toBe("cross-hatch");
expect(firstRect.strokeWidth).toBe(2); // Bold: 2
expect(firstRect.strokeStyle).toBe("dotted");
@@ -364,7 +371,7 @@ describe("contextMenu element", () => {
clientY: 1,
});
const contextMenu = UI.queryContextMenu();
- fireEvent.click(queryAllByText(contextMenu as HTMLElement, "Delete")[0]);
+ fireEvent.click(queryAllByText(contextMenu!, "Delete")[0]);
expect(API.getSelectedElements()).toHaveLength(0);
expect(h.elements[0].isDeleted).toBe(true);
});
@@ -380,7 +387,7 @@ describe("contextMenu element", () => {
clientY: 1,
});
const contextMenu = UI.queryContextMenu();
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Add to library")!);
+ fireEvent.click(queryByText(contextMenu!, "Add to library")!);
await waitFor(() => {
const library = localStorage.getItem("excalidraw-library");
@@ -401,7 +408,7 @@ describe("contextMenu element", () => {
clientY: 1,
});
const contextMenu = UI.queryContextMenu();
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Duplicate")!);
+ fireEvent.click(queryByText(contextMenu!, "Duplicate")!);
expect(h.elements).toHaveLength(2);
const { id: _id0, seed: _seed0, x: _x0, y: _y0, ...rect1 } = h.elements[0];
const { id: _id1, seed: _seed1, x: _x1, y: _y1, ...rect2 } = h.elements[1];
@@ -425,7 +432,7 @@ describe("contextMenu element", () => {
});
const contextMenu = UI.queryContextMenu();
const elementsBefore = h.elements;
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Send backward")!);
+ fireEvent.click(queryByText(contextMenu!, "Send backward")!);
expect(elementsBefore[0].id).toEqual(h.elements[1].id);
expect(elementsBefore[1].id).toEqual(h.elements[0].id);
});
@@ -447,7 +454,7 @@ describe("contextMenu element", () => {
});
const contextMenu = UI.queryContextMenu();
const elementsBefore = h.elements;
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Bring forward")!);
+ fireEvent.click(queryByText(contextMenu!, "Bring forward")!);
expect(elementsBefore[0].id).toEqual(h.elements[1].id);
expect(elementsBefore[1].id).toEqual(h.elements[0].id);
});
@@ -469,7 +476,7 @@ describe("contextMenu element", () => {
});
const contextMenu = UI.queryContextMenu();
const elementsBefore = h.elements;
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Send to back")!);
+ fireEvent.click(queryByText(contextMenu!, "Send to back")!);
expect(elementsBefore[1].id).toEqual(h.elements[0].id);
});
@@ -490,7 +497,7 @@ describe("contextMenu element", () => {
});
const contextMenu = UI.queryContextMenu();
const elementsBefore = h.elements;
- fireEvent.click(queryByText(contextMenu as HTMLElement, "Bring to front")!);
+ fireEvent.click(queryByText(contextMenu!, "Bring to front")!);
expect(elementsBefore[0].id).toEqual(h.elements[1].id);
});
@@ -514,9 +521,7 @@ describe("contextMenu element", () => {
clientY: 1,
});
const contextMenu = UI.queryContextMenu();
- fireEvent.click(
- queryByText(contextMenu as HTMLElement, "Group selection")!,
- );
+ fireEvent.click(queryByText(contextMenu!, "Group selection")!);
const selectedGroupIds = Object.keys(h.state.selectedGroupIds);
expect(h.elements[0].groupIds).toEqual(selectedGroupIds);
expect(h.elements[1].groupIds).toEqual(selectedGroupIds);
@@ -548,9 +553,7 @@ describe("contextMenu element", () => {
const contextMenu = UI.queryContextMenu();
expect(contextMenu).not.toBeNull();
- fireEvent.click(
- queryByText(contextMenu as HTMLElement, "Ungroup selection")!,
- );
+ fireEvent.click(queryByText(contextMenu!, "Ungroup selection")!);
const selectedGroupIds = Object.keys(h.state.selectedGroupIds);
expect(selectedGroupIds).toHaveLength(0);
diff --git a/src/tests/data/__snapshots__/restore.test.ts.snap b/src/tests/data/__snapshots__/restore.test.ts.snap
index 7e30b9d868..cfb57ecb24 100644
--- a/src/tests/data/__snapshots__/restore.test.ts.snap
+++ b/src/tests/data/__snapshots__/restore.test.ts.snap
@@ -33,7 +33,7 @@ Object {
"seed": Any
,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "arrow",
@@ -173,7 +173,7 @@ Object {
},
"seed": Any,
"simulatePressure": true,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "freedraw",
@@ -219,7 +219,7 @@ Object {
"seed": Any,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -265,7 +265,7 @@ Object {
"seed": Any,
"startArrowhead": null,
"startBinding": null,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"type": "line",
@@ -302,7 +302,7 @@ Object {
"type": 3,
},
"seed": Any,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"text": "text",
@@ -342,7 +342,7 @@ Object {
"type": 3,
},
"seed": Any,
- "strokeColor": "#000000",
+ "strokeColor": "#1e1e1e",
"strokeStyle": "solid",
"strokeWidth": 1,
"text": "",
diff --git a/src/tests/elementLocking.test.tsx b/src/tests/elementLocking.test.tsx
index 9cf0968d45..a2f6eb11dc 100644
--- a/src/tests/elementLocking.test.tsx
+++ b/src/tests/elementLocking.test.tsx
@@ -152,7 +152,7 @@ describe("element locking", () => {
expect(contextMenu).not.toBeNull();
expect(
contextMenu?.querySelector(
- `li[data-testid="toggleLock"] .context-menu-item__label`,
+ `li[data-testid="toggleElementLock"] .context-menu-item__label`,
),
).toHaveTextContent(t("labels.elementLock.unlock"));
});
diff --git a/src/tests/helpers/ui.ts b/src/tests/helpers/ui.ts
index 1cfdb10a1d..c882011330 100644
--- a/src/tests/helpers/ui.ts
+++ b/src/tests/helpers/ui.ts
@@ -237,6 +237,15 @@ export class UI {
fireEvent.click(element);
};
+ static clickOnTestId = (testId: string) => {
+ const element = document.querySelector(`[data-testid='${testId}']`);
+ // const element = GlobalTestState.renderResult.queryByTestId(testId);
+ if (!element) {
+ throw new Error(`No element with testid "${testId}" found`);
+ }
+ fireEvent.click(element);
+ };
+
/**
* Creates an Excalidraw element, and returns a proxy that wraps it so that
* accessing props will return the latest ones from the object existing in
@@ -321,6 +330,6 @@ export class UI {
static queryContextMenu = () => {
return GlobalTestState.renderResult.container.querySelector(
".context-menu",
- );
+ ) as HTMLElement | null;
};
}
diff --git a/src/tests/packages/__snapshots__/excalidraw.test.tsx.snap b/src/tests/packages/__snapshots__/excalidraw.test.tsx.snap
index 09402981e1..4caa6c6ddf 100644
--- a/src/tests/packages/__snapshots__/excalidraw.test.tsx.snap
+++ b/src/tests/packages/__snapshots__/excalidraw.test.tsx.snap
@@ -7,7 +7,7 @@ exports[` should render main menu with host menu items
>
should render main menu with host menu items
-
custom menu item
@@ -116,7 +115,7 @@ exports[` Test UIOptions prop Test canvasActions should render menu
>
Test UIOptions prop Test canvasActions should render menu
-
-
+
+
-
-
-
-
- #
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/tests/packages/__snapshots__/utils.test.ts.snap b/src/tests/packages/__snapshots__/utils.test.ts.snap
index aa5f843344..98303fb75d 100644
--- a/src/tests/packages/__snapshots__/utils.test.ts.snap
+++ b/src/tests/packages/__snapshots__/utils.test.ts.snap
@@ -20,7 +20,7 @@ Object {
"currentItemRoughness": 1,
"currentItemRoundness": "round",
"currentItemStartArrowhead": null,
- "currentItemStrokeColor": "#000000",
+ "currentItemStrokeColor": "#1e1e1e",
"currentItemStrokeStyle": "solid",
"currentItemStrokeWidth": 1,
"currentItemTextAlign": "left",
diff --git a/src/tests/packages/excalidraw.test.tsx b/src/tests/packages/excalidraw.test.tsx
index a0d4959363..a5734b2ed9 100644
--- a/src/tests/packages/excalidraw.test.tsx
+++ b/src/tests/packages/excalidraw.test.tsx
@@ -220,7 +220,6 @@ describe("
", () => {
style={{ height: "2rem" }}
onClick={() => window.alert("custom menu item")}
>
- {" "}
custom item
@@ -345,7 +344,6 @@ describe("
", () => {
style={{ height: "2rem" }}
onClick={() => window.alert("custom menu item")}
>
- {" "}
custom menu item
diff --git a/src/tests/regressionTests.test.tsx b/src/tests/regressionTests.test.tsx
index 07a6a449f3..9ecbfb42ce 100644
--- a/src/tests/regressionTests.test.tsx
+++ b/src/tests/regressionTests.test.tsx
@@ -12,11 +12,11 @@ import {
fireEvent,
render,
screen,
+ togglePopover,
waitFor,
} from "./test-utils";
import { defaultLang } from "../i18n";
import { FONT_FAMILY } from "../constants";
-import { t } from "../i18n";
const { h } = window;
@@ -42,7 +42,6 @@ const checkpoint = (name: string) => {
expect(element).toMatchSnapshot(`[${name}] element ${i}`),
);
};
-
beforeEach(async () => {
// Unmount ReactDOM from root
ReactDOM.unmountComponentAtNode(document.getElementById("root")!);
@@ -159,13 +158,14 @@ describe("regression tests", () => {
UI.clickTool("rectangle");
mouse.down(10, 10);
mouse.up(10, 10);
+ togglePopover("Background");
+ UI.clickOnTestId("color-yellow");
+ UI.clickOnTestId("color-red");
- UI.clickLabeledElement("Background");
- UI.clickLabeledElement(t("colors.fa5252"));
- UI.clickLabeledElement("Stroke");
- UI.clickLabeledElement(t("colors.5f3dc4"));
- expect(API.getSelectedElement().backgroundColor).toBe("#fa5252");
- expect(API.getSelectedElement().strokeColor).toBe("#5f3dc4");
+ togglePopover("Stroke");
+ UI.clickOnTestId("color-blue");
+ expect(API.getSelectedElement().backgroundColor).toBe("#ffc9c9");
+ expect(API.getSelectedElement().strokeColor).toBe("#1971c2");
});
it("click on an element and drag it", () => {
@@ -988,8 +988,8 @@ describe("regression tests", () => {
UI.clickTool("rectangle");
// change background color since default is transparent
// and transparent elements can't be selected by clicking inside of them
- UI.clickLabeledElement("Background");
- UI.clickLabeledElement(t("colors.fa5252"));
+ togglePopover("Background");
+ UI.clickOnTestId("color-red");
mouse.down();
mouse.up(1000, 1000);
@@ -1088,15 +1088,14 @@ describe("regression tests", () => {
assertSelectedElements(rect3);
});
- it("should show fill icons when element has non transparent background", () => {
+ it("should show fill icons when element has non transparent background", async () => {
UI.clickTool("rectangle");
expect(screen.queryByText(/fill/i)).not.toBeNull();
mouse.down();
mouse.up(10, 10);
expect(screen.queryByText(/fill/i)).toBeNull();
-
- UI.clickLabeledElement("Background");
- UI.clickLabeledElement(t("colors.fa5252"));
+ togglePopover("Background");
+ UI.clickOnTestId("color-red");
// select rectangle
mouse.reset();
mouse.click();
diff --git a/src/tests/test-utils.ts b/src/tests/test-utils.ts
index 9560f681fd..bb771b196d 100644
--- a/src/tests/test-utils.ts
+++ b/src/tests/test-utils.ts
@@ -16,6 +16,7 @@ import { STORAGE_KEYS } from "../excalidraw-app/app_constants";
import { SceneData } from "../types";
import { getSelectedElements } from "../scene/selection";
import { ExcalidrawElement } from "../element/types";
+import { UI } from "./helpers/ui";
const customQueries = {
...queries,
@@ -186,11 +187,6 @@ export const assertSelectedElements = (
expect(selectedElementIds).toEqual(expect.arrayContaining(ids));
};
-export const toggleMenu = (container: HTMLElement) => {
- // open menu
- fireEvent.click(container.querySelector(".dropdown-menu-button")!);
-};
-
export const createPasteEvent = (
text:
| string
@@ -211,3 +207,24 @@ export const createPasteEvent = (
},
);
};
+
+export const toggleMenu = (container: HTMLElement) => {
+ // open menu
+ fireEvent.click(container.querySelector(".dropdown-menu-button")!);
+};
+
+export const togglePopover = (label: string) => {
+ // Needed for radix-ui/react-popover as tests fail due to resize observer not being present
+ (global as any).ResizeObserver = class ResizeObserver {
+ constructor(cb: any) {
+ (this as any).cb = cb;
+ }
+
+ observe() {}
+
+ unobserve() {}
+ disconnect() {}
+ };
+
+ UI.clickLabeledElement(label);
+};
diff --git a/src/types.ts b/src/types.ts
index 8aa07d3ce3..52a75b6157 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -163,11 +163,7 @@ export type AppState = {
isRotating: boolean;
zoom: Zoom;
openMenu: "canvas" | "shape" | null;
- openPopup:
- | "canvasColorPicker"
- | "backgroundColorPicker"
- | "strokeColorPicker"
- | null;
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | null;
openSidebar: { name: SidebarName; tab?: SidebarTabName } | null;
openDialog: "imageExport" | "help" | "jsonExport" | null;
/**
@@ -442,6 +438,7 @@ export type AppClassProperties = {
pasteFromClipboard: App["pasteFromClipboard"];
id: App["id"];
onInsertElements: App["onInsertElements"];
+ onExportImage: App["onExportImage"];
};
export type PointerDownState = Readonly<{
@@ -541,4 +538,5 @@ export type Device = Readonly<{
isMobile: boolean;
isTouchScreen: boolean;
canDeviceFitSidebar: boolean;
+ isLandscape: boolean;
}>;
diff --git a/src/utils.ts b/src/utils.ts
index 83376cd3bd..b5a65cae21 100644
--- a/src/utils.ts
+++ b/src/utils.ts
@@ -1,6 +1,5 @@
import oc from "open-color";
-
-import colors from "./colors";
+import { COLOR_PALETTE } from "./colors";
import {
CURSOR_TYPE,
DEFAULT_VERSION,
@@ -529,7 +528,7 @@ export const isTransparent = (color: string) => {
return (
isRGBTransparent ||
isRRGGBBTransparent ||
- color === colors.elementBackground[0]
+ color === COLOR_PALETTE.transparent
);
};
diff --git a/yarn.lock b/yarn.lock
index b4cc8c6f83..eca6964bfa 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,12 +2,12 @@
# yarn lockfile v1
-"@ampproject/remapping@^2.1.0":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
- integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
+"@ampproject/remapping@^2.2.0":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
+ integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
dependencies:
- "@jridgewell/gen-mapping" "^0.1.0"
+ "@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@apideck/better-ajv-errors@^0.3.1":
@@ -26,90 +26,56 @@
dependencies:
"@babel/highlight" "^7.10.4"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.8.3":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
- integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4", "@babel/code-frame@^7.8.3":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39"
+ integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.4", "@babel/compat-data@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.0.tgz#9b61938c5f688212c7b9ae363a819df7d29d4093"
- integrity sha512-Gt9jszFJYq7qzXVK4slhc6NzJXnOVmRECWcVjF/T23rNXD9NtWQ0W3qxdg+p9wWIB+VQw3GYV/U2Ha9bRTfs4w==
+"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.4":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.4.tgz#457ffe647c480dff59c2be092fc3acf71195c87f"
+ integrity sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==
-"@babel/compat-data@^7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.1.tgz#f2e6ef7790d8c8dbf03d379502dcc246dcce0b30"
- integrity sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==
-
-"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.16.0":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f"
- integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==
+"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.4.tgz#c6dc73242507b8e2a27fd13a9c1814f9fa34a659"
+ integrity sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==
dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.19.6"
- "@babel/helper-compilation-targets" "^7.19.3"
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helpers" "^7.19.4"
- "@babel/parser" "^7.19.6"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.6"
- "@babel/types" "^7.19.4"
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.21.4"
+ "@babel/generator" "^7.21.4"
+ "@babel/helper-compilation-targets" "^7.21.4"
+ "@babel/helper-module-transforms" "^7.21.2"
+ "@babel/helpers" "^7.21.0"
+ "@babel/parser" "^7.21.4"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.21.4"
+ "@babel/types" "^7.21.4"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
- semver "^6.3.0"
-
-"@babel/core@^7.11.1", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.2.tgz#8dc9b1620a673f92d3624bd926dc49a52cf25b92"
- integrity sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==
- dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.2"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-module-transforms" "^7.20.2"
- "@babel/helpers" "^7.20.1"
- "@babel/parser" "^7.20.2"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
+ json5 "^2.2.2"
semver "^6.3.0"
"@babel/eslint-parser@^7.16.3":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz#4f68f6b0825489e00a24b41b6a1ae35414ecd2f4"
- integrity sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz#d79e822050f2de65d7f368a076846e7184234af7"
+ integrity sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
eslint-visitor-keys "^2.1.0"
semver "^6.3.0"
-"@babel/generator@^7.19.6", "@babel/generator@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.0.tgz#0bfc5379e0efb05ca6092091261fcdf7ec36249d"
- integrity sha512-GUPcXxWibClgmYJuIwC2Bc2Lg+8b9VjaJ+HlNdACEVt+Wlr1eoU1OPZjZRm7Hzl0gaTsUZNQfeihvZJhG7oc3w==
+"@babel/generator@^7.21.4", "@babel/generator@^7.7.2":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.4.tgz#64a94b7448989f421f919d5239ef553b37bb26bc"
+ integrity sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==
dependencies:
- "@babel/types" "^7.20.0"
- "@jridgewell/gen-mapping" "^0.3.2"
- jsesc "^2.5.1"
-
-"@babel/generator@^7.20.1", "@babel/generator@^7.20.2", "@babel/generator@^7.7.2":
- version "7.20.4"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.4.tgz#4d9f8f0c30be75fd90a0562099a26e5839602ab8"
- integrity sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==
- dependencies:
- "@babel/types" "^7.20.2"
+ "@babel/types" "^7.21.4"
"@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
"@babel/helper-annotate-as-pure@^7.18.6":
@@ -127,36 +93,38 @@
"@babel/helper-explode-assignable-expression" "^7.18.6"
"@babel/types" "^7.18.9"
-"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3", "@babel/helper-compilation-targets@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
- integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
+"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.4":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz#770cd1ce0889097ceacb99418ee6934ef0572656"
+ integrity sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==
dependencies:
- "@babel/compat-data" "^7.20.0"
- "@babel/helper-validator-option" "^7.18.6"
+ "@babel/compat-data" "^7.21.4"
+ "@babel/helper-validator-option" "^7.21.0"
browserslist "^4.21.3"
+ lru-cache "^5.1.1"
semver "^6.3.0"
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b"
- integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz#3a017163dc3c2ba7deb9a7950849a9586ea24c18"
+ integrity sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-member-expression-to-functions" "^7.18.9"
+ "@babel/helper-function-name" "^7.21.0"
+ "@babel/helper-member-expression-to-functions" "^7.21.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-replace-supers" "^7.18.9"
+ "@babel/helper-replace-supers" "^7.20.7"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/helper-split-export-declaration" "^7.18.6"
-"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b"
- integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==
+"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.4.tgz#40411a8ab134258ad2cf3a3d987ec6aa0723cee5"
+ integrity sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- regexpu-core "^5.1.0"
+ regexpu-core "^5.3.1"
"@babel/helper-define-polyfill-provider@^0.3.3":
version "0.3.3"
@@ -182,13 +150,13 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
- integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
+"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4"
+ integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==
dependencies:
- "@babel/template" "^7.18.10"
- "@babel/types" "^7.19.0"
+ "@babel/template" "^7.20.7"
+ "@babel/types" "^7.21.0"
"@babel/helper-hoist-variables@^7.18.6":
version "7.18.6"
@@ -197,47 +165,33 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-member-expression-to-functions@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815"
- integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==
+"@babel/helper-member-expression-to-functions@^7.20.7", "@babel/helper-member-expression-to-functions@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz#319c6a940431a133897148515877d2f3269c3ba5"
+ integrity sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==
dependencies:
- "@babel/types" "^7.18.9"
+ "@babel/types" "^7.21.0"
-"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
- integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
+"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af"
+ integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.21.4"
-"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f"
- integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.19.4"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.6"
- "@babel/types" "^7.19.4"
-
-"@babel/helper-module-transforms@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
- integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
+"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.2":
+ version "7.21.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2"
+ integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.21.2"
+ "@babel/types" "^7.21.2"
"@babel/helper-optimise-call-expression@^7.18.6":
version "7.18.6"
@@ -246,17 +200,12 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf"
- integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==
-
-"@babel/helper-plugin-utils@^7.20.2":
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.20.2"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
-"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":
+"@babel/helper-remap-async-to-generator@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
@@ -266,23 +215,17 @@
"@babel/helper-wrap-function" "^7.18.9"
"@babel/types" "^7.18.9"
-"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9", "@babel/helper-replace-supers@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78"
- integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==
+"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331"
+ integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-member-expression-to-functions" "^7.18.9"
+ "@babel/helper-member-expression-to-functions" "^7.20.7"
"@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/traverse" "^7.19.1"
- "@babel/types" "^7.19.0"
-
-"@babel/helper-simple-access@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"
- integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==
- dependencies:
- "@babel/types" "^7.19.4"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@babel/helper-simple-access@^7.20.2":
version "7.20.2"
@@ -291,7 +234,7 @@
dependencies:
"@babel/types" "^7.20.2"
-"@babel/helper-skip-transparent-expression-wrappers@^7.18.9":
+"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
version "7.20.0"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
@@ -315,38 +258,29 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
-"@babel/helper-validator-option@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
- integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
+"@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180"
+ integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==
"@babel/helper-wrap-function@^7.18.9":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1"
- integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3"
+ integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==
dependencies:
"@babel/helper-function-name" "^7.19.0"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/traverse" "^7.20.5"
+ "@babel/types" "^7.20.5"
-"@babel/helpers@^7.19.4":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.0.tgz#27c8ffa8cc32a2ed3762fba48886e7654dbcf77f"
- integrity sha512-aGMjYraN0zosCEthoGLdqot1oRsmxVTQRHadsUPz5QM44Zej2PYRz7XiDE7GqnkZnNtLbOuxqoZw42vkU7+XEQ==
+"@babel/helpers@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.0.tgz#9dd184fb5599862037917cdc9eecb84577dc4e7e"
+ integrity sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==
dependencies:
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.0"
- "@babel/types" "^7.20.0"
-
-"@babel/helpers@^7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.1.tgz#2ab7a0fcb0a03b5bf76629196ed63c2d7311f4c9"
- integrity sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==
- dependencies:
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.0"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.21.0"
+ "@babel/types" "^7.21.0"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6":
version "7.18.6"
@@ -357,15 +291,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.6", "@babel/parser@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.0.tgz#b26133c888da4d79b0d3edcf42677bcadc783046"
- integrity sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg==
-
-"@babel/parser@^7.20.1", "@babel/parser@^7.20.2":
- version "7.20.3"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.3.tgz#5358cf62e380cf69efcb87a7bb922ff88bfac6e2"
- integrity sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.4":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17"
+ integrity sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
version "7.18.6"
@@ -374,32 +303,22 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50"
- integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1"
+ integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
- "@babel/plugin-proposal-optional-chaining" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
+ "@babel/plugin-proposal-optional-chaining" "^7.20.7"
-"@babel/plugin-proposal-async-generator-functions@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz#34f6f5174b688529342288cd264f80c9ea9fb4a7"
- integrity sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==
+"@babel/plugin-proposal-async-generator-functions@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326"
+ integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-remap-async-to-generator" "^7.18.9"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
-
-"@babel/plugin-proposal-async-generator-functions@^7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9"
- integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-remap-async-to-generator" "^7.18.9"
"@babel/plugin-syntax-async-generators" "^7.8.4"
@@ -411,25 +330,25 @@
"@babel/helper-create-class-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-proposal-class-static-block@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020"
- integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==
+"@babel/plugin-proposal-class-static-block@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d"
+ integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-create-class-features-plugin" "^7.21.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-proposal-decorators@^7.16.4":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.0.tgz#3acef1f1206d7a6a1436aa6ccf9ed7b1bd06aff7"
- integrity sha512-vnuRRS20ygSxclEYikHzVrP9nZDFXaSzvJxGLQNAiBX041TmhS4hOUHWNIpq/q4muENuEP9XPJFXTNFejhemkg==
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz#70e0c89fdcd7465c97593edb8f628ba6e4199d63"
+ integrity sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.19.0"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-replace-supers" "^7.19.1"
+ "@babel/helper-create-class-features-plugin" "^7.21.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-replace-supers" "^7.20.7"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/plugin-syntax-decorators" "^7.19.0"
+ "@babel/plugin-syntax-decorators" "^7.21.0"
"@babel/plugin-proposal-dynamic-import@^7.18.6":
version "7.18.6"
@@ -455,12 +374,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-json-strings" "^7.8.3"
-"@babel/plugin-proposal-logical-assignment-operators@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23"
- integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==
+"@babel/plugin-proposal-logical-assignment-operators@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83"
+ integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
@@ -479,27 +398,16 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
-"@babel/plugin-proposal-object-rest-spread@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d"
- integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==
+"@babel/plugin-proposal-object-rest-spread@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
+ integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
dependencies:
- "@babel/compat-data" "^7.19.4"
- "@babel/helper-compilation-targets" "^7.19.3"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.18.8"
-
-"@babel/plugin-proposal-object-rest-spread@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz#a556f59d555f06961df1e572bb5eca864c84022d"
- integrity sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==
- dependencies:
- "@babel/compat-data" "^7.20.1"
- "@babel/helper-compilation-targets" "^7.20.0"
+ "@babel/compat-data" "^7.20.5"
+ "@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.20.1"
+ "@babel/plugin-transform-parameters" "^7.20.7"
"@babel/plugin-proposal-optional-catch-binding@^7.18.6":
version "7.18.6"
@@ -509,13 +417,13 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993"
- integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==
+"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
+ integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-proposal-private-methods@^7.16.0", "@babel/plugin-proposal-private-methods@^7.18.6":
@@ -526,14 +434,14 @@
"@babel/helper-create-class-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-proposal-private-property-in-object@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503"
- integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==
+"@babel/plugin-proposal-private-property-in-object@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz#19496bd9883dd83c23c7d7fc45dcd9ad02dfa1dc"
+ integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-create-class-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-create-class-features-plugin" "^7.21.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
@@ -572,12 +480,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
-"@babel/plugin-syntax-decorators@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz#5f13d1d8fce96951bea01a10424463c9a5b3a599"
- integrity sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==
+"@babel/plugin-syntax-decorators@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz#d2b3f31c3e86fa86e16bb540b7660c55bd7d0e78"
+ integrity sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-dynamic-import@^7.8.3":
version "7.8.3"
@@ -594,13 +502,13 @@
"@babel/helper-plugin-utils" "^7.8.3"
"@babel/plugin-syntax-flow@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1"
- integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz#3e37fca4f06d93567c1cd9b75156422e90a67107"
+ integrity sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-syntax-import-assertions@^7.18.6", "@babel/plugin-syntax-import-assertions@^7.20.0":
+"@babel/plugin-syntax-import-assertions@^7.20.0":
version "7.20.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4"
integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==
@@ -621,12 +529,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-jsx@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
- integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
+"@babel/plugin-syntax-jsx@^7.18.6", "@babel/plugin-syntax-jsx@^7.21.4":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2"
+ integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
version "7.10.4"
@@ -685,27 +593,27 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.20.0", "@babel/plugin-syntax-typescript@^7.7.2":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7"
- integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8"
+ integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-transform-arrow-functions@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe"
- integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==
+"@babel/plugin-transform-arrow-functions@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551"
+ integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-transform-async-to-generator@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615"
- integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==
+"@babel/plugin-transform-async-to-generator@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354"
+ integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==
dependencies:
"@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-remap-async-to-generator" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-remap-async-to-generator" "^7.18.9"
"@babel/plugin-transform-block-scoped-functions@^7.18.6":
version "7.18.6"
@@ -714,68 +622,40 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-block-scoping@^7.19.4":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.0.tgz#91fe5e6ffc9ba13cb6c95ed7f0b1204f68c988c5"
- integrity sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==
- dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
-
-"@babel/plugin-transform-block-scoping@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz#f59b1767e6385c663fd0bce655db6ca9c8b236ed"
- integrity sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==
+"@babel/plugin-transform-block-scoping@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02"
+ integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-transform-classes@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20"
- integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==
+"@babel/plugin-transform-classes@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665"
+ integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-compilation-targets" "^7.19.0"
+ "@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-replace-supers" "^7.18.9"
- "@babel/helper-split-export-declaration" "^7.18.6"
- globals "^11.1.0"
-
-"@babel/plugin-transform-classes@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz#c0033cf1916ccf78202d04be4281d161f6709bb2"
- integrity sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
+ "@babel/helper-function-name" "^7.21.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-replace-supers" "^7.19.1"
+ "@babel/helper-replace-supers" "^7.20.7"
"@babel/helper-split-export-declaration" "^7.18.6"
globals "^11.1.0"
-"@babel/plugin-transform-computed-properties@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e"
- integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==
+"@babel/plugin-transform-computed-properties@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa"
+ integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/template" "^7.20.7"
-"@babel/plugin-transform-destructuring@^7.19.4":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.0.tgz#712829ef4825d9cc04bb379de316f981e9a6f648"
- integrity sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
-
-"@babel/plugin-transform-destructuring@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz#c23741cfa44ddd35f5e53896e88c75331b8b2792"
- integrity sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==
+"@babel/plugin-transform-destructuring@^7.21.3":
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401"
+ integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -803,19 +683,19 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-flow-strip-types@^7.16.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz#e9e8606633287488216028719638cbbb2f2dde8f"
- integrity sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz#6aeca0adcb81dc627c8986e770bfaa4d9812aff5"
+ integrity sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-flow" "^7.18.6"
-"@babel/plugin-transform-for-of@^7.18.8":
- version "7.18.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
- integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
+"@babel/plugin-transform-for-of@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz#964108c9988de1a60b4be2354a7d7e245f36e86e"
+ integrity sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-function-name@^7.18.9":
version "7.18.9"
@@ -840,31 +720,31 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-modules-amd@^7.18.6", "@babel/plugin-transform-modules-amd@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd"
- integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==
+"@babel/plugin-transform-modules-amd@^7.20.11":
+ version "7.20.11"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a"
+ integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==
dependencies:
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-module-transforms" "^7.20.11"
+ "@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-transform-modules-commonjs@^7.18.6", "@babel/plugin-transform-modules-commonjs@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c"
- integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==
+"@babel/plugin-transform-modules-commonjs@^7.21.2":
+ version "7.21.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz#6ff5070e71e3192ef2b7e39820a06fb78e3058e7"
+ integrity sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==
dependencies:
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-simple-access" "^7.19.4"
+ "@babel/helper-module-transforms" "^7.21.2"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-simple-access" "^7.20.2"
-"@babel/plugin-transform-modules-systemjs@^7.19.0", "@babel/plugin-transform-modules-systemjs@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d"
- integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==
+"@babel/plugin-transform-modules-systemjs@^7.20.11":
+ version "7.20.11"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e"
+ integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==
dependencies:
"@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-module-transforms" "^7.20.11"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-validator-identifier" "^7.19.1"
"@babel/plugin-transform-modules-umd@^7.18.6":
@@ -875,13 +755,13 @@
"@babel/helper-module-transforms" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888"
- integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.20.5":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8"
+ integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.19.0"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-create-regexp-features-plugin" "^7.20.5"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-new-target@^7.18.6":
version "7.18.6"
@@ -898,17 +778,10 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-replace-supers" "^7.18.6"
-"@babel/plugin-transform-parameters@^7.18.8":
- version "7.18.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a"
- integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
-
-"@babel/plugin-transform-parameters@^7.20.1":
- version "7.20.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz#7b3468d70c3c5b62e46be0a47b6045d8590fb748"
- integrity sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==
+"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3":
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db"
+ integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -920,11 +793,11 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-constant-elements@^7.12.1":
- version "7.18.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.12.tgz#edf3bec47eb98f14e84fa0af137fcc6aad8e0443"
- integrity sha512-Q99U9/ttiu+LMnRU8psd23HhvwXmKWDQIpocm0JKaICcZHnw+mdQbHm6xnSy7dOl8I5PELakYtNBubNQlBXbZw==
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.21.3.tgz#b32a5556100d424b25e388dd689050d78396884d"
+ integrity sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.18.6":
version "7.18.6"
@@ -941,15 +814,15 @@
"@babel/plugin-transform-react-jsx" "^7.18.6"
"@babel/plugin-transform-react-jsx@^7.18.6":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9"
- integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.0.tgz#656b42c2fdea0a6d8762075d58ef9d4e3c4ab8a2"
+ integrity sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-jsx" "^7.18.6"
- "@babel/types" "^7.19.0"
+ "@babel/types" "^7.21.0"
"@babel/plugin-transform-react-pure-annotations@^7.18.6":
version "7.18.6"
@@ -959,13 +832,13 @@
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-regenerator@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73"
- integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==
+"@babel/plugin-transform-regenerator@^7.20.5":
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d"
+ integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- regenerator-transform "^0.15.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ regenerator-transform "^0.15.1"
"@babel/plugin-transform-reserved-words@^7.18.6":
version "7.18.6"
@@ -975,12 +848,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-runtime@^7.16.4":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz#9d2a9dbf4e12644d6f46e5e75bfbf02b5d6e9194"
- integrity sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz#2e1da21ca597a7d01fc96b699b21d8d2023191aa"
+ integrity sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==
dependencies:
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-module-imports" "^7.21.4"
+ "@babel/helper-plugin-utils" "^7.20.2"
babel-plugin-polyfill-corejs2 "^0.3.3"
babel-plugin-polyfill-corejs3 "^0.6.0"
babel-plugin-polyfill-regenerator "^0.4.1"
@@ -993,13 +866,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-spread@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6"
- integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==
+"@babel/plugin-transform-spread@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e"
+ integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/plugin-transform-sticky-regex@^7.18.6":
version "7.18.6"
@@ -1022,13 +895,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
-"@babel/plugin-transform-typescript@^7.18.6":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.0.tgz#2c7ec62b8bfc21482f3748789ba294a46a375169"
- integrity sha512-xOAsAFaun3t9hCwZ13Qe7gq423UgMZ6zAgmLxeGGapFqlT/X3L5qT2btjiVLlFn7gWtMaVyceS5VxGAuKbgizw==
+"@babel/plugin-transform-typescript@^7.21.3":
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz#316c5be579856ea890a57ebc5116c5d064658f2b"
+ integrity sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.19.0"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-annotate-as-pure" "^7.18.6"
+ "@babel/helper-create-class-features-plugin" "^7.21.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-typescript" "^7.20.0"
"@babel/plugin-transform-unicode-escapes@^7.18.10":
@@ -1046,31 +920,31 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/preset-env@^7.11.0":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.20.2.tgz#9b1642aa47bb9f43a86f9630011780dab7f86506"
- integrity sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==
+"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.21.4.tgz#a952482e634a8dd8271a3fe5459a16eb10739c58"
+ integrity sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==
dependencies:
- "@babel/compat-data" "^7.20.1"
- "@babel/helper-compilation-targets" "^7.20.0"
+ "@babel/compat-data" "^7.21.4"
+ "@babel/helper-compilation-targets" "^7.21.4"
"@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-validator-option" "^7.18.6"
+ "@babel/helper-validator-option" "^7.21.0"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9"
- "@babel/plugin-proposal-async-generator-functions" "^7.20.1"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.20.7"
+ "@babel/plugin-proposal-async-generator-functions" "^7.20.7"
"@babel/plugin-proposal-class-properties" "^7.18.6"
- "@babel/plugin-proposal-class-static-block" "^7.18.6"
+ "@babel/plugin-proposal-class-static-block" "^7.21.0"
"@babel/plugin-proposal-dynamic-import" "^7.18.6"
"@babel/plugin-proposal-export-namespace-from" "^7.18.9"
"@babel/plugin-proposal-json-strings" "^7.18.6"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.20.7"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
"@babel/plugin-proposal-numeric-separator" "^7.18.6"
- "@babel/plugin-proposal-object-rest-spread" "^7.20.2"
+ "@babel/plugin-proposal-object-rest-spread" "^7.20.7"
"@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
- "@babel/plugin-proposal-optional-chaining" "^7.18.9"
+ "@babel/plugin-proposal-optional-chaining" "^7.21.0"
"@babel/plugin-proposal-private-methods" "^7.18.6"
- "@babel/plugin-proposal-private-property-in-object" "^7.18.6"
+ "@babel/plugin-proposal-private-property-in-object" "^7.21.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-class-properties" "^7.12.13"
@@ -1087,121 +961,40 @@
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-syntax-top-level-await" "^7.14.5"
- "@babel/plugin-transform-arrow-functions" "^7.18.6"
- "@babel/plugin-transform-async-to-generator" "^7.18.6"
+ "@babel/plugin-transform-arrow-functions" "^7.20.7"
+ "@babel/plugin-transform-async-to-generator" "^7.20.7"
"@babel/plugin-transform-block-scoped-functions" "^7.18.6"
- "@babel/plugin-transform-block-scoping" "^7.20.2"
- "@babel/plugin-transform-classes" "^7.20.2"
- "@babel/plugin-transform-computed-properties" "^7.18.9"
- "@babel/plugin-transform-destructuring" "^7.20.2"
+ "@babel/plugin-transform-block-scoping" "^7.21.0"
+ "@babel/plugin-transform-classes" "^7.21.0"
+ "@babel/plugin-transform-computed-properties" "^7.20.7"
+ "@babel/plugin-transform-destructuring" "^7.21.3"
"@babel/plugin-transform-dotall-regex" "^7.18.6"
"@babel/plugin-transform-duplicate-keys" "^7.18.9"
"@babel/plugin-transform-exponentiation-operator" "^7.18.6"
- "@babel/plugin-transform-for-of" "^7.18.8"
+ "@babel/plugin-transform-for-of" "^7.21.0"
"@babel/plugin-transform-function-name" "^7.18.9"
"@babel/plugin-transform-literals" "^7.18.9"
"@babel/plugin-transform-member-expression-literals" "^7.18.6"
- "@babel/plugin-transform-modules-amd" "^7.19.6"
- "@babel/plugin-transform-modules-commonjs" "^7.19.6"
- "@babel/plugin-transform-modules-systemjs" "^7.19.6"
+ "@babel/plugin-transform-modules-amd" "^7.20.11"
+ "@babel/plugin-transform-modules-commonjs" "^7.21.2"
+ "@babel/plugin-transform-modules-systemjs" "^7.20.11"
"@babel/plugin-transform-modules-umd" "^7.18.6"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.20.5"
"@babel/plugin-transform-new-target" "^7.18.6"
"@babel/plugin-transform-object-super" "^7.18.6"
- "@babel/plugin-transform-parameters" "^7.20.1"
+ "@babel/plugin-transform-parameters" "^7.21.3"
"@babel/plugin-transform-property-literals" "^7.18.6"
- "@babel/plugin-transform-regenerator" "^7.18.6"
+ "@babel/plugin-transform-regenerator" "^7.20.5"
"@babel/plugin-transform-reserved-words" "^7.18.6"
"@babel/plugin-transform-shorthand-properties" "^7.18.6"
- "@babel/plugin-transform-spread" "^7.19.0"
+ "@babel/plugin-transform-spread" "^7.20.7"
"@babel/plugin-transform-sticky-regex" "^7.18.6"
"@babel/plugin-transform-template-literals" "^7.18.9"
"@babel/plugin-transform-typeof-symbol" "^7.18.9"
"@babel/plugin-transform-unicode-escapes" "^7.18.10"
"@babel/plugin-transform-unicode-regex" "^7.18.6"
"@babel/preset-modules" "^0.1.5"
- "@babel/types" "^7.20.2"
- babel-plugin-polyfill-corejs2 "^0.3.3"
- babel-plugin-polyfill-corejs3 "^0.6.0"
- babel-plugin-polyfill-regenerator "^0.4.1"
- core-js-compat "^3.25.1"
- semver "^6.3.0"
-
-"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b"
- integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==
- dependencies:
- "@babel/compat-data" "^7.19.4"
- "@babel/helper-compilation-targets" "^7.19.3"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9"
- "@babel/plugin-proposal-async-generator-functions" "^7.19.1"
- "@babel/plugin-proposal-class-properties" "^7.18.6"
- "@babel/plugin-proposal-class-static-block" "^7.18.6"
- "@babel/plugin-proposal-dynamic-import" "^7.18.6"
- "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
- "@babel/plugin-proposal-json-strings" "^7.18.6"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
- "@babel/plugin-proposal-numeric-separator" "^7.18.6"
- "@babel/plugin-proposal-object-rest-spread" "^7.19.4"
- "@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
- "@babel/plugin-proposal-optional-chaining" "^7.18.9"
- "@babel/plugin-proposal-private-methods" "^7.18.6"
- "@babel/plugin-proposal-private-property-in-object" "^7.18.6"
- "@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/plugin-syntax-class-properties" "^7.12.13"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-import-assertions" "^7.18.6"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
- "@babel/plugin-syntax-top-level-await" "^7.14.5"
- "@babel/plugin-transform-arrow-functions" "^7.18.6"
- "@babel/plugin-transform-async-to-generator" "^7.18.6"
- "@babel/plugin-transform-block-scoped-functions" "^7.18.6"
- "@babel/plugin-transform-block-scoping" "^7.19.4"
- "@babel/plugin-transform-classes" "^7.19.0"
- "@babel/plugin-transform-computed-properties" "^7.18.9"
- "@babel/plugin-transform-destructuring" "^7.19.4"
- "@babel/plugin-transform-dotall-regex" "^7.18.6"
- "@babel/plugin-transform-duplicate-keys" "^7.18.9"
- "@babel/plugin-transform-exponentiation-operator" "^7.18.6"
- "@babel/plugin-transform-for-of" "^7.18.8"
- "@babel/plugin-transform-function-name" "^7.18.9"
- "@babel/plugin-transform-literals" "^7.18.9"
- "@babel/plugin-transform-member-expression-literals" "^7.18.6"
- "@babel/plugin-transform-modules-amd" "^7.18.6"
- "@babel/plugin-transform-modules-commonjs" "^7.18.6"
- "@babel/plugin-transform-modules-systemjs" "^7.19.0"
- "@babel/plugin-transform-modules-umd" "^7.18.6"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1"
- "@babel/plugin-transform-new-target" "^7.18.6"
- "@babel/plugin-transform-object-super" "^7.18.6"
- "@babel/plugin-transform-parameters" "^7.18.8"
- "@babel/plugin-transform-property-literals" "^7.18.6"
- "@babel/plugin-transform-regenerator" "^7.18.6"
- "@babel/plugin-transform-reserved-words" "^7.18.6"
- "@babel/plugin-transform-shorthand-properties" "^7.18.6"
- "@babel/plugin-transform-spread" "^7.19.0"
- "@babel/plugin-transform-sticky-regex" "^7.18.6"
- "@babel/plugin-transform-template-literals" "^7.18.9"
- "@babel/plugin-transform-typeof-symbol" "^7.18.9"
- "@babel/plugin-transform-unicode-escapes" "^7.18.10"
- "@babel/plugin-transform-unicode-regex" "^7.18.6"
- "@babel/preset-modules" "^0.1.5"
- "@babel/types" "^7.19.4"
+ "@babel/types" "^7.21.4"
babel-plugin-polyfill-corejs2 "^0.3.3"
babel-plugin-polyfill-corejs3 "^0.6.0"
babel-plugin-polyfill-regenerator "^0.4.1"
@@ -1232,97 +1025,57 @@
"@babel/plugin-transform-react-pure-annotations" "^7.18.6"
"@babel/preset-typescript@^7.16.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399"
- integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.21.4.tgz#b913ac8e6aa8932e47c21b01b4368d8aa239a529"
+ integrity sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-transform-typescript" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-validator-option" "^7.21.0"
+ "@babel/plugin-syntax-jsx" "^7.21.4"
+ "@babel/plugin-transform-modules-commonjs" "^7.21.2"
+ "@babel/plugin-transform-typescript" "^7.21.3"
-"@babel/runtime-corejs3@^7.10.2":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.20.0.tgz#56ef7af3cd23d1570969809a5a8782e774e0141a"
- integrity sha512-v1JH7PeAAGBEyTQM9TqojVl+b20zXtesFKCJHu50xMxZKD1fX0TKaKHPsZfFkXfs7D1M9M6Eeqg1FkJ3a0x2dA==
- dependencies:
- core-js-pure "^3.25.1"
- regenerator-runtime "^0.13.10"
+"@babel/regjsgen@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
-"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.9", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.0.tgz#824a9ef325ffde6f78056059db3168c08785e24a"
- integrity sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q==
- dependencies:
- regenerator-runtime "^0.13.10"
-
-"@babel/runtime@^7.11.2":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9"
- integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==
- dependencies:
- regenerator-runtime "^0.13.10"
-
-"@babel/runtime@^7.13.10":
- version "7.20.13"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b"
- integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==
+"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.14.6", "@babel/runtime@^7.16.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
+ integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
dependencies:
regenerator-runtime "^0.13.11"
-"@babel/template@^7.18.10", "@babel/template@^7.3.3":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
- integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
+"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
+ integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.18.10"
- "@babel/types" "^7.18.10"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
-"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.6", "@babel/traverse@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.0.tgz#538c4c6ce6255f5666eba02252a7b59fc2d5ed98"
- integrity sha512-5+cAXQNARgjRUK0JWu2UBwja4JLSO/rBMPJzpsKb+oBF5xlUuCfljQepS4XypBQoiigL0VQjTZy6WiONtUdScQ==
+"@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.4", "@babel/traverse@^7.7.2":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.4.tgz#a836aca7b116634e97a6ed99976236b3282c9d36"
+ integrity sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==
dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.0"
+ "@babel/code-frame" "^7.21.4"
+ "@babel/generator" "^7.21.4"
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
+ "@babel/helper-function-name" "^7.21.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.0"
- "@babel/types" "^7.20.0"
+ "@babel/parser" "^7.21.4"
+ "@babel/types" "^7.21.4"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/traverse@^7.20.1", "@babel/traverse@^7.7.2":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.1.tgz#9b15ccbf882f6d107eeeecf263fbcdd208777ec8"
- integrity sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.1"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.1"
- "@babel/types" "^7.20.0"
- debug "^4.1.0"
- globals "^11.1.0"
-
-"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.20.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479"
- integrity sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==
- dependencies:
- "@babel/helper-string-parser" "^7.19.4"
- "@babel/helper-validator-identifier" "^7.19.1"
- to-fast-properties "^2.0.0"
-
-"@babel/types@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.2.tgz#67ac09266606190f496322dbaff360fdaa5e7842"
- integrity sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==
+"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.4.tgz#2d5d6bb7908699b3b416409ffd3b5daa25b030d4"
+ integrity sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
@@ -1440,9 +1193,21 @@
integrity sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==
"@csstools/selector-specificity@^2.0.0", "@csstools/selector-specificity@^2.0.2":
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.0.2.tgz#1bfafe4b7ed0f3e4105837e056e0a89b108ebe36"
- integrity sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz#2cbcf822bf3764c9658c4d2e568bd0c0cb748016"
+ integrity sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==
+
+"@eslint-community/eslint-utils@^4.2.0":
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
+ integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
+ dependencies:
+ eslint-visitor-keys "^3.3.0"
+
+"@eslint-community/regexpp@^4.4.0":
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.0.tgz#f6f729b02feee2c749f57e334b7a1b5f40a81724"
+ integrity sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==
"@eslint/eslintrc@^0.4.3":
version "0.4.3"
@@ -1459,21 +1224,26 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"
-"@eslint/eslintrc@^1.3.3":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95"
- integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==
+"@eslint/eslintrc@^2.0.2":
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.2.tgz#01575e38707add677cf73ca1589abba8da899a02"
+ integrity sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
- espree "^9.4.0"
- globals "^13.15.0"
+ espree "^9.5.1"
+ globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.0"
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
+"@eslint/js@8.38.0":
+ version "8.38.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.38.0.tgz#73a8a0d8aa8a8e6fe270431c5e72ae91b5337892"
+ integrity sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==
+
"@excalidraw/eslint-config@1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@excalidraw/eslint-config/-/eslint-config-1.0.0.tgz#1cc527a88cfe20fd730496c1b631c3aecf9c825e"
@@ -1708,10 +1478,30 @@
resolved "https://registry.yarnpkg.com/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.4.1.tgz#600f2275ff54739ad5ac0102f1467b8963cd5f71"
integrity sha512-0yPjzuzGMkW1GkrC8yWsiN7vt1OzkMIi9HgxRmKREZl2wnNPOKo/yScTjXf/O57HM8dltqxPF6jlNLFVtc2qdw==
+"@floating-ui/core@^0.7.3":
+ version "0.7.3"
+ resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-0.7.3.tgz#d274116678ffae87f6b60e90f88cc4083eefab86"
+ integrity sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==
+
+"@floating-ui/dom@^0.5.3":
+ version "0.5.4"
+ resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-0.5.4.tgz#4eae73f78bcd4bd553ae2ade30e6f1f9c73fe3f1"
+ integrity sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==
+ dependencies:
+ "@floating-ui/core" "^0.7.3"
+
+"@floating-ui/react-dom@0.7.2":
+ version "0.7.2"
+ resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-0.7.2.tgz#0bf4ceccb777a140fc535c87eb5d6241c8e89864"
+ integrity sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==
+ dependencies:
+ "@floating-ui/dom" "^0.5.3"
+ use-isomorphic-layout-effect "^1.1.1"
+
"@grpc/grpc-js@^1.0.0":
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.7.3.tgz#f2ea79f65e31622d7f86d4b4c9ae38f13ccab99a"
- integrity sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==
+ version "1.8.13"
+ resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.8.13.tgz#e775685962909b76f8d4b813833c3d123867165b"
+ integrity sha512-iY3jsdfbc0ARoCLFvbvUB8optgyb0r1XLPb142u+QtgBcKJYkCIFt3Fd/881KqjLYWjsBJF57N3b8Eop9NDfUA==
dependencies:
"@grpc/proto-loader" "^0.7.0"
"@types/node" ">=12.12.47"
@@ -1725,9 +1515,9 @@
protobufjs "^6.8.6"
"@grpc/proto-loader@^0.7.0":
- version "0.7.3"
- resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.3.tgz#75a6f95b51b85c5078ac7394da93850c32d36bb8"
- integrity sha512-5dAvoZwna2Py3Ef96Ux9jIkp3iZ62TUsV00p3wVBPNX5K178UbNi8Q7gQVqwXT1Yq9RejIGG9G2IPEo93T6RcA==
+ version "0.7.6"
+ resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.6.tgz#b71fdf92b184af184b668c4e9395a5ddc23d61de"
+ integrity sha512-QyAXR8Hyh7uMDmveWxDSUcJr9NAWaZ2I6IXgAYvQmfflwouTM+rArE2eEaCtLlRqO81j7pRLCt81IefUei6Zbw==
dependencies:
"@types/long" "^4.0.1"
lodash.camelcase "^4.3.0"
@@ -1735,10 +1525,10 @@
protobufjs "^7.0.0"
yargs "^16.2.0"
-"@humanwhocodes/config-array@^0.11.6":
- version "0.11.7"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.7.tgz#38aec044c6c828f6ed51d5d7ae3d9b9faf6dbb0f"
- integrity sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==
+"@humanwhocodes/config-array@^0.11.8":
+ version "0.11.8"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
+ integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
debug "^4.1.1"
@@ -1847,12 +1637,12 @@
"@types/node" "*"
jest-mock "^27.5.1"
-"@jest/expect-utils@^29.2.2":
- version "29.2.2"
- resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.2.2.tgz#460a5b5a3caf84d4feb2668677393dd66ff98665"
- integrity sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==
+"@jest/expect-utils@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036"
+ integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==
dependencies:
- jest-get-type "^29.2.0"
+ jest-get-type "^29.4.3"
"@jest/fake-timers@^27.5.1":
version "27.5.1"
@@ -1913,12 +1703,12 @@
dependencies:
"@sinclair/typebox" "^0.24.1"
-"@jest/schemas@^29.0.0":
- version "29.0.0"
- resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.0.0.tgz#5f47f5994dd4ef067fb7b4188ceac45f77fe952a"
- integrity sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==
+"@jest/schemas@^29.4.3":
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788"
+ integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==
dependencies:
- "@sinclair/typebox" "^0.24.1"
+ "@sinclair/typebox" "^0.25.16"
"@jest/source-map@^27.5.1":
version "27.5.1"
@@ -2003,30 +1793,22 @@
"@types/yargs" "^17.0.8"
chalk "^4.0.0"
-"@jest/types@^29.2.1":
- version "29.2.1"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.2.1.tgz#ec9c683094d4eb754e41e2119d8bdaef01cf6da0"
- integrity sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw==
+"@jest/types@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593"
+ integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==
dependencies:
- "@jest/schemas" "^29.0.0"
+ "@jest/schemas" "^29.4.3"
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^17.0.8"
chalk "^4.0.0"
-"@jridgewell/gen-mapping@^0.1.0":
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
- integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
- dependencies:
- "@jridgewell/set-array" "^1.0.0"
- "@jridgewell/sourcemap-codec" "^1.4.10"
-
"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
- integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+ integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
@@ -2037,28 +1819,33 @@
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
-"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
+"@jridgewell/set-array@^1.0.1":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
"@jridgewell/source-map@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb"
- integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda"
+ integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
+"@jridgewell/sourcemap-codec@1.4.14":
version "1.4.14"
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
-"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9":
- version "0.3.17"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
- integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
+"@jridgewell/sourcemap-codec@^1.4.10":
+ version "1.4.15"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+
+"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.18"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
+ integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
dependencies:
"@jridgewell/resolve-uri" "3.1.0"
"@jridgewell/sourcemap-codec" "1.4.14"
@@ -2097,9 +1884,9 @@
fastq "^1.6.0"
"@pmmmwh/react-refresh-webpack-plugin@^0.5.3":
- version "0.5.9"
- resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.9.tgz#35aae6624a6270ca7ad755800b7eec417fa6f830"
- integrity sha512-7QV4cqUwhkDIHpMAZ9mestSJ2DMIotVTbOUwbiudhjCRTAWWKIaBecELiEM2LT3AHFeOAaHIcFu4dbXjX+9GBA==
+ version "0.5.10"
+ resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz#2eba163b8e7dbabb4ce3609ab5e32ab63dda3ef8"
+ integrity sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==
dependencies:
ansi-html-community "^0.0.8"
common-path-prefix "^3.0.0"
@@ -2107,7 +1894,7 @@
error-stack-parser "^2.0.6"
find-up "^5.0.0"
html-entities "^2.1.0"
- loader-utils "^2.0.3"
+ loader-utils "^2.0.4"
schema-utils "^3.0.0"
source-map "^0.7.3"
@@ -2171,6 +1958,14 @@
dependencies:
"@babel/runtime" "^7.13.10"
+"@radix-ui/react-arrow@1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-arrow/-/react-arrow-1.0.1.tgz#5246adf79e97f89e819af68da51ddcf349ecf1c4"
+ integrity sha512-1yientwXqXcErDHEv8av9ZVNEBldH8L9scVR3is20lL+jOCfcJyMFZFEY5cgIrgexsq1qggSXqiEL/d/4f+QXA==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/react-primitive" "1.0.1"
+
"@radix-ui/react-collection@1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@radix-ui/react-collection/-/react-collection-1.0.1.tgz#259506f97c6703b36291826768d3c1337edd1de5"
@@ -2203,6 +1998,35 @@
dependencies:
"@babel/runtime" "^7.13.10"
+"@radix-ui/react-dismissable-layer@1.0.2":
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.2.tgz#f04d1061bddf00b1ca304148516b9ddc62e45fb2"
+ integrity sha512-WjJzMrTWROozDqLB0uRWYvj4UuXsM/2L19EmQ3Au+IJWqwvwq9Bwd+P8ivo0Deg9JDPArR1I6MbWNi1CmXsskg==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/primitive" "1.0.0"
+ "@radix-ui/react-compose-refs" "1.0.0"
+ "@radix-ui/react-primitive" "1.0.1"
+ "@radix-ui/react-use-callback-ref" "1.0.0"
+ "@radix-ui/react-use-escape-keydown" "1.0.2"
+
+"@radix-ui/react-focus-guards@1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.0.tgz#339c1c69c41628c1a5e655f15f7020bf11aa01fa"
+ integrity sha512-UagjDk4ijOAnGu4WMUPj9ahi7/zJJqNZ9ZAiGPp7waUWJO0O1aWXi/udPphI0IUjvrhBsZJGSN66dR2dsueLWQ==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+
+"@radix-ui/react-focus-scope@1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.1.tgz#faea8c25f537c5a5c38c50914b63722db0e7f951"
+ integrity sha512-Ej2MQTit8IWJiS2uuujGUmxXjF/y5xZptIIQnyd2JHLwtV0R2j9NRVoRj/1j/gJ7e3REdaBw4Hjf4a1ImhkZcQ==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/react-compose-refs" "1.0.0"
+ "@radix-ui/react-primitive" "1.0.1"
+ "@radix-ui/react-use-callback-ref" "1.0.0"
+
"@radix-ui/react-id@1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.0.0.tgz#8d43224910741870a45a8c9d092f25887bb6d11e"
@@ -2211,6 +2035,53 @@
"@babel/runtime" "^7.13.10"
"@radix-ui/react-use-layout-effect" "1.0.0"
+"@radix-ui/react-popover@1.0.3":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-popover/-/react-popover-1.0.3.tgz#65ae2ee1fca2d7fd750308549eb8e0857c6160fe"
+ integrity sha512-YwedSukfWsyJs3/yP3yXUq44k4/JBe3jqU63Z8v2i19qZZ3dsx32oma17ztgclWPNuqp3A+Xa9UiDlZHyVX8Vg==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/primitive" "1.0.0"
+ "@radix-ui/react-compose-refs" "1.0.0"
+ "@radix-ui/react-context" "1.0.0"
+ "@radix-ui/react-dismissable-layer" "1.0.2"
+ "@radix-ui/react-focus-guards" "1.0.0"
+ "@radix-ui/react-focus-scope" "1.0.1"
+ "@radix-ui/react-id" "1.0.0"
+ "@radix-ui/react-popper" "1.1.0"
+ "@radix-ui/react-portal" "1.0.1"
+ "@radix-ui/react-presence" "1.0.0"
+ "@radix-ui/react-primitive" "1.0.1"
+ "@radix-ui/react-slot" "1.0.1"
+ "@radix-ui/react-use-controllable-state" "1.0.0"
+ aria-hidden "^1.1.1"
+ react-remove-scroll "2.5.5"
+
+"@radix-ui/react-popper@1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-popper/-/react-popper-1.1.0.tgz#2be7e4c0cd4581f54277ca33a981c9037d2a8e60"
+ integrity sha512-07U7jpI0dZcLRAxT7L9qs6HecSoPhDSJybF7mEGHJDBDv+ZoGCvIlva0s+WxMXwJEav+ckX3hAlXBtnHmuvlCQ==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@floating-ui/react-dom" "0.7.2"
+ "@radix-ui/react-arrow" "1.0.1"
+ "@radix-ui/react-compose-refs" "1.0.0"
+ "@radix-ui/react-context" "1.0.0"
+ "@radix-ui/react-primitive" "1.0.1"
+ "@radix-ui/react-use-callback-ref" "1.0.0"
+ "@radix-ui/react-use-layout-effect" "1.0.0"
+ "@radix-ui/react-use-rect" "1.0.0"
+ "@radix-ui/react-use-size" "1.0.0"
+ "@radix-ui/rect" "1.0.0"
+
+"@radix-ui/react-portal@1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-portal/-/react-portal-1.0.1.tgz#169c5a50719c2bb0079cf4c91a27aa6d37e5dd33"
+ integrity sha512-NY2vUWI5WENgAT1nfC6JS7RU5xRYBfjZVLq0HmgEN1Ezy3rk/UruMV4+Rd0F40PEaFC5SrLS1ixYvcYIQrb4Ig==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/react-primitive" "1.0.1"
+
"@radix-ui/react-presence@1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.0.tgz#814fe46df11f9a468808a6010e3f3ca7e0b2e84a"
@@ -2282,6 +2153,14 @@
"@babel/runtime" "^7.13.10"
"@radix-ui/react-use-callback-ref" "1.0.0"
+"@radix-ui/react-use-escape-keydown@1.0.2":
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.2.tgz#09ab6455ab240b4f0a61faf06d4e5132c4d639f6"
+ integrity sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/react-use-callback-ref" "1.0.0"
+
"@radix-ui/react-use-layout-effect@1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz#2fc19e97223a81de64cd3ba1dc42ceffd82374dc"
@@ -2289,6 +2168,29 @@
dependencies:
"@babel/runtime" "^7.13.10"
+"@radix-ui/react-use-rect@1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-rect/-/react-use-rect-1.0.0.tgz#b040cc88a4906b78696cd3a32b075ed5b1423b3e"
+ integrity sha512-TB7pID8NRMEHxb/qQJpvSt3hQU4sqNPM1VCTjTRjEOa7cEop/QMuq8S6fb/5Tsz64kqSvB9WnwsDHtjnrM9qew==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/rect" "1.0.0"
+
+"@radix-ui/react-use-size@1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-size/-/react-use-size-1.0.0.tgz#a0b455ac826749419f6354dc733e2ca465054771"
+ integrity sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/react-use-layout-effect" "1.0.0"
+
+"@radix-ui/rect@1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@radix-ui/rect/-/rect-1.0.0.tgz#0dc8e6a829ea2828d53cbc94b81793ba6383bf3c"
+ integrity sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+
"@rollup/plugin-babel@^5.2.0":
version "5.3.1"
resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283"
@@ -2398,10 +2300,15 @@
resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f"
integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==
+"@sinclair/typebox@^0.25.16":
+ version "0.25.24"
+ resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718"
+ integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==
+
"@sinonjs/commons@^1.7.0":
- version "1.8.3"
- resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d"
- integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==
+ version "1.8.6"
+ resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9"
+ integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==
dependencies:
type-detect "4.0.8"
@@ -2526,13 +2433,13 @@
loader-utils "^2.0.0"
"@testing-library/dom@^8.0.0":
- version "8.19.0"
- resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.19.0.tgz#bd3f83c217ebac16694329e413d9ad5fdcfd785f"
- integrity sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A==
+ version "8.20.0"
+ resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.0.tgz#914aa862cef0f5e89b98cc48e3445c4c921010f6"
+ integrity sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/runtime" "^7.12.5"
- "@types/aria-query" "^4.2.0"
+ "@types/aria-query" "^5.0.1"
aria-query "^5.0.0"
chalk "^4.1.0"
dom-accessibility-api "^0.5.9"
@@ -2578,29 +2485,18 @@
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
-"@types/aria-query@^4.2.0":
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz#ed4e0ad92306a704f9fb132a0cfcf77486dbe2bc"
- integrity sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==
+"@types/aria-query@^5.0.1":
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc"
+ integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==
-"@types/babel__core@^7.0.0":
- version "7.1.19"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460"
- integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==
+"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
+ version "7.20.0"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891"
+ integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==
dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
- "@types/babel__generator" "*"
- "@types/babel__template" "*"
- "@types/babel__traverse" "*"
-
-"@types/babel__core@^7.1.14":
- version "7.1.20"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.20.tgz#e168cdd612c92a2d335029ed62ac94c95b362359"
- integrity sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==
- dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
@@ -2621,9 +2517,9 @@
"@babel/types" "^7.0.0"
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.2.tgz#235bf339d17185bdec25e024ca19cce257cc7309"
- integrity sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==
+ version "7.18.3"
+ resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d"
+ integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==
dependencies:
"@babel/types" "^7.3.0"
@@ -2671,9 +2567,9 @@
"@types/estree" "*"
"@types/eslint@*", "@types/eslint@^7.29.0 || ^8.4.1":
- version "8.4.10"
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.10.tgz#19731b9685c19ed1552da7052b6f668ed7eb64bb"
- integrity sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==
+ version "8.37.0"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.37.0.tgz#29cebc6c2a3ac7fea7113207bf5a828fdf4d7ef1"
+ integrity sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
@@ -2693,29 +2589,29 @@
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40"
integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==
-"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18":
- version "4.17.31"
- resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz#a1139efeab4e7323834bb0226e62ac019f474b2f"
- integrity sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==
+"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33":
+ version "4.17.33"
+ resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz#de35d30a9d637dc1450ad18dd583d75d5733d543"
+ integrity sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==
dependencies:
"@types/node" "*"
"@types/qs" "*"
"@types/range-parser" "*"
"@types/express@*", "@types/express@^4.17.13":
- version "4.17.14"
- resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.14.tgz#143ea0557249bc1b3b54f15db4c81c3d4eb3569c"
- integrity sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==
+ version "4.17.17"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4"
+ integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==
dependencies:
"@types/body-parser" "*"
- "@types/express-serve-static-core" "^4.17.18"
+ "@types/express-serve-static-core" "^4.17.33"
"@types/qs" "*"
"@types/serve-static" "*"
"@types/graceful-fs@^4.1.2":
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
- integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
+ version "4.1.6"
+ resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae"
+ integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==
dependencies:
"@types/node" "*"
@@ -2725,9 +2621,9 @@
integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==
"@types/http-proxy@^1.17.8":
- version "1.17.9"
- resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a"
- integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==
+ version "1.17.10"
+ resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.10.tgz#e576c8e4a0cc5c6a138819025a88e167ebb38d6c"
+ integrity sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==
dependencies:
"@types/node" "*"
@@ -2751,9 +2647,9 @@
"@types/istanbul-lib-report" "*"
"@types/jest@*":
- version "29.2.0"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.2.0.tgz#fa98e08b46ab119f1a74a9552c48c589f5378a96"
- integrity sha512-KO7bPV21d65PKwv3LLsD8Jn3E05pjNjRZvkm+YTacWhVmykAb07wW6IkZUmQAltwQafNcDUEUrMO2h3jeBSisg==
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.0.tgz#337b90bbcfe42158f39c2fb5619ad044bbb518ac"
+ integrity sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==
dependencies:
expect "^29.0.0"
pretty-format "^29.0.0"
@@ -2784,9 +2680,9 @@
"@types/lodash" "*"
"@types/lodash@*":
- version "4.14.186"
- resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.186.tgz#862e5514dd7bd66ada6c70ee5fce844b06c8ee97"
- integrity sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw==
+ version "4.14.192"
+ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.192.tgz#5790406361a2852d332d41635d927f1600811285"
+ integrity sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==
"@types/long@^4.0.1":
version "4.0.2"
@@ -2799,9 +2695,9 @@
integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
"@types/node@*", "@types/node@>=12.12.47", "@types/node@>=13.7.0":
- version "18.11.8"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.8.tgz#16d222a58d4363a2a359656dd20b28414de5d265"
- integrity sha512-uGwPWlE0Hj972KkHtCDVwZ8O39GmyjfMane1Z3GUBGGnkZ2USDq7SxLpVIiIHpweY9DS0QTDH0Nw7RNBsAAZ5A==
+ version "18.15.11"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.11.tgz#b3b790f09cb1696cffcec605de025b088fa4225f"
+ integrity sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==
"@types/pako@1.0.3":
version "1.0.3"
@@ -2819,9 +2715,9 @@
integrity sha512-13SEyETRE5psd9bE0AmN+0M1tannde2fwHfLVaVIljkbL9V0OfFvKwCicyeDvVYLkmjQWEydbAlsDsmjrdyTOg==
"@types/prettier@^2.1.5":
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.1.tgz#dfd20e2dc35f027cdd6c1908e80a5ddc7499670e"
- integrity sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==
+ version "2.7.2"
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.2.tgz#6c2324641cc4ba050a8c710b2b251b377581fbf0"
+ integrity sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==
"@types/prop-types@*":
version "15.7.5"
@@ -2851,16 +2747,16 @@
"@types/react" "*"
"@types/react-dom@<18.0.0":
- version "17.0.18"
- resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.18.tgz#8f7af38f5d9b42f79162eea7492e5a1caff70dc2"
- integrity sha512-rLVtIfbwyur2iFKykP2w0pl/1unw26b5td16d5xMgp7/yjTHomkyxPYChFoCr/FtEX1lN9wY6lFj1qvKdS5kDw==
+ version "17.0.19"
+ resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.19.tgz#36feef3aa35d045cacd5ed60fe0eef5272f19492"
+ integrity sha512-PiYG40pnQRdPHnlf7tZnp0aQ6q9tspYr72vD61saO6zFCybLfMqwUCN0va1/P+86DXn18ZWeW30Bk7xlC5eEAQ==
dependencies:
"@types/react" "^17"
"@types/react@*":
- version "18.0.24"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.24.tgz#2f79ed5b27f08d05107aab45c17919754cc44c20"
- integrity sha512-wRJWT6ouziGUy+9uX0aW4YOJxAY0bG6/AOk5AW5QSvZqI7dk6VBIbXvcVgIw/W5Jrl24f77df98GEKTJGOLx7Q==
+ version "18.0.34"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.34.tgz#e553444a578f023e6e1ac499514688fb80b0a984"
+ integrity sha512-NO1UO8941541CJl1BeOXi8a9dNKFK09Gnru5ZJqkm4Q3/WoQJtHvmwt0VX0SB9YCEwe7TfSSxDuaNmx6H2BAIQ==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
@@ -2876,9 +2772,9 @@
csstype "^3.0.2"
"@types/react@^17":
- version "17.0.52"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.52.tgz#10d8b907b5c563ac014a541f289ae8eaa9bf2e9b"
- integrity sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==
+ version "17.0.57"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.57.tgz#341152f222222075caf020ae6e0e68b9b835404c"
+ integrity sha512-e4msYpu5QDxzNrXDHunU/VPyv2M1XemGG/p7kfCjUiPtlLDCWLGQfgAMng6YyisWYxZ09mYdQlmMnyS0NfZdEg==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
@@ -2902,9 +2798,9 @@
integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
"@types/scheduler@*":
- version "0.16.2"
- resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
- integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
+ version "0.16.3"
+ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5"
+ integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==
"@types/semver@^7.3.12":
version "7.3.13"
@@ -2919,9 +2815,9 @@
"@types/express" "*"
"@types/serve-static@*", "@types/serve-static@^1.13.10":
- version "1.15.0"
- resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.0.tgz#c7930ff61afb334e121a9da780aac0d9b8f34155"
- integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==
+ version "1.15.1"
+ resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d"
+ integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==
dependencies:
"@types/mime" "*"
"@types/node" "*"
@@ -2951,14 +2847,14 @@
"@types/jest" "*"
"@types/trusted-types@^2.0.2":
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz#fc25ad9943bcac11cceb8168db4f275e0e72e756"
- integrity sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.3.tgz#a136f83b0758698df454e328759dbd3d44555311"
+ integrity sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==
"@types/ws@^8.5.1":
- version "8.5.3"
- resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d"
- integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==
+ version "8.5.4"
+ resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.4.tgz#bb10e36116d6e570dd943735f86c933c1587b8a5"
+ integrity sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==
dependencies:
"@types/node" "*"
@@ -2968,107 +2864,108 @@
integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
"@types/yargs@^16.0.0":
- version "16.0.4"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
- integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
+ version "16.0.5"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.5.tgz#12cc86393985735a283e387936398c2f9e5f88e3"
+ integrity sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==
dependencies:
"@types/yargs-parser" "*"
"@types/yargs@^17.0.8":
- version "17.0.13"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.13.tgz#34cced675ca1b1d51fcf4d34c3c6f0fa142a5c76"
- integrity sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==
+ version "17.0.24"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902"
+ integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==
dependencies:
"@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^5.5.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.43.0.tgz#4a5248eb31b454715ddfbf8cfbf497529a0a78bc"
- integrity sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA==
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.58.0.tgz#b1d4b0ad20243269d020ef9bbb036a40b0849829"
+ integrity sha512-vxHvLhH0qgBd3/tW6/VccptSfc8FxPQIkmNTVLWcCOVqSBvqpnKkBTYrhcGlXfSnd78azwe+PsjYFj0X34/njA==
dependencies:
- "@typescript-eslint/scope-manager" "5.43.0"
- "@typescript-eslint/type-utils" "5.43.0"
- "@typescript-eslint/utils" "5.43.0"
+ "@eslint-community/regexpp" "^4.4.0"
+ "@typescript-eslint/scope-manager" "5.58.0"
+ "@typescript-eslint/type-utils" "5.58.0"
+ "@typescript-eslint/utils" "5.58.0"
debug "^4.3.4"
+ grapheme-splitter "^1.0.4"
ignore "^5.2.0"
natural-compare-lite "^1.4.0"
- regexpp "^3.2.0"
semver "^7.3.7"
tsutils "^3.21.0"
"@typescript-eslint/experimental-utils@^5.0.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.43.0.tgz#2fbea6ea89e59e780e42ca65bc39fc830db95ed4"
- integrity sha512-WkT637CumTJbm/hRbFfnHBMgfUYTKr08LitVsD7gQId7bi6rnkx3pu3jac67lmp5ObW4MpJ9SNFZAIOUB/Qbsw==
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.58.0.tgz#157af1376add1a945c4559eef25114f0a29f49e1"
+ integrity sha512-LA/sRPaynZlrlYxdefrZbMx8dqs/1Kc0yNG+XOk5CwwZx7tTv263ix3AJNioF0YBVt7hADpAUR20owl6pv4MIQ==
dependencies:
- "@typescript-eslint/utils" "5.43.0"
+ "@typescript-eslint/utils" "5.58.0"
"@typescript-eslint/parser@^5.5.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.43.0.tgz#9c86581234b88f2ba406f0b99a274a91c11630fd"
- integrity sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.58.0.tgz#2ac4464cf48bef2e3234cb178ede5af352dddbc6"
+ integrity sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==
dependencies:
- "@typescript-eslint/scope-manager" "5.43.0"
- "@typescript-eslint/types" "5.43.0"
- "@typescript-eslint/typescript-estree" "5.43.0"
+ "@typescript-eslint/scope-manager" "5.58.0"
+ "@typescript-eslint/types" "5.58.0"
+ "@typescript-eslint/typescript-estree" "5.58.0"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@5.43.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.43.0.tgz#566e46303392014d5d163704724872e1f2dd3c15"
- integrity sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==
+"@typescript-eslint/scope-manager@5.58.0":
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.58.0.tgz#5e023a48352afc6a87be6ce3c8e763bc9e2f0bc8"
+ integrity sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA==
dependencies:
- "@typescript-eslint/types" "5.43.0"
- "@typescript-eslint/visitor-keys" "5.43.0"
+ "@typescript-eslint/types" "5.58.0"
+ "@typescript-eslint/visitor-keys" "5.58.0"
-"@typescript-eslint/type-utils@5.43.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.43.0.tgz#91110fb827df5161209ecca06f70d19a96030be6"
- integrity sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==
+"@typescript-eslint/type-utils@5.58.0":
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.58.0.tgz#f7d5b3971483d4015a470d8a9e5b8a7d10066e52"
+ integrity sha512-FF5vP/SKAFJ+LmR9PENql7fQVVgGDOS+dq3j+cKl9iW/9VuZC/8CFmzIP0DLKXfWKpRHawJiG70rVH+xZZbp8w==
dependencies:
- "@typescript-eslint/typescript-estree" "5.43.0"
- "@typescript-eslint/utils" "5.43.0"
+ "@typescript-eslint/typescript-estree" "5.58.0"
+ "@typescript-eslint/utils" "5.58.0"
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/types@5.43.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.43.0.tgz#e4ddd7846fcbc074325293515fa98e844d8d2578"
- integrity sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==
+"@typescript-eslint/types@5.58.0":
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.58.0.tgz#54c490b8522c18986004df7674c644ffe2ed77d8"
+ integrity sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g==
-"@typescript-eslint/typescript-estree@5.43.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz#b6883e58ba236a602c334be116bfc00b58b3b9f2"
- integrity sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==
+"@typescript-eslint/typescript-estree@5.58.0":
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.58.0.tgz#4966e6ff57eaf6e0fce2586497edc097e2ab3e61"
+ integrity sha512-cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q==
dependencies:
- "@typescript-eslint/types" "5.43.0"
- "@typescript-eslint/visitor-keys" "5.43.0"
+ "@typescript-eslint/types" "5.58.0"
+ "@typescript-eslint/visitor-keys" "5.58.0"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/utils@5.43.0", "@typescript-eslint/utils@^5.13.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.43.0.tgz#00fdeea07811dbdf68774a6f6eacfee17fcc669f"
- integrity sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==
+"@typescript-eslint/utils@5.58.0", "@typescript-eslint/utils@^5.43.0":
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.58.0.tgz#430d7c95f23ec457b05be5520c1700a0dfd559d5"
+ integrity sha512-gAmLOTFXMXOC+zP1fsqm3VceKSBQJNzV385Ok3+yzlavNHZoedajjS4UyS21gabJYcobuigQPs/z71A9MdJFqQ==
dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
"@types/json-schema" "^7.0.9"
"@types/semver" "^7.3.12"
- "@typescript-eslint/scope-manager" "5.43.0"
- "@typescript-eslint/types" "5.43.0"
- "@typescript-eslint/typescript-estree" "5.43.0"
+ "@typescript-eslint/scope-manager" "5.58.0"
+ "@typescript-eslint/types" "5.58.0"
+ "@typescript-eslint/typescript-estree" "5.58.0"
eslint-scope "^5.1.1"
- eslint-utils "^3.0.0"
semver "^7.3.7"
-"@typescript-eslint/visitor-keys@5.43.0":
- version "5.43.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz#cbbdadfdfea385310a20a962afda728ea106befa"
- integrity sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==
+"@typescript-eslint/visitor-keys@5.58.0":
+ version "5.58.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.58.0.tgz#eb9de3a61d2331829e6761ce7fd13061781168b4"
+ integrity sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA==
dependencies:
- "@typescript-eslint/types" "5.43.0"
+ "@typescript-eslint/types" "5.58.0"
eslint-visitor-keys "^3.3.0"
"@webassemblyjs/ast@1.11.1":
@@ -3233,34 +3130,25 @@ acorn-jsx@^5.3.1, acorn-jsx@^5.3.2:
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-acorn-node@^1.8.2:
- version "1.8.2"
- resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8"
- integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==
- dependencies:
- acorn "^7.0.0"
- acorn-walk "^7.0.0"
- xtend "^4.0.2"
-
-acorn-walk@^7.0.0, acorn-walk@^7.1.1:
+acorn-walk@^7.1.1:
version "7.2.0"
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
-acorn@^7.0.0, acorn@^7.1.1, acorn@^7.4.0:
+acorn@^7.1.1, acorn@^7.4.0:
version "7.4.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
acorn@^8.2.4, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.0:
- version "8.8.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
- integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
+ version "8.8.2"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
+ integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
address@^1.0.1, address@^1.1.2:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/address/-/address-1.2.1.tgz#25bb61095b7522d65b357baa11bc05492d4c8acd"
- integrity sha512-B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e"
+ integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==
adjust-sourcemap-loader@^4.0.0:
version "4.0.0"
@@ -3319,20 +3207,10 @@ ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
-ajv@^8.0.0, ajv@^8.6.0, ajv@^8.8.0:
- version "8.11.2"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.2.tgz#aecb20b50607acf2569b6382167b65a96008bb78"
- integrity sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==
- dependencies:
- fast-deep-equal "^3.1.1"
- json-schema-traverse "^1.0.0"
- require-from-string "^2.0.2"
- uri-js "^4.2.2"
-
-ajv@^8.0.1:
- version "8.11.0"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f"
- integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==
+ajv@^8.0.0, ajv@^8.0.1, ajv@^8.6.0, ajv@^8.8.0:
+ version "8.12.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
+ integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
dependencies:
fast-deep-equal "^3.1.1"
json-schema-traverse "^1.0.0"
@@ -3390,10 +3268,15 @@ ansi-styles@^6.0.0:
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
+any-promise@^1.0.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
+ integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==
+
anymatch@^3.0.3, anymatch@~3.1.2:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
- integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
picomatch "^2.0.4"
@@ -3415,21 +3298,28 @@ argparse@^2.0.1:
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
-aria-query@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
- integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
+aria-hidden@^1.1.1:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954"
+ integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==
dependencies:
- "@babel/runtime" "^7.10.2"
- "@babel/runtime-corejs3" "^7.10.2"
+ tslib "^2.0.0"
-aria-query@^5.0.0:
+aria-query@^5.0.0, aria-query@^5.1.3:
version "5.1.3"
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e"
integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==
dependencies:
deep-equal "^2.0.5"
+array-buffer-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+ integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
+ dependencies:
+ call-bind "^1.0.2"
+ is-array-buffer "^3.0.1"
+
array-flatten@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
@@ -3440,18 +3330,7 @@ array-flatten@^2.1.2:
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
-array-includes@^3.1.4, array-includes@^3.1.5:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb"
- integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.19.5"
- get-intrinsic "^1.1.1"
- is-string "^1.0.7"
-
-array-includes@^3.1.6:
+array-includes@^3.1.5, array-includes@^3.1.6:
version "3.1.6"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
@@ -3467,14 +3346,14 @@ array-union@^2.1.0:
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
-array.prototype.flat@^1.2.5:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b"
- integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==
+array.prototype.flat@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2"
+ integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
es-shim-unscopables "^1.0.0"
array.prototype.flatmap@^1.3.1:
@@ -3487,14 +3366,14 @@ array.prototype.flatmap@^1.3.1:
es-abstract "^1.20.4"
es-shim-unscopables "^1.0.0"
-array.prototype.reduce@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz#8167e80089f78bff70a99e20bd4201d4663b0a6f"
- integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==
+array.prototype.reduce@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz#6b20b0daa9d9734dd6bc7ea66b5bbce395471eac"
+ integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
es-array-method-boxes-properly "^1.0.0"
is-string "^1.0.7"
@@ -3567,12 +3446,12 @@ atob@^2.1.2:
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
autoprefixer@^10.4.13:
- version "10.4.13"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8"
- integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==
+ version "10.4.14"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d"
+ integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==
dependencies:
- browserslist "^4.21.4"
- caniuse-lite "^1.0.30001426"
+ browserslist "^4.21.5"
+ caniuse-lite "^1.0.30001464"
fraction.js "^4.2.0"
normalize-range "^0.1.2"
picocolors "^1.0.0"
@@ -3583,15 +3462,17 @@ available-typed-arrays@^1.0.5:
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
-axe-core@^4.4.3:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.5.0.tgz#6efe2ecdba205fcc9d7ddb3d48c2cf630f70eb5e"
- integrity sha512-4+rr8eQ7+XXS5nZrKcMO/AikHL0hVqy+lHWAnE3xdHl+aguag8SOQ6eEqLexwLNWgXIMfunGuD3ON1/6Kyet0A==
+axe-core@^4.6.2:
+ version "4.6.3"
+ resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.6.3.tgz#fc0db6fdb65cc7a80ccf85286d91d64ababa3ece"
+ integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==
-axobject-query@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
- integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
+axobject-query@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1"
+ integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==
+ dependencies:
+ deep-equal "^2.0.5"
babel-jest@^27.4.2, babel-jest@^27.5.1:
version "27.5.1"
@@ -3810,9 +3691,9 @@ body-parser@1.20.1:
unpipe "1.0.0"
bonjour-service@^1.0.11:
- version "1.0.14"
- resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.0.14.tgz#c346f5bc84e87802d08f8d5a60b93f758e514ee7"
- integrity sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135"
+ integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==
dependencies:
array-flatten "^2.1.2"
dns-equal "^1.0.0"
@@ -3856,15 +3737,15 @@ browser-process-hrtime@^1.0.0:
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.6, browserslist@^4.18.1, browserslist@^4.21.3, browserslist@^4.21.4:
- version "4.21.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
- integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
+browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5:
+ version "4.21.5"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7"
+ integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==
dependencies:
- caniuse-lite "^1.0.30001400"
- electron-to-chromium "^1.4.251"
- node-releases "^2.0.6"
- update-browserslist-db "^1.0.9"
+ caniuse-lite "^1.0.30001449"
+ electron-to-chromium "^1.4.284"
+ node-releases "^2.0.8"
+ update-browserslist-db "^1.0.10"
bser@2.1.1:
version "2.1.1"
@@ -3939,15 +3820,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001400:
- version "1.0.30001427"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001427.tgz#d3a749f74be7ae0671fbec3a4eea18576e8ad646"
- integrity sha512-lfXQ73oB9c8DP5Suxaszm+Ta2sr/4tf8+381GkIm1MLj/YdLf+rEDyDSRCzeltuyTVGm+/s18gdZ0q+Wmp8VsQ==
-
-caniuse-lite@^1.0.30001426:
- version "1.0.30001431"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz#e7c59bd1bc518fae03a4656be442ce6c4887a795"
- integrity sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464:
+ version "1.0.30001478"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001478.tgz#0ef8a1cf8b16be47a0f9fc4ecfc952232724b32a"
+ integrity sha512-gMhDyXGItTHipJj2ApIvR+iVB5hd0KP3svMWWXDvZOmjzJJassGLMfxRkQCSYgGd2gtdL/ReeiyvMSFD1Ss6Mw==
case-sensitive-paths-webpack-plugin@^2.4.0:
version "2.4.0"
@@ -4008,9 +3884,9 @@ check-error@^1.0.2:
integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==
check-types@^11.1.1:
- version "11.1.2"
- resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.1.2.tgz#86a7c12bf5539f6324eb0e70ca8896c0e38f3e2f"
- integrity sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==
+ version "11.2.2"
+ resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.2.tgz#7afc0b6a860d686885062f2dba888ba5710335b4"
+ integrity sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==
"chokidar@>=3.0.0 <4.0.0", chokidar@^3.4.2, chokidar@^3.5.3:
version "3.5.3"
@@ -4033,9 +3909,9 @@ chrome-trace-event@^1.0.2:
integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
ci-info@^3.2.0:
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.5.0.tgz#bfac2a29263de4c829d806b1ab478e35091e171f"
- integrity sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91"
+ integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==
cjs-module-lexer@^1.0.0:
version "1.2.2"
@@ -4043,9 +3919,9 @@ cjs-module-lexer@^1.0.0:
integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==
clean-css@^5.2.2:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.1.tgz#d0610b0b90d125196a2894d35366f734e5d7aa32"
- integrity sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224"
+ integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==
dependencies:
source-map "~0.6.0"
@@ -4156,6 +4032,11 @@ commander@^2.20.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+commander@^4.0.0:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
+ integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
+
commander@^7.2.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
@@ -4239,9 +4120,9 @@ content-disposition@0.5.4:
safe-buffer "5.2.1"
content-type@~1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
- integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
+ integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.9.0"
@@ -4259,36 +4140,26 @@ cookie@0.5.0:
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
core-js-compat@^3.25.1:
- version "3.26.0"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.0.tgz#94e2cf8ba3e63800c4956ea298a6473bc9d62b44"
- integrity sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==
+ version "3.30.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.30.0.tgz#99aa2789f6ed2debfa1df3232784126ee97f4d80"
+ integrity sha512-P5A2h/9mRYZFIAP+5Ab8ns6083IyVpSclU74UNvbGVQ8VM7n3n3/g2yF3AkKQ9NXz2O+ioxLbEWKnDtgsFamhg==
dependencies:
- browserslist "^4.21.4"
+ browserslist "^4.21.5"
core-js-pure@^3.23.3:
- version "3.26.1"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.26.1.tgz#653f4d7130c427820dcecd3168b594e8bb095a33"
- integrity sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==
-
-core-js-pure@^3.25.1:
- version "3.26.0"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.26.0.tgz#7ad8a5dd7d910756f3124374b50026e23265ca9a"
- integrity sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==
+ version "3.30.0"
+ resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.30.0.tgz#41b6c42e5f363bd53d79999bd35093b17e42e1bf"
+ integrity sha512-+2KbMFGeBU0ln/csoPqTe0i/yfHbrd2EUhNMObsGtXMKS/RTtlkYyi+/3twLcevbgNR0yM/r0Psa3TEoQRpFMQ==
core-js@3.6.5:
version "3.6.5"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a"
integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==
-core-js@^3.19.2:
- version "3.26.1"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.26.1.tgz#7a9816dabd9ee846c1c0fe0e8fcad68f3709134e"
- integrity sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA==
-
-core-js@^3.4:
- version "3.26.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.26.0.tgz#a516db0ed0811be10eac5d94f3b8463d03faccfe"
- integrity sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==
+core-js@^3.19.2, core-js@^3.4:
+ version "3.30.0"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.30.0.tgz#64ac6f83bc7a49fd42807327051701d4b1478dea"
+ integrity sha512-hQotSSARoNh1mYPi9O2YaWeiq/cEB95kOrFb4NCrO4RIFt1qqNpKsaE+vy/L3oiqvND5cThqXzUU3r9F7Efztg==
core-util-is@~1.0.0:
version "1.0.3"
@@ -4312,9 +4183,9 @@ cosmiconfig@^6.0.0:
yaml "^1.7.2"
cosmiconfig@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
- integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
+ integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
dependencies:
"@types/parse-json" "^4.0.0"
import-fresh "^3.2.1"
@@ -4356,9 +4227,9 @@ css-blank-pseudo@^3.0.3:
postcss-selector-parser "^6.0.9"
css-declaration-sorter@^6.3.1:
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz#be5e1d71b7a992433fb1c542c7a1b835e45682ec"
- integrity sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==
+ version "6.4.0"
+ resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad"
+ integrity sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==
css-has-pseudo@^3.0.4:
version "3.0.4"
@@ -4368,12 +4239,12 @@ css-has-pseudo@^3.0.4:
postcss-selector-parser "^6.0.9"
css-loader@^6.5.1:
- version "6.7.2"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.2.tgz#26bc22401b5921686a10fbeba75d124228302304"
- integrity sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q==
+ version "6.7.3"
+ resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.3.tgz#1e8799f3ccc5874fdd55461af51137fcc5befbcd"
+ integrity sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==
dependencies:
icss-utils "^5.1.0"
- postcss "^8.4.18"
+ postcss "^8.4.19"
postcss-modules-extract-imports "^3.0.0"
postcss-modules-local-by-default "^4.0.0"
postcss-modules-scope "^3.0.0"
@@ -4465,9 +4336,9 @@ css@^3.0.0:
source-map-resolve "^0.6.0"
cssdb@^7.1.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.1.0.tgz#574f97235a83eb753a29f0b1f2cbacac0d628bb8"
- integrity sha512-Sd99PrFgx28ez4GHu8yoQIufc/70h9oYowDf4EjeIKi8mac9whxRjhM3IaMr6EllP6KKKWtJrMfN6C7T9tIWvQ==
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.5.4.tgz#e34dafee5184d67634604e345e389ca79ac179ea"
+ integrity sha512-fGD+J6Jlq+aurfE1VDXlLS4Pt0VtNlu2+YgfGOdMxRyl/HQ9bDiHTwSck1Yz8A97Dt/82izSK6Bp/4nVqacOsg==
cssesc@^3.0.0:
version "3.0.0"
@@ -4479,22 +4350,22 @@ cssfontparser@^1.2.1:
resolved "https://registry.yarnpkg.com/cssfontparser/-/cssfontparser-1.2.1.tgz#f4022fc8f9700c68029d542084afbaf425a3f3e3"
integrity sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==
-cssnano-preset-default@^5.2.13:
- version "5.2.13"
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz#e7353b0c57975d1bdd97ac96e68e5c1b8c68e990"
- integrity sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==
+cssnano-preset-default@^5.2.14:
+ version "5.2.14"
+ resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8"
+ integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==
dependencies:
css-declaration-sorter "^6.3.1"
cssnano-utils "^3.1.0"
postcss-calc "^8.2.3"
- postcss-colormin "^5.3.0"
+ postcss-colormin "^5.3.1"
postcss-convert-values "^5.1.3"
postcss-discard-comments "^5.1.2"
postcss-discard-duplicates "^5.1.0"
postcss-discard-empty "^5.1.1"
postcss-discard-overridden "^5.1.0"
postcss-merge-longhand "^5.1.7"
- postcss-merge-rules "^5.1.3"
+ postcss-merge-rules "^5.1.4"
postcss-minify-font-values "^5.1.0"
postcss-minify-gradients "^5.1.1"
postcss-minify-params "^5.1.4"
@@ -4509,7 +4380,7 @@ cssnano-preset-default@^5.2.13:
postcss-normalize-url "^5.1.0"
postcss-normalize-whitespace "^5.1.1"
postcss-ordered-values "^5.1.3"
- postcss-reduce-initial "^5.1.1"
+ postcss-reduce-initial "^5.1.2"
postcss-reduce-transforms "^5.1.0"
postcss-svgo "^5.1.0"
postcss-unique-selectors "^5.1.1"
@@ -4520,11 +4391,11 @@ cssnano-utils@^3.1.0:
integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
cssnano@^5.0.6:
- version "5.1.14"
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.14.tgz#07b0af6da73641276fe5a6d45757702ebae2eb05"
- integrity sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==
+ version "5.1.15"
+ resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf"
+ integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==
dependencies:
- cssnano-preset-default "^5.2.13"
+ cssnano-preset-default "^5.2.14"
lilconfig "^2.0.3"
yaml "^1.10.2"
@@ -4553,9 +4424,9 @@ cssstyle@^2.3.0:
cssom "~0.3.6"
csstype@^3.0.2:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9"
- integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
+ integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
damerau-levenshtein@^1.0.8:
version "1.0.8"
@@ -4571,7 +4442,7 @@ data-urls@^2.0.0:
whatwg-mimetype "^2.3.0"
whatwg-url "^8.0.0"
-debug@2.6.9, debug@^2.6.0, debug@^2.6.9:
+debug@2.6.9, debug@^2.6.0:
version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
@@ -4600,9 +4471,9 @@ debug@~3.1.0:
ms "2.0.0"
decimal.js@^10.2.1:
- version "10.4.2"
- resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.2.tgz#0341651d1d997d86065a2ce3a441fbd0d8e8b98e"
- integrity sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==
+ version "10.4.3"
+ resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23"
+ integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==
decode-uri-component@^0.2.0:
version "0.2.2"
@@ -4622,25 +4493,27 @@ deep-eql@^3.0.1:
type-detect "^4.0.0"
deep-equal@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.0.5.tgz#55cd2fe326d83f9cbf7261ef0e060b3f724c5cb9"
- integrity sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.0.tgz#5caeace9c781028b9ff459f33b779346637c43e6"
+ integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==
dependencies:
- call-bind "^1.0.0"
- es-get-iterator "^1.1.1"
- get-intrinsic "^1.0.1"
- is-arguments "^1.0.4"
- is-date-object "^1.0.2"
- is-regex "^1.1.1"
+ call-bind "^1.0.2"
+ es-get-iterator "^1.1.2"
+ get-intrinsic "^1.1.3"
+ is-arguments "^1.1.1"
+ is-array-buffer "^3.0.1"
+ is-date-object "^1.0.5"
+ is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
isarray "^2.0.5"
- object-is "^1.1.4"
+ object-is "^1.1.5"
object-keys "^1.1.1"
- object.assign "^4.1.2"
- regexp.prototype.flags "^1.3.0"
- side-channel "^1.0.3"
- which-boxed-primitive "^1.0.1"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.4.3"
+ side-channel "^1.0.4"
+ which-boxed-primitive "^1.0.2"
which-collection "^1.0.1"
- which-typed-array "^1.1.2"
+ which-typed-array "^1.1.9"
deep-is@^0.1.3, deep-is@~0.1.3:
version "0.1.4"
@@ -4648,9 +4521,9 @@ deep-is@^0.1.3, deep-is@~0.1.3:
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
deepmerge@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
- integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
+ integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
default-gateway@^6.0.3:
version "6.0.3"
@@ -4665,18 +4538,13 @@ define-lazy-prop@^2.0.0:
integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
define-properties@^1.1.3, define-properties@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
- integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5"
+ integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==
dependencies:
has-property-descriptors "^1.0.0"
object-keys "^1.1.1"
-defined@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf"
- integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==
-
delayed-stream@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
@@ -4702,6 +4570,11 @@ detect-newline@^3.0.0:
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
+detect-node-es@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493"
+ integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==
+
detect-node@^2.0.4:
version "2.1.0"
resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1"
@@ -4715,15 +4588,6 @@ detect-port-alt@^1.1.6:
address "^1.0.1"
debug "^2.6.0"
-detective@^5.2.1:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034"
- integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==
- dependencies:
- acorn-node "^1.8.2"
- defined "^1.0.0"
- minimist "^1.2.6"
-
didyoumean@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
@@ -4734,10 +4598,10 @@ diff-sequences@^27.5.1:
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327"
integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==
-diff-sequences@^29.2.0:
- version "29.2.0"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.2.0.tgz#4c55b5b40706c7b5d2c5c75999a50c56d214e8f6"
- integrity sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw==
+diff-sequences@^29.4.3:
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2"
+ integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==
dir-glob@^3.0.1:
version "3.0.1"
@@ -4757,9 +4621,9 @@ dns-equal@^1.0.0:
integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
dns-packet@^5.2.2:
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b"
- integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.5.0.tgz#f59cbf3396c130957c56a6ad5fd3959ccdc30065"
+ integrity sha512-USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA==
dependencies:
"@leichtgewicht/ip-codec" "^2.0.1"
@@ -4778,9 +4642,9 @@ doctrine@^3.0.0:
esutils "^2.0.2"
dom-accessibility-api@^0.5.6, dom-accessibility-api@^0.5.9:
- version "0.5.14"
- resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.14.tgz#56082f71b1dc7aac69d83c4285eef39c15d93f56"
- integrity sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==
+ version "0.5.16"
+ resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453"
+ integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==
dom-converter@^0.2.0:
version "0.2.0"
@@ -4898,16 +4762,16 @@ ee-first@1.1.1:
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
ejs@^3.1.6:
- version "3.1.8"
- resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b"
- integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==
+ version "3.1.9"
+ resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361"
+ integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==
dependencies:
jake "^10.8.5"
-electron-to-chromium@^1.4.251:
- version "1.4.284"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
- integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
+electron-to-chromium@^1.4.284:
+ version "1.4.359"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.359.tgz#5c4d13cb08032469fcd6bd36457915caa211356b"
+ integrity sha512-OoVcngKCIuNXtZnsYoqlCvr0Cf3NIPzDIgwUfI9bdTFjXCrr79lI0kwQstLPZ7WhCezLlGksZk/BFAzoXC7GDw==
emittery@^0.10.2:
version "0.10.2"
@@ -4968,9 +4832,9 @@ engine.io-parser@~2.2.0:
has-binary2 "~1.0.2"
enhanced-resolve@^5.10.0:
- version "5.10.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6"
- integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==
+ version "5.12.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634"
+ integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.2.0"
@@ -5001,60 +4865,80 @@ error-stack-parser@^2.0.6:
dependencies:
stackframe "^1.3.4"
-es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.0, es-abstract@^1.20.1, es-abstract@^1.20.4:
- version "1.20.4"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"
- integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
+es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.20.4:
+ version "1.21.2"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff"
+ integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==
dependencies:
+ array-buffer-byte-length "^1.0.0"
+ available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
+ es-set-tostringtag "^2.0.1"
es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
function.prototype.name "^1.1.5"
- get-intrinsic "^1.1.3"
+ get-intrinsic "^1.2.0"
get-symbol-description "^1.0.0"
+ globalthis "^1.0.3"
+ gopd "^1.0.1"
has "^1.0.3"
has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
- internal-slot "^1.0.3"
+ internal-slot "^1.0.5"
+ is-array-buffer "^3.0.2"
is-callable "^1.2.7"
is-negative-zero "^2.0.2"
is-regex "^1.1.4"
is-shared-array-buffer "^1.0.2"
is-string "^1.0.7"
+ is-typed-array "^1.1.10"
is-weakref "^1.0.2"
- object-inspect "^1.12.2"
+ object-inspect "^1.12.3"
object-keys "^1.1.1"
object.assign "^4.1.4"
regexp.prototype.flags "^1.4.3"
safe-regex-test "^1.0.0"
- string.prototype.trimend "^1.0.5"
- string.prototype.trimstart "^1.0.5"
+ string.prototype.trim "^1.2.7"
+ string.prototype.trimend "^1.0.6"
+ string.prototype.trimstart "^1.0.6"
+ typed-array-length "^1.0.4"
unbox-primitive "^1.0.2"
+ which-typed-array "^1.1.9"
es-array-method-boxes-properly@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
-es-get-iterator@^1.1.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz#9234c54aba713486d7ebde0220864af5e2b283f7"
- integrity sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==
+es-get-iterator@^1.1.2:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6"
+ integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==
dependencies:
call-bind "^1.0.2"
- get-intrinsic "^1.1.0"
- has-symbols "^1.0.1"
- is-arguments "^1.1.0"
+ get-intrinsic "^1.1.3"
+ has-symbols "^1.0.3"
+ is-arguments "^1.1.1"
is-map "^2.0.2"
is-set "^2.0.2"
- is-string "^1.0.5"
+ is-string "^1.0.7"
isarray "^2.0.5"
+ stop-iteration-iterator "^1.0.0"
es-module-lexer@^0.9.0:
version "0.9.3"
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19"
integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==
+es-set-tostringtag@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
+ integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
+ dependencies:
+ get-intrinsic "^1.1.3"
+ has "^1.0.3"
+ has-tostringtag "^1.0.0"
+
es-shim-unscopables@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
@@ -5133,15 +5017,16 @@ eslint-config-react-app@^7.0.1:
eslint-plugin-react-hooks "^4.3.0"
eslint-plugin-testing-library "^5.0.1"
-eslint-import-resolver-node@^0.3.6:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
- integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
+eslint-import-resolver-node@^0.3.7:
+ version "0.3.7"
+ resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7"
+ integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==
dependencies:
debug "^3.2.7"
- resolve "^1.20.0"
+ is-core-module "^2.11.0"
+ resolve "^1.22.1"
-eslint-module-utils@^2.7.3:
+eslint-module-utils@^2.7.4:
version "2.7.4"
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974"
integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==
@@ -5157,22 +5042,24 @@ eslint-plugin-flowtype@^8.0.3:
string-natural-compare "^3.0.1"
eslint-plugin-import@^2.25.3:
- version "2.26.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b"
- integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==
+ version "2.27.5"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65"
+ integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==
dependencies:
- array-includes "^3.1.4"
- array.prototype.flat "^1.2.5"
- debug "^2.6.9"
+ array-includes "^3.1.6"
+ array.prototype.flat "^1.3.1"
+ array.prototype.flatmap "^1.3.1"
+ debug "^3.2.7"
doctrine "^2.1.0"
- eslint-import-resolver-node "^0.3.6"
- eslint-module-utils "^2.7.3"
+ eslint-import-resolver-node "^0.3.7"
+ eslint-module-utils "^2.7.4"
has "^1.0.3"
- is-core-module "^2.8.1"
+ is-core-module "^2.11.0"
is-glob "^4.0.3"
minimatch "^3.1.2"
- object.values "^1.1.5"
- resolve "^1.22.0"
+ object.values "^1.1.6"
+ resolve "^1.22.1"
+ semver "^6.3.0"
tsconfig-paths "^3.14.1"
eslint-plugin-jest@^25.3.0:
@@ -5183,22 +5070,25 @@ eslint-plugin-jest@^25.3.0:
"@typescript-eslint/experimental-utils" "^5.0.0"
eslint-plugin-jsx-a11y@^6.5.1:
- version "6.6.1"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff"
- integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==
+ version "6.7.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976"
+ integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==
dependencies:
- "@babel/runtime" "^7.18.9"
- aria-query "^4.2.2"
- array-includes "^3.1.5"
+ "@babel/runtime" "^7.20.7"
+ aria-query "^5.1.3"
+ array-includes "^3.1.6"
+ array.prototype.flatmap "^1.3.1"
ast-types-flow "^0.0.7"
- axe-core "^4.4.3"
- axobject-query "^2.2.0"
+ axe-core "^4.6.2"
+ axobject-query "^3.1.1"
damerau-levenshtein "^1.0.8"
emoji-regex "^9.2.2"
has "^1.0.3"
- jsx-ast-utils "^3.3.2"
- language-tags "^1.0.5"
+ jsx-ast-utils "^3.3.3"
+ language-tags "=1.0.5"
minimatch "^3.1.2"
+ object.entries "^1.1.6"
+ object.fromentries "^2.0.6"
semver "^6.3.0"
eslint-plugin-prettier@3.3.1:
@@ -5214,9 +5104,9 @@ eslint-plugin-react-hooks@^4.3.0:
integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
eslint-plugin-react@^7.27.1:
- version "7.31.11"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz#011521d2b16dcf95795df688a4770b4eaab364c8"
- integrity sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==
+ version "7.32.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10"
+ integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==
dependencies:
array-includes "^3.1.6"
array.prototype.flatmap "^1.3.1"
@@ -5230,16 +5120,16 @@ eslint-plugin-react@^7.27.1:
object.hasown "^1.1.2"
object.values "^1.1.6"
prop-types "^15.8.1"
- resolve "^2.0.0-next.3"
+ resolve "^2.0.0-next.4"
semver "^6.3.0"
string.prototype.matchall "^4.0.8"
eslint-plugin-testing-library@^5.0.1:
- version "5.9.1"
- resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.9.1.tgz#12e4bd34c48683ee98af4df2e3318ec9f51dcf8a"
- integrity sha512-6BQp3tmb79jLLasPHJmy8DnxREe+2Pgf7L+7o09TSWPfdqqtQfRZmZNetr5mOs3yqZk/MRNxpN3RUpJe0wB4LQ==
+ version "5.10.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.2.tgz#12f231ad9b52b6aef45c801fd00aa129a932e0c2"
+ integrity sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==
dependencies:
- "@typescript-eslint/utils" "^5.13.0"
+ "@typescript-eslint/utils" "^5.43.0"
eslint-scope@5.1.1, eslint-scope@^5.1.1:
version "5.1.1"
@@ -5264,13 +5154,6 @@ eslint-utils@^2.1.0:
dependencies:
eslint-visitor-keys "^1.1.0"
-eslint-utils@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
- integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
- dependencies:
- eslint-visitor-keys "^2.0.0"
-
eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
@@ -5281,10 +5164,10 @@ eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
-eslint-visitor-keys@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
- integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
+eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc"
+ integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==
eslint-webpack-plugin@^3.1.1:
version "3.2.0"
@@ -5344,12 +5227,15 @@ eslint@^7.32.0:
v8-compile-cache "^2.0.3"
eslint@^8.3.0:
- version "8.28.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.28.0.tgz#81a680732634677cc890134bcdd9fdfea8e63d6e"
- integrity sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==
+ version "8.38.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.38.0.tgz#a62c6f36e548a5574dd35728ac3c6209bd1e2f1a"
+ integrity sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==
dependencies:
- "@eslint/eslintrc" "^1.3.3"
- "@humanwhocodes/config-array" "^0.11.6"
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.4.0"
+ "@eslint/eslintrc" "^2.0.2"
+ "@eslint/js" "8.38.0"
+ "@humanwhocodes/config-array" "^0.11.8"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
ajv "^6.10.0"
@@ -5359,16 +5245,15 @@ eslint@^8.3.0:
doctrine "^3.0.0"
escape-string-regexp "^4.0.0"
eslint-scope "^7.1.1"
- eslint-utils "^3.0.0"
- eslint-visitor-keys "^3.3.0"
- espree "^9.4.0"
- esquery "^1.4.0"
+ eslint-visitor-keys "^3.4.0"
+ espree "^9.5.1"
+ esquery "^1.4.2"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
find-up "^5.0.0"
glob-parent "^6.0.2"
- globals "^13.15.0"
+ globals "^13.19.0"
grapheme-splitter "^1.0.4"
ignore "^5.2.0"
import-fresh "^3.0.0"
@@ -5383,7 +5268,6 @@ eslint@^8.3.0:
minimatch "^3.1.2"
natural-compare "^1.4.0"
optionator "^0.9.1"
- regexpp "^3.2.0"
strip-ansi "^6.0.1"
strip-json-comments "^3.1.0"
text-table "^0.2.0"
@@ -5397,24 +5281,24 @@ espree@^7.3.0, espree@^7.3.1:
acorn-jsx "^5.3.1"
eslint-visitor-keys "^1.3.0"
-espree@^9.4.0:
- version "9.4.1"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd"
- integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
+espree@^9.5.1:
+ version "9.5.1"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.1.tgz#4f26a4d5f18905bf4f2e0bd99002aab807e96dd4"
+ integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==
dependencies:
acorn "^8.8.0"
acorn-jsx "^5.3.2"
- eslint-visitor-keys "^3.3.0"
+ eslint-visitor-keys "^3.4.0"
esprima@^4.0.0, esprima@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esquery@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
- integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
+esquery@^1.4.0, esquery@^1.4.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+ integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
dependencies:
estraverse "^5.1.0"
@@ -5491,15 +5375,15 @@ expect@^27.5.1:
jest-message-util "^27.5.1"
expect@^29.0.0:
- version "29.2.2"
- resolved "https://registry.yarnpkg.com/expect/-/expect-29.2.2.tgz#ba2dd0d7e818727710324a6e7f13dd0e6d086106"
- integrity sha512-hE09QerxZ5wXiOhqkXy5d2G9ar+EqOyifnCXCpMNu+vZ6DG9TJ6CO2c2kPDSLqERTTWrO7OZj8EkYHQqSd78Yw==
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7"
+ integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==
dependencies:
- "@jest/expect-utils" "^29.2.2"
- jest-get-type "^29.2.0"
- jest-matcher-utils "^29.2.2"
- jest-message-util "^29.2.1"
- jest-util "^29.2.1"
+ "@jest/expect-utils" "^29.5.0"
+ jest-get-type "^29.4.3"
+ jest-matcher-utils "^29.5.0"
+ jest-message-util "^29.5.0"
+ jest-util "^29.5.0"
express@^4.17.3:
version "4.18.2"
@@ -5577,9 +5461,9 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
fastq@^1.6.0:
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
- integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
+ version "1.15.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a"
+ integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
dependencies:
reusify "^1.0.4"
@@ -5729,9 +5613,9 @@ for-each@^0.3.3:
is-callable "^1.1.3"
fork-ts-checker-webpack-plugin@^6.5.0:
- version "6.5.2"
- resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz#4f67183f2f9eb8ba7df7177ce3cf3e75cdafb340"
- integrity sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==
+ version "6.5.3"
+ resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz#eda2eff6e22476a2688d10661688c47f611b37f3"
+ integrity sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==
dependencies:
"@babel/code-frame" "^7.8.3"
"@types/json-schema" "^7.0.5"
@@ -5845,15 +5729,20 @@ get-func-name@^2.0.0:
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==
-get-intrinsic@^1.0.1, get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
- integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f"
+ integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==
dependencies:
function-bind "^1.1.1"
has "^1.0.3"
has-symbols "^1.0.3"
+get-nonce@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3"
+ integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==
+
get-own-enumerable-property-symbols@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
@@ -5896,6 +5785,18 @@ glob-to-regexp@^0.4.1:
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+glob@7.1.6:
+ version "7.1.6"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
+ integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
@@ -5929,19 +5830,19 @@ globals@^11.1.0:
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-globals@^13.15.0:
- version "13.18.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.18.0.tgz#fb224daeeb2bb7d254cd2c640f003528b8d0c1dc"
- integrity sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==
+globals@^13.19.0, globals@^13.6.0, globals@^13.9.0:
+ version "13.20.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82"
+ integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==
dependencies:
type-fest "^0.20.2"
-globals@^13.6.0, globals@^13.9.0:
- version "13.17.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4"
- integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==
+globalthis@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+ integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
dependencies:
- type-fest "^0.20.2"
+ define-properties "^1.1.3"
globby@^11.0.4, globby@^11.1.0:
version "11.1.0"
@@ -5960,10 +5861,17 @@ glur@^1.1.2:
resolved "https://registry.yarnpkg.com/glur/-/glur-1.1.2.tgz#f20ea36db103bfc292343921f1f91e83c3467689"
integrity sha512-l+8esYHTKOx2G/Aao4lEQ0bnHWg4fWtJbVoZZT9Knxi01pB8C80BR85nONLFwkkQoFRCmXY+BUcGZN3yZ2QsRA==
+gopd@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+ integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+ dependencies:
+ get-intrinsic "^1.1.3"
+
graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
- version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
- integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
grapheme-splitter@^1.0.4:
version "1.0.4"
@@ -6021,6 +5929,11 @@ has-property-descriptors@^1.0.0:
dependencies:
get-intrinsic "^1.1.1"
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
@@ -6271,9 +6184,9 @@ ignore@^4.0.6:
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
ignore@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
- integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
+ version "5.2.4"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+ integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
image-blob-reduce@3.0.1:
version "3.0.1"
@@ -6288,14 +6201,14 @@ immediate@~3.0.5:
integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==
immer@^9.0.7:
- version "9.0.16"
- resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.16.tgz#8e7caab80118c2b54b37ad43e05758cdefad0198"
- integrity sha512-qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ==
+ version "9.0.21"
+ resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176"
+ integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==
immutable@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.1.0.tgz#f795787f0db780183307b9eb2091fcac1f6fafef"
- integrity sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.0.tgz#eb1738f14ffb39fd068b1dbe1296117484dd34be"
+ integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==
import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
version "3.3.0"
@@ -6351,15 +6264,22 @@ ini@^1.3.5:
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-internal-slot@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
- integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
+internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
+ integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
dependencies:
- get-intrinsic "^1.1.0"
+ get-intrinsic "^1.2.0"
has "^1.0.3"
side-channel "^1.0.4"
+invariant@^2.2.4:
+ version "2.2.4"
+ resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+ integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+ dependencies:
+ loose-envify "^1.0.0"
+
ipaddr.js@1.9.1:
version "1.9.1"
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
@@ -6370,7 +6290,7 @@ ipaddr.js@^2.0.1:
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0"
integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==
-is-arguments@^1.0.4, is-arguments@^1.1.0:
+is-arguments@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
@@ -6378,6 +6298,15 @@ is-arguments@^1.0.4, is-arguments@^1.1.0:
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
+is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+ integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ is-typed-array "^1.1.10"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
@@ -6410,14 +6339,14 @@ is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
-is-core-module@^2.8.1, is-core-module@^2.9.0:
- version "2.11.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144"
- integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
+is-core-module@^2.11.0, is-core-module@^2.9.0:
+ version "2.12.0"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4"
+ integrity sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==
dependencies:
has "^1.0.3"
-is-date-object@^1.0.1, is-date-object@^1.0.2:
+is-date-object@^1.0.1, is-date-object@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
@@ -6503,7 +6432,7 @@ is-potential-custom-element-name@^1.0.1:
resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
-is-regex@^1.1.1, is-regex@^1.1.4:
+is-regex@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
@@ -6552,15 +6481,15 @@ is-symbol@^1.0.2, is-symbol@^1.0.3:
dependencies:
has-symbols "^1.0.2"
-is-typed-array@^1.1.9:
- version "1.1.9"
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67"
- integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==
+is-typed-array@^1.1.10, is-typed-array@^1.1.9:
+ version "1.1.10"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
+ integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
dependencies:
available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
- es-abstract "^1.20.0"
for-each "^0.3.3"
+ gopd "^1.0.1"
has-tostringtag "^1.0.0"
is-typedarray@^1.0.0:
@@ -6767,15 +6696,15 @@ jest-diff@^27.0.0, jest-diff@^27.5.1:
jest-get-type "^27.5.1"
pretty-format "^27.5.1"
-jest-diff@^29.2.1:
- version "29.2.1"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.2.1.tgz#027e42f5a18b693fb2e88f81b0ccab533c08faee"
- integrity sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==
+jest-diff@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63"
+ integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==
dependencies:
chalk "^4.0.0"
- diff-sequences "^29.2.0"
- jest-get-type "^29.2.0"
- pretty-format "^29.2.1"
+ diff-sequences "^29.4.3"
+ jest-get-type "^29.4.3"
+ pretty-format "^29.5.0"
jest-docblock@^27.5.1:
version "27.5.1"
@@ -6825,10 +6754,10 @@ jest-get-type@^27.5.1:
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1"
integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==
-jest-get-type@^29.2.0:
- version "29.2.0"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.2.0.tgz#726646f927ef61d583a3b3adb1ab13f3a5036408"
- integrity sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==
+jest-get-type@^29.4.3:
+ version "29.4.3"
+ resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5"
+ integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==
jest-haste-map@^27.5.1:
version "27.5.1"
@@ -6891,15 +6820,15 @@ jest-matcher-utils@^27.5.1:
jest-get-type "^27.5.1"
pretty-format "^27.5.1"
-jest-matcher-utils@^29.2.2:
- version "29.2.2"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.2.2.tgz#9202f8e8d3a54733266784ce7763e9a08688269c"
- integrity sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==
+jest-matcher-utils@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5"
+ integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==
dependencies:
chalk "^4.0.0"
- jest-diff "^29.2.1"
- jest-get-type "^29.2.0"
- pretty-format "^29.2.1"
+ jest-diff "^29.5.0"
+ jest-get-type "^29.4.3"
+ pretty-format "^29.5.0"
jest-message-util@^27.5.1:
version "27.5.1"
@@ -6931,18 +6860,18 @@ jest-message-util@^28.1.3:
slash "^3.0.0"
stack-utils "^2.0.3"
-jest-message-util@^29.2.1:
- version "29.2.1"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.2.1.tgz#3a51357fbbe0cc34236f17a90d772746cf8d9193"
- integrity sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==
+jest-message-util@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e"
+ integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==
dependencies:
"@babel/code-frame" "^7.12.13"
- "@jest/types" "^29.2.1"
+ "@jest/types" "^29.5.0"
"@types/stack-utils" "^2.0.0"
chalk "^4.0.0"
graceful-fs "^4.2.9"
micromatch "^4.0.4"
- pretty-format "^29.2.1"
+ pretty-format "^29.5.0"
slash "^3.0.0"
stack-utils "^2.0.3"
@@ -6955,9 +6884,9 @@ jest-mock@^27.5.1:
"@types/node" "*"
jest-pnp-resolver@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
- integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e"
+ integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==
jest-regex-util@^27.5.1:
version "27.5.1"
@@ -7109,12 +7038,12 @@ jest-util@^28.1.3:
graceful-fs "^4.2.9"
picomatch "^2.2.3"
-jest-util@^29.2.1:
- version "29.2.1"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.2.1.tgz#f26872ba0dc8cbefaba32c34f98935f6cf5fc747"
- integrity sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==
+jest-util@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f"
+ integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==
dependencies:
- "@jest/types" "^29.2.1"
+ "@jest/types" "^29.5.0"
"@types/node" "*"
chalk "^4.0.0"
ci-info "^3.2.0"
@@ -7209,15 +7138,20 @@ jest@^27.4.3:
import-local "^3.0.2"
jest-cli "^27.5.1"
+jiti@^1.17.2:
+ version "1.18.2"
+ resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.18.2.tgz#80c3ef3d486ebf2450d9335122b32d121f2a83cd"
+ integrity sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==
+
jotai@1.6.4:
version "1.6.4"
resolved "https://registry.yarnpkg.com/jotai/-/jotai-1.6.4.tgz#4d9904362c53c4293d32e21fb358d3de34b82912"
integrity sha512-XC0ExLhdE6FEBdIjKTe6kMlHaAUV/QiwN7vZond76gNr/WdcdonJOEW79+5t8u38sR41bJXi26B1dRi7cCRz9A==
js-sdsl@^4.1.4:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"
- integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430"
+ integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
@@ -7307,17 +7241,17 @@ json-stable-stringify-without-jsonify@^1.0.1:
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
-json5@^1.0.1:
+json5@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
dependencies:
minimist "^1.2.0"
-json5@^2.1.2, json5@^2.2.0, json5@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
- integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
+json5@^2.1.2, json5@^2.2.0, json5@^2.2.2:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
jsonfile@^6.0.1:
version "6.1.0"
@@ -7333,7 +7267,7 @@ jsonpointer@^5.0.0:
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559"
integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==
-"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2:
+"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3:
version "3.3.3"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea"
integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==
@@ -7352,22 +7286,30 @@ kleur@^3.0.3:
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
klona@^2.0.4, klona@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc"
- integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
+ integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
language-subtag-registry@~0.3.2:
version "0.3.22"
resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d"
integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==
-language-tags@^1.0.5:
+language-tags@=1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==
dependencies:
language-subtag-registry "~0.3.2"
+launch-editor@^2.6.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7"
+ integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==
+ dependencies:
+ picocolors "^1.0.0"
+ shell-quote "^1.7.3"
+
leven@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
@@ -7402,9 +7344,9 @@ lilconfig@2.0.4:
integrity sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==
lilconfig@^2.0.3, lilconfig@^2.0.5, lilconfig@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4"
- integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
+ integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
lines-and-columns@^1.1.6:
version "1.2.4"
@@ -7450,7 +7392,7 @@ loader-runner@^4.2.0:
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1"
integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==
-loader-utils@^2.0.0, loader-utils@^2.0.3:
+loader-utils@^2.0.0, loader-utils@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c"
integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==
@@ -7554,11 +7496,11 @@ long@^4.0.0:
integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
long@^5.0.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/long/-/long-5.2.0.tgz#2696dadf4b4da2ce3f6f6b89186085d94d52fd61"
- integrity sha512-9RTUNjK60eJbx3uz+TEGF7fUr29ZDxR5QzXcyDpeSfeH28S9ycINflOgOlppit5U+4kNTe83KQnMEerw7GmE8w==
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/long/-/long-5.2.1.tgz#e27595d0083d103d2fa2c20c7699f8e0c92b897f"
+ integrity sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A==
-loose-envify@^1.1.0, loose-envify@^1.4.0:
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
@@ -7566,9 +7508,9 @@ loose-envify@^1.1.0, loose-envify@^1.4.0:
js-tokens "^3.0.0 || ^4.0.0"
loupe@^2.3.1:
- version "2.3.4"
- resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3"
- integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53"
+ integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==
dependencies:
get-func-name "^2.0.0"
@@ -7579,6 +7521,13 @@ lower-case@^2.0.2:
dependencies:
tslib "^2.0.3"
+lru-cache@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ dependencies:
+ yallist "^3.0.2"
+
lru-cache@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
@@ -7587,9 +7536,9 @@ lru-cache@^6.0.0:
yallist "^4.0.0"
lz-string@^1.4.4:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26"
- integrity sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941"
+ integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==
magic-string@^0.25.0, magic-string@^0.25.7:
version "0.25.9"
@@ -7628,9 +7577,9 @@ media-typer@0.3.0:
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
memfs@^3.1.2, memfs@^3.4.3:
- version "3.4.11"
- resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.11.tgz#3a34837ade675825d805a2c135e88cefe5e53aaf"
- integrity sha512-GvsCITGAyDCxxsJ+X6prJexFQEhOCJaIlUbsAvjzSI5o5O7j2dle3jWvz5Z5aOdpOxW6ol3vI1+0ut+641F1+w==
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.0.tgz#9da86405fca0a539addafd37dbd452344fd1c0bd"
+ integrity sha512-yK6o8xVJlQerz57kvPROwTMgx5WtGwC2ZxDtOUsnGl49rHjYkfQoPNZPCKH73VdLE1BwBu/+Fx/NL8NYMUw2aA==
dependencies:
fs-monkey "^1.0.3"
@@ -7690,9 +7639,9 @@ min-indent@^1.0.0:
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
mini-css-extract-plugin@^2.4.5:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.0.tgz#d7d9ba0c5b596d155e36e2b174082fc7f010dd64"
- integrity sha512-auqtVo8KhTScMsba7MbijqZTfibbXiBNlPAQbsVt7enQfcDYLdgG57eGxMqwVU3mfeWANY4F1wUg+rMF+ycZgw==
+ version "2.7.5"
+ resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz#afbb344977659ec0f1f6e050c7aea456b121cfc5"
+ integrity sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==
dependencies:
schema-utils "^4.0.0"
@@ -7709,16 +7658,16 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
brace-expansion "^1.1.7"
minimatch@^5.0.1:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
- integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
+ integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
dependencies:
brace-expansion "^2.0.1"
minimist@^1.2.0, minimist@^1.2.6:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
- integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
mkdirp@^0.5.6, mkdirp@~0.5.1:
version "0.5.6"
@@ -7765,15 +7714,24 @@ multimath@^2.0.0:
glur "^1.1.2"
object-assign "^4.1.1"
+mz@^2.7.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
+ integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==
+ dependencies:
+ any-promise "^1.0.0"
+ object-assign "^4.0.1"
+ thenify-all "^1.0.0"
+
nanoid@3.3.3:
version "3.3.3"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
nanoid@^3.3.4:
- version "3.3.4"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
- integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
+ version "3.3.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
+ integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
natural-compare-lite@^1.4.0:
version "1.4.0"
@@ -7818,10 +7776,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
-node-releases@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
- integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
+node-releases@^2.0.8:
+ version "2.0.10"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f"
+ integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
@@ -7860,11 +7818,11 @@ nth-check@^2.0.1:
boolbase "^1.0.0"
nwsapi@^2.2.0:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0"
- integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.3.tgz#00e04dfd5a4a751e5ec2fecdc75dfd2f0db820fa"
+ integrity sha512-jscxIO4/VKScHlbmFBdV1Z6LXnLO+ZR4VMtypudUdfwtKxUN3TQcNFIHLwKtrUbDyHN4/GycY9+oRGZ2XMXYPw==
-object-assign@^4.1.1:
+object-assign@^4.0.1, object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
@@ -7874,12 +7832,12 @@ object-hash@^3.0.0:
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9"
integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
-object-inspect@^1.12.0, object-inspect@^1.12.2, object-inspect@^1.9.0:
- version "1.12.2"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
- integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
+object-inspect@^1.12.0, object-inspect@^1.12.3, object-inspect@^1.9.0:
+ version "1.12.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
+ integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
-object-is@^1.1.4:
+object-is@^1.1.5:
version "1.1.5"
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
@@ -7892,7 +7850,7 @@ object-keys@^1.1.1:
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-object.assign@^4.1.2, object.assign@^4.1.3, object.assign@^4.1.4:
+object.assign@^4.1.3, object.assign@^4.1.4:
version "4.1.4"
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
@@ -7921,14 +7879,14 @@ object.fromentries@^2.0.6:
es-abstract "^1.20.4"
object.getownpropertydescriptors@^2.1.0:
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz#7965e6437a57278b587383831a9b829455a4bc37"
- integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==
+ version "2.1.5"
+ resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz#db5a9002489b64eef903df81d6623c07e5b4b4d3"
+ integrity sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==
dependencies:
- array.prototype.reduce "^1.0.4"
+ array.prototype.reduce "^1.0.5"
call-bind "^1.0.2"
define-properties "^1.1.4"
- es-abstract "^1.20.1"
+ es-abstract "^1.20.4"
object.hasown@^1.1.2:
version "1.1.2"
@@ -7938,16 +7896,7 @@ object.hasown@^1.1.2:
define-properties "^1.1.4"
es-abstract "^1.20.4"
-object.values@^1.1.0, object.values@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
- integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.1"
-
-object.values@^1.1.6:
+object.values@^1.1.0, object.values@^1.1.6:
version "1.1.6"
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d"
integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==
@@ -7993,9 +7942,9 @@ open-color@1.9.1:
integrity sha512-vCseG/EQ6/RcvxhUcGJiHViOgrtz4x0XbZepXvKik66TMGkvbmjeJrKFyBEx6daG5rNyyd14zYXhz0hZVwQFOw==
open@^8.0.9, open@^8.4.0:
- version "8.4.0"
- resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8"
- integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==
+ version "8.4.2"
+ resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
+ integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
dependencies:
define-lazy-prop "^2.0.0"
is-docker "^2.1.1"
@@ -8239,7 +8188,7 @@ pify@^2.3.0:
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
-pirates@^4.0.4:
+pirates@^4.0.1, pirates@^4.0.4:
version "4.0.5"
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
@@ -8348,12 +8297,12 @@ postcss-color-rebeccapurple@^7.1.1:
dependencies:
postcss-value-parser "^4.2.0"
-postcss-colormin@^5.3.0:
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.0.tgz#3cee9e5ca62b2c27e84fce63affc0cfb5901956a"
- integrity sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==
+postcss-colormin@^5.3.1:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f"
+ integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==
dependencies:
- browserslist "^4.16.6"
+ browserslist "^4.21.4"
caniuse-api "^3.0.0"
colord "^2.9.1"
postcss-value-parser "^4.2.0"
@@ -8374,9 +8323,9 @@ postcss-custom-media@^8.0.2:
postcss-value-parser "^4.2.0"
postcss-custom-properties@^12.1.10:
- version "12.1.10"
- resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-12.1.10.tgz#624517179fd4cf50078a7a60f628d5782e7d4903"
- integrity sha512-U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A==
+ version "12.1.11"
+ resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz#d14bb9b3989ac4d40aaa0e110b43be67ac7845cf"
+ integrity sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==
dependencies:
postcss-value-parser "^4.2.0"
@@ -8480,9 +8429,9 @@ postcss-initial@^4.0.1:
integrity sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==
postcss-js@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00"
- integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2"
+ integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==
dependencies:
camelcase-css "^2.0.1"
@@ -8529,10 +8478,10 @@ postcss-merge-longhand@^5.1.7:
postcss-value-parser "^4.2.0"
stylehacks "^5.1.1"
-postcss-merge-rules@^5.1.3:
- version "5.1.3"
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz#8f97679e67cc8d08677a6519afca41edf2220894"
- integrity sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==
+postcss-merge-rules@^5.1.4:
+ version "5.1.4"
+ resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c"
+ integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==
dependencies:
browserslist "^4.21.4"
caniuse-api "^3.0.0"
@@ -8687,9 +8636,9 @@ postcss-normalize@^10.0.1:
sanitize.css "*"
postcss-opacity-percentage@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz#bd698bb3670a0a27f6d657cc16744b3ebf3b1145"
- integrity sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz#5b89b35551a556e20c5d23eb5260fbfcf5245da6"
+ integrity sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==
postcss-ordered-values@^5.1.3:
version "5.1.3"
@@ -8780,10 +8729,10 @@ postcss-pseudo-class-any-link@^7.1.6:
dependencies:
postcss-selector-parser "^6.0.10"
-postcss-reduce-initial@^5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz#c18b7dfb88aee24b1f8e4936541c29adbd35224e"
- integrity sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==
+postcss-reduce-initial@^5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6"
+ integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==
dependencies:
browserslist "^4.21.4"
caniuse-api "^3.0.0"
@@ -8807,10 +8756,10 @@ postcss-selector-not@^6.0.1:
dependencies:
postcss-selector-parser "^6.0.10"
-postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
- version "6.0.10"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
- integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
+postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
+ version "6.0.11"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc"
+ integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
@@ -8843,10 +8792,10 @@ postcss@^7.0.35:
picocolors "^0.2.1"
source-map "^0.6.1"
-postcss@^8.3.5, postcss@^8.4.18, postcss@^8.4.4:
- version "8.4.19"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.19.tgz#61178e2add236b17351897c8bcc0b4c8ecab56fc"
- integrity sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==
+postcss@^8.0.9, postcss@^8.3.5, postcss@^8.4.19, postcss@^8.4.4:
+ version "8.4.21"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4"
+ integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==
dependencies:
nanoid "^3.3.4"
picocolors "^1.0.0"
@@ -8906,12 +8855,12 @@ pretty-format@^28.1.3:
ansi-styles "^5.0.0"
react-is "^18.0.0"
-pretty-format@^29.0.0, pretty-format@^29.2.1:
- version "29.2.1"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.2.1.tgz#86e7748fe8bbc96a6a4e04fa99172630907a9611"
- integrity sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==
+pretty-format@^29.0.0, pretty-format@^29.5.0:
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a"
+ integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==
dependencies:
- "@jest/schemas" "^29.0.0"
+ "@jest/schemas" "^29.4.3"
ansi-styles "^5.0.0"
react-is "^18.0.0"
@@ -8974,9 +8923,9 @@ protobufjs@^6.8.6:
long "^4.0.0"
protobufjs@^7.0.0:
- version "7.1.2"
- resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.1.2.tgz#a0cf6aeaf82f5625bffcf5a38b7cd2a7de05890c"
- integrity sha512-4ZPTPkXCdel3+L81yw3dG6+Kq3umdWKh7Dc7GW/CpNk4SX3hK58iPCWeCyhVTDrbkNeKrYNZ7EojM5WDaEWTLQ==
+ version "7.2.3"
+ resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.2.3.tgz#01af019e40d9c6133c49acbb3ff9e30f4f0f70b2"
+ integrity sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==
dependencies:
"@protobufjs/aspromise" "^1.1.2"
"@protobufjs/base64" "^1.1.2"
@@ -9005,9 +8954,9 @@ psl@^1.1.33:
integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
punycode@^2.1.0, punycode@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
+ integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==
pwacompat@2.0.17:
version "2.0.17"
@@ -9019,13 +8968,20 @@ q@^1.1.2:
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
-qs@6.11.0, qs@^6.4.0:
+qs@6.11.0:
version "6.11.0"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
dependencies:
side-channel "^1.0.4"
+qs@^6.4.0:
+ version "6.11.1"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.1.tgz#6c29dff97f0c0060765911ba65cbc9764186109f"
+ integrity sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==
+ dependencies:
+ side-channel "^1.0.4"
+
querystringify@^2.1.1:
version "2.2.0"
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
@@ -9145,6 +9101,25 @@ react-refresh@^0.11.0:
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046"
integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==
+react-remove-scroll-bar@^2.3.3:
+ version "2.3.4"
+ resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz#53e272d7a5cb8242990c7f144c44d8bd8ab5afd9"
+ integrity sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==
+ dependencies:
+ react-style-singleton "^2.2.1"
+ tslib "^2.0.0"
+
+react-remove-scroll@2.5.5:
+ version "2.5.5"
+ resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz#1e31a1260df08887a8a0e46d09271b52b3a37e77"
+ integrity sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==
+ dependencies:
+ react-remove-scroll-bar "^2.3.3"
+ react-style-singleton "^2.2.1"
+ tslib "^2.1.0"
+ use-callback-ref "^1.3.0"
+ use-sidecar "^1.1.2"
+
react-scripts@5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-5.0.1.tgz#6285dbd65a8ba6e49ca8d651ce30645a6d980003"
@@ -9200,6 +9175,15 @@ react-scripts@5.0.1:
optionalDependencies:
fsevents "^2.3.2"
+react-style-singleton@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4"
+ integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==
+ dependencies:
+ get-nonce "^1.0.0"
+ invariant "^2.2.4"
+ tslib "^2.0.0"
+
react@18.2.0:
version "18.2.0"
resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
@@ -9215,9 +9199,9 @@ read-cache@^1.0.0:
pify "^2.3.0"
readable-stream@^2.0.1:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.3"
@@ -9228,9 +9212,9 @@ readable-stream@^2.0.1:
util-deprecate "~1.0.1"
readable-stream@^3.0.6:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
dependencies:
inherits "^2.0.3"
string_decoder "^1.1.1"
@@ -9280,20 +9264,15 @@ regenerate@^1.4.2:
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.10:
- version "0.13.10"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee"
- integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==
-
regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.9:
version "0.13.11"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-regenerator-transform@^0.15.0:
- version "0.15.0"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537"
- integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==
+regenerator-transform@^0.15.1:
+ version "0.15.1"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
+ integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
dependencies:
"@babel/runtime" "^7.8.4"
@@ -9302,7 +9281,7 @@ regex-parser@^2.2.11:
resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58"
integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==
-regexp.prototype.flags@^1.3.0, regexp.prototype.flags@^1.4.3:
+regexp.prototype.flags@^1.4.3:
version "1.4.3"
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
@@ -9311,27 +9290,22 @@ regexp.prototype.flags@^1.3.0, regexp.prototype.flags@^1.4.3:
define-properties "^1.1.3"
functions-have-names "^1.2.2"
-regexpp@^3.1.0, regexpp@^3.2.0:
+regexpp@^3.1.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
-regexpu-core@^5.1.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.1.tgz#a69c26f324c1e962e9ffd0b88b055caba8089139"
- integrity sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==
+regexpu-core@^5.3.1:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+ integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
dependencies:
+ "@babel/regjsgen" "^0.8.0"
regenerate "^1.4.2"
regenerate-unicode-properties "^10.1.0"
- regjsgen "^0.7.1"
regjsparser "^0.9.1"
unicode-match-property-ecmascript "^2.0.0"
- unicode-match-property-value-ecmascript "^2.0.0"
-
-regjsgen@^0.7.1:
- version "0.7.1"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6"
- integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==
+ unicode-match-property-value-ecmascript "^2.1.0"
regjsparser@^0.9.1:
version "0.9.1"
@@ -9400,20 +9374,20 @@ resolve-url-loader@^4.0.0:
source-map "0.6.1"
resolve.exports@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9"
- integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.1.tgz#05cfd5b3edf641571fd46fa608b610dda9ead999"
+ integrity sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==
-resolve@^1.1.7, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.22.1:
- version "1.22.1"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
- integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
+resolve@^1.1.7, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1:
+ version "1.22.2"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
+ integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
dependencies:
- is-core-module "^2.9.0"
+ is-core-module "^2.11.0"
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-resolve@^2.0.0-next.3:
+resolve@^2.0.0-next.4:
version "2.0.0-next.4"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660"
integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==
@@ -9493,9 +9467,9 @@ run-parallel@^1.1.9:
queue-microtask "^1.2.2"
rxjs@^7.5.5:
- version "7.5.7"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39"
- integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==
+ version "7.8.0"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
+ integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
dependencies:
tslib "^2.1.0"
@@ -9629,9 +9603,9 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
semver@^7.2.1, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8:
- version "7.3.8"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
- integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.4.0.tgz#8481c92feffc531ab1e012a8ffc15bdd3a0f4318"
+ integrity sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==
dependencies:
lru-cache "^6.0.0"
@@ -9661,10 +9635,10 @@ serialize-javascript@^4.0.0:
dependencies:
randombytes "^2.1.0"
-serialize-javascript@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
- integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
+serialize-javascript@^6.0.0, serialize-javascript@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c"
+ integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==
dependencies:
randombytes "^2.1.0"
@@ -9714,11 +9688,11 @@ shebang-regex@^3.0.0:
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
shell-quote@^1.7.3:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
- integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
+ integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
-side-channel@^1.0.3, side-channel@^1.0.4:
+side-channel@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
@@ -9904,9 +9878,9 @@ stable@^0.1.8:
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
stack-utils@^2.0.3:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5"
- integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f"
+ integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==
dependencies:
escape-string-regexp "^2.0.0"
@@ -9925,6 +9899,13 @@ statuses@2.0.1:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
+stop-iteration-iterator@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4"
+ integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==
+ dependencies:
+ internal-slot "^1.0.4"
+
string-argv@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
@@ -9983,23 +9964,32 @@ string.prototype.matchall@^4.0.6, string.prototype.matchall@^4.0.8:
regexp.prototype.flags "^1.4.3"
side-channel "^1.0.4"
-string.prototype.trimend@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
- integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
+string.prototype.trim@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533"
+ integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==
dependencies:
call-bind "^1.0.2"
define-properties "^1.1.4"
- es-abstract "^1.19.5"
+ es-abstract "^1.20.4"
-string.prototype.trimstart@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
- integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
+string.prototype.trimend@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
+ integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
dependencies:
call-bind "^1.0.2"
define-properties "^1.1.4"
- es-abstract "^1.19.5"
+ es-abstract "^1.20.4"
+
+string.prototype.trimstart@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
+ integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
string_decoder@^1.1.1:
version "1.3.0"
@@ -10071,9 +10061,9 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
style-loader@^3.3.1:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.1.tgz#057dfa6b3d4d7c7064462830f9113ed417d38575"
- integrity sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.2.tgz#eaebca714d9e462c19aa1e3599057bc363924899"
+ integrity sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==
stylehacks@^5.1.1:
version "5.1.1"
@@ -10083,6 +10073,19 @@ stylehacks@^5.1.1:
browserslist "^4.21.4"
postcss-selector-parser "^6.0.4"
+sucrase@^3.29.0:
+ version "3.32.0"
+ resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.32.0.tgz#c4a95e0f1e18b6847127258a75cf360bc568d4a7"
+ integrity sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.2"
+ commander "^4.0.0"
+ glob "7.1.6"
+ lines-and-columns "^1.1.6"
+ mz "^2.7.0"
+ pirates "^4.0.1"
+ ts-interface-checker "^0.1.9"
+
supports-color@^5.3.0:
version "5.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
@@ -10105,9 +10108,9 @@ supports-color@^8.0.0:
has-flag "^4.0.0"
supports-color@^9.2.1:
- version "9.2.3"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.2.3.tgz#a6e2c97fc20c80abecd69e50aebe4783ff77d45a"
- integrity sha512-aszYUX/DVK/ed5rFLb/dDinVJrQjG/vmU433wtqVSD800rYsJNWxh2R3USV90aLSU+UsyQkbNeffVLzc6B6foA==
+ version "9.3.1"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.3.1.tgz#34e4ad3c71c9a39dae3254ecc46c9b74e89e15a6"
+ integrity sha512-knBY82pjmnIzK3NifMo3RxEIRD9E0kIzV4BKcyTZ9+9kWgLMxd4PrsTSMoFQUabgRBbF8KOLRDCyKgNV+iK44Q==
supports-hyperlinks@^2.0.0:
version "2.3.0"
@@ -10165,9 +10168,9 @@ symbol-tree@^3.2.4:
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
table@^6.0.9:
- version "6.8.0"
- resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca"
- integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==
+ version "6.8.1"
+ resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf"
+ integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==
dependencies:
ajv "^8.0.1"
lodash.truncate "^4.4.2"
@@ -10176,33 +10179,34 @@ table@^6.0.9:
strip-ansi "^6.0.1"
tailwindcss@^3.0.2:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.2.4.tgz#afe3477e7a19f3ceafb48e4b083e292ce0dc0250"
- integrity sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.1.tgz#b6662fab6a9b704779e48d083a9fef5a81d2b81e"
+ integrity sha512-Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g==
dependencies:
arg "^5.0.2"
chokidar "^3.5.3"
color-name "^1.1.4"
- detective "^5.2.1"
didyoumean "^1.2.2"
dlv "^1.1.3"
fast-glob "^3.2.12"
glob-parent "^6.0.2"
is-glob "^4.0.3"
+ jiti "^1.17.2"
lilconfig "^2.0.6"
micromatch "^4.0.5"
normalize-path "^3.0.0"
object-hash "^3.0.0"
picocolors "^1.0.0"
- postcss "^8.4.18"
+ postcss "^8.0.9"
postcss-import "^14.1.0"
postcss-js "^4.0.0"
postcss-load-config "^3.1.4"
postcss-nested "6.0.0"
- postcss-selector-parser "^6.0.10"
+ postcss-selector-parser "^6.0.11"
postcss-value-parser "^4.2.0"
quick-lru "^5.1.1"
resolve "^1.22.1"
+ sucrase "^3.29.0"
tapable@^1.0.0:
version "1.1.3"
@@ -10238,20 +10242,20 @@ terminal-link@^2.0.0:
supports-hyperlinks "^2.0.0"
terser-webpack-plugin@^5.1.3, terser-webpack-plugin@^5.2.5:
- version "5.3.6"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz#5590aec31aa3c6f771ce1b1acca60639eab3195c"
- integrity sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==
+ version "5.3.7"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz#ef760632d24991760f339fe9290deb936ad1ffc7"
+ integrity sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==
dependencies:
- "@jridgewell/trace-mapping" "^0.3.14"
+ "@jridgewell/trace-mapping" "^0.3.17"
jest-worker "^27.4.5"
schema-utils "^3.1.1"
- serialize-javascript "^6.0.0"
- terser "^5.14.1"
+ serialize-javascript "^6.0.1"
+ terser "^5.16.5"
-terser@^5.0.0, terser@^5.10.0, terser@^5.14.1:
- version "5.15.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c"
- integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==
+terser@^5.0.0, terser@^5.10.0, terser@^5.16.5:
+ version "5.16.9"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.9.tgz#7a28cb178e330c484369886f2afd623d9847495f"
+ integrity sha512-HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg==
dependencies:
"@jridgewell/source-map" "^0.3.2"
acorn "^8.5.0"
@@ -10272,10 +10276,24 @@ text-table@^0.2.0:
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
+thenify-all@^1.0.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
+ integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==
+ dependencies:
+ thenify ">= 3.1.0 < 4"
+
+"thenify@>= 3.1.0 < 4":
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f"
+ integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==
+ dependencies:
+ any-promise "^1.0.0"
+
throat@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375"
- integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.2.tgz#51a3fbb5e11ae72e2cf74861ed5c8020f89f29fe"
+ integrity sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==
through@^2.3.8:
version "2.3.8"
@@ -10343,13 +10361,18 @@ tryer@^1.0.1:
resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8"
integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==
+ts-interface-checker@^0.1.9:
+ version "0.1.13"
+ resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
+ integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
+
tsconfig-paths@^3.14.1:
- version "3.14.1"
- resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a"
- integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==
+ version "3.14.2"
+ resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088"
+ integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==
dependencies:
"@types/json5" "^0.0.29"
- json5 "^1.0.1"
+ json5 "^1.0.2"
minimist "^1.2.6"
strip-bom "^3.0.0"
@@ -10358,10 +10381,10 @@ tslib@^1.8.1, tslib@^1.9.3:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
-tslib@^2.0.3, tslib@^2.1.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
- integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
+tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
+ integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
tsutils@^3.21.0:
version "3.21.0"
@@ -10419,6 +10442,15 @@ type-is@~1.6.18:
media-typer "0.3.0"
mime-types "~2.1.24"
+typed-array-length@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ is-typed-array "^1.1.9"
+
typedarray-to-buffer@^3.1.5:
version "3.1.5"
resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
@@ -10468,10 +10500,10 @@ unicode-match-property-ecmascript@^2.0.0:
unicode-canonical-property-names-ecmascript "^2.0.0"
unicode-property-aliases-ecmascript "^2.0.0"
-unicode-match-property-value-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
- integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
+unicode-match-property-value-ecmascript@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
+ integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
unicode-property-aliases-ecmascript@^2.0.0:
version "2.1.0"
@@ -10517,7 +10549,7 @@ upath@^1.2.0:
resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
-update-browserslist-db@^1.0.9:
+update-browserslist-db@^1.0.10:
version "1.0.10"
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
@@ -10545,6 +10577,26 @@ url-parse@^1.5.3:
querystringify "^2.1.1"
requires-port "^1.0.0"
+use-callback-ref@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.0.tgz#772199899b9c9a50526fedc4993fc7fa1f7e32d5"
+ integrity sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==
+ dependencies:
+ tslib "^2.0.0"
+
+use-isomorphic-layout-effect@^1.1.1:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb"
+ integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==
+
+use-sidecar@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.2.tgz#2f43126ba2d7d7e117aa5855e5d8f0276dfe73c2"
+ integrity sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==
+ dependencies:
+ detect-node-es "^1.1.0"
+ tslib "^2.0.0"
+
use-sync-external-store@1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a"
@@ -10662,9 +10714,9 @@ webpack-dev-middleware@^5.3.1:
schema-utils "^4.0.0"
webpack-dev-server@^4.6.0:
- version "4.11.1"
- resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz#ae07f0d71ca0438cf88446f09029b92ce81380b5"
- integrity sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==
+ version "4.13.2"
+ resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz#d97445481d78691efe6d9a3b230833d802fc31f9"
+ integrity sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==
dependencies:
"@types/bonjour" "^3.5.9"
"@types/connect-history-api-fallback" "^1.3.5"
@@ -10685,6 +10737,7 @@ webpack-dev-server@^4.6.0:
html-entities "^2.3.2"
http-proxy-middleware "^2.0.3"
ipaddr.js "^2.0.1"
+ launch-editor "^2.6.0"
open "^8.0.9"
p-retry "^4.5.0"
rimraf "^3.0.2"
@@ -10694,7 +10747,7 @@ webpack-dev-server@^4.6.0:
sockjs "^0.3.24"
spdy "^4.0.2"
webpack-dev-middleware "^5.3.1"
- ws "^8.4.2"
+ ws "^8.13.0"
webpack-manifest-plugin@^4.0.2:
version "4.1.1"
@@ -10726,9 +10779,9 @@ webpack-sources@^3.2.3:
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
webpack@^5.64.4:
- version "5.76.1"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.76.1.tgz#7773de017e988bccb0f13c7d75ec245f377d295c"
- integrity sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==
+ version "5.78.0"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.78.0.tgz#836452a12416af2a7beae906b31644cb2562f9e6"
+ integrity sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==
dependencies:
"@types/eslint-scope" "^3.7.3"
"@types/estree" "^0.0.51"
@@ -10821,7 +10874,7 @@ whatwg-url@^8.0.0, whatwg-url@^8.4.0, whatwg-url@^8.5.0:
tr46 "^2.1.0"
webidl-conversions "^6.1.0"
-which-boxed-primitive@^1.0.1, which-boxed-primitive@^1.0.2:
+which-boxed-primitive@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
@@ -10842,17 +10895,17 @@ which-collection@^1.0.1:
is-weakmap "^2.0.1"
is-weakset "^2.0.1"
-which-typed-array@^1.1.2:
- version "1.1.8"
- resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f"
- integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==
+which-typed-array@^1.1.9:
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
+ integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
dependencies:
available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
- es-abstract "^1.20.0"
for-each "^0.3.3"
+ gopd "^1.0.1"
has-tostringtag "^1.0.0"
- is-typed-array "^1.1.9"
+ is-typed-array "^1.1.10"
which@^1.3.1:
version "1.3.1"
@@ -11080,10 +11133,10 @@ ws@^7.4.6:
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
-ws@^8.4.2:
- version "8.11.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
- integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
+ws@^8.13.0:
+ version "8.13.0"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
+ integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
ws@~6.1.0:
version "6.1.4"
@@ -11112,16 +11165,16 @@ xmlhttprequest@1.8.0:
resolved "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc"
integrity sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==
-xtend@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
-
y18n@^5.0.5:
version "5.0.8"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
+yallist@^3.0.2:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+ integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+
yallist@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"