refactor: remove background variant none

This commit is contained in:
Braks
2022-04-04 21:42:48 +02:00
parent 874684de15
commit aaba123bbc
2 changed files with 0 additions and 2 deletions
@@ -16,7 +16,6 @@ const props = withDefaults(defineProps<BackgroundProps>(), {
const defaultColors: Record<BackgroundVariant, string> = {
[BackgroundVariant.Dots]: '#81818a',
[BackgroundVariant.Lines]: '#eee',
[BackgroundVariant.None]: '#eee',
}
const { store } = useVueFlow()
-1
View File
@@ -56,7 +56,6 @@ export type SnapGrid = [number, number]
export enum BackgroundVariant {
Lines = 'lines',
Dots = 'dots',
None = 'none',
}
export interface SelectionRect extends Rect {