Add invalid type

This commit is contained in:
Adam
2025-11-17 03:03:37 -08:00
parent ced44310bf
commit 9bfa58b442
10 changed files with 165 additions and 140 deletions
+2
View File
@@ -129,6 +129,8 @@
--color-data-gradient-dim: #6c489b;
--color-data-typography: #eea7a7;
--color-data-typography-dim: #955252;
--color-data-invalid: var(--color-error-red);
--color-data-invalid-dim: color-mix(in srgb, var(--color-error-red) 75%, black);
--color-none: white;
--color-none-repeat: no-repeat;
+1 -1
View File
@@ -177,7 +177,7 @@ export type ContextMenuInformation = {
contextMenuData: "CreateNode" | { type: "CreateNode"; compatibleType: string } | { nodeId: bigint; currentlyIsNode: boolean };
};
export type FrontendGraphDataType = "General" | "Number" | "Artboard" | "Graphic" | "Raster" | "Vector" | "Color";
export type FrontendGraphDataType = "General" | "Number" | "Artboard" | "Graphic" | "Raster" | "Vector" | "Color" | "Invalid";
export class FrontendGraphInput {
readonly dataType!: FrontendGraphDataType;