├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support-request.md ├── LICENSE ├── README.md ├── demo-grid.png ├── demos ├── .editorconfig ├── .prettierignore ├── .prettierrc.json ├── README.html ├── README.md ├── analysis │ ├── clustering │ │ ├── ClusteringDemo.js │ │ ├── ClusteringDemo.ts │ │ ├── DemoVisuals.js │ │ ├── DemoVisuals.ts │ │ ├── DendrogramSupport.js │ │ ├── DendrogramSupport.ts │ │ ├── README.md │ │ ├── VoronoiDiagram.js │ │ ├── VoronoiDiagram.ts │ │ ├── data │ │ │ ├── biconnected-components-data.js │ │ │ ├── biconnected-components-data.ts │ │ │ ├── edge-betweenness-data.js │ │ │ ├── edge-betweenness-data.ts │ │ │ ├── hierarchical-data.js │ │ │ ├── hierarchical-data.ts │ │ │ ├── k-means-data.js │ │ │ └── k-means-data.ts │ │ └── index.html │ ├── criticalpathanalysis │ │ ├── CriticalPathAnalysisDemo.js │ │ ├── CriticalPathAnalysisDemo.ts │ │ ├── CriticalPathHelper.js │ │ ├── CriticalPathHelper.ts │ │ ├── README.md │ │ ├── graph-data.js │ │ ├── graph-data.ts │ │ └── index.html │ ├── intersection-detection │ │ ├── DemoVisuals.js │ │ ├── DemoVisuals.ts │ │ ├── IntersectionDetectionDemo.js │ │ ├── IntersectionDetectionDemo.ts │ │ ├── README.md │ │ ├── TooltipHelper.js │ │ ├── TooltipHelper.ts │ │ ├── graph-data.js │ │ ├── graph-data.ts │ │ └── index.html │ ├── networkflows │ │ ├── DemoStyles.js │ │ ├── DemoStyles.ts │ │ ├── HTMLPopupSupport.js │ │ ├── HTMLPopupSupport.ts │ │ ├── NetworkFlowsDemo.js │ │ ├── NetworkFlowsDemo.ts │ │ ├── NetworkFlowsHelper.js │ │ ├── NetworkFlowsHelper.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── apply-16.svg │ │ │ ├── minus-16.svg │ │ │ ├── plus-16.svg │ │ │ └── style.css │ └── transitivity │ │ ├── README.md │ │ ├── TransitivityDemo.js │ │ ├── TransitivityDemo.ts │ │ ├── index.html │ │ ├── resources │ │ ├── package.svg │ │ ├── plus.svg │ │ ├── yfiles-modules-data.js │ │ └── yfiles-modules-data.ts │ │ └── transitivity.css ├── application-features │ ├── accessibility │ │ ├── AccessibilityDemo.js │ │ ├── AccessibilityDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── background-image │ │ ├── BackgroundImageDemo.js │ │ ├── BackgroundImageDemo.ts │ │ ├── ImageVisualCreator.js │ │ ├── ImageVisualCreator.ts │ │ ├── README.md │ │ ├── RectangleVisualCreator.js │ │ ├── RectangleVisualCreator.ts │ │ ├── graph-data.json │ │ ├── index.html │ │ └── ylogo.svg │ ├── building-graph-from-data │ │ ├── BuildingGraphFromDataDemo.js │ │ ├── BuildingGraphFromDataDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── building-swimlanes-from-data │ │ ├── BuildingSwimlanesFromDataDemo.js │ │ ├── BuildingSwimlanesFromDataDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── complex-highlight-decorator │ │ ├── ComplexHighlightDecoratorDemo.js │ │ ├── ComplexHighlightDecoratorDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── custom-graphml │ │ ├── CustomGraphMLDemo.js │ │ ├── CustomGraphMLDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── drag-and-drop │ │ ├── README.md │ │ ├── SimpleDragAndDropDemo.js │ │ ├── SimpleDragAndDropDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── external-links │ │ ├── ExternalLinksDemo.js │ │ ├── ExternalLinksDemo.ts │ │ ├── LinkItemHoverInputMode.js │ │ ├── LinkItemHoverInputMode.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── file-operations │ │ ├── FileOperationsDemo.js │ │ ├── FileOperationsDemo.ts │ │ ├── README.md │ │ ├── file-operations-sample.json │ │ ├── index.html │ │ ├── json-support.js │ │ ├── json-support.ts │ │ ├── storage-support.js │ │ └── storage-support.ts │ ├── filtering-with-folding │ │ ├── FilteringWithFoldingDemo.js │ │ ├── FilteringWithFoldingDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── filtering │ │ ├── FilteringDemo.js │ │ ├── FilteringDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── folding-with-merged-edges │ │ ├── FoldingWithMergedEdgesDemo.js │ │ ├── FoldingWithMergedEdgesDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── folding │ │ ├── FoldingDemo.js │ │ ├── FoldingDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── graph-copy │ │ ├── GraphCopyDemo.js │ │ ├── GraphCopyDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── graph-decorator │ │ ├── GraphDecoratorDemo.js │ │ ├── GraphDecoratorDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── graph-search │ │ ├── GraphSearchDemo.js │ │ ├── GraphSearchDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── grid-snapping │ │ ├── GridSnappingDemo.js │ │ ├── GridSnappingDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── input-output │ │ ├── InputOutputDemo.js │ │ ├── InputOutputDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── interactiveaggregation │ │ ├── InteractiveAggregationDemo.js │ │ ├── InteractiveAggregationDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── label-text-wrapping │ │ ├── LabelTextWrappingDemo.js │ │ ├── LabelTextWrappingDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── native-listeners │ │ ├── NativeListenersDemo.js │ │ ├── NativeListenersDemo.ts │ │ ├── NodeStyleDecorator.js │ │ ├── NodeStyleDecorator.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── orthogonal-edges │ │ ├── OrthogonalEdgesDemo.js │ │ ├── OrthogonalEdgesDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── overview │ │ ├── OverviewComponentDemo.js │ │ ├── OverviewComponentDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── rectangular-indicator │ │ ├── PositionHandler.js │ │ ├── PositionHandler.ts │ │ ├── README.md │ │ ├── RectangularIndicatorDemo.js │ │ ├── RectangularIndicatorDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── rotatablenodes │ │ ├── AdjustOutlinePortInsidenessEdgePathCropper.js │ │ ├── AdjustOutlinePortInsidenessEdgePathCropper.ts │ │ ├── README.md │ │ ├── RotatableNodeLabels.js │ │ ├── RotatableNodeLabels.ts │ │ ├── RotatableNodes.js │ │ ├── RotatableNodes.ts │ │ ├── RotatableNodesDemo.js │ │ ├── RotatableNodesDemo.ts │ │ ├── RotatablePorts.js │ │ ├── RotatablePorts.ts │ │ ├── RotatedNodeLayoutStage.js │ │ ├── RotatedNodeLayoutStage.ts │ │ ├── RotationAwareGroupBoundsCalculator.js │ │ ├── RotationAwareGroupBoundsCalculator.ts │ │ ├── WorkerLayout.js │ │ ├── WorkerLayout.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ ├── SampleData.ts │ │ │ └── rotate.cur │ ├── simple-highlight-decorator │ │ ├── README.md │ │ ├── SimpleHighlightDecoratorDemo.js │ │ ├── SimpleHighlightDecoratorDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── smart-click-navigation │ │ ├── README.md │ │ ├── SmartClickNavigationDemo.js │ │ ├── SmartClickNavigationDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── graph.js │ │ │ └── graph.ts │ ├── snapping │ │ ├── README.md │ │ ├── SnappingDemo.js │ │ ├── SnappingDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── subdivide-edges │ │ ├── README.md │ │ ├── SubdivideEdgeDropInputMode.js │ │ ├── SubdivideEdgeDropInputMode.ts │ │ ├── SubdivideEdgesDemo.js │ │ ├── SubdivideEdgesDemo.ts │ │ └── index.html │ ├── tableeditor │ │ ├── DragAndDropSupport.js │ │ ├── DragAndDropSupport.ts │ │ ├── MyReparentHandler.js │ │ ├── MyReparentHandler.ts │ │ ├── README.md │ │ ├── TableEditorDemo.js │ │ ├── TableEditorDemo.ts │ │ ├── TableStyles.js │ │ ├── TableStyles.ts │ │ ├── index.html │ │ └── resources │ │ │ └── sample.graphml │ ├── theming │ │ ├── README.md │ │ ├── ThemingDemo.js │ │ ├── ThemingDemo.ts │ │ ├── graph-data.json │ │ ├── index.html │ │ └── theme.css │ ├── timeline │ │ ├── README.md │ │ ├── TimelineDemo.js │ │ ├── TimelineDemo.ts │ │ ├── index.html │ │ ├── timeline-component │ │ │ ├── AggregationFolderNodeConverter.js │ │ │ ├── AggregationFolderNodeConverter.ts │ │ │ ├── Styling.js │ │ │ ├── Styling.ts │ │ │ ├── TimeframeAnimation.js │ │ │ ├── TimeframeAnimation.ts │ │ │ ├── TimeframeRectangle.js │ │ │ ├── TimeframeRectangle.ts │ │ │ ├── Timeline.js │ │ │ ├── Timeline.ts │ │ │ ├── Utilities.js │ │ │ ├── Utilities.ts │ │ │ ├── bucket-aggregation.js │ │ │ ├── bucket-aggregation.ts │ │ │ ├── timeline-layout.js │ │ │ ├── timeline-layout.ts │ │ │ ├── timeline.css │ │ │ ├── tooltips.js │ │ │ └── tooltips.ts │ │ ├── timeline-data.js │ │ └── timeline-data.ts │ ├── tooltips │ │ ├── README.md │ │ ├── TooltipsDemo.js │ │ ├── TooltipsDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── viewportlimiter │ │ ├── ProjectionAnimation.js │ │ ├── ProjectionAnimation.ts │ │ ├── README.md │ │ ├── RectangleVisualCreator.js │ │ ├── RectangleVisualCreator.ts │ │ ├── ViewportLimiterDemo.js │ │ ├── ViewportLimiterDemo.ts │ │ ├── graph-data.json │ │ ├── index.html │ │ └── resources │ │ │ └── policy-description.css │ └── webgl-rendering │ │ ├── README.md │ │ ├── WebGLRenderingDemo.js │ │ ├── WebGLRenderingDemo.ts │ │ ├── index.html │ │ └── resources │ │ └── hierarchical_2000_2100.json ├── databinding │ ├── adjacencygraphbuilder │ │ ├── AdjacencyGraphBuilderDemo.js │ │ ├── AdjacencyGraphBuilderDemo.ts │ │ ├── EditAdjacencyNodeSourceDialog.js │ │ ├── EditAdjacencyNodeSourceDialog.ts │ │ ├── FlippedArrow.js │ │ ├── FlippedArrow.ts │ │ ├── ModelClasses.js │ │ ├── ModelClasses.ts │ │ ├── README.md │ │ ├── SchemaComponent.js │ │ ├── SchemaComponent.ts │ │ ├── index.html │ │ ├── samples.js │ │ └── samples.ts │ ├── graphbuilder │ │ ├── EditSourceDialog.js │ │ ├── EditSourceDialog.ts │ │ ├── GraphBuilderDemo.js │ │ ├── GraphBuilderDemo.ts │ │ ├── ModelClasses.js │ │ ├── ModelClasses.ts │ │ ├── README.md │ │ ├── SourcesListBox.js │ │ ├── SourcesListBox.ts │ │ ├── index.html │ │ ├── samples.js │ │ └── samples.ts │ ├── port-aware-adjacency-graph-builder │ │ ├── AdjacencyGraphBuilder.js │ │ ├── AdjacencyGraphBuilder.ts │ │ ├── GraphItemsHider.js │ │ ├── GraphItemsHider.ts │ │ ├── PortAwareAdjacencyGraphBuilderDemo.js │ │ ├── PortAwareAdjacencyGraphBuilderDemo.ts │ │ ├── README.md │ │ ├── graph-builder-data.js │ │ ├── graph-builder-data.ts │ │ └── index.html │ ├── port-aware-graph-builder │ │ ├── LogicGateType.js │ │ ├── LogicGateType.ts │ │ ├── PortAwareGraphBuilderDemo.js │ │ ├── PortAwareGraphBuilderDemo.ts │ │ ├── README.md │ │ ├── graph-builder-data.js │ │ ├── graph-builder-data.ts │ │ ├── hide-items.js │ │ ├── hide-items.ts │ │ ├── index.html │ │ ├── node-styles │ │ │ ├── AndGateNodeStyle.js │ │ │ ├── AndGateNodeStyle.ts │ │ │ ├── GateNodeStyle.js │ │ │ ├── GateNodeStyle.ts │ │ │ ├── NotNodeStyle.js │ │ │ ├── NotNodeStyle.ts │ │ │ ├── OrNodeStyle.js │ │ │ ├── OrNodeStyle.ts │ │ │ ├── XOrNodeStyle.js │ │ │ └── XOrNodeStyle.ts │ │ ├── port-aware-graph-builder.js │ │ └── port-aware-graph-builder.ts │ ├── port-aware-tree-builder │ │ ├── GraphItemsHider.js │ │ ├── GraphItemsHider.ts │ │ ├── PortAwareTreeBuilderDemo.js │ │ ├── PortAwareTreeBuilderDemo.ts │ │ ├── README.md │ │ ├── TreeBuilder.js │ │ ├── TreeBuilder.ts │ │ ├── index.html │ │ ├── tree-builder-data.js │ │ └── tree-builder-data.ts │ ├── simple-adjacency-graph-builder-with-ids │ │ ├── README.md │ │ ├── SimpleAdjacencyGraphBuilderWithIdsDemo.js │ │ ├── SimpleAdjacencyGraphBuilderWithIdsDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── simple-adjacency-graph-builder │ │ ├── README.md │ │ ├── SimpleAdjacencyGraphBuilderDemo.js │ │ ├── SimpleAdjacencyGraphBuilderDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── simple-graph-builder-implicit-groups │ │ ├── README.md │ │ ├── SimpleGraphBuilderImplicitGroupsDemo.js │ │ ├── SimpleGraphBuilderImplicitGroupsDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── simple-graph-builder │ │ ├── README.md │ │ ├── SimpleGraphBuilderDemo.js │ │ ├── SimpleGraphBuilderDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── simple-tree-builder-array │ │ ├── README.md │ │ ├── SimpleTreeBuilderArrayDemo.js │ │ ├── SimpleTreeBuilderArrayDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── simple-tree-builder-json │ │ ├── README.md │ │ ├── SimpleTreeBuilderJsonDemo.js │ │ ├── SimpleTreeBuilderJsonDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ └── treebuilder │ │ ├── EditTreeNodeSourceDialog.js │ │ ├── EditTreeNodeSourceDialog.ts │ │ ├── ModelClasses.js │ │ ├── ModelClasses.ts │ │ ├── README.md │ │ ├── SchemaComponent.js │ │ ├── SchemaComponent.ts │ │ ├── TreeBuilderDemo.js │ │ ├── TreeBuilderDemo.ts │ │ ├── index.html │ │ ├── samples.js │ │ └── samples.ts ├── demo-app │ ├── README.html │ ├── README.md │ ├── app │ │ ├── FaultTolerantGraphMLIOHandler.js │ │ ├── FaultTolerantGraphMLIOHandler.ts │ │ ├── README.md │ │ ├── build-graph.js │ │ ├── build-graph.ts │ │ ├── default-app.js │ │ ├── default-app.ts │ │ ├── default-menu.js │ │ ├── default-menu.ts │ │ ├── demo-app.js │ │ ├── demo-app.ts │ │ ├── graphml-support.js │ │ ├── graphml-support.ts │ │ ├── menu.js │ │ ├── menu.ts │ │ ├── presentation-support.js │ │ └── presentation-support.ts │ ├── apply-local-storage-variables.js │ ├── benchmarking.js │ ├── benchmarking.ts │ ├── codemirror-editor.js │ ├── codemirror-editor.ts │ ├── codemirror-linters.js │ ├── codemirror-linters.ts │ ├── demo-colors.js │ ├── demo-colors.ts │ ├── demo-option-editor.d.ts │ ├── demo-option-editor.js │ ├── demo-page-init.js │ ├── demo-page-init.ts │ ├── demo-page.js │ ├── demo-page.ts │ ├── demo-styles.js │ ├── demo-styles.ts │ ├── demo-ui │ │ ├── BrowserDetection.js │ │ ├── BrowserDetection.ts │ │ ├── demo-error.js │ │ ├── demo-error.ts │ │ ├── element-utils.js │ │ ├── element-utils.ts │ │ ├── finish-loading.js │ │ ├── finish-loading.ts │ │ ├── meta-quest-support.js │ │ ├── meta-quest-support.ts │ │ ├── toolbar.js │ │ └── toolbar.ts │ ├── icons │ │ ├── align-bottom-16.svg │ │ ├── align-horizontal-16.svg │ │ ├── align-left-16.svg │ │ ├── align-right-16.svg │ │ ├── align-top-16.svg │ │ ├── align-vertical-16.svg │ │ ├── arrow-down-16.svg │ │ ├── arrow-left-16.svg │ │ ├── arrow-left-alt.svg │ │ ├── arrow-right-16.svg │ │ ├── arrow-to-start.svg │ │ ├── arrow-up-16.svg │ │ ├── arrowheadDownWhite.png │ │ ├── arrowheadRightWhite.png │ │ ├── cancel-16.svg │ │ ├── copy-16.svg │ │ ├── cut2-16.svg │ │ ├── delete2-16.svg │ │ ├── delete3-16.svg │ │ ├── demagnify-16.svg │ │ ├── distribute-horizontal-16.svg │ │ ├── distribute-vertical-16.svg │ │ ├── download-16.svg │ │ ├── edge-direction-16.svg │ │ ├── edge-thickness-16.svg │ │ ├── edgelabel-16.svg │ │ ├── enter-group-16.svg │ │ ├── exit-group-16.svg │ │ ├── export-image-16.svg │ │ ├── export-image2-16.svg │ │ ├── favicon.ico │ │ ├── fit-16.svg │ │ ├── grid-16.svg │ │ ├── group-16.svg │ │ ├── group-chevron-down-16.svg │ │ ├── group-chevron-up-16.svg │ │ ├── group-minus-16.svg │ │ ├── group-plus-16.svg │ │ ├── group-triangle-down-16.svg │ │ ├── group-triangle-up-16.svg │ │ ├── header-angle.svg │ │ ├── layout-circular-16.svg │ │ ├── layout-hierarchic-16.svg │ │ ├── layout-organic-16.svg │ │ ├── layout-tree-16.svg │ │ ├── loading.svg │ │ ├── magnify-16.svg │ │ ├── minus-16.svg │ │ ├── minus2-16.svg │ │ ├── new-document-16.svg │ │ ├── nodelabel-16.svg │ │ ├── ok-16.svg │ │ ├── ok2-16.svg │ │ ├── open-16.svg │ │ ├── orthogonal-editing-16.svg │ │ ├── paste-16.svg │ │ ├── pause.svg │ │ ├── play-16.svg │ │ ├── play2-16.svg │ │ ├── plus-16.svg │ │ ├── plus2-16.svg │ │ ├── print-16.svg │ │ ├── redo-16.svg │ │ ├── reload-16.svg │ │ ├── save-16.svg │ │ ├── search-16.svg │ │ ├── settings-16.svg │ │ ├── settings2-16.svg │ │ ├── sidebar-close-left.svg │ │ ├── sidebar-expand-left.svg │ │ ├── sidebar-left.svg │ │ ├── sidebar-left_white.svg │ │ ├── sidebar-right-close.svg │ │ ├── sidebar-right.svg │ │ ├── sidebar-right_white.svg │ │ ├── simple-arrow-left.svg │ │ ├── simple-arrow-right.svg │ │ ├── single-arrow-right.svg │ │ ├── snap-16.svg │ │ ├── star-16.svg │ │ ├── theme-dark.svg │ │ ├── theme-light.svg │ │ ├── top.svg │ │ ├── undo-16.svg │ │ ├── ungroup-16.svg │ │ ├── ylogo-text.svg │ │ ├── ylogo.svg │ │ ├── z-order-bottom-16.svg │ │ ├── z-order-down-16.svg │ │ ├── z-order-top-16.svg │ │ ├── z-order-up-16.svg │ │ └── zoom-original3-16.svg │ ├── init-demo-app.js │ ├── init-demo-app.ts │ ├── npm-shrinkwrap.json │ ├── package-deploy.json │ ├── package.json │ ├── page-init │ │ ├── additional-sidebar.js │ │ ├── additional-sidebar.ts │ │ ├── fullscreen-button-component.js │ │ ├── fullscreen-button-component.ts │ │ ├── show-source-component.js │ │ ├── show-source-component.ts │ │ ├── sidebars.js │ │ ├── sidebars.ts │ │ ├── theme-button-component.js │ │ ├── theme-button-component.ts │ │ ├── variables.js │ │ └── variables.ts │ ├── readme-demo-data.js │ ├── readme-demo-support.js │ ├── style │ │ ├── demo-option-editor.css │ │ ├── demo.css │ │ ├── hljs-dark.css │ │ ├── hljs-light.css │ │ ├── loading-demo.css │ │ └── tutorial.css │ └── vite-env.d.ts ├── graphml-compatibility │ ├── BevelNodeStyle.js │ ├── BevelNodeStyle.ts │ ├── GraphMLCompatibility.js │ ├── GraphMLCompatibility.ts │ ├── LabelModelExtensions.js │ ├── LabelModelExtensions.ts │ ├── PanelNodeStyle.js │ ├── PanelNodeStyle.ts │ ├── PortLocationModelExtensions.js │ ├── PortLocationModelExtensions.ts │ ├── ShapeNodeStyle.js │ ├── ShapeNodeStyle.ts │ ├── ShinyPlateNodeStyle.js │ ├── ShinyPlateNodeStyle.ts │ ├── StyleExtensions.js │ ├── StyleExtensions.ts │ ├── TableExtensions.js │ ├── TableExtensions.ts │ ├── node-style-utils.js │ └── node-style-utils.ts ├── input │ ├── border-aligned-label-model │ │ ├── BorderAlignedLabelModel.js │ │ ├── BorderAlignedLabelModel.ts │ │ ├── BorderAlignedLabelModelDemo.js │ │ ├── BorderAlignedLabelModelDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── button-input-mode │ │ ├── ButtonInputMode.js │ │ ├── ButtonInputMode.ts │ │ ├── ButtonInputModeDemo.js │ │ ├── ButtonInputModeDemo.ts │ │ ├── OffsetLabelModelWrapper.js │ │ ├── OffsetLabelModelWrapper.ts │ │ ├── README.md │ │ ├── button-input-mode.css │ │ ├── graph-data.json │ │ └── index.html │ ├── circle-snapping │ │ ├── CircleSnapResultProvider.js │ │ ├── CircleSnapResultProvider.ts │ │ ├── CircleSnappingDemo.js │ │ ├── CircleSnappingDemo.ts │ │ ├── EqualAngleObjectRenderer.js │ │ ├── EqualAngleObjectRenderer.ts │ │ ├── README.md │ │ ├── SnapCircleProvider.js │ │ ├── SnapCircleProvider.ts │ │ ├── SnapReferences.js │ │ ├── SnapReferences.ts │ │ ├── index.html │ │ └── resources │ │ │ └── circle-snapping.json │ ├── componentdraganddrop │ │ ├── ClearAreaLayoutHelper.js │ │ ├── ClearAreaLayoutHelper.ts │ │ ├── ComponentDragAndDropDemo.js │ │ ├── ComponentDragAndDropDemo.ts │ │ ├── GraphDropInputMode.js │ │ ├── GraphDropInputMode.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── PaletteComponents.json │ │ │ └── SampleGraph.json │ ├── context-menu │ │ ├── ContextMenuDemo.js │ │ ├── ContextMenuDemo.ts │ │ ├── CustomContextMenuIcons.js │ │ ├── CustomContextMenuIcons.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── custom-drag-and-drop │ │ ├── ColorDropInputMode.js │ │ ├── ColorDropInputMode.ts │ │ ├── CustomDragAndDropDemo.js │ │ ├── CustomDragAndDropDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── custom-handle-provider │ │ ├── ArrowNodeStyleAngleHandle.js │ │ ├── ArrowNodeStyleAngleHandle.ts │ │ ├── ArrowNodeStyleHandleProvider.js │ │ ├── ArrowNodeStyleHandleProvider.ts │ │ ├── ArrowNodeStyleShaftRatioHandle.js │ │ ├── ArrowNodeStyleShaftRatioHandle.ts │ │ ├── CustomHandleProviderDemo.js │ │ ├── CustomHandleProviderDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── customedgecreation │ │ ├── CustomEdgeCreationDemo.js │ │ ├── CustomEdgeCreationDemo.ts │ │ ├── PortCandidateRenderer.js │ │ ├── PortCandidateRenderer.ts │ │ ├── README.md │ │ ├── RoutingCreateEdgeInputMode.js │ │ ├── RoutingCreateEdgeInputMode.ts │ │ └── index.html │ ├── customportmodel │ │ ├── CustomNodePortLocationModel.js │ │ ├── CustomNodePortLocationModel.ts │ │ ├── CustomPortModelDemo.js │ │ ├── CustomPortModelDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── customsnapping │ │ ├── AdditionalSnapLineMoveInputMode.js │ │ ├── AdditionalSnapLineMoveInputMode.ts │ │ ├── AdditionalSnapLinePositionHandler.js │ │ ├── AdditionalSnapLinePositionHandler.ts │ │ ├── AdditionalSnapLineVisualCreator.js │ │ ├── AdditionalSnapLineVisualCreator.ts │ │ ├── CustomSnappingDemo.js │ │ ├── CustomSnappingDemo.ts │ │ ├── OrthogonalLabelSnapLineProviderWrapper.js │ │ ├── OrthogonalLabelSnapLineProviderWrapper.ts │ │ ├── README.md │ │ ├── ShapeBasedGridNodeSnapResultProvider.js │ │ ├── ShapeBasedGridNodeSnapResultProvider.ts │ │ └── index.html │ ├── drag-from-component │ │ ├── DragFromComponentDemo.js │ │ ├── DragFromComponentDemo.ts │ │ ├── NodeDragInputMode.js │ │ ├── NodeDragInputMode.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── draganddrop │ │ ├── DragAndDropDemo.js │ │ ├── DragAndDropDemo.ts │ │ ├── README.md │ │ ├── drag-and-drop.js │ │ ├── drag-and-drop.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── drag-and-drop-demo.css │ │ │ ├── graph-data.json │ │ │ └── y.svg │ ├── edgereconnection │ │ ├── BlueEdgePortCandidateProvider.js │ │ ├── BlueEdgePortCandidateProvider.ts │ │ ├── EdgeReconnectionPortCandidateProviderDemo.js │ │ ├── EdgeReconnectionPortCandidateProviderDemo.ts │ │ ├── GreenEdgePortCandidateProvider.js │ │ ├── GreenEdgePortCandidateProvider.ts │ │ ├── OrangeEdgePortCandidateProvider.js │ │ ├── OrangeEdgePortCandidateProvider.ts │ │ ├── README.md │ │ ├── RedEdgePortCandidateProvider.js │ │ ├── RedEdgePortCandidateProvider.ts │ │ └── index.html │ ├── graph-drag-and-drop │ │ ├── GraphDragAndDropDemo.js │ │ ├── GraphDragAndDropDemo.ts │ │ ├── GraphDropInputMode.js │ │ ├── GraphDropInputMode.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ └── graphs.json │ ├── interactivegraphrestructuring │ │ ├── EdgePositionHandler.js │ │ ├── EdgePositionHandler.ts │ │ ├── InteractiveGraphRestructuringDemo.js │ │ ├── InteractiveGraphRestructuringDemo.ts │ │ ├── README.md │ │ ├── RelocateSubtreeLayoutHelper.js │ │ ├── RelocateSubtreeLayoutHelper.ts │ │ ├── Subtree.js │ │ ├── Subtree.ts │ │ ├── SubtreePositionHandler.js │ │ ├── SubtreePositionHandler.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── GraphData.js │ │ │ └── GraphData.ts │ ├── labelediting │ │ ├── CustomEditLabelHelper.js │ │ ├── CustomEditLabelHelper.ts │ │ ├── LabelEditingDemo.js │ │ ├── LabelEditingDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── labelhandleprovider │ │ ├── LabelHandleProvider.js │ │ ├── LabelHandleProvider.ts │ │ ├── LabelHandleProviderDemo.js │ │ ├── LabelHandleProviderDemo.ts │ │ ├── LabelResizeHandle.js │ │ ├── LabelResizeHandle.ts │ │ ├── LabelRotateHandle.js │ │ ├── LabelRotateHandle.ts │ │ ├── README.md │ │ ├── RotatableLabelSelectionStyle.js │ │ ├── RotatableLabelSelectionStyle.ts │ │ └── index.html │ ├── lasso-selection │ │ ├── LassoSelectionDemo.js │ │ ├── LassoSelectionDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── magnifying-glass │ │ ├── LensInputMode.js │ │ ├── LensInputMode.ts │ │ ├── MagnifyingGlassDemo.js │ │ ├── MagnifyingGlassDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── network-sample.js │ │ │ └── network-sample.ts │ ├── marquee-node-creation │ │ ├── MarqueeNodeCreationDemo.js │ │ ├── MarqueeNodeCreationDemo.ts │ │ ├── MyMarqueeSelectionInputMode.js │ │ ├── MyMarqueeSelectionInputMode.ts │ │ ├── README.md │ │ └── index.html │ ├── mousewheel-customization │ │ ├── MouseWheelCustomizationDemo.js │ │ ├── MouseWheelCustomizationDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── moveunselectednodes │ │ ├── MoveUnselectedNodesDemo.js │ │ ├── MoveUnselectedNodesDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── nodeselectionresizing │ │ ├── NodeSelectionResizingDemo.js │ │ ├── NodeSelectionResizingDemo.ts │ │ ├── NodeSelectionResizingInputMode.js │ │ ├── NodeSelectionResizingInputMode.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── offset-wrapper-label-model │ │ ├── OffsetWrapperLabelModel.js │ │ ├── OffsetWrapperLabelModel.ts │ │ ├── OffsetWrapperLabelModelDemo.js │ │ ├── OffsetWrapperLabelModelDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── orthogonal-edge-editing-customization │ │ ├── BlueBendCreator.js │ │ ├── BlueBendCreator.ts │ │ ├── BlueOrthogonalEdgeHelper.js │ │ ├── BlueOrthogonalEdgeHelper.ts │ │ ├── NodeLayoutPortLocationHandle.js │ │ ├── NodeLayoutPortLocationHandle.ts │ │ ├── OrangeOrthogonalEdgeHelper.js │ │ ├── OrangeOrthogonalEdgeHelper.ts │ │ ├── OrthogonalEdgeEditingCustomizationDemo.js │ │ ├── OrthogonalEdgeEditingCustomizationDemo.ts │ │ ├── PortLookupEdgePortHandleProvider.js │ │ ├── PortLookupEdgePortHandleProvider.ts │ │ ├── PurpleOrthogonalEdgeHelper.js │ │ ├── PurpleOrthogonalEdgeHelper.ts │ │ ├── README.md │ │ ├── RedOrthogonalEdgeHelper.js │ │ ├── RedOrthogonalEdgeHelper.ts │ │ ├── YellowOrthogonalEdgeHelper.js │ │ ├── YellowOrthogonalEdgeHelper.ts │ │ └── index.html │ ├── portcandidateprovider │ │ ├── BluePortCandidateProvider.js │ │ ├── BluePortCandidateProvider.ts │ │ ├── GreenPortCandidateProvider.js │ │ ├── GreenPortCandidateProvider.ts │ │ ├── OrangePortCandidateProvider.js │ │ ├── OrangePortCandidateProvider.ts │ │ ├── PortCandidateProviderDemo.js │ │ ├── PortCandidateProviderDemo.ts │ │ ├── README.md │ │ ├── RedPortCandidateProvider.js │ │ ├── RedPortCandidateProvider.ts │ │ └── index.html │ ├── positionhandler │ │ ├── GreenPositionHandler.js │ │ ├── GreenPositionHandler.ts │ │ ├── LimitingRectangleRenderer.js │ │ ├── LimitingRectangleRenderer.ts │ │ ├── OrangePositionHandler.js │ │ ├── OrangePositionHandler.ts │ │ ├── PositionHandlerDemo.js │ │ ├── PositionHandlerDemo.ts │ │ ├── README.md │ │ ├── RedPositionHandler.js │ │ ├── RedPositionHandler.ts │ │ └── index.html │ ├── reparenthandler │ │ ├── DemoReparentNodeHandler.js │ │ ├── DemoReparentNodeHandler.ts │ │ ├── README.md │ │ ├── ReparentHandlerDemo.js │ │ ├── ReparentHandlerDemo.ts │ │ └── index.html │ ├── reshapehandleconfiguration │ │ ├── ClickableNodeReshapeHandleProvider.js │ │ ├── ClickableNodeReshapeHandleProvider.ts │ │ ├── LimitingRectangleRenderer.js │ │ ├── LimitingRectangleRenderer.ts │ │ ├── PurpleNodeReshapeHandleProvider.js │ │ ├── PurpleNodeReshapeHandleProvider.ts │ │ ├── README.md │ │ ├── ReshapeHandleProviderConfigurationDemo.js │ │ ├── ReshapeHandleProviderConfigurationDemo.ts │ │ └── index.html │ ├── reshapehandleprovider │ │ ├── PortReshapeHandle.js │ │ ├── PortReshapeHandle.ts │ │ ├── PortReshapeHandlerProvider.js │ │ ├── PortReshapeHandlerProvider.ts │ │ ├── README.md │ │ ├── ReshapeHandleProviderDemo.js │ │ ├── ReshapeHandleProviderDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ └── sample.graphml │ ├── restricted-editing │ │ ├── EdgePositionHandler.js │ │ ├── EdgePositionHandler.ts │ │ ├── README.md │ │ ├── RestrictedEditingDemo.js │ │ ├── RestrictedEditingDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── single-selection │ │ ├── README.md │ │ ├── SingleSelectionDemo.js │ │ ├── SingleSelectionDemo.ts │ │ ├── SingleSelectionHelper.js │ │ ├── SingleSelectionHelper.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── sizeconstraintprovider │ │ ├── BlueSizeConstraintProvider.js │ │ ├── BlueSizeConstraintProvider.ts │ │ ├── GreenSizeConstraintProvider.js │ │ ├── GreenSizeConstraintProvider.ts │ │ ├── LimitingRectangleRenderer.js │ │ ├── LimitingRectangleRenderer.ts │ │ ├── README.md │ │ ├── SizeConstraintProviderDemo.js │ │ ├── SizeConstraintProviderDemo.ts │ │ └── index.html │ ├── touchcustomization │ │ ├── DialContextMenu.js │ │ ├── DialContextMenu.ts │ │ ├── EdgeReconnectionPortCandidateProvider.js │ │ ├── EdgeReconnectionPortCandidateProvider.ts │ │ ├── NodePortCandidateProvider.js │ │ ├── NodePortCandidateProvider.ts │ │ ├── PortCandidateRenderer.js │ │ ├── PortCandidateRenderer.ts │ │ ├── README.md │ │ ├── TouchEditor.css │ │ ├── TouchEditorDemo.js │ │ ├── TouchEditorDemo.ts │ │ ├── TouchHandlesRenderer.js │ │ ├── TouchHandlesRenderer.ts │ │ ├── WrappingHandle.js │ │ ├── WrappingHandle.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── backward.svg │ │ │ ├── copy.svg │ │ │ ├── create-bend.svg │ │ │ ├── create-edge.svg │ │ │ ├── create-node.svg │ │ │ ├── cut.svg │ │ │ ├── delete.svg │ │ │ ├── edit.svg │ │ │ ├── fit-content.svg │ │ │ ├── forward.svg │ │ │ ├── group.svg │ │ │ └── paste.svg │ └── valid-begin-cursors │ │ ├── CustomCursorIcons.js │ │ ├── CustomCursorIcons.ts │ │ ├── EdgeHitTestable.js │ │ ├── EdgeHitTestable.ts │ │ ├── README.md │ │ ├── ValidBeginCursorsDemo.js │ │ ├── ValidBeginCursorsDemo.ts │ │ ├── graph-data.json │ │ └── index.html ├── layout-features │ ├── compact-disk-groups │ │ ├── CompactDiskGroupsDemo.js │ │ ├── CompactDiskGroupsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── sample.json │ │ └── style.css │ ├── compact-tabular-layout │ │ ├── CompactTabularLayoutDemo.js │ │ ├── CompactTabularLayoutDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── edge-router-buses-custom │ │ ├── EdgeRouterBusesCustomDemo.js │ │ ├── EdgeRouterBusesCustomDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── edge-router-buses │ │ ├── EdgeRouterBusesDemo.js │ │ ├── EdgeRouterBusesDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── edge-router-incremental │ │ ├── EdgeRouterIncrementalDemo.js │ │ ├── EdgeRouterIncrementalDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── edge-router │ │ ├── EdgeRouterDemo.js │ │ ├── EdgeRouterDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── sample.json │ │ └── style.css │ ├── hierarchical-compact-groups │ │ ├── HierarchicalCompactGroupsDemo.js │ │ ├── HierarchicalCompactGroupsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-constraints │ │ ├── HierarchicalConstraintsDemo.js │ │ ├── HierarchicalConstraintsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-edge-grouping │ │ ├── HierarchicalEdgeGroupingDemo.js │ │ ├── HierarchicalEdgeGroupingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-edge-labeling │ │ ├── HierarchicalEdgeLabelingDemo.js │ │ ├── HierarchicalEdgeLabelingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-given-layering │ │ ├── HierarchicalGivenLayeringDemo.js │ │ ├── HierarchicalGivenLayeringDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-incremental │ │ ├── HierarchicalIncrementalDemo.js │ │ ├── HierarchicalIncrementalDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-layer-constraints │ │ ├── HierarchicalLayerConstraintsDemo.js │ │ ├── HierarchicalLayerConstraintsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-node-alignment │ │ ├── HierarchicalNodeAlignmentDemo.js │ │ ├── HierarchicalNodeAlignmentDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── sample.json │ │ └── style.css │ ├── hierarchical-node-port-candidates │ │ ├── HierarchicalNodePortCandidatesDemo.js │ │ ├── HierarchicalNodePortCandidatesDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical-sequence-constraints │ │ ├── HierarchicalSequenceConstraintsDemo.js │ │ ├── HierarchicalSequenceConstraintsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── hierarchical │ │ ├── HierarchicalDemo.js │ │ ├── HierarchicalDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── sample.json │ │ └── style.css │ ├── organic-constraints │ │ ├── OrganicConstraintsDemo.js │ │ ├── OrganicConstraintsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── organic-edge-labeling │ │ ├── OrganicEdgeLabelingDemo.js │ │ ├── OrganicEdgeLabelingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── organic-incremental │ │ ├── OrganicIncrementalDemo.js │ │ ├── OrganicIncrementalDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── organic-substructures │ │ ├── OrganicSubstructuresDemo.js │ │ ├── OrganicSubstructuresDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── organic │ │ ├── OrganicDemo.js │ │ ├── OrganicDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── orthogonal │ │ ├── OrthogonalDemo.js │ │ ├── OrthogonalDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── sample.json │ ├── radial-group │ │ ├── README.md │ │ ├── RadialGroupDemo.js │ │ ├── RadialGroupDemo.ts │ │ ├── index.html │ │ └── sample.json │ ├── recursive-group-layout │ │ ├── README.md │ │ ├── RecursiveGroupLayoutDemo.js │ │ ├── RecursiveGroupLayoutDemo.ts │ │ ├── index.html │ │ └── sample.json │ ├── tree-node-placers │ │ ├── README.md │ │ ├── TreeNodePlacersDemo.js │ │ ├── TreeNodePlacersDemo.ts │ │ ├── index.html │ │ └── sample.json │ └── tree │ │ ├── README.md │ │ ├── TreeDemo.js │ │ ├── TreeDemo.ts │ │ ├── index.html │ │ └── sample.json ├── layout │ ├── arc-diagram │ │ ├── ArcDiagramDemo.js │ │ ├── ArcDiagramDemo.ts │ │ ├── ArcDiagramLayout.js │ │ ├── ArcDiagramLayout.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── boundary-labeling │ │ ├── BoundaryLabelingDemo.js │ │ ├── BoundaryLabelingDemo.ts │ │ ├── ImageVisualCreator.js │ │ ├── ImageVisualCreator.ts │ │ ├── README.md │ │ ├── configure-layout.js │ │ ├── configure-layout.ts │ │ ├── data-types.js │ │ ├── data-types.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── earth-layers.svg │ │ │ ├── points-data.js │ │ │ └── points-data.ts │ ├── busrouting │ │ ├── BusRoutingDemo.js │ │ ├── BusRoutingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── circular-substructures │ │ ├── CircularSubstructuresDemo.js │ │ ├── CircularSubstructuresDemo.ts │ │ ├── README.md │ │ ├── configure-layout.js │ │ ├── configure-layout.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── SampleData.js │ │ │ ├── SampleData.ts │ │ │ ├── multipleStars-settings.json │ │ │ └── singleStar-settings.json │ │ ├── types-popup.js │ │ └── types-popup.ts │ ├── clearmarqueearea │ │ ├── ClearAreaLayoutHelper.js │ │ ├── ClearAreaLayoutHelper.ts │ │ ├── ClearMarqueeAreaDemo.js │ │ ├── ClearMarqueeAreaDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── clearrectanglearea │ │ ├── ClearAreaLayoutHelper.js │ │ ├── ClearAreaLayoutHelper.ts │ │ ├── ClearRectangleAreaDemo.js │ │ ├── ClearRectangleAreaDemo.ts │ │ ├── LayoutOptions.js │ │ ├── LayoutOptions.ts │ │ ├── README.md │ │ ├── RectanglePositionHandler.js │ │ ├── RectanglePositionHandler.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── criticalpaths │ │ ├── CriticalPathsDemo.js │ │ ├── CriticalPathsDemo.ts │ │ ├── PriorityPanel.js │ │ ├── PriorityPanel.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── custom-layout-stage │ │ ├── AlignmentStage.js │ │ ├── AlignmentStage.ts │ │ ├── CustomLayoutStageDemo.js │ │ ├── CustomLayoutStageDemo.ts │ │ ├── MoveNodesAsideStage.js │ │ ├── MoveNodesAsideStage.ts │ │ ├── README.md │ │ ├── ZigZagEdgesStage.js │ │ ├── ZigZagEdgesStage.ts │ │ └── index.html │ ├── edgebundling │ │ ├── DemoStyles.js │ │ ├── DemoStyles.ts │ │ ├── EdgeBundlingDemo.js │ │ ├── EdgeBundlingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── bccCircular.js │ │ │ ├── bccCircular.ts │ │ │ ├── circular.js │ │ │ ├── circular.ts │ │ │ ├── radial-tree.js │ │ │ ├── radial-tree.ts │ │ │ ├── radial.js │ │ │ ├── radial.ts │ │ │ ├── routing.js │ │ │ ├── routing.ts │ │ │ ├── tree.js │ │ │ └── tree.ts │ ├── edgegrouping │ │ ├── EdgeGroupingDemo.js │ │ ├── EdgeGroupingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ ├── SampleData.ts │ │ │ └── legend.svg │ ├── edgelabelplacement │ │ ├── EdgeLabelPlacementDemo.js │ │ ├── EdgeLabelPlacementDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── edgeroutergrouping │ │ ├── EdgeRouterGroupingDemo.js │ │ ├── EdgeRouterGroupingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ ├── SampleData.ts │ │ │ └── legend.svg │ ├── fillarealayout │ │ ├── FillAreaLayoutDemo.js │ │ ├── FillAreaLayoutDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── foldingwithlayout │ │ ├── ExpandCollapseNavigationHandler.js │ │ ├── ExpandCollapseNavigationHandler.ts │ │ ├── FoldingWithLayoutDemo.js │ │ ├── FoldingWithLayoutDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── height-profile │ │ ├── HeightProfileDemo.js │ │ ├── HeightProfileDemo.ts │ │ ├── README.md │ │ ├── configure-highlight.js │ │ ├── configure-highlight.ts │ │ ├── configure-layout.js │ │ ├── configure-layout.ts │ │ ├── create-graph.js │ │ ├── create-graph.ts │ │ ├── draw-axis.js │ │ ├── draw-axis.ts │ │ ├── draw-icon-description.js │ │ ├── draw-icon-description.ts │ │ ├── draw-trekking-trail.js │ │ ├── draw-trekking-trail.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── TrekkingData.js │ │ │ ├── TrekkingData.ts │ │ │ └── icons │ │ │ │ ├── baggersee.jpg │ │ │ │ ├── bebenhausen.jpg │ │ │ │ ├── botanical-garden.jpg │ │ │ │ ├── camping.svg │ │ │ │ ├── finish.svg │ │ │ │ ├── gniebel.jpg │ │ │ │ ├── golf.svg │ │ │ │ ├── grill.svg │ │ │ │ ├── hagelloch.jpg │ │ │ │ ├── kusterdingen.jpg │ │ │ │ ├── observation-point.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── paul-horn-arena.png │ │ │ │ ├── picnic.svg │ │ │ │ ├── start.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── tunnel.jpg │ │ │ │ ├── wanne.jpg │ │ │ │ ├── yWorks.jpg │ │ │ │ └── yWorks.svg │ │ ├── scale-data.js │ │ ├── scale-data.ts │ │ ├── styles.js │ │ └── styles.ts │ ├── hierarchical-grid-components │ │ ├── HierarchicalGridComponentsDemo.js │ │ ├── HierarchicalGridComponentsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── hierarchical-nesting-incremental │ │ ├── HierarchicalNestingIncrementalDemo.js │ │ ├── HierarchicalNestingIncrementalDemo.ts │ │ ├── InteractiveHierarchicalNestingLayout.js │ │ ├── InteractiveHierarchicalNestingLayout.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── sample-graph.js │ │ └── sample-graph.ts │ ├── hierarchical-nesting │ │ ├── HierarchicalNestingDemo.js │ │ ├── HierarchicalNestingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── interactive-hierarchical-nesting-layout.js │ │ ├── interactive-hierarchical-nesting-layout.ts │ │ ├── sample-graph.js │ │ └── sample-graph.ts │ ├── interactive-hierarchical │ │ ├── InteractiveHierarchicalDemo.js │ │ ├── InteractiveHierarchicalDemo.ts │ │ ├── LayerPositionHandler.js │ │ ├── LayerPositionHandler.ts │ │ ├── LayerVisual.js │ │ ├── LayerVisual.ts │ │ ├── PortCandidateBendHandle.js │ │ ├── PortCandidateBendHandle.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── interactiveedgerouting │ │ ├── InteractiveEdgeRoutingDemo.js │ │ ├── InteractiveEdgeRoutingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ └── sample.graphml │ ├── interactiveorganic │ │ ├── DemoStyles.js │ │ ├── DemoStyles.ts │ │ ├── GraphSynchronizer.js │ │ ├── GraphSynchronizer.ts │ │ ├── InteractiveOrganicDemo.js │ │ ├── InteractiveOrganicDemo.ts │ │ ├── InteractiveOrganicLayoutInputHelper.js │ │ ├── InteractiveOrganicLayoutInputHelper.ts │ │ ├── README.md │ │ ├── WorkerLayout.js │ │ ├── WorkerLayout.ts │ │ ├── graph-data.json │ │ ├── index.html │ │ ├── initializeWorkerLayout.js │ │ └── initializeWorkerLayout.ts │ ├── layerconstraints │ │ ├── LayerConstraintsDemo.js │ │ ├── LayerConstraintsDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── style-templates.js │ │ └── style-templates.ts │ ├── layoutgrid │ │ ├── LayoutGridDemo.js │ │ ├── LayoutGridDemo.ts │ │ ├── LayoutGridVisualCreator.js │ │ ├── LayoutGridVisualCreator.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── GraphData.js │ │ │ ├── GraphData.ts │ │ │ ├── grid-16.svg │ │ │ └── stretch-groups-16.svg │ ├── mazerouting │ │ ├── MazeRoutingDemo.js │ │ ├── MazeRoutingDemo.ts │ │ ├── MazeVisual.js │ │ ├── MazeVisual.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── maze.js │ │ │ └── maze.ts │ ├── metabolic-pathways │ │ ├── MetabolicPathwaysDemo.js │ │ ├── MetabolicPathwaysDemo.ts │ │ ├── README.md │ │ ├── configure-krebs-cycle-layout.js │ │ ├── configure-krebs-cycle-layout.ts │ │ ├── configure-pentose-layout.js │ │ ├── configure-pentose-layout.ts │ │ ├── data-types.js │ │ ├── data-types.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── krebs-cycle-data.js │ │ │ ├── krebs-cycle-data.ts │ │ │ ├── pentose-phosphate-data.js │ │ │ ├── pentose-phosphate-data.ts │ │ │ ├── reaction-small.svg │ │ │ └── reaction.svg │ │ ├── styles.js │ │ └── styles.ts │ ├── multipage │ │ ├── MultiPageDemo.js │ │ ├── MultiPageDemo.ts │ │ ├── MultiPageIGraphBuilder.js │ │ ├── MultiPageIGraphBuilder.ts │ │ ├── PageBoundsVisualCreator.js │ │ ├── PageBoundsVisualCreator.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── pop-artists-small.graphml │ │ │ └── yfiles-layout-namespaces.graphml │ ├── node-alignment │ │ ├── NodeAlignmentDemo.js │ │ ├── NodeAlignmentDemo.ts │ │ ├── README.md │ │ ├── SingleSelectionHelper.js │ │ ├── SingleSelectionHelper.ts │ │ ├── SnapDistanceVisualCreator.js │ │ ├── SnapDistanceVisualCreator.ts │ │ ├── configure-layout.js │ │ ├── configure-layout.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── node-alignment-data.js │ │ │ └── node-alignment-data.ts │ ├── node-labeling │ │ ├── CityLabelStyle.js │ │ ├── CityLabelStyle.ts │ │ ├── MapVisualCreator.js │ │ ├── MapVisualCreator.ts │ │ ├── NodeLabelingDemo.js │ │ ├── NodeLabelingDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── sample.js │ │ │ ├── sample.ts │ │ │ └── usamap.svg │ ├── nodeoverlapavoiding │ │ ├── LayoutHelper.js │ │ ├── LayoutHelper.ts │ │ ├── NodeOverlapAvoidingDemo.js │ │ ├── NodeOverlapAvoidingDemo.ts │ │ ├── NonOverlapPositionHandler.js │ │ ├── NonOverlapPositionHandler.ts │ │ ├── NonOverlapReshapeHandler.js │ │ ├── NonOverlapReshapeHandler.ts │ │ ├── README.md │ │ ├── SingleSelectionHelper.js │ │ ├── SingleSelectionHelper.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── nodetypes │ │ ├── NodeTypesDemo.js │ │ ├── NodeTypesDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── organic-substructures │ │ ├── OrganicSubstructuresDemo.js │ │ ├── OrganicSubstructuresDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── computer_network.graphml │ │ │ ├── computer_network.json │ │ │ ├── groups.graphml │ │ │ ├── groups.json │ │ │ ├── mixed_large.graphml │ │ │ ├── mixed_large.json │ │ │ ├── mixed_small.graphml │ │ │ ├── mixed_small.json │ │ │ ├── parallel.graphml │ │ │ ├── parallel.json │ │ │ ├── star.graphml │ │ │ └── star.json │ ├── partial │ │ ├── PartialLayoutDemo.js │ │ ├── PartialLayoutDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── circular.graphml │ │ │ ├── hierarchical.graphml │ │ │ ├── organic.graphml │ │ │ └── orthogonal.graphml │ ├── port-alignment │ │ ├── PortAlignmentDemo.js │ │ ├── PortAlignmentDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ └── sample.json │ ├── sankey │ │ ├── HTMLPopupSupport.js │ │ ├── HTMLPopupSupport.ts │ │ ├── README.md │ │ ├── SankeyDemo.js │ │ ├── SankeyDemo.ts │ │ ├── data-types.js │ │ ├── data-types.ts │ │ ├── edge-thickness.js │ │ ├── edge-thickness.ts │ │ ├── index.html │ │ ├── interaction │ │ │ ├── TagChangeUndoUnit.js │ │ │ ├── TagChangeUndoUnit.ts │ │ │ ├── configure-highlight.js │ │ │ ├── configure-highlight.ts │ │ │ ├── configure-interaction.js │ │ │ ├── configure-interaction.ts │ │ │ ├── constrain-node-movement.js │ │ │ └── constrain-node-movement.ts │ │ ├── node-popup.js │ │ ├── node-popup.ts │ │ ├── resources │ │ │ ├── samples.js │ │ │ └── samples.ts │ │ ├── sankey-layout.js │ │ ├── sankey-layout.ts │ │ ├── styles-support.js │ │ └── styles-support.ts │ ├── sequenceconstraints │ │ ├── README.md │ │ ├── SequenceConstraintsDemo.js │ │ ├── SequenceConstraintsDemo.ts │ │ ├── index.html │ │ ├── style-templates.js │ │ └── style-templates.ts │ ├── simplelayoutgrid │ │ ├── README.md │ │ ├── SimpleLayoutGridDemo.js │ │ ├── SimpleLayoutGridDemo.ts │ │ ├── SimpleLayoutGridVisualCreator.js │ │ ├── SimpleLayoutGridVisualCreator.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── GraphData.js │ │ │ └── GraphData.ts │ ├── splitedges │ │ ├── ContextMenuSupport.js │ │ ├── ContextMenuSupport.ts │ │ ├── README.md │ │ ├── SplitEdgesDemo.js │ │ ├── SplitEdgesDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── subcomponents │ │ ├── README.md │ │ ├── SubcomponentsDemo.js │ │ ├── SubcomponentsDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ └── sample.json │ ├── tabular-groups │ │ ├── HierarchicalLayoutTabularGroups.js │ │ ├── HierarchicalLayoutTabularGroups.ts │ │ ├── README.md │ │ ├── TabularGroupsDemo.js │ │ ├── TabularGroupsDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── database.json │ │ │ ├── simple.json │ │ │ └── uml.json │ ├── tree │ │ ├── README.md │ │ ├── SubtreePlacerPanel.js │ │ ├── SubtreePlacerPanel.ts │ │ ├── TreeLayoutConfigurations.js │ │ ├── TreeLayoutConfigurations.ts │ │ ├── TreeLayoutDemo.js │ │ ├── TreeLayoutDemo.ts │ │ ├── index.html │ │ ├── initialize-input-mode.js │ │ ├── initialize-input-mode.ts │ │ └── resources │ │ │ ├── TreeData.js │ │ │ ├── TreeData.ts │ │ │ ├── mirror-16.svg │ │ │ └── tree-layout-demo.css │ ├── treemap │ │ ├── README.md │ │ ├── TreeMapDemo.js │ │ ├── TreeMapDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── TreeMapData.js │ │ │ └── TreeMapData.ts │ └── without-view │ │ ├── LayoutWithoutViewDemo.js │ │ ├── LayoutWithoutViewDemo.ts │ │ ├── README.md │ │ └── index.html ├── loading │ ├── basic-demo │ │ ├── README.md │ │ ├── basic-demo.css │ │ ├── basic-demo.js │ │ ├── basic-demo.ts │ │ └── index.html │ ├── nodejs │ │ ├── NodeJSDemo.js │ │ ├── NodeJSDemo.ts │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ └── server │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── server.mjs │ ├── rollupjs │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.mjs │ │ └── src │ │ │ ├── LayoutWorker.js │ │ │ └── RollupJsDemo.js │ ├── vite-lazy-yfiles │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── diagram-component.ts │ │ │ ├── main.ts │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ └── vite.config.js │ ├── vite │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── layout-button.ts │ │ │ ├── layout-worker.ts │ │ │ ├── main.ts │ │ │ ├── resources │ │ │ │ ├── header-angle.svg │ │ │ │ ├── play2-16.svg │ │ │ │ ├── ylogo-text.svg │ │ │ │ └── ylogo.svg │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ └── vite.config.js │ ├── web-dev-server │ │ ├── README.html │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── create-sample-graph.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ └── ylogo.svg │ │ └── web-dev-server.config.mjs │ ├── webpack │ │ ├── README.html │ │ ├── README.md │ │ ├── index.template.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── css.d.ts │ │ │ └── webpack-demo.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ ├── webworker-webpack │ │ ├── README.html │ │ ├── README.md │ │ ├── index.template.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── WebWorkerWebpackDemo.ts │ │ │ ├── WorkerLayout.ts │ │ │ └── css.d.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ └── webworker │ │ ├── README.md │ │ ├── WebWorkerDemo.js │ │ ├── WebWorkerDemo.ts │ │ ├── WorkerLayout.js │ │ ├── WorkerLayout.ts │ │ ├── index.html │ │ └── resources │ │ ├── graph.js │ │ └── graph.ts ├── package.json ├── showcase │ ├── bpmn │ │ ├── BpmnEditorDemo.js │ │ ├── BpmnEditorDemo.ts │ │ ├── BpmnLayout.js │ │ ├── BpmnLayout.ts │ │ ├── BpmnLayoutData.js │ │ ├── BpmnLayoutData.ts │ │ ├── BpmnPopupSupport.js │ │ ├── BpmnPopupSupport.ts │ │ ├── README.md │ │ ├── bpmn-di.js │ │ ├── bpmn-di.ts │ │ ├── bpmn-view.js │ │ ├── bpmn-view.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── bpmn_di_sample.bpmn │ │ │ ├── business.graphml │ │ │ ├── collaboration.graphml │ │ │ ├── different_exception_flows.graphml │ │ │ ├── expanded_subprocess.graphml │ │ │ ├── lanes_segment.graphml │ │ │ ├── lanes_with_information_systems.graphml │ │ │ ├── matrix_lanes.graphml │ │ │ ├── process_normal_flow.graphml │ │ │ ├── project_application.graphml │ │ │ ├── simple_bpmn_model.graphml │ │ │ └── vertical_swimlanes.graphml │ ├── chord-diagram-non-ribbon │ │ ├── NonRibbonChordDiagramDemo.js │ │ ├── NonRibbonChordDiagramDemo.ts │ │ ├── NonRibbonEdgeStyle.js │ │ ├── NonRibbonEdgeStyle.ts │ │ ├── README.md │ │ ├── configure-highlight.js │ │ ├── configure-highlight.ts │ │ ├── index.html │ │ └── resources │ │ │ └── GraphData.json │ ├── chord-diagram │ │ ├── ChordDiagramDemo.js │ │ ├── ChordDiagramDemo.ts │ │ ├── ChordDiagramLayout.js │ │ ├── ChordDiagramLayout.ts │ │ ├── ChordEdgeStyle.js │ │ ├── ChordEdgeStyle.ts │ │ ├── CircleSegmentNodeStyle.js │ │ ├── CircleSegmentNodeStyle.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── company-ownership │ │ ├── CompanyOwnershipDemo.js │ │ ├── CompanyOwnershipDemo.ts │ │ ├── CompanyOwnershipSearch.js │ │ ├── CompanyOwnershipSearch.ts │ │ ├── CompanyStructureView.js │ │ ├── CompanyStructureView.ts │ │ ├── PropertiesView.js │ │ ├── PropertiesView.ts │ │ ├── README.md │ │ ├── TogglePortButtonSupport.js │ │ ├── TogglePortButtonSupport.ts │ │ ├── bridge-rendering.js │ │ ├── bridge-rendering.ts │ │ ├── configure-click-navigation.js │ │ ├── configure-click-navigation.ts │ │ ├── configure-highlight.js │ │ ├── configure-highlight.ts │ │ ├── configure-layout.js │ │ ├── configure-layout.ts │ │ ├── data-types.js │ │ ├── data-types.ts │ │ ├── enable-tooltips.js │ │ ├── enable-tooltips.ts │ │ ├── index.html │ │ ├── prepare-smooth-animation.js │ │ ├── prepare-smooth-animation.ts │ │ ├── resources │ │ │ ├── company-data.json │ │ │ ├── minus.svg │ │ │ ├── ownershipstyle.css │ │ │ └── plus.svg │ │ └── styles │ │ │ ├── CollapseExpandPortStyle.js │ │ │ ├── CollapseExpandPortStyle.ts │ │ │ ├── CompanyOwnershipEdgeStyles.js │ │ │ ├── CompanyOwnershipEdgeStyles.ts │ │ │ ├── CompanyOwnershipNodeStyles.js │ │ │ ├── CompanyOwnershipNodeStyles.ts │ │ │ ├── CustomShapeNodeStyle.js │ │ │ ├── CustomShapeNodeStyle.ts │ │ │ ├── TableNodeStyle.js │ │ │ └── TableNodeStyle.ts │ ├── decisiontree │ │ ├── DecisionTreeDemo.js │ │ ├── DecisionTreeDemo.ts │ │ ├── README.md │ │ ├── decision-tree-component │ │ │ ├── DecisionTree.js │ │ │ ├── DecisionTree.ts │ │ │ ├── decision-tree-component.js │ │ │ ├── decision-tree-component.ts │ │ │ └── decision-tree.css │ │ ├── editor-component │ │ │ ├── GroupNodePortCandidateProvider.js │ │ │ ├── GroupNodePortCandidateProvider.ts │ │ │ ├── context-menu.js │ │ │ ├── context-menu.ts │ │ │ ├── editor-component.js │ │ │ └── editor-component.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── icons │ │ │ │ ├── play2-16.svg │ │ │ │ └── settings-16.svg │ │ │ └── samples │ │ │ │ ├── cars.graphml │ │ │ │ ├── quiz.graphml │ │ │ │ └── what-to-do.graphml │ │ └── switch-components-button │ │ │ ├── switch-components-button.css │ │ │ ├── switch-components-button.js │ │ │ └── switch-components-button.ts │ ├── flowchart │ │ ├── FlowchartDemo.js │ │ ├── FlowchartDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── interaction │ │ │ ├── drag-and-drop.js │ │ │ ├── drag-and-drop.ts │ │ │ ├── snapping.js │ │ │ └── snapping.ts │ │ ├── layout │ │ │ ├── FlowchartLayout.js │ │ │ ├── FlowchartLayout.ts │ │ │ ├── FlowchartLayoutData.js │ │ │ ├── FlowchartLayoutData.ts │ │ │ ├── flowchart-elements.js │ │ │ ├── flowchart-elements.ts │ │ │ ├── layout-flowchart.js │ │ │ └── layout-flowchart.ts │ │ ├── model │ │ │ ├── flowchart-samples.js │ │ │ ├── flowchart-samples.ts │ │ │ ├── load-flowchart.js │ │ │ └── load-flowchart.ts │ │ ├── option-panel │ │ │ ├── option-panel.css │ │ │ ├── option-panel.js │ │ │ └── option-panel.ts │ │ └── style │ │ │ ├── FlowchartStyle.js │ │ │ ├── FlowchartStyle.ts │ │ │ ├── generate-graphMLIO-handler.js │ │ │ └── generate-graphMLIO-handler.ts │ ├── frauddetection │ │ ├── FraudDetectionDemo.js │ │ ├── FraudDetectionDemo.ts │ │ ├── README.md │ │ ├── entity-data.js │ │ ├── entity-data.ts │ │ ├── entity-tooltip.js │ │ ├── entity-tooltip.ts │ │ ├── fraud-detection │ │ │ ├── FraudHighlightManager.js │ │ │ ├── FraudHighlightManager.ts │ │ │ ├── fraud-components.js │ │ │ ├── fraud-components.ts │ │ │ ├── fraud-detection.js │ │ │ ├── fraud-detection.ts │ │ │ ├── inspection-view.js │ │ │ └── inspection-view.ts │ │ ├── index.html │ │ ├── initialize-highlights.js │ │ ├── initialize-highlights.ts │ │ ├── interactive-layout.js │ │ ├── interactive-layout.ts │ │ ├── properties-view.js │ │ ├── properties-view.ts │ │ ├── resources │ │ │ ├── bank-fraud-data.js │ │ │ ├── bank-fraud-data.ts │ │ │ ├── fraud-detection-demo.css │ │ │ ├── icons │ │ │ │ ├── accident.svg │ │ │ │ ├── address.svg │ │ │ │ ├── bank.svg │ │ │ │ ├── car.svg │ │ │ │ ├── close-large.svg │ │ │ │ ├── close-small.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── doctor.svg │ │ │ │ ├── fraud-warning.svg │ │ │ │ ├── lawyer.svg │ │ │ │ ├── legend.svg │ │ │ │ ├── loan.svg │ │ │ │ ├── new-account.svg │ │ │ │ ├── no-selection.svg │ │ │ │ ├── payment.svg │ │ │ │ ├── person.svg │ │ │ │ └── phone.svg │ │ │ ├── insurance-fraud-data.js │ │ │ └── insurance-fraud-data.ts │ │ ├── styles │ │ │ ├── ConnectionEdgeStyle.js │ │ │ ├── ConnectionEdgeStyle.ts │ │ │ ├── EntityNodeStyle.js │ │ │ ├── EntityNodeStyle.ts │ │ │ ├── graph-styles.js │ │ │ ├── graph-styles.ts │ │ │ ├── initialize-webgl-styles.js │ │ │ └── initialize-webgl-styles.ts │ │ └── timeline │ │ │ ├── AggregationFolderNodeConverter.js │ │ │ ├── AggregationFolderNodeConverter.ts │ │ │ ├── Styling.js │ │ │ ├── Styling.ts │ │ │ ├── TimeframeAnimation.js │ │ │ ├── TimeframeAnimation.ts │ │ │ ├── TimeframeRectangle.js │ │ │ ├── TimeframeRectangle.ts │ │ │ ├── Timeline.js │ │ │ ├── Timeline.ts │ │ │ ├── Utilities.js │ │ │ ├── Utilities.ts │ │ │ ├── bucket-aggregation.js │ │ │ ├── bucket-aggregation.ts │ │ │ ├── timeline-layout.js │ │ │ ├── timeline-layout.ts │ │ │ ├── timeline.css │ │ │ ├── tooltips.js │ │ │ └── tooltips.ts │ ├── graph-wizard-for-flowchart │ │ ├── Actions.js │ │ ├── Actions.ts │ │ ├── ColorThemes.js │ │ ├── ColorThemes.ts │ │ ├── FlowchartConfiguration.js │ │ ├── FlowchartConfiguration.ts │ │ ├── GraphWizardForFlowchartDemo.js │ │ ├── GraphWizardForFlowchartDemo.ts │ │ ├── GraphWizardInputMode.js │ │ ├── GraphWizardInputMode.ts │ │ ├── Preconditions.js │ │ ├── Preconditions.ts │ │ ├── README.md │ │ ├── Triggers.js │ │ ├── Triggers.ts │ │ ├── WizardAction.js │ │ ├── WizardAction.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── graph-creation-wizard.css │ │ │ └── icons │ │ │ ├── add-child.svg │ │ │ ├── add-non-tree-edge.svg │ │ │ ├── add-two-children.svg │ │ │ ├── delete.svg │ │ │ ├── edit.svg │ │ │ ├── flowchart-annotation.svg │ │ │ ├── flowchart-card.svg │ │ │ ├── flowchart-cloud.svg │ │ │ ├── flowchart-data.svg │ │ │ ├── flowchart-database.svg │ │ │ ├── flowchart-decision.svg │ │ │ ├── flowchart-delay.svg │ │ │ ├── flowchart-directData.svg │ │ │ ├── flowchart-display.svg │ │ │ ├── flowchart-document.svg │ │ │ ├── flowchart-internalStorage.svg │ │ │ ├── flowchart-loopLimit.svg │ │ │ ├── flowchart-loopLimitEnd.svg │ │ │ ├── flowchart-manualInput.svg │ │ │ ├── flowchart-manualOperation.svg │ │ │ ├── flowchart-networkMessage.svg │ │ │ ├── flowchart-offPageReference.svg │ │ │ ├── flowchart-onPageReference.svg │ │ │ ├── flowchart-paperType.svg │ │ │ ├── flowchart-predefinedProcess.svg │ │ │ ├── flowchart-preparation.svg │ │ │ ├── flowchart-process.svg │ │ │ ├── flowchart-sequentialData.svg │ │ │ ├── flowchart-start1.svg │ │ │ ├── flowchart-start2.svg │ │ │ ├── flowchart-storedData.svg │ │ │ ├── flowchart-terminator.svg │ │ │ ├── flowchart-userMessage.svg │ │ │ └── layout.svg │ ├── graphanalysis │ │ ├── GraphAnalysisDemo.js │ │ ├── GraphAnalysisDemo.ts │ │ ├── README.md │ │ ├── algorithms │ │ │ ├── algorithms.js │ │ │ ├── algorithms.ts │ │ │ ├── centrality.js │ │ │ ├── centrality.ts │ │ │ ├── connectivity.js │ │ │ ├── connectivity.ts │ │ │ ├── cycles.js │ │ │ ├── cycles.ts │ │ │ ├── minimum-spanning-tree.js │ │ │ ├── minimum-spanning-tree.ts │ │ │ ├── paths.js │ │ │ ├── paths.ts │ │ │ ├── substructures.js │ │ │ └── substructures.ts │ │ ├── demo-types.js │ │ ├── demo-types.ts │ │ ├── index.html │ │ ├── layout │ │ │ ├── CentralityStage.js │ │ │ ├── CentralityStage.ts │ │ │ ├── layout.js │ │ │ └── layout.ts │ │ ├── samples │ │ │ ├── samples.js │ │ │ └── samples.ts │ │ ├── styles.js │ │ ├── styles.ts │ │ └── ui │ │ │ ├── ComponentSwitchingInputMode.js │ │ │ ├── ComponentSwitchingInputMode.ts │ │ │ ├── algorithm-description.js │ │ │ ├── algorithm-description.ts │ │ │ ├── component-switching-input-mode.css │ │ │ ├── context-menu.js │ │ │ ├── context-menu.ts │ │ │ ├── graph-structure-information.css │ │ │ ├── graph-structure-information.js │ │ │ ├── graph-structure-information.ts │ │ │ ├── ui-utils.js │ │ │ └── ui-utils.ts │ ├── home-automation │ │ ├── FlowEdge │ │ │ ├── FlowEdge.js │ │ │ ├── FlowEdge.ts │ │ │ ├── FlowEdgeStyle.js │ │ │ ├── FlowEdgeStyle.ts │ │ │ ├── FlowPortRelocationHandleProvider.js │ │ │ ├── FlowPortRelocationHandleProvider.ts │ │ │ └── flowEdge.css │ │ ├── FlowNode │ │ │ ├── FlowEdgeReconnectionPortCandidateProvider.js │ │ │ ├── FlowEdgeReconnectionPortCandidateProvider.ts │ │ │ ├── FlowNode.js │ │ │ ├── FlowNode.ts │ │ │ ├── FlowNodePort.js │ │ │ ├── FlowNodePort.ts │ │ │ ├── FlowNodePortCandidateProvider.js │ │ │ ├── FlowNodePortCandidateProvider.ts │ │ │ ├── FlowNodePortStyle.js │ │ │ ├── FlowNodePortStyle.ts │ │ │ ├── FlowNodeStyle.js │ │ │ ├── FlowNodeStyle.ts │ │ │ ├── FlowNodeValidators.js │ │ │ ├── FlowNodeValidators.ts │ │ │ ├── flowNodeProperties.js │ │ │ ├── flowNodeProperties.ts │ │ │ ├── icons.js │ │ │ └── icons.ts │ │ ├── HomeAutomationDemo.js │ │ ├── HomeAutomationDemo.ts │ │ ├── ImportExportManager │ │ │ ├── EdgeData.js │ │ │ ├── EdgeData.ts │ │ │ ├── GraphData.js │ │ │ ├── GraphData.ts │ │ │ ├── ImportExportManager.js │ │ │ ├── ImportExportManager.ts │ │ │ ├── NodeData.js │ │ │ └── NodeData.ts │ │ ├── README.md │ │ ├── UI │ │ │ ├── initializeContextMenu.js │ │ │ ├── initializeContextMenu.ts │ │ │ ├── initializeDragAndDropPanel.js │ │ │ ├── initializeDragAndDropPanel.ts │ │ │ ├── initializeTagExplorer.js │ │ │ ├── initializeTagExplorer.ts │ │ │ ├── initializeToolbar.js │ │ │ ├── initializeToolbar.ts │ │ │ ├── initializeTooltips.js │ │ │ ├── initializeTooltips.ts │ │ │ ├── showErrorDialog.js │ │ │ └── showErrorDialog.ts │ │ ├── index.html │ │ ├── inputMode │ │ │ ├── FlowCreateEdgeInputMode.js │ │ │ ├── FlowCreateEdgeInputMode.ts │ │ │ ├── FlowMoveInputMode.js │ │ │ ├── FlowMoveInputMode.ts │ │ │ ├── configureInputMode.js │ │ │ └── configureInputMode.ts │ │ ├── layout │ │ │ ├── HierarchicalLayout.js │ │ │ ├── HierarchicalLayout.ts │ │ │ ├── initializeGrid.js │ │ │ ├── initializeGrid.ts │ │ │ ├── initializeSnapping.js │ │ │ ├── initializeSnapping.ts │ │ │ ├── runLayout.js │ │ │ └── runLayout.ts │ │ ├── resources │ │ │ ├── style.css │ │ │ ├── weather-data.js │ │ │ └── weather-data.ts │ │ └── utils │ │ │ ├── configureDragAndDrop.js │ │ │ ├── configureDragAndDrop.ts │ │ │ ├── configureGraphEvents.js │ │ │ ├── configureGraphEvents.ts │ │ │ ├── customTriggers.js │ │ │ └── customTriggers.ts │ ├── isometricdrawing │ │ ├── HeightHandle.js │ │ ├── HeightHandle.ts │ │ ├── HeightHandleProvider.js │ │ ├── HeightHandleProvider.ts │ │ ├── IsometricDrawingDemo.js │ │ ├── IsometricDrawingDemo.ts │ │ ├── IsometricNodeComparator.js │ │ ├── IsometricNodeComparator.ts │ │ ├── IsometricNodeStyle.js │ │ ├── IsometricNodeStyle.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── IsometricData.js │ │ │ └── IsometricData.ts │ ├── large-graphs │ │ ├── DemoConfiguration.js │ │ ├── DemoConfiguration.ts │ │ ├── LargeGraphDemoConfiguration.js │ │ ├── LargeGraphDemoConfiguration.ts │ │ ├── LargeGraphsDemo.js │ │ ├── LargeGraphsDemo.ts │ │ ├── OrgChartDemoConfiguration.js │ │ ├── OrgChartDemoConfiguration.ts │ │ ├── README.md │ │ ├── RenderingTypesManager.js │ │ ├── RenderingTypesManager.ts │ │ ├── SVGDataURLFetch.js │ │ ├── SVGDataURLFetch.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── demo-style.css │ │ │ ├── hierarchic-10000-11000-circles.json │ │ │ ├── icons │ │ │ ├── busy_icon.svg │ │ │ ├── present_icon.svg │ │ │ ├── travel_icon.svg │ │ │ ├── unavailable_icon.svg │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_female4.svg │ │ │ ├── usericon_female5.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ ├── usericon_male3.svg │ │ │ ├── usericon_male4.svg │ │ │ └── usericon_male5.svg │ │ │ ├── orgchart.json │ │ │ └── radial_tree_10000_9999.json │ ├── largegraphaggregation │ │ ├── AggregationHelper.js │ │ ├── AggregationHelper.ts │ │ ├── LargeGraphAggregationDemo.js │ │ ├── LargeGraphAggregationDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleGraph.js │ │ │ └── SampleGraph.ts │ ├── layoutstyles │ │ ├── CircularLayoutConfig.js │ │ ├── CircularLayoutConfig.ts │ │ ├── CompactDiskLayoutConfig.js │ │ ├── CompactDiskLayoutConfig.ts │ │ ├── ComponentLayoutConfig.js │ │ ├── ComponentLayoutConfig.ts │ │ ├── HandleEdgesBetweenGroupsStage.js │ │ ├── HandleEdgesBetweenGroupsStage.ts │ │ ├── HierarchicalLayoutConfig.js │ │ ├── HierarchicalLayoutConfig.ts │ │ ├── LabelingConfig.js │ │ ├── LabelingConfig.ts │ │ ├── LayoutConfiguration.js │ │ ├── LayoutConfiguration.ts │ │ ├── LayoutStylesDemo.js │ │ ├── LayoutStylesDemo.ts │ │ ├── LayoutTransformationsConfig.js │ │ ├── LayoutTransformationsConfig.ts │ │ ├── OrganicEdgeRouterConfig.js │ │ ├── OrganicEdgeRouterConfig.ts │ │ ├── OrganicLayoutConfig.js │ │ ├── OrganicLayoutConfig.ts │ │ ├── OrthogonalLayoutConfig.js │ │ ├── OrthogonalLayoutConfig.ts │ │ ├── ParallelEdgeRouterConfig.js │ │ ├── ParallelEdgeRouterConfig.ts │ │ ├── PartialLayoutConfig.js │ │ ├── PartialLayoutConfig.ts │ │ ├── PolylineEdgeRouterConfig.js │ │ ├── PolylineEdgeRouterConfig.ts │ │ ├── PresetsUiBuilder.js │ │ ├── PresetsUiBuilder.ts │ │ ├── README.md │ │ ├── RadialLayoutConfig.js │ │ ├── RadialLayoutConfig.ts │ │ ├── RadialTreeLayoutConfig.js │ │ ├── RadialTreeLayoutConfig.ts │ │ ├── SeriesParallelLayoutConfig.js │ │ ├── SeriesParallelLayoutConfig.ts │ │ ├── TabularLayoutConfig.js │ │ ├── TabularLayoutConfig.ts │ │ ├── Tooltip.js │ │ ├── Tooltip.ts │ │ ├── TopLevelGroupToSwimlaneStage.js │ │ ├── TopLevelGroupToSwimlaneStage.ts │ │ ├── TreeLayoutConfig.js │ │ ├── TreeLayoutConfig.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── LayoutSamples.js │ │ │ ├── LayoutSamples.ts │ │ │ ├── LoremIpsum.js │ │ │ ├── LoremIpsum.ts │ │ │ ├── activity-diagram.graphml │ │ │ ├── airport-circle.svg │ │ │ ├── airports.graphml │ │ │ ├── blossom.graphml │ │ │ ├── bpmn-job-posting.graphml │ │ │ ├── bpmn-order-table.graphml │ │ │ ├── checkmark-circle.svg │ │ │ ├── circular-with-substructures.graphml │ │ │ ├── circular.graphml │ │ │ ├── compact-disk-groups.graphml │ │ │ ├── compact-disk-ray-labels.graphml │ │ │ ├── compact-disk-with-edges.graphml │ │ │ ├── compact-disk.graphml │ │ │ ├── computer-network.graphml │ │ │ ├── edge-labels.graphml │ │ │ ├── edge-router-with-buses.graphml │ │ │ ├── edge-router.graphml │ │ │ ├── generic-circular.graphml │ │ │ ├── generic-organic.graphml │ │ │ ├── generic-radial.graphml │ │ │ ├── grouping.graphml │ │ │ ├── hierarchical-with-buses.graphml │ │ │ ├── hierarchical-with-subcomponents.graphml │ │ │ ├── hierarchical.graphml │ │ │ ├── lattice.graphml │ │ │ ├── mesh.graphml │ │ │ ├── mindmap.graphml │ │ │ ├── multi-parent-tree.graphml │ │ │ ├── multiple-components.graphml │ │ │ ├── network-plan.graphml │ │ │ ├── node-and-edge-labels.graphml │ │ │ ├── node-labels.graphml │ │ │ ├── organic-disk-substructures.graphml │ │ │ ├── organic-star.graphml │ │ │ ├── organic-with-substructures.graphml │ │ │ ├── organization-chart.graphml │ │ │ ├── orthogonal-router.graphml │ │ │ ├── orthogonal-with-substructures.graphml │ │ │ ├── orthogonal.graphml │ │ │ ├── partial-with-circular.graphml │ │ │ ├── partial-with-hierarchical.graphml │ │ │ ├── partial-with-organic.graphml │ │ │ ├── partial-with-orthogonal.graphml │ │ │ ├── presets-icon.svg │ │ │ ├── radial-tree-with-rays.graphml │ │ │ ├── radial-tree.graphml │ │ │ ├── registration-flowchart.graphml │ │ │ ├── series-parallel.graphml │ │ │ ├── shrunk.graphml │ │ │ ├── social-network.graphml │ │ │ ├── star-icon-blue.svg │ │ │ ├── star-icon.svg │ │ │ ├── structured.graphml │ │ │ ├── styles.css │ │ │ ├── tabular.graphml │ │ │ ├── tree.graphml │ │ │ ├── uml-package-diagram.graphml │ │ │ └── viruses.graphml │ ├── logicgates │ │ ├── DescriptorDependentPortCandidateProvider.js │ │ ├── DescriptorDependentPortCandidateProvider.ts │ │ ├── LogicGateType.js │ │ ├── LogicGateType.ts │ │ ├── LogicGatesDemo.js │ │ ├── LogicGatesDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── input.js │ │ ├── input.ts │ │ ├── logicgates-layout.js │ │ ├── logicgates-layout.ts │ │ ├── node-styles │ │ │ ├── AndGateNodeStyle.js │ │ │ ├── AndGateNodeStyle.ts │ │ │ ├── GateNodeStyle.js │ │ │ ├── GateNodeStyle.ts │ │ │ ├── NotNodeStyle.js │ │ │ ├── NotNodeStyle.ts │ │ │ ├── OrNodeStyle.js │ │ │ ├── OrNodeStyle.ts │ │ │ ├── XOrNodeStyle.js │ │ │ └── XOrNodeStyle.ts │ │ ├── port-aware-graph-builder.js │ │ ├── port-aware-graph-builder.ts │ │ └── resources │ │ │ ├── sample-data.js │ │ │ └── sample-data.ts │ ├── map │ │ ├── MapDemo.js │ │ ├── MapDemo.ts │ │ ├── README.md │ │ ├── data-types.js │ │ ├── data-types.ts │ │ ├── index.html │ │ ├── leaflet-graph-layer.js │ │ ├── leaflet-graph-layer.ts │ │ ├── map-styles.js │ │ ├── map-styles.ts │ │ ├── resources │ │ │ ├── airport-drop-highlight.svg │ │ │ ├── airport-drop.svg │ │ │ ├── flight-data.js │ │ │ └── flight-data.ts │ │ ├── shortest-paths.js │ │ └── shortest-paths.ts │ ├── metaballgroups │ │ ├── MetaballGroupsDemo.js │ │ ├── MetaballGroupsDemo.ts │ │ ├── README.md │ │ ├── WebglBlobVisual.js │ │ ├── WebglBlobVisual.ts │ │ └── index.html │ ├── mindmap │ │ ├── HTMLPopupSupport.js │ │ ├── HTMLPopupSupport.ts │ │ ├── MindMapDemo.js │ │ ├── MindMapDemo.ts │ │ ├── MindMapFocusIndicatorManager.js │ │ ├── MindMapFocusIndicatorManager.ts │ │ ├── MindMapGraphModelManager.js │ │ ├── MindMapGraphModelManager.ts │ │ ├── README.md │ │ ├── cross-references.js │ │ ├── cross-references.ts │ │ ├── data-types.js │ │ ├── data-types.ts │ │ ├── index.html │ │ ├── interaction │ │ │ ├── EditOneLabelHelper.js │ │ │ ├── EditOneLabelHelper.ts │ │ │ ├── MindMapPositionHandlers.js │ │ │ ├── MindMapPositionHandlers.ts │ │ │ ├── TagChangeUndoUnit.js │ │ │ ├── TagChangeUndoUnit.ts │ │ │ ├── commands.js │ │ │ ├── commands.ts │ │ │ ├── single-selection.js │ │ │ └── single-selection.ts │ │ ├── mind-map-layout.js │ │ ├── mind-map-layout.ts │ │ ├── node-popup-toolbar.js │ │ ├── node-popup-toolbar.ts │ │ ├── resources │ │ │ ├── hobbies.js │ │ │ ├── hobbies.ts │ │ │ ├── icons │ │ │ │ ├── abstract-blue.svg │ │ │ │ ├── abstract-green.svg │ │ │ │ ├── abstract-red.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── exclamation-mark.svg │ │ │ │ ├── no-icon.svg │ │ │ │ ├── question-mark.svg │ │ │ │ ├── smiley-grumpy.svg │ │ │ │ ├── smiley-happy.svg │ │ │ │ ├── smiley-not-amused.svg │ │ │ │ └── star.svg │ │ │ └── mindmapstyle.css │ │ ├── styles │ │ │ ├── CollapseDecorator.js │ │ │ ├── CollapseDecorator.ts │ │ │ ├── MindMapEdgeStyle.js │ │ │ ├── MindMapEdgeStyle.ts │ │ │ ├── MindMapIconLabelStyle.js │ │ │ ├── MindMapIconLabelStyle.ts │ │ │ ├── MindMapNodeStyle.js │ │ │ ├── MindMapNodeStyle.ts │ │ │ ├── MindMapOverviewRenderer.js │ │ │ ├── MindMapOverviewRenderer.ts │ │ │ ├── styles-support.js │ │ │ └── styles-support.ts │ │ ├── subtrees.js │ │ └── subtrees.ts │ ├── neighborhood-circles │ │ ├── NeighborhoodCirclesDemo.js │ │ ├── NeighborhoodCirclesDemo.ts │ │ ├── NeighborhoodType.js │ │ ├── NeighborhoodType.ts │ │ ├── README.md │ │ ├── apply-layout-callback.js │ │ ├── apply-layout-callback.ts │ │ ├── build-graph-callback.js │ │ ├── build-graph-callback.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── female1.svg │ │ │ ├── female3.svg │ │ │ ├── graph-data.json │ │ │ ├── male1.svg │ │ │ ├── male2.svg │ │ │ ├── male3.svg │ │ │ └── male4.svg │ ├── neighborhood │ │ ├── NeighborhoodDemo.js │ │ ├── NeighborhoodDemo.ts │ │ ├── NeighborhoodType.js │ │ ├── NeighborhoodType.ts │ │ ├── NeighborhoodView.js │ │ ├── NeighborhoodView.ts │ │ ├── README.md │ │ ├── apply-layout-callback.js │ │ ├── apply-layout-callback.ts │ │ ├── build-graph-callback.js │ │ ├── build-graph-callback.ts │ │ ├── enable-folding.js │ │ ├── enable-folding.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── busy.svg │ │ │ ├── computer-network.graphml │ │ │ ├── nesting.graphml │ │ │ ├── orgchart.graphml │ │ │ ├── present.svg │ │ │ ├── printer.svg │ │ │ ├── scanner.svg │ │ │ ├── server.svg │ │ │ ├── social-network.graphml │ │ │ ├── switch.svg │ │ │ ├── travel.svg │ │ │ ├── unavailable.svg │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_female4.svg │ │ │ ├── usericon_female5.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ ├── usericon_male3.svg │ │ │ ├── usericon_male4.svg │ │ │ ├── usericon_male5.svg │ │ │ ├── wlan.svg │ │ │ └── workstation.svg │ ├── networkmonitoring │ │ ├── ConnectionEdgeStyle.js │ │ ├── ConnectionEdgeStyle.ts │ │ ├── DeviceNodeStyle.js │ │ ├── DeviceNodeStyle.ts │ │ ├── HTMLPopupSupport.js │ │ ├── HTMLPopupSupport.ts │ │ ├── NetworkMonitoringDemo.js │ │ ├── NetworkMonitoringDemo.ts │ │ ├── README.md │ │ ├── device-popup.js │ │ ├── device-popup.ts │ │ ├── failure-highlight.js │ │ ├── failure-highlight.ts │ │ ├── index.html │ │ ├── model │ │ │ ├── Connection.js │ │ │ ├── Connection.ts │ │ │ ├── Device.js │ │ │ ├── Device.ts │ │ │ ├── Network.js │ │ │ ├── Network.ts │ │ │ ├── Simulator.js │ │ │ ├── Simulator.ts │ │ │ ├── network-sample.js │ │ │ └── network-sample.ts │ │ ├── resources │ │ │ ├── app.css │ │ │ ├── database.svg │ │ │ ├── exclamation.svg │ │ │ ├── laptop.svg │ │ │ ├── server.svg │ │ │ ├── smartphone.svg │ │ │ ├── switch.svg │ │ │ ├── wlan.svg │ │ │ └── workstation.svg │ │ ├── tooltips.js │ │ ├── tooltips.ts │ │ └── ui │ │ │ ├── D3BarChart.js │ │ │ └── D3BarChart.ts │ ├── orgchart │ │ ├── CollapsibleTree.js │ │ ├── CollapsibleTree.ts │ │ ├── OrgChartDemo.js │ │ ├── OrgChartDemo.ts │ │ ├── OrgChartGraphSearch.js │ │ ├── OrgChartGraphSearch.ts │ │ ├── README.md │ │ ├── graph-style │ │ │ ├── CollapseExpandPortStyle.js │ │ │ ├── CollapseExpandPortStyle.ts │ │ │ ├── orgchart-node-style.js │ │ │ ├── orgchart-node-style.ts │ │ │ ├── orgchart-port-style.js │ │ │ └── orgchart-port-style.ts │ │ ├── index.html │ │ ├── input.js │ │ ├── input.ts │ │ ├── model │ │ │ ├── data-loading.js │ │ │ ├── data-loading.ts │ │ │ ├── orgchart-data.js │ │ │ └── orgchart-data.ts │ │ ├── resources │ │ │ ├── busy_icon.svg │ │ │ ├── minus.svg │ │ │ ├── orgchart-style.css │ │ │ ├── plus.svg │ │ │ ├── present_icon.svg │ │ │ ├── travel_icon.svg │ │ │ ├── unavailable_icon.svg │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_female4.svg │ │ │ ├── usericon_female5.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ ├── usericon_male3.svg │ │ │ ├── usericon_male4.svg │ │ │ └── usericon_male5.svg │ │ └── ui │ │ │ ├── orgchart-context-menu.js │ │ │ ├── orgchart-context-menu.ts │ │ │ ├── orgchart-properties-view.js │ │ │ └── orgchart-properties-view.ts │ ├── processmining │ │ ├── AnimationController.js │ │ ├── AnimationController.ts │ │ ├── ProcessMiningDemo.js │ │ ├── ProcessMiningDemo.ts │ │ ├── ProcessingStepNodeStyleDecorator.js │ │ ├── ProcessingStepNodeStyleDecorator.ts │ │ ├── README.md │ │ ├── data │ │ │ ├── cases.json │ │ │ └── events.json │ │ ├── event-log-types.d.ts │ │ ├── index.html │ │ ├── item-overlay.js │ │ ├── item-overlay.ts │ │ ├── process-graph-extraction.js │ │ ├── process-graph-extraction.ts │ │ ├── process-visualization │ │ │ ├── HeatData.js │ │ │ ├── HeatData.ts │ │ │ ├── ProcessItemVisual.js │ │ │ ├── ProcessItemVisual.ts │ │ │ ├── heatmap.js │ │ │ ├── heatmap.ts │ │ │ ├── process-visualization.js │ │ │ ├── process-visualization.ts │ │ │ ├── webgl-utils.js │ │ │ └── webgl-utils.ts │ │ ├── simulation │ │ │ ├── simulation-graph.js │ │ │ ├── simulation-graph.ts │ │ │ ├── simulator.js │ │ │ └── simulator.ts │ │ └── style │ │ │ └── processMining.css │ ├── supply-chain │ │ ├── README.md │ │ ├── SupplyChainDemo.js │ │ ├── SupplyChainDemo.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── bakery-graph-data.js │ │ │ └── bakery-graph-data.ts │ │ ├── styles │ │ │ ├── ListNodeStyle.js │ │ │ ├── ListNodeStyle.ts │ │ │ ├── colors.css │ │ │ ├── default-graph-styles.js │ │ │ ├── default-graph-styles.ts │ │ │ ├── example-node.css │ │ │ ├── highlighting.css │ │ │ ├── node-container.css │ │ │ ├── snackbar.css │ │ │ └── styles.css │ │ ├── types.js │ │ ├── types.ts │ │ └── utils │ │ │ ├── NodeTag.js │ │ │ ├── NodeTag.ts │ │ │ ├── PortMapWrapper.js │ │ │ ├── PortMapWrapper.ts │ │ │ ├── folding-layout.js │ │ │ ├── folding-layout.ts │ │ │ ├── graph-logic.js │ │ │ ├── graph-logic.ts │ │ │ ├── helpers.js │ │ │ └── helpers.ts │ ├── tag-cloud │ │ ├── README.md │ │ ├── TagCloudDemo.js │ │ ├── TagCloudDemo.ts │ │ ├── TagCloudHelper.js │ │ ├── TagCloudHelper.ts │ │ ├── TextData.js │ │ ├── TextData.ts │ │ └── index.html │ ├── tree-of-life │ │ ├── README.md │ │ ├── SectorVisual.js │ │ ├── SectorVisual.ts │ │ ├── SubtreeSupport.js │ │ ├── SubtreeSupport.ts │ │ ├── TreeOfLifeDemo.js │ │ ├── TreeOfLifeDemo.ts │ │ ├── TreeOfLifeSearch.js │ │ ├── TreeOfLifeSearch.ts │ │ ├── index.html │ │ └── resources │ │ │ └── TreeOfLifeData.json │ └── uml │ │ ├── ButtonStyles.js │ │ ├── ButtonStyles.ts │ │ ├── ButtonVisualCreator.js │ │ ├── ButtonVisualCreator.ts │ │ ├── README.md │ │ ├── UMLClassModel.js │ │ ├── UMLClassModel.ts │ │ ├── UMLContextButtonFactory.js │ │ ├── UMLContextButtonFactory.ts │ │ ├── UMLEdgeStyleFactory.js │ │ ├── UMLEdgeStyleFactory.ts │ │ ├── UMLEditorDemo.js │ │ ├── UMLEditorDemo.ts │ │ ├── UMLNodeStyle.js │ │ ├── UMLNodeStyle.ts │ │ └── index.html ├── style │ ├── angular-component-node-style │ │ ├── README.html │ │ ├── README.md │ │ ├── angular.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── AngularComponentNodeStyle.ts │ │ │ ├── app │ │ │ │ ├── app.component.config.ts │ │ │ │ ├── app.component.html │ │ │ │ └── app.component.ts │ │ │ ├── assets │ │ │ │ ├── graph-data.json │ │ │ │ ├── layout-circular.svg │ │ │ │ ├── layout-hierarchic.svg │ │ │ │ ├── layout-organic.svg │ │ │ │ └── layout-orthogonal.svg │ │ │ ├── graph.component.html │ │ │ ├── graph.component.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── node.component.css │ │ │ ├── node.component.html │ │ │ ├── node.component.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── webpack.config.js │ ├── arrow-edge-style │ │ ├── ArrowEdgeStyleDemo.js │ │ ├── ArrowEdgeStyleDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleGraph.js │ │ │ └── SampleGraph.ts │ ├── arrow-node-style │ │ ├── ArrowNodeStyleDemo.js │ │ ├── ArrowNodeStyleDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── arrow │ │ ├── ArrowDemo.js │ │ ├── ArrowDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── bezieredgestyle │ │ ├── BezierBendCreator.js │ │ ├── BezierBendCreator.ts │ │ ├── BezierCreateEdgeInputMode.js │ │ ├── BezierCreateEdgeInputMode.ts │ │ ├── BezierEdgeHandleProvider.js │ │ ├── BezierEdgeHandleProvider.ts │ │ ├── BezierEdgeStyleDemo.js │ │ ├── BezierEdgeStyleDemo.ts │ │ ├── BezierGraphEditorInputMode.js │ │ ├── BezierGraphEditorInputMode.ts │ │ ├── BezierHandles.js │ │ ├── BezierHandles.ts │ │ ├── BezierSelectionStyle.js │ │ ├── BezierSelectionStyle.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleGraphs.js │ │ │ └── SampleGraphs.ts │ ├── clickable-style-decorator │ │ ├── ClickableStyleDecoratorDemo.js │ │ ├── ClickableStyleDecoratorDemo.ts │ │ ├── NodeStyleDecorator.js │ │ ├── NodeStyleDecorator.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ ├── index.html │ │ └── resources │ │ │ ├── printer.svg │ │ │ ├── scanner.svg │ │ │ ├── switch.svg │ │ │ └── workstation.svg │ ├── composite-node-style │ │ ├── CompositeNodeStyleDemo.js │ │ ├── CompositeNodeStyleDemo.ts │ │ ├── README.md │ │ ├── ScalingNodeStyle.js │ │ ├── ScalingNodeStyle.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ ├── SampleData.ts │ │ │ ├── printer.svg │ │ │ ├── router.svg │ │ │ ├── scanner.svg │ │ │ ├── server.svg │ │ │ ├── switch.svg │ │ │ └── workstation.svg │ ├── css-item-style │ │ ├── CSSItemStyleDemo.js │ │ ├── CSSItemStyleDemo.ts │ │ ├── README.md │ │ ├── configure-hover-highlight.js │ │ ├── configure-hover-highlight.ts │ │ ├── configure-selection-highlight.js │ │ ├── configure-selection-highlight.ts │ │ ├── create-sample-graph.js │ │ ├── create-sample-graph.ts │ │ ├── graph-item-styles.css │ │ ├── index.html │ │ └── stylesheet-view │ │ │ ├── stylesheet-view.css │ │ │ ├── stylesheet-view.js │ │ │ └── stylesheet-view.ts │ ├── cssstyling │ │ ├── CSSStylingDemo.js │ │ ├── CSSStylingDemo.ts │ │ ├── CssNodeStyleWrapper.js │ │ ├── CssNodeStyleWrapper.ts │ │ ├── GraphOverviewRenderer.js │ │ ├── GraphOverviewRenderer.ts │ │ ├── README.md │ │ ├── getColor.js │ │ ├── getColor.ts │ │ ├── graph-data.json │ │ ├── index.html │ │ └── template-styles.css │ ├── customstyles │ │ ├── AnimatedLinearGradient.js │ │ ├── AnimatedLinearGradient.ts │ │ ├── CustomStyleDemo.js │ │ ├── CustomStyleDemo.ts │ │ ├── Namespaces.js │ │ ├── Namespaces.ts │ │ ├── README.md │ │ ├── Sample1Arrow.js │ │ ├── Sample1Arrow.ts │ │ ├── Sample1CollapsibleNodeStyleDecorator.js │ │ ├── Sample1CollapsibleNodeStyleDecorator.ts │ │ ├── Sample1EdgeStyle.js │ │ ├── Sample1EdgeStyle.ts │ │ ├── Sample1GroupNodeStyle.js │ │ ├── Sample1GroupNodeStyle.ts │ │ ├── Sample1LabelStyle.js │ │ ├── Sample1LabelStyle.ts │ │ ├── Sample1NodeStyle.js │ │ ├── Sample1NodeStyle.ts │ │ ├── Sample1PortStyle.js │ │ ├── Sample1PortStyle.ts │ │ ├── Sample2Arrow.js │ │ ├── Sample2Arrow.ts │ │ ├── Sample2EdgeStyle.js │ │ ├── Sample2EdgeStyle.ts │ │ ├── Sample2GroupNodeStyle.js │ │ ├── Sample2GroupNodeStyle.ts │ │ ├── Sample2NodeStyle.js │ │ ├── Sample2NodeStyle.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── collapse.svg │ │ │ ├── edit_label.png │ │ │ ├── expand.svg │ │ │ └── styles.css │ │ ├── style-utils.js │ │ └── style-utils.ts │ ├── d3chartnodes │ │ ├── D3ChartNodeStyle.js │ │ ├── D3ChartNodeStyle.ts │ │ ├── D3ChartNodesData.js │ │ ├── D3ChartNodesData.ts │ │ ├── D3ChartNodesDemo.js │ │ ├── D3ChartNodesDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── datatable │ │ ├── DataTableDemo.js │ │ ├── DataTableDemo.ts │ │ ├── DataTableLabelStyle.js │ │ ├── DataTableLabelStyle.ts │ │ ├── DataTableNodeStyle.js │ │ ├── DataTableNodeStyle.ts │ │ ├── DataTableRenderSupport.js │ │ ├── DataTableRenderSupport.ts │ │ ├── README.md │ │ ├── UserDataFactory.js │ │ ├── UserDataFactory.ts │ │ └── index.html │ ├── directed-edge-label │ │ ├── DirectedEdgeLabelDemo.js │ │ ├── DirectedEdgeLabelDemo.ts │ │ ├── DirectedEdgeLabelStyle.js │ │ ├── DirectedEdgeLabelStyle.ts │ │ ├── README.md │ │ └── index.html │ ├── editablepathstyle │ │ ├── EditablePathNodeStyle.js │ │ ├── EditablePathNodeStyle.ts │ │ ├── PathStyleDemo.js │ │ ├── PathStyleDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── general-path-node-style │ │ ├── GeneralPathNodeStyleDemo.js │ │ ├── GeneralPathNodeStyleDemo.ts │ │ ├── README.md │ │ └── index.html │ ├── group-node-style │ │ ├── GroupNodeStyleDemo.js │ │ ├── GroupNodeStyleDemo.ts │ │ ├── README.md │ │ ├── ToolTipHelper.js │ │ ├── ToolTipHelper.ts │ │ ├── index.html │ │ ├── svg-webgl-switch.js │ │ └── svg-webgl-switch.ts │ ├── html-controls │ │ ├── HtmlControlsDemo.js │ │ ├── HtmlControlsDemo.ts │ │ ├── HtmlEditableNodeStyle.js │ │ ├── HtmlEditableNodeStyle.ts │ │ ├── README.md │ │ ├── data.js │ │ ├── data.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_female4.svg │ │ │ ├── usericon_female5.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ ├── usericon_male3.svg │ │ │ ├── usericon_male4.svg │ │ │ └── usericon_male5.svg │ │ ├── style.css │ │ ├── util.js │ │ └── util.ts │ ├── html-label-style │ │ ├── HtmlLabelStyle.js │ │ ├── HtmlLabelStyle.ts │ │ ├── HtmlLabelStyleDemo.js │ │ ├── HtmlLabelStyleDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ ├── html-label.css │ │ └── index.html │ ├── invariant-label │ │ ├── README.md │ │ ├── ZoomInvariantLabelStyle.js │ │ ├── ZoomInvariantLabelStyle.ts │ │ ├── ZoomInvariantLabelStyleDemo.js │ │ ├── ZoomInvariantLabelStyleDemo.ts │ │ ├── graph-data.json │ │ └── index.html │ ├── isometric-bar-chart-style │ │ ├── AugmentationNodeRenderer.js │ │ ├── AugmentationNodeRenderer.ts │ │ ├── IsometricBarChartStyleDemo.js │ │ ├── IsometricBarChartStyleDemo.ts │ │ ├── IsometricBarLabelNodeStyle.js │ │ ├── IsometricBarLabelNodeStyle.ts │ │ ├── IsometricWebGLNodeStyle.js │ │ ├── IsometricWebGLNodeStyle.ts │ │ ├── README.md │ │ ├── bar-rendering.js │ │ ├── bar-rendering.ts │ │ ├── index.html │ │ └── resources │ │ │ └── sample.graphml │ ├── label-style │ │ ├── LabelStyleDemo.js │ │ ├── LabelStyleDemo.ts │ │ ├── README.md │ │ ├── ToolTipHelper.js │ │ ├── ToolTipHelper.ts │ │ └── index.html │ ├── level-of-detail-style │ │ ├── LevelOfDetailDemo.js │ │ ├── LevelOfDetailDemo.ts │ │ ├── LevelOfDetailNodeStyle.js │ │ ├── LevelOfDetailNodeStyle.ts │ │ ├── README.md │ │ ├── index.html │ │ ├── style-templates.js │ │ └── style-templates.ts │ ├── lit-template-node-style │ │ ├── LitNodeStyle.js │ │ ├── LitNodeStyle.ts │ │ ├── LitNodeStyleMarkupExtension.js │ │ ├── LitNodeStyleMarkupExtension.ts │ │ ├── LitTemplateNodeStyleDemo.js │ │ ├── LitTemplateNodeStyleDemo.ts │ │ ├── README.md │ │ ├── index.html │ │ └── resources │ │ │ ├── busy_icon.svg │ │ │ ├── present_icon.svg │ │ │ ├── sample.js │ │ │ ├── sample.ts │ │ │ ├── travel_icon.svg │ │ │ ├── unavailable_icon.svg │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ └── usericon_male3.svg │ ├── markdownlabel │ │ ├── MarkdownLabelDemo.js │ │ ├── MarkdownLabelDemo.ts │ │ ├── MarkdownLabelStyle.js │ │ ├── MarkdownLabelStyle.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ ├── index.html │ │ └── markdown-label.css │ ├── markup-labels │ │ ├── MarkupLabelsDemo.js │ │ ├── MarkupLabelsDemo.ts │ │ ├── README.md │ │ ├── graph-data.json │ │ └── index.html │ ├── react-component-node-style │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── layout-circular.svg │ │ │ ├── layout-hierarchic.svg │ │ │ ├── layout-organic.svg │ │ │ └── layout-orthogonal.svg │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── DiagramComponent.tsx │ │ │ ├── HtmlNodeComponent.tsx │ │ │ ├── ReactComponentHtmlNodeStyle.ts │ │ │ ├── assets │ │ │ │ └── graph-data.json │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── react-template-node-style │ │ ├── README.html │ │ ├── README.md │ │ ├── index.css │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── busy_icon.svg │ │ │ ├── present_icon.svg │ │ │ ├── travel_icon.svg │ │ │ ├── unavailable_icon.svg │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ └── usericon_male3.svg │ │ ├── resources │ │ │ └── sample.ts │ │ ├── src │ │ │ ├── ReactComponentHtmlLabelStyle.ts │ │ │ ├── ReactComponentHtmlNodeStyle.ts │ │ │ ├── ReactComponentStylesDemo.ts │ │ │ ├── ReactComponentSvgLabelStyle.ts │ │ │ ├── ReactComponentSvgNodeStyle.ts │ │ │ ├── ReactComponentSvgNodeStyleMarkupExtension.ts │ │ │ ├── SvgText.ts │ │ │ ├── graphml │ │ │ │ ├── FaultTolerantGraphMLIOHandler.ts │ │ │ │ ├── file-support.ts │ │ │ │ └── graphml-support.ts │ │ │ └── jsx-compiler.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── rectangle-node-style │ │ ├── CornerSizeHandleProvider.js │ │ ├── CornerSizeHandleProvider.ts │ │ ├── README.md │ │ ├── RectangleNodeStyleDemo.js │ │ ├── RectangleNodeStyleDemo.ts │ │ ├── SingleSelectionHelper.js │ │ ├── SingleSelectionHelper.ts │ │ └── index.html │ ├── richtextlabel │ │ ├── README.md │ │ ├── RichTextEditorInputMode.js │ │ ├── RichTextEditorInputMode.ts │ │ ├── RichTextLabelDemo.js │ │ ├── RichTextLabelDemo.ts │ │ ├── graph-data.json │ │ ├── index.html │ │ └── rich-text-label.css │ ├── selectionstyling │ │ ├── README.md │ │ ├── SelectionStylingDemo.js │ │ ├── SelectionStylingDemo.ts │ │ └── index.html │ ├── shape-node-style │ │ ├── README.md │ │ ├── ShapeNodeStyleDemo.js │ │ ├── ShapeNodeStyleDemo.ts │ │ └── index.html │ ├── shape-port-style │ │ ├── README.md │ │ ├── ShapePortStyleDemo.js │ │ ├── ShapePortStyleDemo.ts │ │ └── index.html │ ├── simple-arrow-style │ │ ├── README.md │ │ ├── SimpleArrowStyleDemo.js │ │ ├── SimpleArrowStyleDemo.ts │ │ ├── TaperedArrow.js │ │ ├── TaperedArrow.ts │ │ └── index.html │ ├── styledecorators │ │ ├── EdgeStyleDecorator.js │ │ ├── EdgeStyleDecorator.ts │ │ ├── LabelStyleDecorator.js │ │ ├── LabelStyleDecorator.ts │ │ ├── NodeStyleDecorator.js │ │ ├── NodeStyleDecorator.ts │ │ ├── README.md │ │ ├── StyleDecoratorsDemo.js │ │ ├── StyleDecoratorsDemo.ts │ │ ├── graph-data.json │ │ ├── index.html │ │ └── resources │ │ │ ├── printer.svg │ │ │ ├── scanner.svg │ │ │ ├── switch.svg │ │ │ └── workstation.svg │ ├── template-node-style │ │ ├── README.md │ │ ├── TemplateNodeStyleDemo.js │ │ ├── TemplateNodeStyleDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── SampleData.js │ │ │ └── SampleData.ts │ ├── templatestyles │ │ ├── PropertiesView.js │ │ ├── PropertiesView.ts │ │ ├── README.md │ │ ├── TemplateStylesDemo.js │ │ ├── TemplateStylesDemo.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── OrgChartData.js │ │ │ ├── OrgChartData.ts │ │ │ ├── styles.css │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_female4.svg │ │ │ ├── usericon_female5.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ ├── usericon_male3.svg │ │ │ ├── usericon_male4.svg │ │ │ └── usericon_male5.svg │ │ ├── style-templates.js │ │ └── style-templates.ts │ ├── theme-variants │ │ ├── README.md │ │ ├── ThemeVariantsDemo.js │ │ ├── ThemeVariantsDemo.ts │ │ └── index.html │ ├── vue-component-node-style │ │ ├── README.html │ │ ├── README.md │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── layout-circular.svg │ │ │ ├── layout-hierarchic.svg │ │ │ ├── layout-organic.svg │ │ │ └── layout-orthogonal.svg │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── VueComponentNodeStyle.ts │ │ │ ├── assets │ │ │ │ ├── graph-data.json │ │ │ │ └── main.css │ │ │ ├── components │ │ │ │ ├── DiagramComponent.vue │ │ │ │ └── NodeComponent.vue │ │ │ ├── main.ts │ │ │ └── vuetify.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── vue-template-node-style │ │ ├── README.html │ │ ├── README.md │ │ ├── VueTemplateNodeStyleDemo.ts │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── resources │ │ │ ├── busy_icon.svg │ │ │ ├── present_icon.svg │ │ │ ├── sample.ts │ │ │ ├── travel_icon.svg │ │ │ ├── unavailable_icon.svg │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ └── usericon_male3.svg │ │ ├── style │ │ │ └── VueTemplateNodeStyle.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── webgl-animations │ │ ├── README.md │ │ ├── SingleSelectionHelper.js │ │ ├── SingleSelectionHelper.ts │ │ ├── WebGLAnimationsDemo.js │ │ ├── WebGLAnimationsDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ └── graph.graphml │ ├── webgl-image-node │ │ ├── README.md │ │ ├── WebGLImageNodeDemo.js │ │ ├── WebGLImageNodeDemo.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── play-16.svg │ │ │ ├── settings-16.svg │ │ │ └── usericon.png │ ├── webgl-selection-styles │ │ ├── README.md │ │ ├── WebGLSelectionStylesDemo.js │ │ ├── WebGLSelectionStylesDemo.ts │ │ ├── graph-styles.js │ │ ├── graph-styles.ts │ │ ├── index.html │ │ ├── load-sample-graph.js │ │ ├── load-sample-graph.ts │ │ ├── ui-interaction.js │ │ └── ui-interaction.ts │ └── webgl-styles │ │ ├── PropertiesEditor.js │ │ ├── PropertiesEditor.ts │ │ ├── README.md │ │ ├── WebGLStylesDemo.js │ │ ├── WebGLStylesDemo.ts │ │ └── index.html ├── testing │ ├── application-under-test │ │ ├── README.md │ │ ├── SampleApplication.js │ │ ├── SampleApplication.ts │ │ └── index.html │ ├── cypress │ │ ├── README.html │ │ ├── README.md │ │ ├── cypress.config.js │ │ ├── cypress │ │ │ ├── e2e │ │ │ │ └── yfiles.cy.ts │ │ │ └── support │ │ │ │ ├── commands.ts │ │ │ │ └── e2e.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── jest-puppeteer │ │ ├── .env │ │ ├── .eslintrc.json │ │ ├── README.html │ │ ├── README.md │ │ ├── integration │ │ │ ├── app.test.js │ │ │ └── jest.config.js │ │ ├── jest-puppeteer.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── index.html │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.jsx │ │ │ ├── assets │ │ │ ├── demagnify-16.svg │ │ │ ├── fit-16.svg │ │ │ ├── header-angle.svg │ │ │ ├── magnify-16.svg │ │ │ ├── minus-16.svg │ │ │ ├── plus-16.svg │ │ │ ├── reload-16.svg │ │ │ ├── ylogo-text.svg │ │ │ ├── ylogo.svg │ │ │ └── zoom-original-16.svg │ │ │ ├── components │ │ │ ├── DemoDescription.css │ │ │ ├── DemoDescription.jsx │ │ │ ├── DemoToolbar.css │ │ │ ├── DemoToolbar.jsx │ │ │ ├── ReactGraphComponent.css │ │ │ └── ReactGraphComponent.jsx │ │ │ ├── index.css │ │ │ └── index.js │ ├── jest │ │ ├── .eslintrc │ │ ├── README.html │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── ItemFactory.js │ │ │ ├── JestDemo.js │ │ │ └── index.html │ │ └── tests │ │ │ ├── ItemFactory.test.js │ │ │ └── ItemFactoryWithMock.test.js │ ├── playwright │ │ ├── README.html │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── playwright.config.ts │ │ └── tests │ │ │ └── yfiles.spec.ts │ ├── selenium-webdriver │ │ ├── README.html │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ └── tests │ │ │ └── yfiles.test.js │ ├── vitest │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── main.ts │ │ │ └── vite-env.d.ts │ │ ├── test │ │ │ └── yfiles.test.ts │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ └── wdio │ │ ├── .npmrc │ │ ├── README.html │ │ ├── README.md │ │ ├── WdioDemo.ts │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── test │ │ ├── MouseAction.ts │ │ ├── pageobjects │ │ │ ├── page.ts │ │ │ └── wdio-demo.page.ts │ │ └── specs │ │ │ └── yfiles.e2e.ts │ │ ├── tsconfig.json │ │ └── wdio.conf.ts ├── toolkit │ ├── angular │ │ ├── .browserslistrc │ │ ├── README.html │ │ ├── README.md │ │ ├── angular.json │ │ ├── extra-webpack.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.config.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── context-menu │ │ │ │ │ ├── context-menu.component.css │ │ │ │ │ ├── context-menu.component.html │ │ │ │ │ └── context-menu.component.ts │ │ │ │ ├── data.ts │ │ │ │ ├── graph-component │ │ │ │ │ ├── graph-component.component.css │ │ │ │ │ ├── graph-component.component.html │ │ │ │ │ └── graph-component.component.ts │ │ │ │ ├── graph-overview-component │ │ │ │ │ ├── graph-overview-component.component.html │ │ │ │ │ └── graph-overview-component.component.ts │ │ │ │ ├── layout.worker.ts │ │ │ │ ├── person.ts │ │ │ │ ├── properties-view │ │ │ │ │ ├── properties-view.component.css │ │ │ │ │ ├── properties-view.component.html │ │ │ │ │ └── properties-view.component.ts │ │ │ │ ├── services │ │ │ │ │ └── graph-component.service.ts │ │ │ │ ├── styles │ │ │ │ │ ├── NodeComponentStyle.ts │ │ │ │ │ ├── node.component.html │ │ │ │ │ └── node.component.ts │ │ │ │ └── tooltip │ │ │ │ │ ├── tooltip.component.css │ │ │ │ │ ├── tooltip.component.html │ │ │ │ │ └── tooltip.component.ts │ │ │ ├── assets │ │ │ │ ├── usericon_female1.svg │ │ │ │ ├── usericon_female2.svg │ │ │ │ ├── usericon_female3.svg │ │ │ │ ├── usericon_male1.svg │ │ │ │ ├── usericon_male2.svg │ │ │ │ └── usericon_male3.svg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── styles.css │ │ │ ├── tsconfig.json │ │ │ └── utils │ │ │ │ └── GraphSearch.ts │ │ └── tsconfig.worker.json │ ├── graphql │ │ ├── GraphQLDemo.js │ │ ├── GraphQLDemo.ts │ │ ├── GraphQLQuery.js │ │ ├── GraphQLQuery.ts │ │ ├── Person.js │ │ ├── Person.ts │ │ ├── PropertiesPanel.js │ │ ├── PropertiesPanel.ts │ │ ├── README.md │ │ ├── SocialNetworkGraphBuilder.js │ │ ├── SocialNetworkGraphBuilder.ts │ │ ├── SocialNetworkNodeStyle.js │ │ ├── SocialNetworkNodeStyle.ts │ │ ├── index.html │ │ ├── resources │ │ │ ├── properties-panel.css │ │ │ ├── usericon_female1.svg │ │ │ ├── usericon_female2.svg │ │ │ ├── usericon_female3.svg │ │ │ ├── usericon_female4.svg │ │ │ ├── usericon_female5.svg │ │ │ ├── usericon_male1.svg │ │ │ ├── usericon_male2.svg │ │ │ ├── usericon_male3.svg │ │ │ ├── usericon_male4.svg │ │ │ └── usericon_male5.svg │ │ └── server │ │ │ ├── data.js │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── resolver.js │ │ │ └── schema.graphql │ ├── neo4j │ │ ├── Neo4jDemo.js │ │ ├── Neo4jDemo.ts │ │ ├── Neo4jGraphBuilder.js │ │ ├── Neo4jGraphBuilder.ts │ │ ├── Neo4jUtil.js │ │ ├── Neo4jUtil.ts │ │ ├── README.md │ │ ├── index.html │ │ └── property-table.css │ ├── next │ │ ├── README.html │ │ ├── README.md │ │ ├── app │ │ │ ├── app.css │ │ │ ├── components │ │ │ │ ├── ContextMenuComponent.css │ │ │ │ ├── ContextMenuComponent.tsx │ │ │ │ ├── DemoDataPanel.css │ │ │ │ ├── DemoDataPanel.tsx │ │ │ │ ├── DemoDescription.css │ │ │ │ ├── DemoDescription.tsx │ │ │ │ ├── DemoToolbar.css │ │ │ │ ├── DemoToolbar.tsx │ │ │ │ ├── GraphOverviewComponent.css │ │ │ │ ├── GraphOverviewComponent.tsx │ │ │ │ ├── ItemElement.css │ │ │ │ ├── ItemElement.tsx │ │ │ │ ├── LabelTemplate.tsx │ │ │ │ ├── NodeTemplate.tsx │ │ │ │ ├── ReactGraphComponent.css │ │ │ │ ├── ReactGraphComponent.tsx │ │ │ │ └── SvgTextComponent.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.module.css │ │ │ ├── page.tsx │ │ │ └── utils │ │ │ │ ├── GraphSearch.ts │ │ │ │ ├── LayoutSupport.ts │ │ │ │ ├── LayoutWorker.ts │ │ │ │ ├── ReactComponentLabelStyle.ts │ │ │ │ ├── ReactComponentNodeStyle.ts │ │ │ │ ├── use-graph-builder.ts │ │ │ │ ├── use-graph-component.ts │ │ │ │ ├── use-graph-search.ts │ │ │ │ └── use-tooltips.tsx │ │ ├── next-env.d.ts │ │ ├── next.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── assets │ │ │ │ ├── demagnify-16.svg │ │ │ │ ├── fit-16.svg │ │ │ │ ├── header-angle.svg │ │ │ │ ├── magnify-16.svg │ │ │ │ ├── minus-16.svg │ │ │ │ ├── plus-16.svg │ │ │ │ ├── reload-16.svg │ │ │ │ ├── ylogo-text.svg │ │ │ │ ├── ylogo.svg │ │ │ │ └── zoom-original-16.svg │ │ └── tsconfig.json │ ├── preact │ │ ├── PreactDemo.js │ │ ├── PreactDemo.ts │ │ ├── README.md │ │ ├── components │ │ │ ├── graphComponent │ │ │ │ ├── NodeTemplate.js │ │ │ │ ├── NodeTemplate.ts │ │ │ │ ├── PreactComponentNodeStyle.js │ │ │ │ ├── PreactComponentNodeStyle.ts │ │ │ │ ├── PreactGraphComponent.js │ │ │ │ └── PreactGraphComponent.ts │ │ │ └── items │ │ │ │ ├── Item.js │ │ │ │ ├── Item.ts │ │ │ │ ├── ItemList.js │ │ │ │ └── ItemList.ts │ │ ├── index.html │ │ ├── preact-loader.js │ │ ├── preact-loader.ts │ │ └── style │ │ │ └── index.css │ ├── react-class-components │ │ ├── .eslintrc.cjs │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── ReactComponentNodeStyle.ts │ │ │ ├── assets │ │ │ │ ├── header-angle.svg │ │ │ │ ├── ylogo-text.svg │ │ │ │ └── ylogo.svg │ │ │ ├── components │ │ │ │ ├── DemoDescription.css │ │ │ │ ├── DemoDescription.tsx │ │ │ │ ├── NodeTemplate.tsx │ │ │ │ ├── ReactGraphComponent.css │ │ │ │ ├── ReactGraphComponent.tsx │ │ │ │ └── SvgTextComponent.tsx │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── react │ │ ├── README.html │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ │ ├── ContextMenuComponent.css │ │ │ │ ├── ContextMenuComponent.tsx │ │ │ │ ├── DemoDataPanel.css │ │ │ │ ├── DemoDataPanel.tsx │ │ │ │ ├── DemoDescription.css │ │ │ │ ├── DemoDescription.tsx │ │ │ │ ├── DemoToolbar.css │ │ │ │ ├── DemoToolbar.tsx │ │ │ │ ├── GraphOverviewComponent.css │ │ │ │ ├── GraphOverviewComponent.tsx │ │ │ │ ├── ItemElement.css │ │ │ │ ├── ItemElement.tsx │ │ │ │ ├── LabelTemplate.tsx │ │ │ │ ├── NodeTemplate.tsx │ │ │ │ ├── ReactGraphComponent.css │ │ │ │ ├── ReactGraphComponent.tsx │ │ │ │ └── SvgTextComponent.tsx │ │ │ ├── main.tsx │ │ │ ├── utils │ │ │ │ ├── LayoutSupport.ts │ │ │ │ ├── LayoutWorker.ts │ │ │ │ ├── ReactComponentLabelStyle.ts │ │ │ │ ├── ReactComponentNodeStyle.ts │ │ │ │ ├── use-graph-builder.ts │ │ │ │ ├── use-graph-component.ts │ │ │ │ ├── use-graph-search.ts │ │ │ │ └── use-tooltips.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── solid │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.module.css │ │ │ ├── App.tsx │ │ │ ├── assets │ │ │ │ ├── demagnify-16.svg │ │ │ │ ├── fit-16.svg │ │ │ │ ├── header-angle.svg │ │ │ │ ├── magnify-16.svg │ │ │ │ ├── minus-16.svg │ │ │ │ ├── plus-16.svg │ │ │ │ ├── reload-16.svg │ │ │ │ ├── ylogo-text.svg │ │ │ │ ├── ylogo.svg │ │ │ │ └── zoom-original-16.svg │ │ │ ├── components │ │ │ │ ├── DemoDescription.tsx │ │ │ │ ├── DemoToolbar.tsx │ │ │ │ ├── SolidGraphComponent.tsx │ │ │ │ ├── SolidGraphOverviewComponent.tsx │ │ │ │ ├── SolidNodeTemplate.tsx │ │ │ │ ├── SvgTextComponent.tsx │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── tooltip.css │ │ │ ├── main.tsx │ │ │ ├── styles.css │ │ │ └── utils │ │ │ │ ├── SolidComponentSvgNodeStyle.ts │ │ │ │ ├── createDefaultGraph.ts │ │ │ │ ├── layout.worker.ts │ │ │ │ ├── useLayout.ts │ │ │ │ └── useTooltip.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── svelte │ │ ├── README.html │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── ylogo.svg │ │ ├── src │ │ │ ├── App.svelte │ │ │ ├── OrgChart.svelte │ │ │ ├── PropertiesView.svelte │ │ │ ├── SvelteComponentNodeStyle.svelte.ts │ │ │ ├── SvgNodeComponent.svelte │ │ │ ├── SvgText.svelte │ │ │ ├── data.ts │ │ │ ├── layout-worker.ts │ │ │ ├── main.ts │ │ │ ├── types.ts │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── vue │ │ ├── README.html │ │ ├── README.md │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── assets │ │ │ │ ├── header-angle.svg │ │ │ │ ├── play2-16.svg │ │ │ │ ├── reload-16.svg │ │ │ │ └── ylogo-text.svg │ │ │ ├── components │ │ │ │ ├── ContextMenu.vue │ │ │ │ ├── DemoSidebar.vue │ │ │ │ ├── DemoToolbar.vue │ │ │ │ ├── DiagramComponent.vue │ │ │ │ ├── DiagramOverviewComponent.vue │ │ │ │ ├── Tooltip.vue │ │ │ │ └── layout.worker.ts │ │ │ ├── composables │ │ │ │ ├── useContextMenu.ts │ │ │ │ ├── useDefaultGraph.ts │ │ │ │ ├── useGraphSearch.ts │ │ │ │ ├── useLayout.ts │ │ │ │ └── useTooltips.ts │ │ │ └── main.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── webcomponents │ │ ├── GraphComponentElement.js │ │ ├── GraphComponentElement.ts │ │ ├── README.md │ │ ├── WebComponentsDemo.js │ │ ├── WebComponentsDemo.ts │ │ └── index.html ├── tsconfig.json ├── tutorial-graph-builder │ ├── 01-create-graph │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-graph.js │ │ ├── create-graph.ts │ │ └── index.html │ ├── 02-create-nodes-sources │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-nodes-sources.js │ │ ├── create-nodes-sources.ts │ │ └── index.html │ ├── 03-create-edges-sources │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-edges-sources.js │ │ ├── create-edges-sources.ts │ │ └── index.html │ ├── 04-group-nodes │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-group-nodes.js │ │ ├── create-group-nodes.ts │ │ └── index.html │ ├── 05-implicit-grouping │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── group-data.js │ │ ├── group-data.ts │ │ ├── implicit-group-nodes.js │ │ ├── implicit-group-nodes.ts │ │ └── index.html │ ├── 06-configure-styles │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── configure-styles.js │ │ ├── configure-styles.ts │ │ └── index.html │ ├── 07-create-labels-sources │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-labels-sources.js │ │ ├── create-labels-sources.ts │ │ └── index.html │ ├── 08-configure-labels │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── configure-labels.js │ │ ├── configure-labels.ts │ │ └── index.html │ ├── 09-configure-tags │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── configure-tags.js │ │ ├── configure-tags.ts │ │ └── index.html │ ├── 10-configure-layout │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── configure-layout.js │ │ ├── configure-layout.ts │ │ └── index.html │ ├── 11-update-graph │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── update-graph.js │ │ └── update-graph.ts │ ├── 12-adjacency-graph-builder │ │ ├── README.md │ │ ├── adjacency-data.js │ │ ├── adjacency-data.ts │ │ ├── adjacency-graph-building.js │ │ ├── adjacency-graph-building.ts │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 13-tree-builder │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── tree-data.js │ │ ├── tree-data.ts │ │ ├── tree-graph-building.js │ │ └── tree-graph-building.ts │ ├── DataTypes.d.ts │ ├── common.js │ ├── common.ts │ └── ownership-data.json ├── tutorial-style-implementation-edge │ ├── 01-create-a-polyline │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── CustomEdgeStyleBoilerplate.js │ │ ├── CustomEdgeStyleBoilerplate.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 02-crop-the-polyline │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 03-create-parallel-polylines │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 04-render-performance │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 05-making-the-style-configurable │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-edges.js │ │ ├── create-edges.ts │ │ └── index.html │ ├── 06-data-from-tag │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-edges.js │ │ ├── create-edges.ts │ │ └── index.html │ ├── 07-hit-testing │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 08-visibility │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 09-bounds │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 10-bridge-support │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── enable-bridges.js │ │ ├── enable-bridges.ts │ │ └── index.html │ ├── 11-adding-arrows │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-edges.js │ │ ├── create-edges.ts │ │ └── index.html │ ├── 12-custom-arrow │ │ ├── CustomArrow.js │ │ ├── CustomArrow.ts │ │ ├── CustomEdgeStyle.js │ │ ├── CustomEdgeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-edges.js │ │ ├── create-edges.ts │ │ └── index.html │ ├── common.js │ └── common.ts ├── tutorial-style-implementation-label │ ├── 01-render-label-text │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── CustomLabelStyleBoilerplate.js │ │ ├── CustomLabelStyleBoilerplate.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 02-using-text-utilities │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 03-add-background-shape │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 04-preferred-size │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 05-render-performance │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 06-text-alignment │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 07-line-wrapping │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 08-data-from-tag │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-labels.js │ │ ├── create-labels.ts │ │ ├── index.html │ │ └── resources │ │ │ ├── search-16.svg │ │ │ ├── settings-16.svg │ │ │ └── star-16.svg │ ├── 09-hit-testing │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 10-visibility │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 11-bounds │ │ ├── CustomLabelStyle.js │ │ ├── CustomLabelStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── common.js │ └── common.ts ├── tutorial-style-implementation-node │ ├── 01-create-a-rectangle │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── CustomNodeStyleBoilerplate.js │ │ ├── CustomNodeStyleBoilerplate.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 02-create-a-custom-shape │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 03-render-performance │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 04-making-the-style-configurable │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-nodes.js │ │ ├── create-nodes.ts │ │ └── index.html │ ├── 05-data-from-tag │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-nodes.js │ │ ├── create-nodes.ts │ │ └── index.html │ ├── 06-render-text │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-nodes.js │ │ ├── create-nodes.ts │ │ └── index.html │ ├── 07-hit-testing │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 08-edge-cropping │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 09-visibility │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 10-bounds │ │ ├── CustomNodeStyle.js │ │ ├── CustomNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 11-group-node-style │ │ ├── CustomGroupNodeStyle.js │ │ ├── CustomGroupNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 12-group-node-style-behavior │ │ ├── CustomGroupNodeStyle.js │ │ ├── CustomGroupNodeStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── common.js │ └── common.ts ├── tutorial-style-implementation-port │ ├── 01-render-port-shape │ │ ├── CustomPortStyle.js │ │ ├── CustomPortStyle.ts │ │ ├── CustomPortStyleBoilerplate.js │ │ ├── CustomPortStyleBoilerplate.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 02-port-size │ │ ├── CustomPortStyle.js │ │ ├── CustomPortStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── create-ports.js │ │ ├── create-ports.ts │ │ └── index.html │ ├── 03-render-performance │ │ ├── CustomPortStyle.js │ │ ├── CustomPortStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 04-conditional-coloring │ │ ├── CustomPortStyle.js │ │ ├── CustomPortStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 05-hit-testing │ │ ├── CustomPortStyle.js │ │ ├── CustomPortStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── 06-edge-cropping │ │ ├── CustomPortStyle.js │ │ ├── CustomPortStyle.ts │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ └── index.html │ ├── common.js │ └── common.ts ├── tutorial-yfiles-basic-features │ ├── 01-graphcomponent │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── creating-the-view.js │ │ ├── creating-the-view.ts │ │ └── index.html │ ├── 02-graph-element-creation │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── graph-element-creation.js │ │ ├── graph-element-creation.ts │ │ └── index.html │ ├── 03-managing-viewport │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── managing-viewport.js │ │ └── managing-viewport.ts │ ├── 04-setting-styles │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── resources │ │ │ └── star-16.svg │ │ ├── setting-styles.js │ │ └── setting-styles.ts │ ├── 05-label-placement │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── label-placement.js │ │ └── label-placement.ts │ ├── 06-basic-interaction │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── basic-interaction.js │ │ ├── basic-interaction.ts │ │ └── index.html │ ├── 07-undo-clipboard-support │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── undo-clipboard-support.js │ │ └── undo-clipboard-support.ts │ ├── 08-grouping │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── grouping.js │ │ ├── grouping.ts │ │ └── index.html │ ├── 09-data-binding │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── data-binding.js │ │ ├── data-binding.ts │ │ └── index.html │ ├── 10-layout │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── layout.js │ │ └── layout.ts │ ├── 11-layout-data │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── index.html │ │ ├── layout-data.js │ │ └── layout-data.ts │ ├── 12-graph-analysis │ │ ├── README.md │ │ ├── app.js │ │ ├── app.ts │ │ ├── graph-analysis.js │ │ ├── graph-analysis.ts │ │ └── index.html │ ├── common.js │ ├── common.ts │ ├── graph-data.js │ └── graph-data.ts ├── utils │ ├── AggregationGraphWrapper.js │ ├── AggregationGraphWrapper.ts │ ├── BrowserDetection.js │ ├── BrowserDetection.ts │ ├── DragAndDropPanel.js │ ├── DragAndDropPanel.ts │ ├── EdgeDropInputMode.js │ ├── EdgeDropInputMode.ts │ ├── FaultTolerantGraphMLIOHandler.js │ ├── FaultTolerantGraphMLIOHandler.ts │ ├── GraphSearch.js │ ├── GraphSearch.ts │ ├── IconCreation.js │ ├── IconCreation.ts │ ├── InteractiveOrganicLayoutHelper.js │ ├── InteractiveOrganicLayoutHelper.ts │ ├── LegacyGeometryUtilities.js │ ├── LegacyGeometryUtilities.ts │ ├── LitNodeStyle.js │ ├── LitNodeStyle.ts │ ├── LitNodeStyleMarkupExtension.js │ ├── LitNodeStyleMarkupExtension.ts │ ├── LoadLayoutFeaturesSampleGraph.js │ ├── LoadLayoutFeaturesSampleGraph.ts │ ├── NodeTypePanel.js │ ├── NodeTypePanel.ts │ ├── OrientedRectangleRendererBase.js │ ├── OrientedRectangleRendererBase.ts │ ├── PrintingSupport.js │ ├── PrintingSupport.ts │ ├── README.html │ ├── README.md │ ├── RandomGraphGenerator.js │ ├── RandomGraphGenerator.ts │ ├── RectangleRenderer.js │ ├── RectangleRenderer.ts │ ├── SimpleGraphBuilder.js │ ├── SimpleGraphBuilder.ts │ ├── Vue2NodeStyle.js │ ├── Vue2NodeStyle.ts │ ├── Vue2NodeStyleMarkupExtension.js │ ├── Vue2NodeStyleMarkupExtension.ts │ ├── build-graph.js │ ├── build-graph.ts │ ├── configure-two-pointer-panning.js │ ├── configure-two-pointer-panning.ts │ ├── file-support.js │ ├── file-support.ts │ ├── graphml-support.js │ ├── graphml-support.ts │ ├── json-model.d.ts │ ├── json-writer.js │ ├── json-writer.ts │ ├── label-model-serialization-types.js │ ├── label-model-serialization-types.ts │ ├── label-model-serialization.js │ ├── label-model-serialization.ts │ ├── meta-quest-support.js │ ├── meta-quest-support.ts │ ├── npm-shrinkwrap.json │ ├── open-in-window.js │ ├── open-in-window.ts │ ├── package-deploy.json │ ├── package.json │ ├── presentation-support.js │ ├── presentation-support.ts │ ├── sample-graph.js │ ├── sample-graph.ts │ └── template-styles │ │ ├── MarkupExtensions.js │ │ ├── MarkupExtensions.ts │ │ ├── StringTemplateLabelStyle.js │ │ ├── StringTemplateLabelStyle.ts │ │ ├── StringTemplateNodeStyle.js │ │ ├── StringTemplateNodeStyle.ts │ │ ├── StringTemplatePortStyle.js │ │ ├── StringTemplatePortStyle.ts │ │ ├── StringTemplateSupport.js │ │ ├── StringTemplateSupport.ts │ │ ├── TemplateStyles.js │ │ ├── TemplateStyles.ts │ │ ├── template-engine │ │ ├── constants.js │ │ ├── constants.ts │ │ ├── helpers.js │ │ ├── helpers.ts │ │ ├── interfaces.js │ │ ├── interfaces.ts │ │ ├── template-engine.js │ │ └── template-engine.ts │ │ ├── text-wrapping-converter.js │ │ └── text-wrapping-converter.ts └── view │ ├── arrange-objects │ ├── AlignmentUtils.js │ ├── AlignmentUtils.ts │ ├── ArrangeObjectsDemo.js │ ├── ArrangeObjectsDemo.ts │ ├── README.md │ ├── index.html │ └── resources │ │ ├── SampleData.js │ │ └── SampleData.ts │ ├── bridges │ ├── BridgeHelper.js │ ├── BridgeHelper.ts │ ├── BridgesDemo.js │ ├── BridgesDemo.ts │ ├── README.md │ └── index.html │ ├── clipboard-deferred-cut │ ├── ClipboardStyles.js │ ├── ClipboardStyles.ts │ ├── DeferredCutClipboard.js │ ├── DeferredCutClipboard.ts │ ├── DeferredCutClipboardDemo.js │ ├── DeferredCutClipboardDemo.ts │ ├── README.md │ ├── graph-data.json │ └── index.html │ ├── clipboard │ ├── BusinessDataHandling.js │ ├── BusinessDataHandling.ts │ ├── ClipboardDemo.js │ ├── ClipboardDemo.ts │ ├── ClipboardHelper.js │ ├── ClipboardHelper.ts │ ├── README.md │ └── index.html │ ├── collapse │ ├── CollapseAndExpandNodes.js │ ├── CollapseAndExpandNodes.ts │ ├── CollapseDemo.js │ ├── CollapseDemo.ts │ ├── README.md │ ├── index.html │ ├── style-templates.js │ └── style-templates.ts │ ├── contextualtoolbar │ ├── ContextualToolbar.js │ ├── ContextualToolbar.ts │ ├── ContextualToolbarDemo.js │ ├── ContextualToolbarDemo.ts │ ├── README.md │ ├── graph-data.json │ ├── index.html │ └── resources │ │ ├── arrows │ │ ├── chevron.svg │ │ ├── circle.svg │ │ ├── diamond.svg │ │ ├── kite.svg │ │ ├── none.svg │ │ └── triangle.svg │ │ ├── contextual-toolbar.css │ │ └── shapes │ │ ├── ellipse.svg │ │ ├── hexagon.svg │ │ ├── pill.svg │ │ ├── rectangle.svg │ │ ├── round-rectangle.svg │ │ ├── star6.svg │ │ └── triangle.svg │ ├── deep-zoom │ ├── DeepZoomDemo.js │ ├── DeepZoomDemo.ts │ ├── DeepZoomGroupNodeStyle.js │ ├── DeepZoomGroupNodeStyle.ts │ ├── README.md │ ├── deep-zoom-layout.js │ ├── deep-zoom-layout.ts │ ├── deep-zoom-update.js │ ├── deep-zoom-update.ts │ ├── index.html │ └── model │ │ ├── deep-zoom-sample.js │ │ ├── deep-zoom-sample.ts │ │ ├── load-sample-graph.js │ │ └── load-sample-graph.ts │ ├── edgetoedge │ ├── EdgePathPortCandidateProvider.js │ ├── EdgePathPortCandidateProvider.ts │ ├── EdgeToEdgeDemo.js │ ├── EdgeToEdgeDemo.ts │ ├── README.md │ └── index.html │ ├── events │ ├── EventView.js │ ├── EventView.ts │ ├── EventsDemo.js │ ├── EventsDemo.ts │ ├── README.md │ ├── graph-data.json │ ├── index.html │ └── style.css │ ├── ganttchart │ ├── CreateActivityInputMode.js │ ├── CreateActivityInputMode.ts │ ├── GanttChartDemo.js │ ├── GanttChartDemo.ts │ ├── GridVisual.js │ ├── GridVisual.ts │ ├── README.md │ ├── RoutingEdgeStyle.js │ ├── RoutingEdgeStyle.ts │ ├── activity-node │ │ ├── ActivityNodeHandleProvider.js │ │ ├── ActivityNodeHandleProvider.ts │ │ ├── ActivityNodeLabelModel.js │ │ ├── ActivityNodeLabelModel.ts │ │ ├── ActivityNodePortCandidateProvider.js │ │ ├── ActivityNodePortCandidateProvider.ts │ │ ├── ActivityNodePositionHandler.js │ │ ├── ActivityNodePositionHandler.ts │ │ ├── ActivityNodeSnapResultProvider.js │ │ ├── ActivityNodeSnapResultProvider.ts │ │ ├── ActivityNodeStyle.js │ │ └── ActivityNodeStyle.ts │ ├── components │ │ ├── TaskComponent.js │ │ ├── TaskComponent.ts │ │ ├── TimelineComponent.js │ │ └── TimelineComponent.ts │ ├── gantt-utils.js │ ├── gantt-utils.ts │ ├── index.html │ ├── info-panel.js │ ├── info-panel.ts │ ├── input.js │ ├── input.ts │ ├── resources │ │ ├── data-model.js │ │ ├── data-model.ts │ │ ├── gantt-chart-data.js │ │ ├── gantt-chart-data.ts │ │ └── gantt-styles.css │ ├── sweepline-layout.js │ └── sweepline-layout.ts │ ├── grapheditor │ ├── GraphEditorDemo.js │ ├── GraphEditorDemo.ts │ ├── README.md │ ├── graph-data.json │ └── index.html │ ├── graphml │ ├── EditorSync.js │ ├── EditorSync.ts │ ├── GraphMLDemo.js │ ├── GraphMLDemo.ts │ ├── GraphMLProperty.js │ ├── GraphMLProperty.ts │ ├── PropertiesPanel.js │ ├── PropertiesPanel.ts │ ├── PropertiesPanelUI.js │ ├── PropertiesPanelUI.ts │ ├── README.md │ ├── SimpleInputHandler.js │ ├── SimpleInputHandler.ts │ ├── SimpleOutputHandler.js │ ├── SimpleOutputHandler.ts │ ├── index.html │ └── resources │ │ ├── sample-graph.graphml │ │ └── y.svg │ ├── graphviewer │ ├── FastCanvasStyles.js │ ├── FastCanvasStyles.ts │ ├── GraphViewerDemo.js │ ├── GraphViewerDemo.ts │ ├── README.md │ ├── index.html │ └── resources │ │ ├── bezier-style.graphml │ │ ├── busy.svg │ │ ├── computer-network.graphml │ │ ├── family-tree.graphml │ │ ├── hierarchy.graphml │ │ ├── large-tree.graphml │ │ ├── movie.svg │ │ ├── movies.graphml │ │ ├── nesting.graphml │ │ ├── orgchart.graphml │ │ ├── present.svg │ │ ├── printer.svg │ │ ├── scanner.svg │ │ ├── server.svg │ │ ├── social-network.graphml │ │ ├── switch.svg │ │ ├── travel.svg │ │ ├── uml-diagram.graphml │ │ ├── unavailable.svg │ │ ├── usericon_female1.svg │ │ ├── usericon_female2.svg │ │ ├── usericon_female3.svg │ │ ├── usericon_female4.svg │ │ ├── usericon_female5.svg │ │ ├── usericon_male1.svg │ │ ├── usericon_male2.svg │ │ ├── usericon_male3.svg │ │ ├── usericon_male4.svg │ │ ├── usericon_male5.svg │ │ ├── wlan.svg │ │ └── workstation.svg │ ├── htmlpopup │ ├── HTMLPopupDemo.js │ ├── HTMLPopupDemo.ts │ ├── HTMLPopupSupport.js │ ├── HTMLPopupSupport.ts │ ├── README.md │ ├── index.html │ └── resources │ │ ├── graph-data.json │ │ ├── usericon_female1.svg │ │ ├── usericon_female2.svg │ │ ├── usericon_female3.svg │ │ ├── usericon_male1.svg │ │ ├── usericon_male2.svg │ │ └── usericon_male3.svg │ ├── imageexport │ ├── ImageExportDemo.js │ ├── ImageExportDemo.ts │ ├── ImageExportOptions.d.ts │ ├── PaperSize.js │ ├── PaperSize.ts │ ├── README.md │ ├── aspect-ratio.js │ ├── aspect-ratio.ts │ ├── export-dialog │ │ ├── export-dialog.css │ │ ├── export-dialog.js │ │ └── export-dialog.ts │ ├── export-rectangle │ │ ├── PositionHandler.js │ │ ├── PositionHandler.ts │ │ ├── export-rectangle.js │ │ └── export-rectangle.ts │ ├── image-export-client-side.js │ ├── image-export-client-side.ts │ ├── image-export-server-side.js │ ├── image-export-server-side.ts │ ├── index.html │ ├── node-server │ │ ├── README.html │ │ ├── export.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js │ ├── node-styles │ │ ├── delayed-node-style.css │ │ ├── delayed-node-style.js │ │ ├── delayed-node-style.ts │ │ ├── switch.svg │ │ └── workstation.svg │ ├── option-panel │ │ ├── option-panel.js │ │ └── option-panel.ts │ ├── samples.js │ ├── samples.ts │ ├── server-side-export.js │ ├── server-side-export.ts │ ├── webgl-support.js │ └── webgl-support.ts │ ├── large-tree │ ├── LargeTreeDemo.js │ ├── LargeTreeDemo.ts │ ├── README.md │ └── index.html │ ├── list-node │ ├── ListNodeDemo.js │ ├── ListNodeDemo.ts │ ├── ListNodeStyle.js │ ├── ListNodeStyle.ts │ ├── README.md │ ├── RowPositionHandler.js │ ├── RowPositionHandler.ts │ └── index.html │ ├── overviewstyles │ ├── HtmlLabelStyle.js │ ├── HtmlLabelStyle.ts │ ├── OverviewCanvasRenderer.js │ ├── OverviewCanvasRenderer.ts │ ├── OverviewStylesDemo.js │ ├── OverviewStylesDemo.ts │ ├── OverviewSvgRenderer.js │ ├── OverviewSvgRenderer.ts │ ├── README.md │ ├── graph-data.json │ ├── index.html │ ├── orgchart-data.js │ ├── orgchart-data.ts │ ├── resources │ │ ├── busy_icon.svg │ │ ├── orgchartstyle.css │ │ ├── present_icon.svg │ │ ├── travel_icon.svg │ │ ├── unavailable_icon.svg │ │ ├── usericon_female1.svg │ │ ├── usericon_female2.svg │ │ ├── usericon_female3.svg │ │ ├── usericon_female4.svg │ │ ├── usericon_female5.svg │ │ ├── usericon_male1.svg │ │ ├── usericon_male2.svg │ │ ├── usericon_male3.svg │ │ ├── usericon_male4.svg │ │ └── usericon_male5.svg │ ├── style-templates.js │ └── style-templates.ts │ ├── pdfexport │ ├── PaperSize.js │ ├── PaperSize.ts │ ├── PdfExportDemo.js │ ├── PdfExportDemo.ts │ ├── PdfExportOptions.d.ts │ ├── README.md │ ├── aspect-ratio.js │ ├── aspect-ratio.ts │ ├── export-dialog │ │ ├── export-dialog.css │ │ ├── export-dialog.js │ │ └── export-dialog.ts │ ├── export-rectangle │ │ ├── PositionHandler.js │ │ ├── PositionHandler.ts │ │ ├── export-rectangle.js │ │ └── export-rectangle.ts │ ├── index.html │ ├── load-external-fonts.js │ ├── load-external-fonts.ts │ ├── node-server │ │ ├── README.html │ │ ├── export.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js │ ├── node-styles │ │ ├── delayed-node-style.css │ │ ├── delayed-node-style.js │ │ ├── delayed-node-style.ts │ │ ├── switch.svg │ │ └── workstation.svg │ ├── option-panel │ │ ├── option-panel.js │ │ └── option-panel.ts │ ├── pdf-export-client-side.js │ ├── pdf-export-client-side.ts │ ├── pdf-export-server-side.js │ ├── pdf-export-server-side.ts │ ├── samples.js │ ├── samples.ts │ ├── server-side-export.js │ ├── server-side-export.ts │ ├── webgl-support.js │ └── webgl-support.ts │ ├── printing │ ├── PrintingDemo.js │ ├── PrintingDemo.ts │ ├── README.md │ ├── aspect-ratio.js │ ├── aspect-ratio.ts │ ├── export-rectangle │ │ ├── PositionHandler.js │ │ ├── PositionHandler.ts │ │ ├── export-rectangle.js │ │ └── export-rectangle.ts │ ├── index.html │ ├── node-styles │ │ ├── delayed-node-style.css │ │ ├── delayed-node-style.js │ │ ├── delayed-node-style.ts │ │ ├── switch.svg │ │ └── workstation.svg │ ├── option-panel │ │ ├── option-panel.js │ │ └── option-panel.ts │ ├── samples.js │ ├── samples.ts │ ├── webgl-support.js │ └── webgl-support.ts │ ├── renderingorder │ ├── README.md │ ├── RenderingOrderDemo.js │ ├── RenderingOrderDemo.ts │ └── index.html │ ├── structureview │ ├── README.md │ ├── StructureView.js │ ├── StructureView.ts │ ├── StructureViewDemo.js │ ├── StructureViewDemo.ts │ ├── index.html │ └── resources │ │ ├── folder-collapsed.svg │ │ ├── folder-expanded.svg │ │ ├── structure-view-data.js │ │ ├── structure-view-data.ts │ │ └── structure-view.css │ ├── svgexport │ ├── README.md │ ├── SvgExportDemo.js │ ├── SvgExportDemo.ts │ ├── SvgExportOptions.d.ts │ ├── aspect-ratio.js │ ├── aspect-ratio.ts │ ├── export-dialog │ │ ├── export-dialog.css │ │ ├── export-dialog.js │ │ └── export-dialog.ts │ ├── export-rectangle │ │ ├── PositionHandler.js │ │ ├── PositionHandler.ts │ │ ├── export-rectangle.js │ │ └── export-rectangle.ts │ ├── index.html │ ├── node-styles │ │ ├── delayed-node-style.css │ │ ├── delayed-node-style.js │ │ ├── delayed-node-style.ts │ │ ├── switch.svg │ │ └── workstation.svg │ ├── option-panel │ │ ├── option-panel.js │ │ └── option-panel.ts │ ├── samples.js │ ├── samples.ts │ ├── svg-export.js │ ├── svg-export.ts │ ├── webgl-support.js │ └── webgl-support.ts │ ├── webgl-label-fading │ ├── README.md │ ├── WebGLLabelFadingDemo.js │ ├── WebGLLabelFadingDemo.ts │ ├── index.html │ ├── label-fading.js │ ├── label-fading.ts │ └── resources │ │ └── hierarchic_2000_2100.json │ ├── webgl-precompilation │ ├── README.md │ ├── WebGLPrecompilationDemo.js │ ├── WebGLPrecompilationDemo.ts │ ├── index.html │ ├── preload-webgl-styles.js │ ├── preload-webgl-styles.ts │ ├── webgl-styles-util.js │ ├── webgl-styles-util.ts │ ├── webgl-styles.js │ └── webgl-styles.ts │ └── zorder │ ├── README.md │ ├── ZOrderDemo.js │ ├── ZOrderDemo.ts │ ├── ZOrderGraphClipboard.js │ ├── ZOrderGraphClipboard.ts │ ├── ZOrderSupport.js │ ├── ZOrderSupport.ts │ └── index.html └── doc └── demo-thumbnails ├── accessibility.webp ├── adjacency-graph-builder.webp ├── angular-component-node-style.webp ├── angular.webp ├── arc-diagram.webp ├── arrange-objects.webp ├── arrow-edge-style.webp ├── arrow-node-style.webp ├── arrow.webp ├── background-image.webp ├── basic-demo.webp ├── bezier-edge-style.webp ├── border-aligned-label-model.webp ├── boundary-labeling.webp ├── bpmn-editor.webp ├── bridges.webp ├── building-graph-from-data.webp ├── building-swimlanes-from-data.webp ├── bus-routing.webp ├── button-input-mode.webp ├── chord-diagram-non-ribbon.webp ├── chord-diagram.webp ├── circle-snapping.webp ├── circular-substructures.webp ├── clear-marquee-area.webp ├── clear-rectangle-area.webp ├── clickable-style-decorator.webp ├── clipboard-deferred-cut.webp ├── clipboard.webp ├── clustering-algorithms.webp ├── collapsible-trees.webp ├── company-ownership.webp ├── complex-highlight.webp ├── component-drag-and-drop.webp ├── composite-node-style.webp ├── context-menu.webp ├── contextual-toolbar.webp ├── critical-path-analysis.webp ├── critical-paths.webp ├── css-item-style.webp ├── css-styling.webp ├── custom-drag-and-drop.webp ├── custom-edge-creation.webp ├── custom-graphml.webp ├── custom-handle-provider.webp ├── custom-layout-stage.webp ├── custom-port-location-model.webp ├── custom-snapping.webp ├── custom-styles.webp ├── cypress.webp ├── d3-chart-nodes.webp ├── data-table.webp ├── decision-tree.webp ├── deep-zoom.webp ├── directed-edge-label-style.webp ├── drag-and-drop.webp ├── drag-from-component.webp ├── edge-bundling.webp ├── edge-grouping.webp ├── edge-label-placement.webp ├── edge-reconnection.webp ├── edge-router-grouping.webp ├── edge-to-edge.webp ├── editable-path-style.webp ├── events-viewer.webp ├── external-links.webp ├── family-tree.webp ├── file-operations.webp ├── fill-area-layout.webp ├── filtering-with-folding.webp ├── filtering.webp ├── flowchart-editor.webp ├── folding-with-layout.webp ├── folding-with-merged-edges.webp ├── folding.webp ├── fraud-detection.webp ├── gantt-chart.webp ├── general-path-node-style.webp ├── graph-analysis.webp ├── graph-builder.webp ├── graph-copy.webp ├── graph-decorator.webp ├── graph-drag-and-drop.webp ├── graph-editor.webp ├── graph-search.webp ├── graph-viewer.webp ├── graph-wizard-flowchart.webp ├── graphml.webp ├── graphql.webp ├── grid-snapping.webp ├── group-node-style.webp ├── height-profile.webp ├── hierarchical-grid-components.webp ├── hierarchical-nesting-incremental.webp ├── hierarchical-nesting.webp ├── hierarchical-subcomponents.webp ├── home-automation.webp ├── html-controls.webp ├── html-label-style.webp ├── html-popup.webp ├── image-export.webp ├── input-output.webp ├── interactive-aggregation.webp ├── interactive-edge-routing.webp ├── interactive-graph-restructuring.webp ├── interactive-hierarchical-layout.webp ├── interactive-organic-layout.webp ├── intersection-detection.webp ├── invariant-label-style.webp ├── isometric-bar-chart-style.webp ├── isometric-drawing.webp ├── jest-puppeteer.webp ├── jest.webp ├── label-editing.webp ├── label-handle-provider.webp ├── label-style.webp ├── label-text-wrapping.webp ├── large-graph-aggregation.webp ├── large-graphs.webp ├── large-tree.webp ├── lasso-selection.webp ├── layer-constraints.webp ├── layout-compact-disk-groups.webp ├── layout-compact-tabular-layout.webp ├── layout-constraints.webp ├── layout-edge-router-buses-custom.webp ├── layout-edge-router-buses.webp ├── layout-edge-router-incremental.webp ├── layout-edgerouter.webp ├── layout-grid.webp ├── layout-hierarchical-compact-groups.webp ├── layout-hierarchical-edge-grouping.webp ├── layout-hierarchical-edge-labeling.webp ├── layout-hierarchical-incremental.webp ├── layout-hierarchical-node-alignment.webp ├── layout-hierarchical-node-port-candidates.webp ├── layout-hierarchical-with-given-layering.webp ├── layout-hierarchical.webp ├── layout-layer-constraints.webp ├── layout-organic-constraints.webp ├── layout-organic-edge-labeling.webp ├── layout-organic-incremental.webp ├── layout-organic-substructures.webp ├── layout-organic.webp ├── layout-orthogonal.webp ├── layout-radial-group-layout.webp ├── layout-recursive-group-layout.webp ├── layout-sequence-constraints.webp ├── layout-styles-bus-router.webp ├── layout-styles-circular.webp ├── layout-styles-components.webp ├── layout-styles-disk.webp ├── layout-styles-edge-router.webp ├── layout-styles-hierarchical.webp ├── layout-styles-labeling.webp ├── layout-styles-organic.webp ├── layout-styles-orthogonal.webp ├── layout-styles-partial.webp ├── layout-styles-radial-tree.webp ├── layout-styles-radial.webp ├── layout-styles-series-parallel.webp ├── layout-styles-tabular.webp ├── layout-styles-tree.webp ├── layout-styles.webp ├── layout-tree-node-placers.webp ├── layout-tree.webp ├── level-of-detail-style.webp ├── list-node.webp ├── lit-template-node-style.webp ├── logic-gates.webp ├── magnifying-glass.webp ├── map.webp ├── markdown-label.webp ├── markup-labels.webp ├── marquee-node-creation.webp ├── maze-routing.webp ├── metaball-groups.webp ├── metabolic-pathways.webp ├── mindmap-editor.webp ├── mouse-wheel-customization.webp ├── move-unselected-nodes.webp ├── multi-page-layout.webp ├── native-listeners.webp ├── neighborhood-circles.webp ├── neighborhood-view.webp ├── neo4j.webp ├── network-flows.webp ├── network-monitoring.webp ├── next.webp ├── node-alignment.webp ├── node-labeling.webp ├── node-overlap-avoiding.webp ├── node-selection-resizing.webp ├── node-types.webp ├── nodejs.webp ├── offset-wrapper-label-model.webp ├── organic-substructures.webp ├── organization-chart.webp ├── orthogonal-edge-editing-customization.webp ├── orthogonal-edge-editing.webp ├── overview-styling.webp ├── overview.webp ├── parcel.webp ├── partial-layout.webp ├── partition-grid.webp ├── pdf-export.webp ├── playwright.webp ├── port-alignment.webp ├── port-aware-adjacency-graph-builder.webp ├── port-aware-graph-builder.webp ├── port-aware-tree-builder.webp ├── port-candidate-provider.webp ├── position-handler.webp ├── preact.webp ├── printing.webp ├── process-mining.webp ├── react-class-components.webp ├── react-component-node-style.webp ├── react-template-node-style.webp ├── react.webp ├── rectangle-node-style.webp ├── rectangular-indicator.webp ├── rendering-order.webp ├── reparent-handler.webp ├── reshape-handle-provider-configuration.webp ├── reshape-handle-provider.webp ├── restricted-editing.webp ├── rich-text-label.webp ├── rollup.webp ├── rotatable-nodes.webp ├── sankey-diagram.webp ├── selection-styling.webp ├── selenium-webdriver.webp ├── sequence-constraints.webp ├── shape-node-style.webp ├── shape-port-style.webp ├── simple-adjacency-graph-builder-with-ids.webp ├── simple-adjacency-graph-builder.webp ├── simple-arrow-style.webp ├── simple-drag-and-drop.webp ├── simple-graph-builder-implicit-groups.webp ├── simple-graph-builder.webp ├── simple-highlight.webp ├── simple-layout-grid.webp ├── simple-partition-grid.webp ├── simple-theming.webp ├── simple-tree-builder-array.webp ├── simple-tree-builder-json.webp ├── single-selection.webp ├── size-constraint-provider.webp ├── smart-click-navigation.webp ├── snapping.webp ├── solid.webp ├── split-edges.webp ├── structure-view.webp ├── style-decorators.webp ├── subdivide-edges.webp ├── supply-chain.webp ├── svelte.webp ├── svg-export.webp ├── table-editor.webp ├── tabular-groups.webp ├── tag-cloud.webp ├── template-node-style.webp ├── template-styles.webp ├── theme-variants.webp ├── timeline.webp ├── tooltips.webp ├── touch-interaction.webp ├── transitivity.webp ├── tree-graph-builder.webp ├── tree-layout.webp ├── tree-map.webp ├── tree-of-life.webp ├── tutorial-basic-features-basic-interaction.webp ├── tutorial-basic-features-data-binding.webp ├── tutorial-basic-features-graph-analysis.webp ├── tutorial-basic-features-graph-element-creation.webp ├── tutorial-basic-features-graphcomponent.webp ├── tutorial-basic-features-grouping.webp ├── tutorial-basic-features-label-placement.webp ├── tutorial-basic-features-layout-data.webp ├── tutorial-basic-features-layout.webp ├── tutorial-basic-features-managing-viewport.webp ├── tutorial-basic-features-setting-styles.webp ├── tutorial-basic-features-undo-clipboard-support.webp ├── tutorial-basic-features.webp ├── tutorial-graph-builder-adjacency-graph-builder.webp ├── tutorial-graph-builder-configure-labels.webp ├── tutorial-graph-builder-configure-layout.webp ├── tutorial-graph-builder-configure-styles.webp ├── tutorial-graph-builder-configure-tags.webp ├── tutorial-graph-builder-create-edges-sources.webp ├── tutorial-graph-builder-create-graph.webp ├── tutorial-graph-builder-create-labels-sources.webp ├── tutorial-graph-builder-create-nodes-sources.webp ├── tutorial-graph-builder-group-nodes.webp ├── tutorial-graph-builder-implicit-grouping.webp ├── tutorial-graph-builder-tree-builder.webp ├── tutorial-graph-builder-update-graph.webp ├── tutorial-graph-builder.webp ├── tutorial-style-implementation-edge-adding-arrows.webp ├── tutorial-style-implementation-edge-bounds.webp ├── tutorial-style-implementation-edge-bridge-support.webp ├── tutorial-style-implementation-edge-create-a-polyline.webp ├── tutorial-style-implementation-edge-create-parallel-polylines.webp ├── tutorial-style-implementation-edge-crop-the-polyline.webp ├── tutorial-style-implementation-edge-custom-arrow.webp ├── tutorial-style-implementation-edge-data-from-tag.webp ├── tutorial-style-implementation-edge-hit-testing.webp ├── tutorial-style-implementation-edge-making-the-style-configurable.webp ├── tutorial-style-implementation-edge-render-performance.webp ├── tutorial-style-implementation-edge-visibility.webp ├── tutorial-style-implementation-edge.webp ├── tutorial-style-implementation-label-add-background-shape.webp ├── tutorial-style-implementation-label-bounds.webp ├── tutorial-style-implementation-label-data-from-tag.webp ├── tutorial-style-implementation-label-hit-testing.webp ├── tutorial-style-implementation-label-line-wrapping.webp ├── tutorial-style-implementation-label-preferred-size.webp ├── tutorial-style-implementation-label-render-label-text.webp ├── tutorial-style-implementation-label-render-performance.webp ├── tutorial-style-implementation-label-text-alignment.webp ├── tutorial-style-implementation-label-using-text-utilities.webp ├── tutorial-style-implementation-label-visibility.webp ├── tutorial-style-implementation-label.webp ├── tutorial-style-implementation-node-bounds.webp ├── tutorial-style-implementation-node-create-a-custom-shape.webp ├── tutorial-style-implementation-node-create-a-rectangle.webp ├── tutorial-style-implementation-node-data-from-tag.webp ├── tutorial-style-implementation-node-edge-cropping.webp ├── tutorial-style-implementation-node-group-node-style-behavior.webp ├── tutorial-style-implementation-node-group-node-style.webp ├── tutorial-style-implementation-node-hit-testing.webp ├── tutorial-style-implementation-node-making-the-style-configurable.webp ├── tutorial-style-implementation-node-render-performance.webp ├── tutorial-style-implementation-node-render-text.webp ├── tutorial-style-implementation-node-visibility.webp ├── tutorial-style-implementation-node.webp ├── tutorial-style-implementation-port-conditional-coloring.webp ├── tutorial-style-implementation-port-edge-cropping.webp ├── tutorial-style-implementation-port-hit-testing.webp ├── tutorial-style-implementation-port-port-size.webp ├── tutorial-style-implementation-port-render-performance.webp ├── tutorial-style-implementation-port-render-port-shape.webp ├── tutorial-style-implementation-port.webp ├── uml-editor.webp ├── valid-begin-cursors.webp ├── viewport-limiter.webp ├── vite-lazy-yfiles.webp ├── vite.webp ├── vitest.webp ├── vue-component-node-style.webp ├── vue-template-node-style.webp ├── vue.webp ├── web-components.webp ├── web-dev-server.webp ├── web-worker-webpack.webp ├── web-worker.webp ├── webdriverio.webp ├── webgl-animations.webp ├── webgl-icon-node.webp ├── webgl-label-fading.webp ├── webgl-precompilation.webp ├── webgl-rendering.webp ├── webgl-selection-styles.webp ├── webgl-styles.webp ├── webpack-lazy-layout.webp ├── webpack-lazy-yfiles.webp ├── webpack.webp ├── without-view.webp └── z-order.webp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/README.md -------------------------------------------------------------------------------- /demo-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demo-grid.png -------------------------------------------------------------------------------- /demos/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/.editorconfig -------------------------------------------------------------------------------- /demos/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/.prettierignore -------------------------------------------------------------------------------- /demos/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/.prettierrc.json -------------------------------------------------------------------------------- /demos/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/README.html -------------------------------------------------------------------------------- /demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/README.md -------------------------------------------------------------------------------- /demos/analysis/clustering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/analysis/clustering/README.md -------------------------------------------------------------------------------- /demos/analysis/clustering/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/analysis/clustering/index.html -------------------------------------------------------------------------------- /demos/analysis/networkflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/analysis/networkflows/README.md -------------------------------------------------------------------------------- /demos/analysis/networkflows/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/analysis/networkflows/index.html -------------------------------------------------------------------------------- /demos/analysis/transitivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/analysis/transitivity/README.md -------------------------------------------------------------------------------- /demos/analysis/transitivity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/analysis/transitivity/index.html -------------------------------------------------------------------------------- /demos/databinding/treebuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/databinding/treebuilder/README.md -------------------------------------------------------------------------------- /demos/demo-app/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/README.html -------------------------------------------------------------------------------- /demos/demo-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/README.md -------------------------------------------------------------------------------- /demos/demo-app/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/README.md -------------------------------------------------------------------------------- /demos/demo-app/app/build-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/build-graph.js -------------------------------------------------------------------------------- /demos/demo-app/app/build-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/build-graph.ts -------------------------------------------------------------------------------- /demos/demo-app/app/default-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/default-app.js -------------------------------------------------------------------------------- /demos/demo-app/app/default-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/default-app.ts -------------------------------------------------------------------------------- /demos/demo-app/app/default-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/default-menu.js -------------------------------------------------------------------------------- /demos/demo-app/app/default-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/default-menu.ts -------------------------------------------------------------------------------- /demos/demo-app/app/demo-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/demo-app.js -------------------------------------------------------------------------------- /demos/demo-app/app/demo-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/demo-app.ts -------------------------------------------------------------------------------- /demos/demo-app/app/graphml-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/graphml-support.js -------------------------------------------------------------------------------- /demos/demo-app/app/graphml-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/graphml-support.ts -------------------------------------------------------------------------------- /demos/demo-app/app/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/menu.js -------------------------------------------------------------------------------- /demos/demo-app/app/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/app/menu.ts -------------------------------------------------------------------------------- /demos/demo-app/benchmarking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/benchmarking.js -------------------------------------------------------------------------------- /demos/demo-app/benchmarking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/benchmarking.ts -------------------------------------------------------------------------------- /demos/demo-app/codemirror-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/codemirror-editor.js -------------------------------------------------------------------------------- /demos/demo-app/codemirror-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/codemirror-editor.ts -------------------------------------------------------------------------------- /demos/demo-app/codemirror-linters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/codemirror-linters.js -------------------------------------------------------------------------------- /demos/demo-app/codemirror-linters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/codemirror-linters.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-colors.js -------------------------------------------------------------------------------- /demos/demo-app/demo-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-colors.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-option-editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-option-editor.d.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-option-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-option-editor.js -------------------------------------------------------------------------------- /demos/demo-app/demo-page-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-page-init.js -------------------------------------------------------------------------------- /demos/demo-app/demo-page-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-page-init.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-page.js -------------------------------------------------------------------------------- /demos/demo-app/demo-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-page.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-styles.js -------------------------------------------------------------------------------- /demos/demo-app/demo-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-styles.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-ui/demo-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-ui/demo-error.js -------------------------------------------------------------------------------- /demos/demo-app/demo-ui/demo-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-ui/demo-error.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-ui/element-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-ui/element-utils.js -------------------------------------------------------------------------------- /demos/demo-app/demo-ui/element-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-ui/element-utils.ts -------------------------------------------------------------------------------- /demos/demo-app/demo-ui/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-ui/toolbar.js -------------------------------------------------------------------------------- /demos/demo-app/demo-ui/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/demo-ui/toolbar.ts -------------------------------------------------------------------------------- /demos/demo-app/icons/align-left-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/align-left-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/align-right-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/align-right-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/align-top-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/align-top-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/arrow-down-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/arrow-down-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/arrow-left-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/arrow-left-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/arrow-left-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/arrow-left-alt.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/arrow-right-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/arrow-right-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/arrow-to-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/arrow-to-start.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/arrow-up-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/arrow-up-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/cancel-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/cancel-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/copy-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/copy-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/cut2-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/cut2-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/delete2-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/delete2-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/delete3-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/delete3-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/demagnify-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/demagnify-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/download-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/download-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/edgelabel-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/edgelabel-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/enter-group-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/enter-group-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/exit-group-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/exit-group-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/favicon.ico -------------------------------------------------------------------------------- /demos/demo-app/icons/fit-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/fit-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/grid-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/grid-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/group-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/group-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/group-minus-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/group-minus-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/group-plus-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/group-plus-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/header-angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/header-angle.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/layout-tree-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/layout-tree-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/loading.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/magnify-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/magnify-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/minus-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/minus-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/minus2-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/minus2-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/nodelabel-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/nodelabel-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/ok-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/ok-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/ok2-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/ok2-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/open-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/open-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/paste-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/paste-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/pause.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/play-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/play-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/play2-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/play2-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/plus-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/plus-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/plus2-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/plus2-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/print-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/print-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/redo-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/redo-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/reload-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/reload-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/save-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/save-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/search-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/search-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/settings-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/settings-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/settings2-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/settings2-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/sidebar-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/sidebar-left.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/sidebar-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/sidebar-right.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/snap-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/snap-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/star-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/star-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/theme-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/theme-dark.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/theme-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/theme-light.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/top.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/undo-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/undo-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/ungroup-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/ungroup-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/ylogo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/ylogo-text.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/ylogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/ylogo.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/z-order-top-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/z-order-top-16.svg -------------------------------------------------------------------------------- /demos/demo-app/icons/z-order-up-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/icons/z-order-up-16.svg -------------------------------------------------------------------------------- /demos/demo-app/init-demo-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/init-demo-app.js -------------------------------------------------------------------------------- /demos/demo-app/init-demo-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/init-demo-app.ts -------------------------------------------------------------------------------- /demos/demo-app/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/npm-shrinkwrap.json -------------------------------------------------------------------------------- /demos/demo-app/package-deploy.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": null 3 | } 4 | -------------------------------------------------------------------------------- /demos/demo-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/package.json -------------------------------------------------------------------------------- /demos/demo-app/page-init/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/page-init/sidebars.js -------------------------------------------------------------------------------- /demos/demo-app/page-init/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/page-init/sidebars.ts -------------------------------------------------------------------------------- /demos/demo-app/page-init/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/page-init/variables.js -------------------------------------------------------------------------------- /demos/demo-app/page-init/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/page-init/variables.ts -------------------------------------------------------------------------------- /demos/demo-app/readme-demo-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/readme-demo-data.js -------------------------------------------------------------------------------- /demos/demo-app/readme-demo-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/readme-demo-support.js -------------------------------------------------------------------------------- /demos/demo-app/style/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/style/demo.css -------------------------------------------------------------------------------- /demos/demo-app/style/hljs-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/style/hljs-dark.css -------------------------------------------------------------------------------- /demos/demo-app/style/hljs-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/style/hljs-light.css -------------------------------------------------------------------------------- /demos/demo-app/style/loading-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/style/loading-demo.css -------------------------------------------------------------------------------- /demos/demo-app/style/tutorial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/style/tutorial.css -------------------------------------------------------------------------------- /demos/demo-app/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/demo-app/vite-env.d.ts -------------------------------------------------------------------------------- /demos/input/button-input-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/button-input-mode/README.md -------------------------------------------------------------------------------- /demos/input/circle-snapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/circle-snapping/README.md -------------------------------------------------------------------------------- /demos/input/circle-snapping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/circle-snapping/index.html -------------------------------------------------------------------------------- /demos/input/context-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/context-menu/README.md -------------------------------------------------------------------------------- /demos/input/context-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/context-menu/index.html -------------------------------------------------------------------------------- /demos/input/customportmodel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/customportmodel/README.md -------------------------------------------------------------------------------- /demos/input/customportmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/customportmodel/index.html -------------------------------------------------------------------------------- /demos/input/customsnapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/customsnapping/README.md -------------------------------------------------------------------------------- /demos/input/customsnapping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/customsnapping/index.html -------------------------------------------------------------------------------- /demos/input/draganddrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/draganddrop/README.md -------------------------------------------------------------------------------- /demos/input/draganddrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/draganddrop/index.html -------------------------------------------------------------------------------- /demos/input/draganddrop/resources/y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/draganddrop/resources/y.svg -------------------------------------------------------------------------------- /demos/input/edgereconnection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/edgereconnection/README.md -------------------------------------------------------------------------------- /demos/input/edgereconnection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/edgereconnection/index.html -------------------------------------------------------------------------------- /demos/input/labelediting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/labelediting/README.md -------------------------------------------------------------------------------- /demos/input/labelediting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/labelediting/index.html -------------------------------------------------------------------------------- /demos/input/lasso-selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/lasso-selection/README.md -------------------------------------------------------------------------------- /demos/input/lasso-selection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/lasso-selection/index.html -------------------------------------------------------------------------------- /demos/input/magnifying-glass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/magnifying-glass/README.md -------------------------------------------------------------------------------- /demos/input/magnifying-glass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/magnifying-glass/index.html -------------------------------------------------------------------------------- /demos/input/positionhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/positionhandler/README.md -------------------------------------------------------------------------------- /demos/input/positionhandler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/positionhandler/index.html -------------------------------------------------------------------------------- /demos/input/reparenthandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/reparenthandler/README.md -------------------------------------------------------------------------------- /demos/input/reparenthandler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/reparenthandler/index.html -------------------------------------------------------------------------------- /demos/input/single-selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/single-selection/README.md -------------------------------------------------------------------------------- /demos/input/single-selection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/input/single-selection/index.html -------------------------------------------------------------------------------- /demos/layout-features/organic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout-features/organic/README.md -------------------------------------------------------------------------------- /demos/layout-features/tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout-features/tree/README.md -------------------------------------------------------------------------------- /demos/layout-features/tree/TreeDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout-features/tree/TreeDemo.js -------------------------------------------------------------------------------- /demos/layout-features/tree/TreeDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout-features/tree/TreeDemo.ts -------------------------------------------------------------------------------- /demos/layout-features/tree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout-features/tree/index.html -------------------------------------------------------------------------------- /demos/layout-features/tree/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout-features/tree/sample.json -------------------------------------------------------------------------------- /demos/layout/arc-diagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/arc-diagram/README.md -------------------------------------------------------------------------------- /demos/layout/arc-diagram/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/arc-diagram/index.html -------------------------------------------------------------------------------- /demos/layout/busrouting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/busrouting/README.md -------------------------------------------------------------------------------- /demos/layout/busrouting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/busrouting/index.html -------------------------------------------------------------------------------- /demos/layout/clearmarqueearea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/clearmarqueearea/README.md -------------------------------------------------------------------------------- /demos/layout/criticalpaths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/criticalpaths/README.md -------------------------------------------------------------------------------- /demos/layout/criticalpaths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/criticalpaths/index.html -------------------------------------------------------------------------------- /demos/layout/edgebundling/DemoStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/edgebundling/DemoStyles.js -------------------------------------------------------------------------------- /demos/layout/edgebundling/DemoStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/edgebundling/DemoStyles.ts -------------------------------------------------------------------------------- /demos/layout/edgebundling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/edgebundling/README.md -------------------------------------------------------------------------------- /demos/layout/edgebundling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/edgebundling/index.html -------------------------------------------------------------------------------- /demos/layout/edgegrouping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/edgegrouping/README.md -------------------------------------------------------------------------------- /demos/layout/edgegrouping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/edgegrouping/index.html -------------------------------------------------------------------------------- /demos/layout/fillarealayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/fillarealayout/README.md -------------------------------------------------------------------------------- /demos/layout/fillarealayout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/fillarealayout/index.html -------------------------------------------------------------------------------- /demos/layout/height-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/height-profile/README.md -------------------------------------------------------------------------------- /demos/layout/height-profile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/height-profile/index.html -------------------------------------------------------------------------------- /demos/layout/height-profile/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/height-profile/styles.js -------------------------------------------------------------------------------- /demos/layout/height-profile/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/height-profile/styles.ts -------------------------------------------------------------------------------- /demos/layout/layerconstraints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/layerconstraints/README.md -------------------------------------------------------------------------------- /demos/layout/layoutgrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/layoutgrid/README.md -------------------------------------------------------------------------------- /demos/layout/layoutgrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/layoutgrid/index.html -------------------------------------------------------------------------------- /demos/layout/mazerouting/MazeVisual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/mazerouting/MazeVisual.js -------------------------------------------------------------------------------- /demos/layout/mazerouting/MazeVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/mazerouting/MazeVisual.ts -------------------------------------------------------------------------------- /demos/layout/mazerouting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/mazerouting/README.md -------------------------------------------------------------------------------- /demos/layout/mazerouting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/mazerouting/index.html -------------------------------------------------------------------------------- /demos/layout/multipage/MultiPageDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/multipage/MultiPageDemo.js -------------------------------------------------------------------------------- /demos/layout/multipage/MultiPageDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/multipage/MultiPageDemo.ts -------------------------------------------------------------------------------- /demos/layout/multipage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/multipage/README.md -------------------------------------------------------------------------------- /demos/layout/multipage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/multipage/index.html -------------------------------------------------------------------------------- /demos/layout/node-alignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/node-alignment/README.md -------------------------------------------------------------------------------- /demos/layout/node-alignment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/node-alignment/index.html -------------------------------------------------------------------------------- /demos/layout/node-labeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/node-labeling/README.md -------------------------------------------------------------------------------- /demos/layout/node-labeling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/node-labeling/index.html -------------------------------------------------------------------------------- /demos/layout/nodetypes/NodeTypesDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/nodetypes/NodeTypesDemo.js -------------------------------------------------------------------------------- /demos/layout/nodetypes/NodeTypesDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/nodetypes/NodeTypesDemo.ts -------------------------------------------------------------------------------- /demos/layout/nodetypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/nodetypes/README.md -------------------------------------------------------------------------------- /demos/layout/nodetypes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/nodetypes/index.html -------------------------------------------------------------------------------- /demos/layout/partial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/partial/README.md -------------------------------------------------------------------------------- /demos/layout/partial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/partial/index.html -------------------------------------------------------------------------------- /demos/layout/port-alignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/port-alignment/README.md -------------------------------------------------------------------------------- /demos/layout/port-alignment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/port-alignment/index.html -------------------------------------------------------------------------------- /demos/layout/sankey/HTMLPopupSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/HTMLPopupSupport.js -------------------------------------------------------------------------------- /demos/layout/sankey/HTMLPopupSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/HTMLPopupSupport.ts -------------------------------------------------------------------------------- /demos/layout/sankey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/README.md -------------------------------------------------------------------------------- /demos/layout/sankey/SankeyDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/SankeyDemo.js -------------------------------------------------------------------------------- /demos/layout/sankey/SankeyDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/SankeyDemo.ts -------------------------------------------------------------------------------- /demos/layout/sankey/data-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/data-types.js -------------------------------------------------------------------------------- /demos/layout/sankey/data-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/data-types.ts -------------------------------------------------------------------------------- /demos/layout/sankey/edge-thickness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/edge-thickness.js -------------------------------------------------------------------------------- /demos/layout/sankey/edge-thickness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/edge-thickness.ts -------------------------------------------------------------------------------- /demos/layout/sankey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/index.html -------------------------------------------------------------------------------- /demos/layout/sankey/node-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/node-popup.js -------------------------------------------------------------------------------- /demos/layout/sankey/node-popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/node-popup.ts -------------------------------------------------------------------------------- /demos/layout/sankey/sankey-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/sankey-layout.js -------------------------------------------------------------------------------- /demos/layout/sankey/sankey-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/sankey-layout.ts -------------------------------------------------------------------------------- /demos/layout/sankey/styles-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/styles-support.js -------------------------------------------------------------------------------- /demos/layout/sankey/styles-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/sankey/styles-support.ts -------------------------------------------------------------------------------- /demos/layout/simplelayoutgrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/simplelayoutgrid/README.md -------------------------------------------------------------------------------- /demos/layout/splitedges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/splitedges/README.md -------------------------------------------------------------------------------- /demos/layout/splitedges/graph-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/splitedges/graph-data.json -------------------------------------------------------------------------------- /demos/layout/splitedges/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/splitedges/index.html -------------------------------------------------------------------------------- /demos/layout/subcomponents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/subcomponents/README.md -------------------------------------------------------------------------------- /demos/layout/subcomponents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/subcomponents/index.html -------------------------------------------------------------------------------- /demos/layout/tabular-groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tabular-groups/README.md -------------------------------------------------------------------------------- /demos/layout/tabular-groups/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tabular-groups/index.html -------------------------------------------------------------------------------- /demos/layout/tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/README.md -------------------------------------------------------------------------------- /demos/layout/tree/SubtreePlacerPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/SubtreePlacerPanel.js -------------------------------------------------------------------------------- /demos/layout/tree/SubtreePlacerPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/SubtreePlacerPanel.ts -------------------------------------------------------------------------------- /demos/layout/tree/TreeLayoutDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/TreeLayoutDemo.js -------------------------------------------------------------------------------- /demos/layout/tree/TreeLayoutDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/TreeLayoutDemo.ts -------------------------------------------------------------------------------- /demos/layout/tree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/index.html -------------------------------------------------------------------------------- /demos/layout/tree/resources/TreeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/resources/TreeData.js -------------------------------------------------------------------------------- /demos/layout/tree/resources/TreeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/tree/resources/TreeData.ts -------------------------------------------------------------------------------- /demos/layout/treemap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/treemap/README.md -------------------------------------------------------------------------------- /demos/layout/treemap/TreeMapDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/treemap/TreeMapDemo.js -------------------------------------------------------------------------------- /demos/layout/treemap/TreeMapDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/treemap/TreeMapDemo.ts -------------------------------------------------------------------------------- /demos/layout/treemap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/treemap/index.html -------------------------------------------------------------------------------- /demos/layout/without-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/without-view/README.md -------------------------------------------------------------------------------- /demos/layout/without-view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/layout/without-view/index.html -------------------------------------------------------------------------------- /demos/loading/basic-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/basic-demo/README.md -------------------------------------------------------------------------------- /demos/loading/basic-demo/basic-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/basic-demo/basic-demo.css -------------------------------------------------------------------------------- /demos/loading/basic-demo/basic-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/basic-demo/basic-demo.js -------------------------------------------------------------------------------- /demos/loading/basic-demo/basic-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/basic-demo/basic-demo.ts -------------------------------------------------------------------------------- /demos/loading/basic-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/basic-demo/index.html -------------------------------------------------------------------------------- /demos/loading/nodejs/NodeJSDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/nodejs/NodeJSDemo.js -------------------------------------------------------------------------------- /demos/loading/nodejs/NodeJSDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/nodejs/NodeJSDemo.ts -------------------------------------------------------------------------------- /demos/loading/nodejs/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/nodejs/README.html -------------------------------------------------------------------------------- /demos/loading/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/nodejs/README.md -------------------------------------------------------------------------------- /demos/loading/nodejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/nodejs/index.html -------------------------------------------------------------------------------- /demos/loading/nodejs/server/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/nodejs/server/server.mjs -------------------------------------------------------------------------------- /demos/loading/rollupjs/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/rollupjs/README.html -------------------------------------------------------------------------------- /demos/loading/rollupjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/rollupjs/README.md -------------------------------------------------------------------------------- /demos/loading/rollupjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/rollupjs/index.html -------------------------------------------------------------------------------- /demos/loading/rollupjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/rollupjs/package.json -------------------------------------------------------------------------------- /demos/loading/vite/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/README.html -------------------------------------------------------------------------------- /demos/loading/vite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/README.md -------------------------------------------------------------------------------- /demos/loading/vite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/index.html -------------------------------------------------------------------------------- /demos/loading/vite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/package-lock.json -------------------------------------------------------------------------------- /demos/loading/vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/package.json -------------------------------------------------------------------------------- /demos/loading/vite/src/layout-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/src/layout-button.ts -------------------------------------------------------------------------------- /demos/loading/vite/src/layout-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/src/layout-worker.ts -------------------------------------------------------------------------------- /demos/loading/vite/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/src/main.ts -------------------------------------------------------------------------------- /demos/loading/vite/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/src/vite-env.d.ts -------------------------------------------------------------------------------- /demos/loading/vite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/tsconfig.json -------------------------------------------------------------------------------- /demos/loading/vite/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/vite/vite.config.js -------------------------------------------------------------------------------- /demos/loading/web-dev-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/web-dev-server/README.md -------------------------------------------------------------------------------- /demos/loading/webpack/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/README.html -------------------------------------------------------------------------------- /demos/loading/webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/README.md -------------------------------------------------------------------------------- /demos/loading/webpack/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/package-lock.json -------------------------------------------------------------------------------- /demos/loading/webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/package.json -------------------------------------------------------------------------------- /demos/loading/webpack/src/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/src/css.d.ts -------------------------------------------------------------------------------- /demos/loading/webpack/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/tsconfig.json -------------------------------------------------------------------------------- /demos/loading/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/webpack.config.js -------------------------------------------------------------------------------- /demos/loading/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/webpack.dev.js -------------------------------------------------------------------------------- /demos/loading/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webpack/webpack.prod.js -------------------------------------------------------------------------------- /demos/loading/webworker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webworker/README.md -------------------------------------------------------------------------------- /demos/loading/webworker/WorkerLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webworker/WorkerLayout.js -------------------------------------------------------------------------------- /demos/loading/webworker/WorkerLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webworker/WorkerLayout.ts -------------------------------------------------------------------------------- /demos/loading/webworker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/loading/webworker/index.html -------------------------------------------------------------------------------- /demos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/package.json -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnEditorDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnEditorDemo.js -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnEditorDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnEditorDemo.ts -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnLayout.js -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnLayout.ts -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnLayoutData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnLayoutData.js -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnLayoutData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnLayoutData.ts -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnPopupSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnPopupSupport.js -------------------------------------------------------------------------------- /demos/showcase/bpmn/BpmnPopupSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/BpmnPopupSupport.ts -------------------------------------------------------------------------------- /demos/showcase/bpmn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/README.md -------------------------------------------------------------------------------- /demos/showcase/bpmn/bpmn-di.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/bpmn-di.js -------------------------------------------------------------------------------- /demos/showcase/bpmn/bpmn-di.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/bpmn-di.ts -------------------------------------------------------------------------------- /demos/showcase/bpmn/bpmn-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/bpmn-view.js -------------------------------------------------------------------------------- /demos/showcase/bpmn/bpmn-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/bpmn-view.ts -------------------------------------------------------------------------------- /demos/showcase/bpmn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/bpmn/index.html -------------------------------------------------------------------------------- /demos/showcase/chord-diagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/chord-diagram/README.md -------------------------------------------------------------------------------- /demos/showcase/chord-diagram/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/chord-diagram/index.html -------------------------------------------------------------------------------- /demos/showcase/decisiontree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/decisiontree/README.md -------------------------------------------------------------------------------- /demos/showcase/decisiontree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/decisiontree/index.html -------------------------------------------------------------------------------- /demos/showcase/flowchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/flowchart/README.md -------------------------------------------------------------------------------- /demos/showcase/flowchart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/flowchart/index.html -------------------------------------------------------------------------------- /demos/showcase/frauddetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/frauddetection/README.md -------------------------------------------------------------------------------- /demos/showcase/graphanalysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/graphanalysis/README.md -------------------------------------------------------------------------------- /demos/showcase/graphanalysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/graphanalysis/index.html -------------------------------------------------------------------------------- /demos/showcase/graphanalysis/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/graphanalysis/styles.js -------------------------------------------------------------------------------- /demos/showcase/graphanalysis/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/graphanalysis/styles.ts -------------------------------------------------------------------------------- /demos/showcase/large-graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/large-graphs/README.md -------------------------------------------------------------------------------- /demos/showcase/large-graphs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/large-graphs/index.html -------------------------------------------------------------------------------- /demos/showcase/layoutstyles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/layoutstyles/README.md -------------------------------------------------------------------------------- /demos/showcase/layoutstyles/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/layoutstyles/Tooltip.js -------------------------------------------------------------------------------- /demos/showcase/layoutstyles/Tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/layoutstyles/Tooltip.ts -------------------------------------------------------------------------------- /demos/showcase/layoutstyles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/layoutstyles/index.html -------------------------------------------------------------------------------- /demos/showcase/logicgates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/logicgates/README.md -------------------------------------------------------------------------------- /demos/showcase/logicgates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/logicgates/index.html -------------------------------------------------------------------------------- /demos/showcase/logicgates/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/logicgates/input.js -------------------------------------------------------------------------------- /demos/showcase/logicgates/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/logicgates/input.ts -------------------------------------------------------------------------------- /demos/showcase/map/MapDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/MapDemo.js -------------------------------------------------------------------------------- /demos/showcase/map/MapDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/MapDemo.ts -------------------------------------------------------------------------------- /demos/showcase/map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/README.md -------------------------------------------------------------------------------- /demos/showcase/map/data-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/data-types.js -------------------------------------------------------------------------------- /demos/showcase/map/data-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/data-types.ts -------------------------------------------------------------------------------- /demos/showcase/map/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/index.html -------------------------------------------------------------------------------- /demos/showcase/map/map-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/map-styles.js -------------------------------------------------------------------------------- /demos/showcase/map/map-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/map-styles.ts -------------------------------------------------------------------------------- /demos/showcase/map/shortest-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/shortest-paths.js -------------------------------------------------------------------------------- /demos/showcase/map/shortest-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/map/shortest-paths.ts -------------------------------------------------------------------------------- /demos/showcase/metaballgroups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/metaballgroups/README.md -------------------------------------------------------------------------------- /demos/showcase/mindmap/MindMapDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/MindMapDemo.js -------------------------------------------------------------------------------- /demos/showcase/mindmap/MindMapDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/MindMapDemo.ts -------------------------------------------------------------------------------- /demos/showcase/mindmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/README.md -------------------------------------------------------------------------------- /demos/showcase/mindmap/data-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/data-types.js -------------------------------------------------------------------------------- /demos/showcase/mindmap/data-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/data-types.ts -------------------------------------------------------------------------------- /demos/showcase/mindmap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/index.html -------------------------------------------------------------------------------- /demos/showcase/mindmap/subtrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/subtrees.js -------------------------------------------------------------------------------- /demos/showcase/mindmap/subtrees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/mindmap/subtrees.ts -------------------------------------------------------------------------------- /demos/showcase/neighborhood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/neighborhood/README.md -------------------------------------------------------------------------------- /demos/showcase/neighborhood/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/neighborhood/index.html -------------------------------------------------------------------------------- /demos/showcase/orgchart/OrgChartDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/orgchart/OrgChartDemo.js -------------------------------------------------------------------------------- /demos/showcase/orgchart/OrgChartDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/orgchart/OrgChartDemo.ts -------------------------------------------------------------------------------- /demos/showcase/orgchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/orgchart/README.md -------------------------------------------------------------------------------- /demos/showcase/orgchart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/orgchart/index.html -------------------------------------------------------------------------------- /demos/showcase/orgchart/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/orgchart/input.js -------------------------------------------------------------------------------- /demos/showcase/orgchart/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/orgchart/input.ts -------------------------------------------------------------------------------- /demos/showcase/processmining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/processmining/README.md -------------------------------------------------------------------------------- /demos/showcase/processmining/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/processmining/index.html -------------------------------------------------------------------------------- /demos/showcase/supply-chain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/supply-chain/README.md -------------------------------------------------------------------------------- /demos/showcase/supply-chain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/supply-chain/index.html -------------------------------------------------------------------------------- /demos/showcase/supply-chain/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/supply-chain/types.js -------------------------------------------------------------------------------- /demos/showcase/supply-chain/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/supply-chain/types.ts -------------------------------------------------------------------------------- /demos/showcase/tag-cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/tag-cloud/README.md -------------------------------------------------------------------------------- /demos/showcase/tag-cloud/TextData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/tag-cloud/TextData.js -------------------------------------------------------------------------------- /demos/showcase/tag-cloud/TextData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/tag-cloud/TextData.ts -------------------------------------------------------------------------------- /demos/showcase/tag-cloud/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/tag-cloud/index.html -------------------------------------------------------------------------------- /demos/showcase/tree-of-life/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/tree-of-life/README.md -------------------------------------------------------------------------------- /demos/showcase/tree-of-life/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/tree-of-life/index.html -------------------------------------------------------------------------------- /demos/showcase/uml/ButtonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/ButtonStyles.js -------------------------------------------------------------------------------- /demos/showcase/uml/ButtonStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/ButtonStyles.ts -------------------------------------------------------------------------------- /demos/showcase/uml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/README.md -------------------------------------------------------------------------------- /demos/showcase/uml/UMLClassModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/UMLClassModel.js -------------------------------------------------------------------------------- /demos/showcase/uml/UMLClassModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/UMLClassModel.ts -------------------------------------------------------------------------------- /demos/showcase/uml/UMLEditorDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/UMLEditorDemo.js -------------------------------------------------------------------------------- /demos/showcase/uml/UMLEditorDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/UMLEditorDemo.ts -------------------------------------------------------------------------------- /demos/showcase/uml/UMLNodeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/UMLNodeStyle.js -------------------------------------------------------------------------------- /demos/showcase/uml/UMLNodeStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/UMLNodeStyle.ts -------------------------------------------------------------------------------- /demos/showcase/uml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/showcase/uml/index.html -------------------------------------------------------------------------------- /demos/style/angular-component-node-style/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demos/style/arrow-edge-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow-edge-style/README.md -------------------------------------------------------------------------------- /demos/style/arrow-edge-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow-edge-style/index.html -------------------------------------------------------------------------------- /demos/style/arrow-node-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow-node-style/README.md -------------------------------------------------------------------------------- /demos/style/arrow-node-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow-node-style/index.html -------------------------------------------------------------------------------- /demos/style/arrow/ArrowDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow/ArrowDemo.js -------------------------------------------------------------------------------- /demos/style/arrow/ArrowDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow/ArrowDemo.ts -------------------------------------------------------------------------------- /demos/style/arrow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow/README.md -------------------------------------------------------------------------------- /demos/style/arrow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/arrow/index.html -------------------------------------------------------------------------------- /demos/style/bezieredgestyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/bezieredgestyle/README.md -------------------------------------------------------------------------------- /demos/style/bezieredgestyle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/bezieredgestyle/index.html -------------------------------------------------------------------------------- /demos/style/css-item-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/css-item-style/README.md -------------------------------------------------------------------------------- /demos/style/css-item-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/css-item-style/index.html -------------------------------------------------------------------------------- /demos/style/cssstyling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/cssstyling/README.md -------------------------------------------------------------------------------- /demos/style/cssstyling/getColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/cssstyling/getColor.js -------------------------------------------------------------------------------- /demos/style/cssstyling/getColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/cssstyling/getColor.ts -------------------------------------------------------------------------------- /demos/style/cssstyling/graph-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/cssstyling/graph-data.json -------------------------------------------------------------------------------- /demos/style/cssstyling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/cssstyling/index.html -------------------------------------------------------------------------------- /demos/style/customstyles/Namespaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/customstyles/Namespaces.js -------------------------------------------------------------------------------- /demos/style/customstyles/Namespaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/customstyles/Namespaces.ts -------------------------------------------------------------------------------- /demos/style/customstyles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/customstyles/README.md -------------------------------------------------------------------------------- /demos/style/customstyles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/customstyles/index.html -------------------------------------------------------------------------------- /demos/style/customstyles/style-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/customstyles/style-utils.js -------------------------------------------------------------------------------- /demos/style/customstyles/style-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/customstyles/style-utils.ts -------------------------------------------------------------------------------- /demos/style/d3chartnodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/d3chartnodes/README.md -------------------------------------------------------------------------------- /demos/style/d3chartnodes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/d3chartnodes/index.html -------------------------------------------------------------------------------- /demos/style/datatable/DataTableDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/datatable/DataTableDemo.js -------------------------------------------------------------------------------- /demos/style/datatable/DataTableDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/datatable/DataTableDemo.ts -------------------------------------------------------------------------------- /demos/style/datatable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/datatable/README.md -------------------------------------------------------------------------------- /demos/style/datatable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/datatable/index.html -------------------------------------------------------------------------------- /demos/style/editablepathstyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/editablepathstyle/README.md -------------------------------------------------------------------------------- /demos/style/group-node-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/group-node-style/README.md -------------------------------------------------------------------------------- /demos/style/group-node-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/group-node-style/index.html -------------------------------------------------------------------------------- /demos/style/html-controls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-controls/README.md -------------------------------------------------------------------------------- /demos/style/html-controls/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-controls/data.js -------------------------------------------------------------------------------- /demos/style/html-controls/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-controls/data.ts -------------------------------------------------------------------------------- /demos/style/html-controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-controls/index.html -------------------------------------------------------------------------------- /demos/style/html-controls/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-controls/style.css -------------------------------------------------------------------------------- /demos/style/html-controls/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-controls/util.js -------------------------------------------------------------------------------- /demos/style/html-controls/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-controls/util.ts -------------------------------------------------------------------------------- /demos/style/html-label-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-label-style/README.md -------------------------------------------------------------------------------- /demos/style/html-label-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/html-label-style/index.html -------------------------------------------------------------------------------- /demos/style/invariant-label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/invariant-label/README.md -------------------------------------------------------------------------------- /demos/style/invariant-label/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/invariant-label/index.html -------------------------------------------------------------------------------- /demos/style/label-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/label-style/README.md -------------------------------------------------------------------------------- /demos/style/label-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/label-style/index.html -------------------------------------------------------------------------------- /demos/style/markdownlabel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/markdownlabel/README.md -------------------------------------------------------------------------------- /demos/style/markdownlabel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/markdownlabel/index.html -------------------------------------------------------------------------------- /demos/style/markup-labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/markup-labels/README.md -------------------------------------------------------------------------------- /demos/style/markup-labels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/markup-labels/index.html -------------------------------------------------------------------------------- /demos/style/richtextlabel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/richtextlabel/README.md -------------------------------------------------------------------------------- /demos/style/richtextlabel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/richtextlabel/index.html -------------------------------------------------------------------------------- /demos/style/selectionstyling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/selectionstyling/README.md -------------------------------------------------------------------------------- /demos/style/selectionstyling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/selectionstyling/index.html -------------------------------------------------------------------------------- /demos/style/shape-node-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/shape-node-style/README.md -------------------------------------------------------------------------------- /demos/style/shape-node-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/shape-node-style/index.html -------------------------------------------------------------------------------- /demos/style/shape-port-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/shape-port-style/README.md -------------------------------------------------------------------------------- /demos/style/shape-port-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/shape-port-style/index.html -------------------------------------------------------------------------------- /demos/style/styledecorators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/styledecorators/README.md -------------------------------------------------------------------------------- /demos/style/styledecorators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/styledecorators/index.html -------------------------------------------------------------------------------- /demos/style/templatestyles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/templatestyles/README.md -------------------------------------------------------------------------------- /demos/style/templatestyles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/templatestyles/index.html -------------------------------------------------------------------------------- /demos/style/theme-variants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/theme-variants/README.md -------------------------------------------------------------------------------- /demos/style/theme-variants/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/theme-variants/index.html -------------------------------------------------------------------------------- /demos/style/webgl-animations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/webgl-animations/README.md -------------------------------------------------------------------------------- /demos/style/webgl-animations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/webgl-animations/index.html -------------------------------------------------------------------------------- /demos/style/webgl-image-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/webgl-image-node/README.md -------------------------------------------------------------------------------- /demos/style/webgl-image-node/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/webgl-image-node/index.html -------------------------------------------------------------------------------- /demos/style/webgl-styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/webgl-styles/README.md -------------------------------------------------------------------------------- /demos/style/webgl-styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/style/webgl-styles/index.html -------------------------------------------------------------------------------- /demos/testing/cypress/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/cypress/README.html -------------------------------------------------------------------------------- /demos/testing/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/cypress/README.md -------------------------------------------------------------------------------- /demos/testing/cypress/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/cypress/cypress.config.js -------------------------------------------------------------------------------- /demos/testing/cypress/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/cypress/package-lock.json -------------------------------------------------------------------------------- /demos/testing/cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/cypress/package.json -------------------------------------------------------------------------------- /demos/testing/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/cypress/tsconfig.json -------------------------------------------------------------------------------- /demos/testing/jest-puppeteer/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /demos/testing/jest-puppeteer/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { "extends": "react-app" } 2 | -------------------------------------------------------------------------------- /demos/testing/jest-puppeteer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest-puppeteer/README.md -------------------------------------------------------------------------------- /demos/testing/jest/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/.eslintrc -------------------------------------------------------------------------------- /demos/testing/jest/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/README.html -------------------------------------------------------------------------------- /demos/testing/jest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/README.md -------------------------------------------------------------------------------- /demos/testing/jest/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/babel.config.js -------------------------------------------------------------------------------- /demos/testing/jest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/jest.config.js -------------------------------------------------------------------------------- /demos/testing/jest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/package-lock.json -------------------------------------------------------------------------------- /demos/testing/jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/package.json -------------------------------------------------------------------------------- /demos/testing/jest/src/ItemFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/src/ItemFactory.js -------------------------------------------------------------------------------- /demos/testing/jest/src/JestDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/src/JestDemo.js -------------------------------------------------------------------------------- /demos/testing/jest/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/jest/src/index.html -------------------------------------------------------------------------------- /demos/testing/playwright/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/playwright/README.html -------------------------------------------------------------------------------- /demos/testing/playwright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/playwright/README.md -------------------------------------------------------------------------------- /demos/testing/playwright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/playwright/package.json -------------------------------------------------------------------------------- /demos/testing/vitest/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/README.html -------------------------------------------------------------------------------- /demos/testing/vitest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/README.md -------------------------------------------------------------------------------- /demos/testing/vitest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/index.html -------------------------------------------------------------------------------- /demos/testing/vitest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/package-lock.json -------------------------------------------------------------------------------- /demos/testing/vitest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/package.json -------------------------------------------------------------------------------- /demos/testing/vitest/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/src/main.ts -------------------------------------------------------------------------------- /demos/testing/vitest/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/src/vite-env.d.ts -------------------------------------------------------------------------------- /demos/testing/vitest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/tsconfig.json -------------------------------------------------------------------------------- /demos/testing/vitest/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/vitest/vitest.config.ts -------------------------------------------------------------------------------- /demos/testing/wdio/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /demos/testing/wdio/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/README.html -------------------------------------------------------------------------------- /demos/testing/wdio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/README.md -------------------------------------------------------------------------------- /demos/testing/wdio/WdioDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/WdioDemo.ts -------------------------------------------------------------------------------- /demos/testing/wdio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/index.html -------------------------------------------------------------------------------- /demos/testing/wdio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/package-lock.json -------------------------------------------------------------------------------- /demos/testing/wdio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/package.json -------------------------------------------------------------------------------- /demos/testing/wdio/test/MouseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/test/MouseAction.ts -------------------------------------------------------------------------------- /demos/testing/wdio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/tsconfig.json -------------------------------------------------------------------------------- /demos/testing/wdio/wdio.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/testing/wdio/wdio.conf.ts -------------------------------------------------------------------------------- /demos/toolkit/angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/.browserslistrc -------------------------------------------------------------------------------- /demos/toolkit/angular/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/README.html -------------------------------------------------------------------------------- /demos/toolkit/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/README.md -------------------------------------------------------------------------------- /demos/toolkit/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/angular.json -------------------------------------------------------------------------------- /demos/toolkit/angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/package-lock.json -------------------------------------------------------------------------------- /demos/toolkit/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/package.json -------------------------------------------------------------------------------- /demos/toolkit/angular/src/app/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/src/app/data.ts -------------------------------------------------------------------------------- /demos/toolkit/angular/src/app/person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/src/app/person.ts -------------------------------------------------------------------------------- /demos/toolkit/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/src/index.html -------------------------------------------------------------------------------- /demos/toolkit/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/src/main.ts -------------------------------------------------------------------------------- /demos/toolkit/angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/src/styles.css -------------------------------------------------------------------------------- /demos/toolkit/angular/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/angular/src/tsconfig.json -------------------------------------------------------------------------------- /demos/toolkit/graphql/GraphQLDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/GraphQLDemo.js -------------------------------------------------------------------------------- /demos/toolkit/graphql/GraphQLDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/GraphQLDemo.ts -------------------------------------------------------------------------------- /demos/toolkit/graphql/GraphQLQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/GraphQLQuery.js -------------------------------------------------------------------------------- /demos/toolkit/graphql/GraphQLQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/GraphQLQuery.ts -------------------------------------------------------------------------------- /demos/toolkit/graphql/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/Person.js -------------------------------------------------------------------------------- /demos/toolkit/graphql/Person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/Person.ts -------------------------------------------------------------------------------- /demos/toolkit/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/README.md -------------------------------------------------------------------------------- /demos/toolkit/graphql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/index.html -------------------------------------------------------------------------------- /demos/toolkit/graphql/server/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/server/data.js -------------------------------------------------------------------------------- /demos/toolkit/graphql/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/graphql/server/index.js -------------------------------------------------------------------------------- /demos/toolkit/neo4j/Neo4jDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/neo4j/Neo4jDemo.js -------------------------------------------------------------------------------- /demos/toolkit/neo4j/Neo4jDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/neo4j/Neo4jDemo.ts -------------------------------------------------------------------------------- /demos/toolkit/neo4j/Neo4jUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/neo4j/Neo4jUtil.js -------------------------------------------------------------------------------- /demos/toolkit/neo4j/Neo4jUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/neo4j/Neo4jUtil.ts -------------------------------------------------------------------------------- /demos/toolkit/neo4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/neo4j/README.md -------------------------------------------------------------------------------- /demos/toolkit/neo4j/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/neo4j/index.html -------------------------------------------------------------------------------- /demos/toolkit/neo4j/property-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/neo4j/property-table.css -------------------------------------------------------------------------------- /demos/toolkit/next/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/README.html -------------------------------------------------------------------------------- /demos/toolkit/next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/README.md -------------------------------------------------------------------------------- /demos/toolkit/next/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/app/app.css -------------------------------------------------------------------------------- /demos/toolkit/next/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/app/layout.tsx -------------------------------------------------------------------------------- /demos/toolkit/next/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/app/page.module.css -------------------------------------------------------------------------------- /demos/toolkit/next/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/app/page.tsx -------------------------------------------------------------------------------- /demos/toolkit/next/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/next-env.d.ts -------------------------------------------------------------------------------- /demos/toolkit/next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/next.config.js -------------------------------------------------------------------------------- /demos/toolkit/next/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/package-lock.json -------------------------------------------------------------------------------- /demos/toolkit/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/package.json -------------------------------------------------------------------------------- /demos/toolkit/next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/next/tsconfig.json -------------------------------------------------------------------------------- /demos/toolkit/preact/PreactDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/preact/PreactDemo.js -------------------------------------------------------------------------------- /demos/toolkit/preact/PreactDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/preact/PreactDemo.ts -------------------------------------------------------------------------------- /demos/toolkit/preact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/preact/README.md -------------------------------------------------------------------------------- /demos/toolkit/preact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/preact/index.html -------------------------------------------------------------------------------- /demos/toolkit/preact/preact-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/preact/preact-loader.js -------------------------------------------------------------------------------- /demos/toolkit/preact/preact-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/preact/preact-loader.ts -------------------------------------------------------------------------------- /demos/toolkit/preact/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/preact/style/index.css -------------------------------------------------------------------------------- /demos/toolkit/react/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/README.html -------------------------------------------------------------------------------- /demos/toolkit/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/README.md -------------------------------------------------------------------------------- /demos/toolkit/react/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/eslint.config.js -------------------------------------------------------------------------------- /demos/toolkit/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/index.html -------------------------------------------------------------------------------- /demos/toolkit/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/package-lock.json -------------------------------------------------------------------------------- /demos/toolkit/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/package.json -------------------------------------------------------------------------------- /demos/toolkit/react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/src/App.css -------------------------------------------------------------------------------- /demos/toolkit/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/src/App.tsx -------------------------------------------------------------------------------- /demos/toolkit/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/src/main.tsx -------------------------------------------------------------------------------- /demos/toolkit/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/src/vite-env.d.ts -------------------------------------------------------------------------------- /demos/toolkit/react/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/tsconfig.app.json -------------------------------------------------------------------------------- /demos/toolkit/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/tsconfig.json -------------------------------------------------------------------------------- /demos/toolkit/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/tsconfig.node.json -------------------------------------------------------------------------------- /demos/toolkit/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/react/vite.config.ts -------------------------------------------------------------------------------- /demos/toolkit/solid/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/README.html -------------------------------------------------------------------------------- /demos/toolkit/solid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/README.md -------------------------------------------------------------------------------- /demos/toolkit/solid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/index.html -------------------------------------------------------------------------------- /demos/toolkit/solid/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/package-lock.json -------------------------------------------------------------------------------- /demos/toolkit/solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/package.json -------------------------------------------------------------------------------- /demos/toolkit/solid/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/src/App.module.css -------------------------------------------------------------------------------- /demos/toolkit/solid/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/src/App.tsx -------------------------------------------------------------------------------- /demos/toolkit/solid/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/src/main.tsx -------------------------------------------------------------------------------- /demos/toolkit/solid/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/src/styles.css -------------------------------------------------------------------------------- /demos/toolkit/solid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/tsconfig.json -------------------------------------------------------------------------------- /demos/toolkit/solid/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/solid/vite.config.ts -------------------------------------------------------------------------------- /demos/toolkit/svelte/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/README.html -------------------------------------------------------------------------------- /demos/toolkit/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/README.md -------------------------------------------------------------------------------- /demos/toolkit/svelte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/index.html -------------------------------------------------------------------------------- /demos/toolkit/svelte/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/package-lock.json -------------------------------------------------------------------------------- /demos/toolkit/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/package.json -------------------------------------------------------------------------------- /demos/toolkit/svelte/public/ylogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/public/ylogo.svg -------------------------------------------------------------------------------- /demos/toolkit/svelte/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/src/App.svelte -------------------------------------------------------------------------------- /demos/toolkit/svelte/src/SvgText.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/src/SvgText.svelte -------------------------------------------------------------------------------- /demos/toolkit/svelte/src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/src/data.ts -------------------------------------------------------------------------------- /demos/toolkit/svelte/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/src/main.ts -------------------------------------------------------------------------------- /demos/toolkit/svelte/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/src/types.ts -------------------------------------------------------------------------------- /demos/toolkit/svelte/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/src/vite-env.d.ts -------------------------------------------------------------------------------- /demos/toolkit/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/tsconfig.json -------------------------------------------------------------------------------- /demos/toolkit/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/svelte/vite.config.ts -------------------------------------------------------------------------------- /demos/toolkit/vue/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/README.html -------------------------------------------------------------------------------- /demos/toolkit/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/README.md -------------------------------------------------------------------------------- /demos/toolkit/vue/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/env.d.ts -------------------------------------------------------------------------------- /demos/toolkit/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/index.html -------------------------------------------------------------------------------- /demos/toolkit/vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/package-lock.json -------------------------------------------------------------------------------- /demos/toolkit/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/package.json -------------------------------------------------------------------------------- /demos/toolkit/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/src/App.vue -------------------------------------------------------------------------------- /demos/toolkit/vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/src/main.ts -------------------------------------------------------------------------------- /demos/toolkit/vue/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/tsconfig.app.json -------------------------------------------------------------------------------- /demos/toolkit/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/tsconfig.json -------------------------------------------------------------------------------- /demos/toolkit/vue/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/tsconfig.node.json -------------------------------------------------------------------------------- /demos/toolkit/vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/vue/vite.config.ts -------------------------------------------------------------------------------- /demos/toolkit/webcomponents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/webcomponents/README.md -------------------------------------------------------------------------------- /demos/toolkit/webcomponents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/toolkit/webcomponents/index.html -------------------------------------------------------------------------------- /demos/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/tsconfig.json -------------------------------------------------------------------------------- /demos/tutorial-graph-builder/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/tutorial-graph-builder/common.js -------------------------------------------------------------------------------- /demos/utils/BrowserDetection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/BrowserDetection.js -------------------------------------------------------------------------------- /demos/utils/BrowserDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/BrowserDetection.ts -------------------------------------------------------------------------------- /demos/utils/DragAndDropPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/DragAndDropPanel.js -------------------------------------------------------------------------------- /demos/utils/DragAndDropPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/DragAndDropPanel.ts -------------------------------------------------------------------------------- /demos/utils/EdgeDropInputMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/EdgeDropInputMode.js -------------------------------------------------------------------------------- /demos/utils/EdgeDropInputMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/EdgeDropInputMode.ts -------------------------------------------------------------------------------- /demos/utils/GraphSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/GraphSearch.js -------------------------------------------------------------------------------- /demos/utils/GraphSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/GraphSearch.ts -------------------------------------------------------------------------------- /demos/utils/IconCreation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/IconCreation.js -------------------------------------------------------------------------------- /demos/utils/IconCreation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/IconCreation.ts -------------------------------------------------------------------------------- /demos/utils/LitNodeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/LitNodeStyle.js -------------------------------------------------------------------------------- /demos/utils/LitNodeStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/LitNodeStyle.ts -------------------------------------------------------------------------------- /demos/utils/NodeTypePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/NodeTypePanel.js -------------------------------------------------------------------------------- /demos/utils/NodeTypePanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/NodeTypePanel.ts -------------------------------------------------------------------------------- /demos/utils/PrintingSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/PrintingSupport.js -------------------------------------------------------------------------------- /demos/utils/PrintingSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/PrintingSupport.ts -------------------------------------------------------------------------------- /demos/utils/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/README.html -------------------------------------------------------------------------------- /demos/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/README.md -------------------------------------------------------------------------------- /demos/utils/RandomGraphGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/RandomGraphGenerator.js -------------------------------------------------------------------------------- /demos/utils/RandomGraphGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/RandomGraphGenerator.ts -------------------------------------------------------------------------------- /demos/utils/RectangleRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/RectangleRenderer.js -------------------------------------------------------------------------------- /demos/utils/RectangleRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/RectangleRenderer.ts -------------------------------------------------------------------------------- /demos/utils/SimpleGraphBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/SimpleGraphBuilder.js -------------------------------------------------------------------------------- /demos/utils/SimpleGraphBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/SimpleGraphBuilder.ts -------------------------------------------------------------------------------- /demos/utils/Vue2NodeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/Vue2NodeStyle.js -------------------------------------------------------------------------------- /demos/utils/Vue2NodeStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/Vue2NodeStyle.ts -------------------------------------------------------------------------------- /demos/utils/build-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/build-graph.js -------------------------------------------------------------------------------- /demos/utils/build-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/build-graph.ts -------------------------------------------------------------------------------- /demos/utils/file-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/file-support.js -------------------------------------------------------------------------------- /demos/utils/file-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/file-support.ts -------------------------------------------------------------------------------- /demos/utils/graphml-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/graphml-support.js -------------------------------------------------------------------------------- /demos/utils/graphml-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/graphml-support.ts -------------------------------------------------------------------------------- /demos/utils/json-model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/json-model.d.ts -------------------------------------------------------------------------------- /demos/utils/json-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/json-writer.js -------------------------------------------------------------------------------- /demos/utils/json-writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/json-writer.ts -------------------------------------------------------------------------------- /demos/utils/meta-quest-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/meta-quest-support.js -------------------------------------------------------------------------------- /demos/utils/meta-quest-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/meta-quest-support.ts -------------------------------------------------------------------------------- /demos/utils/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/npm-shrinkwrap.json -------------------------------------------------------------------------------- /demos/utils/open-in-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/open-in-window.js -------------------------------------------------------------------------------- /demos/utils/open-in-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/open-in-window.ts -------------------------------------------------------------------------------- /demos/utils/package-deploy.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": null 3 | } 4 | -------------------------------------------------------------------------------- /demos/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/package.json -------------------------------------------------------------------------------- /demos/utils/presentation-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/presentation-support.js -------------------------------------------------------------------------------- /demos/utils/presentation-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/presentation-support.ts -------------------------------------------------------------------------------- /demos/utils/sample-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/sample-graph.js -------------------------------------------------------------------------------- /demos/utils/sample-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/utils/sample-graph.ts -------------------------------------------------------------------------------- /demos/view/arrange-objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/arrange-objects/README.md -------------------------------------------------------------------------------- /demos/view/arrange-objects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/arrange-objects/index.html -------------------------------------------------------------------------------- /demos/view/bridges/BridgeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/bridges/BridgeHelper.js -------------------------------------------------------------------------------- /demos/view/bridges/BridgeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/bridges/BridgeHelper.ts -------------------------------------------------------------------------------- /demos/view/bridges/BridgesDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/bridges/BridgesDemo.js -------------------------------------------------------------------------------- /demos/view/bridges/BridgesDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/bridges/BridgesDemo.ts -------------------------------------------------------------------------------- /demos/view/bridges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/bridges/README.md -------------------------------------------------------------------------------- /demos/view/bridges/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/bridges/index.html -------------------------------------------------------------------------------- /demos/view/clipboard/ClipboardDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/clipboard/ClipboardDemo.js -------------------------------------------------------------------------------- /demos/view/clipboard/ClipboardDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/clipboard/ClipboardDemo.ts -------------------------------------------------------------------------------- /demos/view/clipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/clipboard/README.md -------------------------------------------------------------------------------- /demos/view/clipboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/clipboard/index.html -------------------------------------------------------------------------------- /demos/view/collapse/CollapseDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/collapse/CollapseDemo.js -------------------------------------------------------------------------------- /demos/view/collapse/CollapseDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/collapse/CollapseDemo.ts -------------------------------------------------------------------------------- /demos/view/collapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/collapse/README.md -------------------------------------------------------------------------------- /demos/view/collapse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/collapse/index.html -------------------------------------------------------------------------------- /demos/view/deep-zoom/DeepZoomDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/deep-zoom/DeepZoomDemo.js -------------------------------------------------------------------------------- /demos/view/deep-zoom/DeepZoomDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/deep-zoom/DeepZoomDemo.ts -------------------------------------------------------------------------------- /demos/view/deep-zoom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/deep-zoom/README.md -------------------------------------------------------------------------------- /demos/view/deep-zoom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/deep-zoom/index.html -------------------------------------------------------------------------------- /demos/view/edgetoedge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/edgetoedge/README.md -------------------------------------------------------------------------------- /demos/view/edgetoedge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/edgetoedge/index.html -------------------------------------------------------------------------------- /demos/view/events/EventView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/EventView.js -------------------------------------------------------------------------------- /demos/view/events/EventView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/EventView.ts -------------------------------------------------------------------------------- /demos/view/events/EventsDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/EventsDemo.js -------------------------------------------------------------------------------- /demos/view/events/EventsDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/EventsDemo.ts -------------------------------------------------------------------------------- /demos/view/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/README.md -------------------------------------------------------------------------------- /demos/view/events/graph-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/graph-data.json -------------------------------------------------------------------------------- /demos/view/events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/index.html -------------------------------------------------------------------------------- /demos/view/events/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/events/style.css -------------------------------------------------------------------------------- /demos/view/ganttchart/GridVisual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/GridVisual.js -------------------------------------------------------------------------------- /demos/view/ganttchart/GridVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/GridVisual.ts -------------------------------------------------------------------------------- /demos/view/ganttchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/README.md -------------------------------------------------------------------------------- /demos/view/ganttchart/gantt-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/gantt-utils.js -------------------------------------------------------------------------------- /demos/view/ganttchart/gantt-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/gantt-utils.ts -------------------------------------------------------------------------------- /demos/view/ganttchart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/index.html -------------------------------------------------------------------------------- /demos/view/ganttchart/info-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/info-panel.js -------------------------------------------------------------------------------- /demos/view/ganttchart/info-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/info-panel.ts -------------------------------------------------------------------------------- /demos/view/ganttchart/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/input.js -------------------------------------------------------------------------------- /demos/view/ganttchart/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/ganttchart/input.ts -------------------------------------------------------------------------------- /demos/view/grapheditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/grapheditor/README.md -------------------------------------------------------------------------------- /demos/view/grapheditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/grapheditor/index.html -------------------------------------------------------------------------------- /demos/view/graphml/EditorSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/EditorSync.js -------------------------------------------------------------------------------- /demos/view/graphml/EditorSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/EditorSync.ts -------------------------------------------------------------------------------- /demos/view/graphml/GraphMLDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/GraphMLDemo.js -------------------------------------------------------------------------------- /demos/view/graphml/GraphMLDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/GraphMLDemo.ts -------------------------------------------------------------------------------- /demos/view/graphml/GraphMLProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/GraphMLProperty.js -------------------------------------------------------------------------------- /demos/view/graphml/GraphMLProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/GraphMLProperty.ts -------------------------------------------------------------------------------- /demos/view/graphml/PropertiesPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/PropertiesPanel.js -------------------------------------------------------------------------------- /demos/view/graphml/PropertiesPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/PropertiesPanel.ts -------------------------------------------------------------------------------- /demos/view/graphml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/README.md -------------------------------------------------------------------------------- /demos/view/graphml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/index.html -------------------------------------------------------------------------------- /demos/view/graphml/resources/y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphml/resources/y.svg -------------------------------------------------------------------------------- /demos/view/graphviewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphviewer/README.md -------------------------------------------------------------------------------- /demos/view/graphviewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/graphviewer/index.html -------------------------------------------------------------------------------- /demos/view/htmlpopup/HTMLPopupDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/htmlpopup/HTMLPopupDemo.js -------------------------------------------------------------------------------- /demos/view/htmlpopup/HTMLPopupDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/htmlpopup/HTMLPopupDemo.ts -------------------------------------------------------------------------------- /demos/view/htmlpopup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/htmlpopup/README.md -------------------------------------------------------------------------------- /demos/view/htmlpopup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/htmlpopup/index.html -------------------------------------------------------------------------------- /demos/view/imageexport/PaperSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/imageexport/PaperSize.js -------------------------------------------------------------------------------- /demos/view/imageexport/PaperSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/imageexport/PaperSize.ts -------------------------------------------------------------------------------- /demos/view/imageexport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/imageexport/README.md -------------------------------------------------------------------------------- /demos/view/imageexport/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/imageexport/index.html -------------------------------------------------------------------------------- /demos/view/imageexport/samples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/imageexport/samples.js -------------------------------------------------------------------------------- /demos/view/imageexport/samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/imageexport/samples.ts -------------------------------------------------------------------------------- /demos/view/large-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/large-tree/README.md -------------------------------------------------------------------------------- /demos/view/large-tree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/large-tree/index.html -------------------------------------------------------------------------------- /demos/view/list-node/ListNodeDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/list-node/ListNodeDemo.js -------------------------------------------------------------------------------- /demos/view/list-node/ListNodeDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/list-node/ListNodeDemo.ts -------------------------------------------------------------------------------- /demos/view/list-node/ListNodeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/list-node/ListNodeStyle.js -------------------------------------------------------------------------------- /demos/view/list-node/ListNodeStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/list-node/ListNodeStyle.ts -------------------------------------------------------------------------------- /demos/view/list-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/list-node/README.md -------------------------------------------------------------------------------- /demos/view/list-node/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/list-node/index.html -------------------------------------------------------------------------------- /demos/view/overviewstyles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/overviewstyles/README.md -------------------------------------------------------------------------------- /demos/view/overviewstyles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/overviewstyles/index.html -------------------------------------------------------------------------------- /demos/view/pdfexport/PaperSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/PaperSize.js -------------------------------------------------------------------------------- /demos/view/pdfexport/PaperSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/PaperSize.ts -------------------------------------------------------------------------------- /demos/view/pdfexport/PdfExportDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/PdfExportDemo.js -------------------------------------------------------------------------------- /demos/view/pdfexport/PdfExportDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/PdfExportDemo.ts -------------------------------------------------------------------------------- /demos/view/pdfexport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/README.md -------------------------------------------------------------------------------- /demos/view/pdfexport/aspect-ratio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/aspect-ratio.js -------------------------------------------------------------------------------- /demos/view/pdfexport/aspect-ratio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/aspect-ratio.ts -------------------------------------------------------------------------------- /demos/view/pdfexport/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/index.html -------------------------------------------------------------------------------- /demos/view/pdfexport/samples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/samples.js -------------------------------------------------------------------------------- /demos/view/pdfexport/samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/samples.ts -------------------------------------------------------------------------------- /demos/view/pdfexport/webgl-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/webgl-support.js -------------------------------------------------------------------------------- /demos/view/pdfexport/webgl-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/pdfexport/webgl-support.ts -------------------------------------------------------------------------------- /demos/view/printing/PrintingDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/PrintingDemo.js -------------------------------------------------------------------------------- /demos/view/printing/PrintingDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/PrintingDemo.ts -------------------------------------------------------------------------------- /demos/view/printing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/README.md -------------------------------------------------------------------------------- /demos/view/printing/aspect-ratio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/aspect-ratio.js -------------------------------------------------------------------------------- /demos/view/printing/aspect-ratio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/aspect-ratio.ts -------------------------------------------------------------------------------- /demos/view/printing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/index.html -------------------------------------------------------------------------------- /demos/view/printing/samples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/samples.js -------------------------------------------------------------------------------- /demos/view/printing/samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/samples.ts -------------------------------------------------------------------------------- /demos/view/printing/webgl-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/webgl-support.js -------------------------------------------------------------------------------- /demos/view/printing/webgl-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/printing/webgl-support.ts -------------------------------------------------------------------------------- /demos/view/renderingorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/renderingorder/README.md -------------------------------------------------------------------------------- /demos/view/renderingorder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/renderingorder/index.html -------------------------------------------------------------------------------- /demos/view/structureview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/structureview/README.md -------------------------------------------------------------------------------- /demos/view/structureview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/structureview/index.html -------------------------------------------------------------------------------- /demos/view/svgexport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/README.md -------------------------------------------------------------------------------- /demos/view/svgexport/SvgExportDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/SvgExportDemo.js -------------------------------------------------------------------------------- /demos/view/svgexport/SvgExportDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/SvgExportDemo.ts -------------------------------------------------------------------------------- /demos/view/svgexport/aspect-ratio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/aspect-ratio.js -------------------------------------------------------------------------------- /demos/view/svgexport/aspect-ratio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/aspect-ratio.ts -------------------------------------------------------------------------------- /demos/view/svgexport/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/index.html -------------------------------------------------------------------------------- /demos/view/svgexport/samples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/samples.js -------------------------------------------------------------------------------- /demos/view/svgexport/samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/samples.ts -------------------------------------------------------------------------------- /demos/view/svgexport/svg-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/svg-export.js -------------------------------------------------------------------------------- /demos/view/svgexport/svg-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/svg-export.ts -------------------------------------------------------------------------------- /demos/view/svgexport/webgl-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/webgl-support.js -------------------------------------------------------------------------------- /demos/view/svgexport/webgl-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/svgexport/webgl-support.ts -------------------------------------------------------------------------------- /demos/view/zorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/zorder/README.md -------------------------------------------------------------------------------- /demos/view/zorder/ZOrderDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/zorder/ZOrderDemo.js -------------------------------------------------------------------------------- /demos/view/zorder/ZOrderDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/zorder/ZOrderDemo.ts -------------------------------------------------------------------------------- /demos/view/zorder/ZOrderSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/zorder/ZOrderSupport.js -------------------------------------------------------------------------------- /demos/view/zorder/ZOrderSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/zorder/ZOrderSupport.ts -------------------------------------------------------------------------------- /demos/view/zorder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/demos/view/zorder/index.html -------------------------------------------------------------------------------- /doc/demo-thumbnails/angular.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/angular.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/arc-diagram.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/arc-diagram.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/arrow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/arrow.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/basic-demo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/basic-demo.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/bpmn-editor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/bpmn-editor.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/bridges.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/bridges.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/bus-routing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/bus-routing.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/clipboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/clipboard.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/context-menu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/context-menu.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/css-styling.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/css-styling.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/cypress.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/cypress.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/data-table.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/data-table.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/deep-zoom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/deep-zoom.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/edge-to-edge.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/edge-to-edge.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/family-tree.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/family-tree.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/filtering.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/filtering.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/folding.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/folding.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/gantt-chart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/gantt-chart.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/graph-copy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/graph-copy.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/graph-editor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/graph-editor.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/graph-search.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/graph-search.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/graph-viewer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/graph-viewer.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/graphml.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/graphml.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/graphql.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/graphql.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/html-popup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/html-popup.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/image-export.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/image-export.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/input-output.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/input-output.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/jest.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/jest.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/label-style.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/label-style.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/large-graphs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/large-graphs.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/large-tree.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/large-tree.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/layout-grid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/layout-grid.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/layout-tree.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/layout-tree.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/list-node.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/list-node.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/logic-gates.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/logic-gates.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/map.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/map.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/maze-routing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/maze-routing.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/neo4j.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/neo4j.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/next.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/node-types.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/node-types.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/nodejs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/nodejs.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/overview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/overview.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/parcel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/parcel.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/pdf-export.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/pdf-export.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/playwright.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/playwright.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/preact.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/preact.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/printing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/printing.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/react.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/react.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/rollup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/rollup.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/snapping.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/snapping.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/solid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/solid.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/split-edges.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/split-edges.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/supply-chain.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/supply-chain.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/svelte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/svelte.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/svg-export.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/svg-export.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/table-editor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/table-editor.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/tag-cloud.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/tag-cloud.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/timeline.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/timeline.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/tooltips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/tooltips.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/transitivity.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/transitivity.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/tree-layout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/tree-layout.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/tree-map.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/tree-map.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/tree-of-life.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/tree-of-life.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/uml-editor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/uml-editor.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/vite.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/vite.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/vitest.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/vitest.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/vue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/vue.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/web-worker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/web-worker.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/webdriverio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/webdriverio.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/webgl-styles.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/webgl-styles.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/webpack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/webpack.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/without-view.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/without-view.webp -------------------------------------------------------------------------------- /doc/demo-thumbnails/z-order.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-for-html-demos/HEAD/doc/demo-thumbnails/z-order.webp --------------------------------------------------------------------------------