ngx-vflow 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/vflow/vflow.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { VflowComponent } from "./components/vflow/vflow.component";
|
|
2
2
|
import { DragHandleDirective } from "./directives/drag-handle.directive";
|
|
3
3
|
import { SelectableDirective } from "./directives/selectable.directive";
|
|
4
|
-
import { ConnectionTemplateDirective } from "./directives/template.directive";
|
|
4
|
+
import { ConnectionTemplateDirective, EdgeLabelHtmlTemplateDirective, EdgeTemplateDirective, GroupNodeTemplateDirective, HandleTemplateDirective, NodeHtmlTemplateDirective } from "./directives/template.directive";
|
|
5
5
|
import { MiniMapComponent } from "./public-components/minimap/minimap.component";
|
|
6
6
|
import { NodeToolbarComponent } from "./public-components/node-toolbar/node-toolbar.component";
|
|
7
7
|
import { ResizableComponent } from "./public-components/resizable/resizable.component";
|
|
8
8
|
import { HandleComponent } from "./public-components/handle/handle.component";
|
|
9
|
-
export declare const Vflow:
|
|
9
|
+
export declare const Vflow: readonly [typeof VflowComponent, typeof HandleComponent, typeof ResizableComponent, typeof SelectableDirective, typeof MiniMapComponent, typeof NodeToolbarComponent, typeof DragHandleDirective, typeof NodeHtmlTemplateDirective, typeof GroupNodeTemplateDirective, typeof EdgeLabelHtmlTemplateDirective, typeof EdgeTemplateDirective, typeof ConnectionTemplateDirective, typeof HandleTemplateDirective];
|