feat(svelte): add event handlers and props, rename class names

This commit is contained in:
moklick
2023-03-01 17:28:59 +01:00
parent 9391b36869
commit e2961bfa8c
38 changed files with 410 additions and 163 deletions
+8 -6
View File
@@ -1,11 +1,13 @@
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 { Panel, type PanelProps } from '$lib/container/Panel';
import { SvelteFlow } from '$lib/container/SvelteFlow';
export * from '$lib/container/SvelteFlow';
export * from '$lib/container/Panel';
export * from '$lib/plugins/Controls';
export * from '$lib/plugins/Background';
export * from '$lib/plugins/Minimap';
export * from '$lib/types';
export * from '$lib/utils';
export type { SvelteFlowProps };
export default SvelteFlow;