refactor(svelte): cleanup components

This commit is contained in:
moklick
2023-03-01 11:48:08 +01:00
parent 00515e1f9b
commit 9391b36869
61 changed files with 600 additions and 196 deletions
+3 -2
View File
@@ -1,10 +1,11 @@
import SvelteFlow from '$lib/container/SvelteFlow.svelte';
import { SvelteFlow, type SvelteFlowProps } from '$lib/container/SvelteFlow';
export { Controls, ControlButton } from '$lib/plugins/Controls';
export { Background, BackgroundVariant } from '$lib/plugins/Background';
export { Minimap } from '$lib/plugins/Minimap';
export { default as Panel } from '$lib/container/Panel/index.svelte';
export { Panel, type PanelProps } from '$lib/container/Panel';
export * from '$lib/types';
export * from '$lib/utils';
export type { SvelteFlowProps };
export default SvelteFlow;