├── .editorconfig ├── .eslintrc ├── .github └── workflows │ ├── codeql.yml │ ├── f5-cla.yml │ ├── github_pages.yml │ ├── pull_request.yml │ └── push.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── commitlint.config.ts ├── cover.png ├── examples.png ├── lic-report-config.json ├── package.json ├── packages ├── angular │ ├── LICENSE │ ├── README.md │ ├── angular.json │ ├── autogen │ │ ├── component.ts │ │ ├── index.ts │ │ └── module.ts │ ├── gallery.js │ ├── gallery │ │ ├── src │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── polyfills.ts │ │ └── tsconfig.app.json │ ├── karma.conf.js │ ├── licences.txt │ ├── ng-package.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── components.ts │ │ ├── components │ │ │ ├── annotations │ │ │ │ ├── annotations.component.ts │ │ │ │ └── annotations.module.ts │ │ │ ├── area │ │ │ │ ├── area.component.ts │ │ │ │ └── area.module.ts │ │ │ ├── axis │ │ │ │ ├── axis.component.ts │ │ │ │ └── axis.module.ts │ │ │ ├── brush │ │ │ │ ├── brush.component.ts │ │ │ │ └── brush.module.ts │ │ │ ├── chord-diagram │ │ │ │ ├── chord-diagram.component.ts │ │ │ │ └── chord-diagram.module.ts │ │ │ ├── crosshair │ │ │ │ ├── crosshair.component.ts │ │ │ │ └── crosshair.module.ts │ │ │ ├── donut │ │ │ │ ├── donut.component.ts │ │ │ │ └── donut.module.ts │ │ │ ├── free-brush │ │ │ │ ├── free-brush.component.ts │ │ │ │ └── free-brush.module.ts │ │ │ ├── graph │ │ │ │ ├── graph.component.ts │ │ │ │ └── graph.module.ts │ │ │ ├── grouped-bar │ │ │ │ ├── grouped-bar.component.ts │ │ │ │ └── grouped-bar.module.ts │ │ │ ├── line │ │ │ │ ├── line.component.ts │ │ │ │ └── line.module.ts │ │ │ ├── nested-donut │ │ │ │ ├── nested-donut.component.ts │ │ │ │ └── nested-donut.module.ts │ │ │ ├── plotband │ │ │ │ ├── plotband.component.ts │ │ │ │ └── plotband.module.ts │ │ │ ├── plotline │ │ │ │ ├── plotline.component.ts │ │ │ │ └── plotline.module.ts │ │ │ ├── sankey │ │ │ │ ├── sankey.component.ts │ │ │ │ └── sankey.module.ts │ │ │ ├── scatter │ │ │ │ ├── scatter.component.ts │ │ │ │ └── scatter.module.ts │ │ │ ├── stacked-bar │ │ │ │ ├── stacked-bar.component.ts │ │ │ │ └── stacked-bar.module.ts │ │ │ ├── timeline │ │ │ │ ├── timeline.component.ts │ │ │ │ └── timeline.module.ts │ │ │ ├── tooltip │ │ │ │ ├── tooltip.component.ts │ │ │ │ └── tooltip.module.ts │ │ │ ├── topojson-map │ │ │ │ ├── topojson-map.component.ts │ │ │ │ └── topojson-map.module.ts │ │ │ ├── treemap │ │ │ │ ├── treemap.component.ts │ │ │ │ └── treemap.module.ts │ │ │ └── xy-labels │ │ │ │ ├── xy-labels.component.ts │ │ │ │ └── xy-labels.module.ts │ │ ├── containers.ts │ │ ├── containers │ │ │ ├── single-container │ │ │ │ ├── single-container.component.ts │ │ │ │ └── single-container.module.ts │ │ │ └── xy-container │ │ │ │ ├── xy-container.component.ts │ │ │ │ └── xy-container.module.ts │ │ ├── core │ │ │ ├── core-component.ts │ │ │ ├── generic-component.ts │ │ │ ├── index.ts │ │ │ └── xy-component.ts │ │ ├── html-components │ │ │ ├── bullet-legend │ │ │ │ ├── bullet-legend.component.ts │ │ │ │ └── bullet-legend.module.ts │ │ │ ├── leaflet-flow-map │ │ │ │ ├── leaflet-flow-map.component.ts │ │ │ │ └── leaflet-flow-map.module.ts │ │ │ ├── leaflet-map │ │ │ │ ├── leaflet-map.component.ts │ │ │ │ └── leaflet-map.module.ts │ │ │ └── rolling-pin-legend │ │ │ │ ├── rolling-pin-legend.component.ts │ │ │ │ └── rolling-pin-legend.module.ts │ │ └── public-api.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── dev │ ├── .percy.json │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ ├── tooltip.cy.ts │ │ │ └── unovis.cy.ts │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ │ └── urls.ts │ ├── licences.txt │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.svg │ │ └── index.html │ ├── src │ │ ├── App.module.css │ │ ├── App.tsx │ │ ├── components │ │ │ ├── ExampleViewer │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ │ ├── NavigationItem │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ │ ├── NavigationSideBar │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ │ ├── ThemeSelector │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ │ └── TransitionComponent │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ ├── declarations.d.ts │ │ ├── examples │ │ │ ├── auxiliary │ │ │ │ ├── annotations │ │ │ │ │ ├── basic-annotations │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── single-container │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── bullet-legend │ │ │ │ │ ├── legend-multiple-colors-per-entry │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── legend-shapes │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── legend-stacked-bar-donut │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── line-legend │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── multi-shape-legend │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── vertical-legend │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ ├── rolling-pin-legend │ │ │ │ │ └── basic-rolling-pin-legend │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ └── tooltip │ │ │ │ │ ├── tooltip-create-portal │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── tooltip-empty-content │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── tooltip-resize-behavior │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── tooltip-show-hide-delay │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tooltip-stick-position │ │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ ├── maps │ │ │ │ ├── leaflet │ │ │ │ │ ├── leaflet-map-colorMap │ │ │ │ │ │ ├── data.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── style.module.css │ │ │ │ │ ├── leaflet-map-css-vars │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── style.module.css │ │ │ │ │ ├── leaflet-map-raster │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── leaflet-map-topojson │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── leaflet-map-vector │ │ │ │ │ │ ├── cities.json │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── style.module.css │ │ │ │ └── topojson │ │ │ │ │ ├── all-maps │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── map-fit-to-points │ │ │ │ │ └── index.tsx │ │ │ │ │ └── world-map │ │ │ │ │ └── index.tsx │ │ │ ├── misc │ │ │ │ ├── donut │ │ │ │ │ ├── donut-empty-segments │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── donut-full-height │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── half-donut-full-height │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── half-donut-with-labels │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── nested-donut │ │ │ │ │ ├── basic-nested-donut │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── interactive-nested-donut │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── nested-donut-labels │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── nested-donut-layers │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── segment-values │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ └── show-empty-segments │ │ │ │ │ │ └── index.tsx │ │ │ │ └── treemap │ │ │ │ │ ├── basic │ │ │ │ │ └── index.tsx │ │ │ │ │ └── search │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ ├── networks-and-flows │ │ │ │ ├── chord-diagram │ │ │ │ │ ├── chord-diagram-hierarchy-nodes │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── chord-diagram-levels │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── chord-diagram-perpendicular-labels │ │ │ │ │ │ ├── data.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── chord-diagram-radius-scale-exponent │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── chord-diagram-selected-node │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── chord-diagram-zero-value-link │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── graph │ │ │ │ │ ├── graph-custom-fill │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-custom-icons │ │ │ │ │ │ ├── bucket.svg │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── instance.svg │ │ │ │ │ │ ├── person.svg │ │ │ │ │ │ └── role.svg │ │ │ │ │ ├── graph-custom-node-rendering │ │ │ │ │ │ ├── component.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── enums.ts │ │ │ │ │ │ ├── font.css │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── compute.svg │ │ │ │ │ │ │ ├── enrichment-admin.svg │ │ │ │ │ │ │ ├── enrichment-db.svg │ │ │ │ │ │ │ ├── identity-user.svg │ │ │ │ │ │ │ ├── network-interface.svg │ │ │ │ │ │ │ ├── resource-file.svg │ │ │ │ │ │ │ ├── secret-key.svg │ │ │ │ │ │ │ └── star.svg │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── node-rendering.ts │ │ │ │ │ │ ├── styles.ts │ │ │ │ │ │ ├── swimlane-rendering.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── graph-dynamic-layout │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-layout-elk │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-link-arrows │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-link-flow-speed │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-link-label-icons │ │ │ │ │ │ ├── bucket.svg │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── instance.svg │ │ │ │ │ │ ├── person.svg │ │ │ │ │ │ └── role.svg │ │ │ │ │ ├── graph-link-label │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-link-labels-multiple │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-link-offset │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-multinode-dragging │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-node-labels │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-node-positions │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graph-parallel-spacing │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.ts │ │ │ │ │ └── graph-selections │ │ │ │ │ │ └── index.tsx │ │ │ │ └── sankey │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── sankey-api-endpoints │ │ │ │ │ ├── apieplist.json │ │ │ │ │ ├── data.ts │ │ │ │ │ └── index.tsx │ │ │ └── xy-components │ │ │ │ ├── area │ │ │ │ ├── baseline-area │ │ │ │ │ └── index.tsx │ │ │ │ ├── basic-area │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── min-height-area │ │ │ │ │ └── index.tsx │ │ │ │ ├── axis │ │ │ │ ├── axis-label-with-brush │ │ │ │ │ ├── data.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── axis-label │ │ │ │ │ └── index.tsx │ │ │ │ ├── axis-min-max-ticks-only │ │ │ │ │ └── index.tsx │ │ │ │ ├── axis-rotation │ │ │ │ │ └── index.tsx │ │ │ │ ├── axis-tick-label-overlap │ │ │ │ │ └── index.tsx │ │ │ │ └── single-axis │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.module.css │ │ │ │ ├── brush │ │ │ │ └── basic-brush │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.module.css │ │ │ │ ├── crosshair │ │ │ │ ├── basic-crosshair │ │ │ │ │ └── index.tsx │ │ │ │ ├── crosshair-no-data │ │ │ │ │ └── index.tsx │ │ │ │ ├── crosshair-tooltip-position │ │ │ │ │ └── index.tsx │ │ │ │ ├── force-show-at │ │ │ │ │ └── index.tsx │ │ │ │ ├── free-crosshair │ │ │ │ │ └── index.tsx │ │ │ │ ├── low-resolution-hide │ │ │ │ │ └── index.tsx │ │ │ │ ├── stacked-vs-non-stacked │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── synced-crosshairs │ │ │ │ │ └── index.tsx │ │ │ │ ├── dual-axis │ │ │ │ └── index.tsx │ │ │ │ ├── grouped-bar │ │ │ │ ├── basic-grouped-bar │ │ │ │ │ └── index.tsx │ │ │ │ └── single-element-grouped-bar │ │ │ │ │ └── index.tsx │ │ │ │ ├── line │ │ │ │ ├── multi-line-chart │ │ │ │ │ └── index.tsx │ │ │ │ ├── multi-patchy-line │ │ │ │ │ └── index.tsx │ │ │ │ └── patchy-line │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.module.css │ │ │ │ ├── plotband │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ │ │ ├── plotline │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ │ │ ├── scatter │ │ │ │ ├── scatter-label-positions │ │ │ │ │ └── index.tsx │ │ │ │ ├── scatter-point-label │ │ │ │ │ └── index.tsx │ │ │ │ ├── scatter-point-stroke │ │ │ │ │ └── index.tsx │ │ │ │ ├── scatter-size-range │ │ │ │ │ └── index.tsx │ │ │ │ └── scatter-with-line │ │ │ │ │ └── index.tsx │ │ │ │ ├── stacked-bar │ │ │ │ ├── basic-stacked-bar │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── positive-negative-values │ │ │ │ │ └── index.tsx │ │ │ │ ├── timeline │ │ │ │ ├── index.tsx │ │ │ │ ├── timeline-animation │ │ │ │ │ └── index.tsx │ │ │ │ ├── timeline-arrows │ │ │ │ │ ├── icon.svg │ │ │ │ │ └── index.tsx │ │ │ │ ├── timeline-bleed │ │ │ │ │ ├── icon.svg │ │ │ │ │ └── index.tsx │ │ │ │ ├── timeline-empty-segments │ │ │ │ │ └── index.tsx │ │ │ │ ├── timeline-label-alignment │ │ │ │ │ └── index.tsx │ │ │ │ ├── timeline-line-icons │ │ │ │ │ ├── icon.svg │ │ │ │ │ └── index.tsx │ │ │ │ ├── timeline-row-icons │ │ │ │ │ ├── icon.svg │ │ │ │ │ └── index.tsx │ │ │ │ └── timeline-tooltip │ │ │ │ │ └── index.tsx │ │ │ │ ├── xy-container │ │ │ │ ├── narrow-x-domain │ │ │ │ │ └── index.tsx │ │ │ │ └── scale-by-domain │ │ │ │ │ └── index.tsx │ │ │ │ └── xy-labels │ │ │ │ └── labels-stacked-bar │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ ├── global.d.ts │ │ ├── index.tsx │ │ └── utils │ │ │ ├── array.ts │ │ │ ├── data.ts │ │ │ └── text.ts │ ├── tsconfig.json │ └── webpack.config.js ├── react │ ├── LICENSE │ ├── README.md │ ├── autogen │ │ ├── component.ts │ │ ├── index.ts │ │ ├── rollup.config.js │ │ └── tsconfig.json │ ├── index.ts │ ├── licences.txt │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── components.ts │ │ ├── components │ │ │ ├── annotations │ │ │ │ └── index.tsx │ │ │ ├── area │ │ │ │ └── index.tsx │ │ │ ├── axis │ │ │ │ └── index.tsx │ │ │ ├── brush │ │ │ │ └── index.tsx │ │ │ ├── chord-diagram │ │ │ │ └── index.tsx │ │ │ ├── crosshair │ │ │ │ └── index.tsx │ │ │ ├── donut │ │ │ │ └── index.tsx │ │ │ ├── free-brush │ │ │ │ └── index.tsx │ │ │ ├── graph │ │ │ │ └── index.tsx │ │ │ ├── grouped-bar │ │ │ │ └── index.tsx │ │ │ ├── line │ │ │ │ └── index.tsx │ │ │ ├── nested-donut │ │ │ │ └── index.tsx │ │ │ ├── plotband │ │ │ │ └── index.tsx │ │ │ ├── plotline │ │ │ │ └── index.tsx │ │ │ ├── sankey │ │ │ │ └── index.tsx │ │ │ ├── scatter │ │ │ │ └── index.tsx │ │ │ ├── stacked-bar │ │ │ │ └── index.tsx │ │ │ ├── timeline │ │ │ │ └── index.tsx │ │ │ ├── tooltip │ │ │ │ └── index.tsx │ │ │ ├── topojson-map │ │ │ │ └── index.tsx │ │ │ ├── treemap │ │ │ │ └── index.tsx │ │ │ └── xy-labels │ │ │ │ └── index.tsx │ │ ├── composites.ts │ │ ├── composites │ │ │ └── time-series │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ ├── containers.ts │ │ ├── containers │ │ │ ├── single-container │ │ │ │ └── index.tsx │ │ │ └── xy-container │ │ │ │ └── index.tsx │ │ ├── declarations.d.ts │ │ ├── global.d.ts │ │ ├── html-components │ │ │ ├── bullet-legend │ │ │ │ └── index.tsx │ │ │ ├── leaflet-flow-map │ │ │ │ └── index.tsx │ │ │ ├── leaflet-map │ │ │ │ └── index.tsx │ │ │ └── rolling-pin-legend │ │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── types │ │ │ └── dom.ts │ │ └── utils │ │ │ └── react.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── shared │ ├── .eslintrc.cjs │ ├── examples │ │ ├── _previews │ │ │ ├── advanced-leaflet-map-dark.png │ │ │ ├── advanced-leaflet-map.png │ │ │ ├── baseline-area-chart-dark.png │ │ │ ├── baseline-area-chart.png │ │ │ ├── basic-annotations-dark.png │ │ │ ├── basic-annotations.png │ │ │ ├── basic-donut-chart-dark.png │ │ │ ├── basic-donut-chart.png │ │ │ ├── basic-grouped-bar-dark.png │ │ │ ├── basic-grouped-bar.png │ │ │ ├── basic-leaflet-map-dark.png │ │ │ ├── basic-leaflet-map.png │ │ │ ├── basic-line-chart-dark.png │ │ │ ├── basic-line-chart.png │ │ │ ├── basic-sankey-dark.png │ │ │ ├── basic-sankey.png │ │ │ ├── basic-scatter-plot-dark.png │ │ │ ├── basic-scatter-plot.png │ │ │ ├── basic-timeline-dark.png │ │ │ ├── basic-timeline.png │ │ │ ├── brush-grouped-bar-dark.png │ │ │ ├── brush-grouped-bar.png │ │ │ ├── crosshair-stacked-bar-dark.png │ │ │ ├── crosshair-stacked-bar.png │ │ │ ├── custom-nodes-graph-dark.png │ │ │ ├── custom-nodes-graph.png │ │ │ ├── dagre-graph-dark.png │ │ │ ├── dagre-graph.png │ │ │ ├── data-gap-line-chart-dark.png │ │ │ ├── data-gap-line-chart.png │ │ │ ├── dual-axis-chart-dark.png │ │ │ ├── dual-axis-chart.png │ │ │ ├── elk-layered-graph-dark.png │ │ │ ├── elk-layered-graph.png │ │ │ ├── expandable-sankey-dark.png │ │ │ ├── expandable-sankey.png │ │ │ ├── force-graph-dark.png │ │ │ ├── force-graph.png │ │ │ ├── free-brush-scatters-dark.png │ │ │ ├── free-brush-scatters.png │ │ │ ├── hierarchical-chord-diagram-dark.png │ │ │ ├── hierarchical-chord-diagram.png │ │ │ ├── horizontal-stacked-bar-chart-dark.png │ │ │ ├── horizontal-stacked-bar-chart.png │ │ │ ├── leaflet-flow-map-dark.png │ │ │ ├── leaflet-flow-map.png │ │ │ ├── multi-line-chart-dark.png │ │ │ ├── multi-line-chart.png │ │ │ ├── non-stacked-area-chart-dark.png │ │ │ ├── non-stacked-area-chart.png │ │ │ ├── parallel-graph-dark.png │ │ │ ├── parallel-graph.png │ │ │ ├── patchy-line-chart-dark.png │ │ │ ├── patchy-line-chart.png │ │ │ ├── plotband-plotline-dark.png │ │ │ ├── plotband-plotline.png │ │ │ ├── range-plot-dark.png │ │ │ ├── range-plot.png │ │ │ ├── shaped-scatter-plot-dark.png │ │ │ ├── shaped-scatter-plot.png │ │ │ ├── single-level-chord-diagram-dark.png │ │ │ ├── single-level-chord-diagram.png │ │ │ ├── sized-scatter-plot-dark.png │ │ │ ├── sized-scatter-plot.png │ │ │ ├── stacked-area-chart-dark.png │ │ │ ├── stacked-area-chart-with-attributes-dark.png │ │ │ ├── stacked-area-chart-with-attributes.png │ │ │ ├── stacked-area-chart.png │ │ │ ├── step-area-chart-dark.png │ │ │ ├── step-area-chart.png │ │ │ ├── sunburst-nested-donut-dark.png │ │ │ ├── sunburst-nested-donut.png │ │ │ ├── topojson-map-dark.png │ │ │ ├── topojson-map.png │ │ │ ├── treemap-dark.png │ │ │ └── treemap.png │ │ ├── advanced-leaflet-map │ │ │ ├── advanced-leaflet-map-solid.tsx │ │ │ ├── advanced-leaflet-map.component.html │ │ │ ├── advanced-leaflet-map.component.ts │ │ │ ├── advanced-leaflet-map.module.ts │ │ │ ├── advanced-leaflet-map.svelte │ │ │ ├── advanced-leaflet-map.ts │ │ │ ├── advanced-leaflet-map.tsx │ │ │ ├── advanced-leaflet-map.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── baseline-area-chart │ │ │ ├── baseline-area-chart-solid.tsx │ │ │ ├── baseline-area-chart.component.html │ │ │ ├── baseline-area-chart.component.ts │ │ │ ├── baseline-area-chart.module.ts │ │ │ ├── baseline-area-chart.svelte │ │ │ ├── baseline-area-chart.ts │ │ │ ├── baseline-area-chart.tsx │ │ │ ├── baseline-area-chart.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-annotations │ │ │ ├── basic-annotations-solid.tsx │ │ │ ├── basic-annotations.component.html │ │ │ ├── basic-annotations.component.ts │ │ │ ├── basic-annotations.module.ts │ │ │ ├── basic-annotations.svelte │ │ │ ├── basic-annotations.ts │ │ │ ├── basic-annotations.tsx │ │ │ ├── basic-annotations.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-donut-chart │ │ │ ├── basic-donut-chart-solid.tsx │ │ │ ├── basic-donut-chart.component.html │ │ │ ├── basic-donut-chart.component.ts │ │ │ ├── basic-donut-chart.module.ts │ │ │ ├── basic-donut-chart.svelte │ │ │ ├── basic-donut-chart.ts │ │ │ ├── basic-donut-chart.tsx │ │ │ ├── basic-donut-chart.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-grouped-bar │ │ │ ├── basic-grouped-bar-solid.tsx │ │ │ ├── basic-grouped-bar.component.html │ │ │ ├── basic-grouped-bar.component.ts │ │ │ ├── basic-grouped-bar.module.ts │ │ │ ├── basic-grouped-bar.svelte │ │ │ ├── basic-grouped-bar.ts │ │ │ ├── basic-grouped-bar.tsx │ │ │ ├── basic-grouped-bar.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-leaflet-map │ │ │ ├── basic-leaflet-map-solid.tsx │ │ │ ├── basic-leaflet-map.component.html │ │ │ ├── basic-leaflet-map.component.ts │ │ │ ├── basic-leaflet-map.module.ts │ │ │ ├── basic-leaflet-map.svelte │ │ │ ├── basic-leaflet-map.ts │ │ │ ├── basic-leaflet-map.tsx │ │ │ ├── basic-leaflet-map.vue │ │ │ ├── constants.ts │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-line-chart │ │ │ ├── basic-line-chart-solid.tsx │ │ │ ├── basic-line-chart.component.html │ │ │ ├── basic-line-chart.component.ts │ │ │ ├── basic-line-chart.module.ts │ │ │ ├── basic-line-chart.svelte │ │ │ ├── basic-line-chart.ts │ │ │ ├── basic-line-chart.tsx │ │ │ ├── basic-line-chart.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-sankey │ │ │ ├── basic-sankey-solid.tsx │ │ │ ├── basic-sankey.component.html │ │ │ ├── basic-sankey.component.ts │ │ │ ├── basic-sankey.module.ts │ │ │ ├── basic-sankey.svelte │ │ │ ├── basic-sankey.ts │ │ │ ├── basic-sankey.tsx │ │ │ ├── basic-sankey.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-scatter-plot │ │ │ ├── basic-scatter-plot-solid.tsx │ │ │ ├── basic-scatter-plot.component.html │ │ │ ├── basic-scatter-plot.component.ts │ │ │ ├── basic-scatter-plot.module.ts │ │ │ ├── basic-scatter-plot.svelte │ │ │ ├── basic-scatter-plot.ts │ │ │ ├── basic-scatter-plot.tsx │ │ │ ├── basic-scatter-plot.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── basic-timeline │ │ │ ├── basic-timeline-solid.tsx │ │ │ ├── basic-timeline.component.html │ │ │ ├── basic-timeline.component.ts │ │ │ ├── basic-timeline.module.ts │ │ │ ├── basic-timeline.svelte │ │ │ ├── basic-timeline.ts │ │ │ ├── basic-timeline.tsx │ │ │ ├── basic-timeline.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── brush-grouped-bar │ │ │ ├── brush-grouped-bar-solid.tsx │ │ │ ├── brush-grouped-bar.component.html │ │ │ ├── brush-grouped-bar.component.ts │ │ │ ├── brush-grouped-bar.module.ts │ │ │ ├── brush-grouped-bar.svelte │ │ │ ├── brush-grouped-bar.ts │ │ │ ├── brush-grouped-bar.tsx │ │ │ ├── brush-grouped-bar.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── crosshair-stacked-bar │ │ │ ├── crosshair-stacked-bar-solid.tsx │ │ │ ├── crosshair-stacked-bar.component.html │ │ │ ├── crosshair-stacked-bar.component.ts │ │ │ ├── crosshair-stacked-bar.module.ts │ │ │ ├── crosshair-stacked-bar.svelte │ │ │ ├── crosshair-stacked-bar.ts │ │ │ ├── crosshair-stacked-bar.tsx │ │ │ ├── crosshair-stacked-bar.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── custom-nodes-graph │ │ │ ├── constants.ts │ │ │ ├── custom-nodes-graph-solid.tsx │ │ │ ├── custom-nodes-graph.component.html │ │ │ ├── custom-nodes-graph.component.ts │ │ │ ├── custom-nodes-graph.module.ts │ │ │ ├── custom-nodes-graph.svelte │ │ │ ├── custom-nodes-graph.ts │ │ │ ├── custom-nodes-graph.tsx │ │ │ ├── custom-nodes-graph.vue │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── dagre-graph │ │ │ ├── dagre-graph-solid.tsx │ │ │ ├── dagre-graph.component.html │ │ │ ├── dagre-graph.component.ts │ │ │ ├── dagre-graph.module.ts │ │ │ ├── dagre-graph.svelte │ │ │ ├── dagre-graph.ts │ │ │ ├── dagre-graph.tsx │ │ │ ├── dagre-graph.vue │ │ │ ├── data.ts │ │ │ └── index.tsx │ │ ├── data-gap-line-chart │ │ │ ├── data-gap-line-chart-solid.tsx │ │ │ ├── data-gap-line-chart.component.html │ │ │ ├── data-gap-line-chart.component.ts │ │ │ ├── data-gap-line-chart.module.ts │ │ │ ├── data-gap-line-chart.svelte │ │ │ ├── data-gap-line-chart.ts │ │ │ ├── data-gap-line-chart.tsx │ │ │ ├── data-gap-line-chart.vue │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── dual-axis-chart │ │ │ ├── data.ts │ │ │ ├── dual-axis-chart-solid.tsx │ │ │ ├── dual-axis-chart.component.html │ │ │ ├── dual-axis-chart.component.ts │ │ │ ├── dual-axis-chart.module.ts │ │ │ ├── dual-axis-chart.svelte │ │ │ ├── dual-axis-chart.ts │ │ │ ├── dual-axis-chart.tsx │ │ │ ├── dual-axis-chart.vue │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── elk-layered-graph │ │ │ ├── data.ts │ │ │ ├── elk-layered-graph-solid.tsx │ │ │ ├── elk-layered-graph.component.html │ │ │ ├── elk-layered-graph.component.ts │ │ │ ├── elk-layered-graph.module.ts │ │ │ ├── elk-layered-graph.svelte │ │ │ ├── elk-layered-graph.ts │ │ │ ├── elk-layered-graph.tsx │ │ │ ├── elk-layered-graph.vue │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── examples-list.tsx │ │ ├── expandable-sankey │ │ │ ├── data.ts │ │ │ ├── expandable-sankey-solid.tsx │ │ │ ├── expandable-sankey.component.html │ │ │ ├── expandable-sankey.component.ts │ │ │ ├── expandable-sankey.module.ts │ │ │ ├── expandable-sankey.svelte │ │ │ ├── expandable-sankey.ts │ │ │ ├── expandable-sankey.tsx │ │ │ ├── expandable-sankey.vue │ │ │ └── index.tsx │ │ ├── force-graph │ │ │ ├── data.ts │ │ │ ├── force-graph-solid.tsx │ │ │ ├── force-graph.component.html │ │ │ ├── force-graph.component.ts │ │ │ ├── force-graph.module.ts │ │ │ ├── force-graph.svelte │ │ │ ├── force-graph.ts │ │ │ ├── force-graph.tsx │ │ │ ├── force-graph.vue │ │ │ └── index.tsx │ │ ├── free-brush-scatters │ │ │ ├── data.ts │ │ │ ├── free-brush-scatters-solid.tsx │ │ │ ├── free-brush-scatters.component.html │ │ │ ├── free-brush-scatters.component.ts │ │ │ ├── free-brush-scatters.module.ts │ │ │ ├── free-brush-scatters.svelte │ │ │ ├── free-brush-scatters.ts │ │ │ ├── free-brush-scatters.tsx │ │ │ ├── free-brush-scatters.vue │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── hierarchical-chord-diagram │ │ │ ├── data.ts │ │ │ ├── hierarchical-chord-diagram-solid.tsx │ │ │ ├── hierarchical-chord-diagram.component.html │ │ │ ├── hierarchical-chord-diagram.component.ts │ │ │ ├── hierarchical-chord-diagram.module.ts │ │ │ ├── hierarchical-chord-diagram.svelte │ │ │ ├── hierarchical-chord-diagram.ts │ │ │ ├── hierarchical-chord-diagram.tsx │ │ │ ├── hierarchical-chord-diagram.vue │ │ │ └── index.tsx │ │ ├── horizontal-stacked-bar-chart │ │ │ ├── data.ts │ │ │ ├── horizontal-stacked-bar-chart-solid.tsx │ │ │ ├── horizontal-stacked-bar-chart.component.html │ │ │ ├── horizontal-stacked-bar-chart.component.ts │ │ │ ├── horizontal-stacked-bar-chart.module.ts │ │ │ ├── horizontal-stacked-bar-chart.svelte │ │ │ ├── horizontal-stacked-bar-chart.ts │ │ │ ├── horizontal-stacked-bar-chart.tsx │ │ │ ├── horizontal-stacked-bar-chart.vue │ │ │ └── index.tsx │ │ ├── leaflet-flow-map │ │ │ ├── constants.ts │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── leaflet-flow-map-solid.tsx │ │ │ ├── leaflet-flow-map.component.html │ │ │ ├── leaflet-flow-map.component.ts │ │ │ ├── leaflet-flow-map.module.ts │ │ │ ├── leaflet-flow-map.svelte │ │ │ ├── leaflet-flow-map.ts │ │ │ ├── leaflet-flow-map.tsx │ │ │ ├── leaflet-flow-map.vue │ │ │ └── preview.jpg │ │ ├── multi-line-chart │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── multi-line-chart-solid.tsx │ │ │ ├── multi-line-chart.component.html │ │ │ ├── multi-line-chart.component.ts │ │ │ ├── multi-line-chart.module.ts │ │ │ ├── multi-line-chart.svelte │ │ │ ├── multi-line-chart.ts │ │ │ ├── multi-line-chart.tsx │ │ │ └── multi-line-chart.vue │ │ ├── non-stacked-area-chart │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── non-stacked-area-chart-solid.tsx │ │ │ ├── non-stacked-area-chart.component.html │ │ │ ├── non-stacked-area-chart.component.ts │ │ │ ├── non-stacked-area-chart.module.ts │ │ │ ├── non-stacked-area-chart.svelte │ │ │ ├── non-stacked-area-chart.ts │ │ │ ├── non-stacked-area-chart.tsx │ │ │ └── non-stacked-area-chart.vue │ │ ├── parallel-graph │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── parallel-graph-solid.tsx │ │ │ ├── parallel-graph.component.html │ │ │ ├── parallel-graph.component.ts │ │ │ ├── parallel-graph.module.ts │ │ │ ├── parallel-graph.svelte │ │ │ ├── parallel-graph.ts │ │ │ ├── parallel-graph.tsx │ │ │ ├── parallel-graph.vue │ │ │ └── styles.css │ │ ├── patchy-line-chart │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── patchy-line-chart-solid.tsx │ │ │ ├── patchy-line-chart.component.html │ │ │ ├── patchy-line-chart.component.ts │ │ │ ├── patchy-line-chart.module.ts │ │ │ ├── patchy-line-chart.svelte │ │ │ ├── patchy-line-chart.ts │ │ │ ├── patchy-line-chart.tsx │ │ │ ├── patchy-line-chart.vue │ │ │ └── styles.css │ │ ├── plotband-plotline │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── plotband-plotline-solid.tsx │ │ │ ├── plotband-plotline.component.html │ │ │ ├── plotband-plotline.component.ts │ │ │ ├── plotband-plotline.module.ts │ │ │ ├── plotband-plotline.svelte │ │ │ ├── plotband-plotline.ts │ │ │ ├── plotband-plotline.tsx │ │ │ └── plotband-plotline.vue │ │ ├── range-plot │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── range-plot-solid.tsx │ │ │ ├── range-plot.component.html │ │ │ ├── range-plot.component.ts │ │ │ ├── range-plot.module.ts │ │ │ ├── range-plot.svelte │ │ │ ├── range-plot.ts │ │ │ ├── range-plot.tsx │ │ │ └── range-plot.vue │ │ ├── shaped-scatter-plot │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── shaped-scatter-plot-solid.tsx │ │ │ ├── shaped-scatter-plot.component.html │ │ │ ├── shaped-scatter-plot.component.ts │ │ │ ├── shaped-scatter-plot.module.ts │ │ │ ├── shaped-scatter-plot.svelte │ │ │ ├── shaped-scatter-plot.ts │ │ │ ├── shaped-scatter-plot.tsx │ │ │ └── shaped-scatter-plot.vue │ │ ├── sized-scatter-plot │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── sized-scatter-plot-solid.tsx │ │ │ ├── sized-scatter-plot.component.html │ │ │ ├── sized-scatter-plot.component.ts │ │ │ ├── sized-scatter-plot.module.ts │ │ │ ├── sized-scatter-plot.svelte │ │ │ ├── sized-scatter-plot.ts │ │ │ ├── sized-scatter-plot.tsx │ │ │ └── sized-scatter-plot.vue │ │ ├── stacked-area-chart-with-attributes │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── stacked-area-chart-with-attributes-solid.tsx │ │ │ ├── stacked-area-chart-with-attributes.component.html │ │ │ ├── stacked-area-chart-with-attributes.component.ts │ │ │ ├── stacked-area-chart-with-attributes.module.ts │ │ │ ├── stacked-area-chart-with-attributes.svelte │ │ │ ├── stacked-area-chart-with-attributes.ts │ │ │ ├── stacked-area-chart-with-attributes.tsx │ │ │ ├── stacked-area-chart-with-attributes.vue │ │ │ └── styles.css │ │ ├── stacked-area-chart │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── stacked-area-chart-solid.tsx │ │ │ ├── stacked-area-chart.component.html │ │ │ ├── stacked-area-chart.component.ts │ │ │ ├── stacked-area-chart.module.ts │ │ │ ├── stacked-area-chart.svelte │ │ │ ├── stacked-area-chart.ts │ │ │ ├── stacked-area-chart.tsx │ │ │ └── stacked-area-chart.vue │ │ ├── step-area-chart │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── step-area-chart-solid.tsx │ │ │ ├── step-area-chart.component.html │ │ │ ├── step-area-chart.component.ts │ │ │ ├── step-area-chart.module.ts │ │ │ ├── step-area-chart.svelte │ │ │ ├── step-area-chart.ts │ │ │ ├── step-area-chart.tsx │ │ │ ├── step-area-chart.vue │ │ │ └── styles.css │ │ ├── sunburst-nested-donut │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ ├── sunburst-nested-donut-solid.tsx │ │ │ ├── sunburst-nested-donut.component.html │ │ │ ├── sunburst-nested-donut.component.ts │ │ │ ├── sunburst-nested-donut.module.ts │ │ │ ├── sunburst-nested-donut.svelte │ │ │ ├── sunburst-nested-donut.ts │ │ │ ├── sunburst-nested-donut.tsx │ │ │ └── sunburst-nested-donut.vue │ │ ├── topojson-map │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ ├── topojson-map-solid.tsx │ │ │ ├── topojson-map.component.html │ │ │ ├── topojson-map.component.ts │ │ │ ├── topojson-map.module.ts │ │ │ ├── topojson-map.svelte │ │ │ ├── topojson-map.ts │ │ │ ├── topojson-map.tsx │ │ │ └── topojson-map.vue │ │ ├── treemap │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── treemap-solid.tsx │ │ │ ├── treemap.component.html │ │ │ ├── treemap.component.ts │ │ │ ├── treemap.module.ts │ │ │ ├── treemap.svelte │ │ │ ├── treemap.ts │ │ │ ├── treemap.tsx │ │ │ └── treemap.vue │ │ └── types.ts │ ├── integrations │ │ ├── components.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── licences.txt │ ├── package.json │ ├── tsconfig.angular.json │ ├── tsconfig.json │ └── tsconfig.svelte.json ├── solid │ ├── .eslintrc.cjs │ ├── .prettierrc │ ├── LICENSE │ ├── README.md │ ├── autogen │ │ ├── component.ts │ │ └── index.ts │ ├── index.d.ts │ ├── index.html │ ├── index.js │ ├── licences.txt │ ├── package.json │ ├── src-demo │ │ ├── app.tsx │ │ ├── main.css │ │ └── main.tsx │ ├── src │ │ ├── components.ts │ │ ├── components │ │ │ ├── annotations │ │ │ │ └── index.tsx │ │ │ ├── area │ │ │ │ └── index.tsx │ │ │ ├── axis │ │ │ │ └── index.tsx │ │ │ ├── brush │ │ │ │ └── index.tsx │ │ │ ├── chord-diagram │ │ │ │ └── index.tsx │ │ │ ├── crosshair │ │ │ │ └── index.tsx │ │ │ ├── donut │ │ │ │ └── index.tsx │ │ │ ├── free-brush │ │ │ │ └── index.tsx │ │ │ ├── graph │ │ │ │ └── index.tsx │ │ │ ├── grouped-bar │ │ │ │ └── index.tsx │ │ │ ├── line │ │ │ │ └── index.tsx │ │ │ ├── nested-donut │ │ │ │ └── index.tsx │ │ │ ├── plotband │ │ │ │ └── index.tsx │ │ │ ├── plotline │ │ │ │ └── index.tsx │ │ │ ├── sankey │ │ │ │ └── index.tsx │ │ │ ├── scatter │ │ │ │ └── index.tsx │ │ │ ├── stacked-bar │ │ │ │ └── index.tsx │ │ │ ├── timeline │ │ │ │ └── index.tsx │ │ │ ├── tooltip │ │ │ │ └── index.tsx │ │ │ ├── topojson-map │ │ │ │ └── index.tsx │ │ │ ├── treemap │ │ │ │ └── index.tsx │ │ │ └── xy-labels │ │ │ │ └── index.tsx │ │ ├── containers.ts │ │ ├── containers │ │ │ ├── single-container │ │ │ │ └── index.tsx │ │ │ └── xy-container │ │ │ │ └── index.tsx │ │ ├── html-components │ │ │ ├── bullet-legend │ │ │ │ └── index.tsx │ │ │ ├── leaflet-flow-map │ │ │ │ └── index.tsx │ │ │ ├── leaflet-map │ │ │ │ └── index.tsx │ │ │ └── rolling-pin-legend │ │ │ │ └── index.tsx │ │ ├── index.ts │ │ └── utils │ │ │ ├── combine-style.ts │ │ │ ├── context.ts │ │ │ ├── props.ts │ │ │ └── trigger.ts │ ├── tsconfig.json │ └── vite.config.ts ├── svelte │ ├── .eslintrc.cjs │ ├── LICENSE │ ├── README.md │ ├── autogen │ │ ├── component.ts │ │ ├── index.ts │ │ ├── rollup.config.js │ │ └── tsconfig.json │ ├── gallery.rollup.config.js │ ├── index.js │ ├── licences.txt │ ├── package.json │ ├── src-demo │ │ ├── svelte-gallery.html │ │ ├── svelte-gallery.svelte │ │ └── svelte-gallery.ts │ ├── src │ │ ├── components.ts │ │ ├── components │ │ │ ├── annotations │ │ │ │ └── annotations.svelte │ │ │ ├── area │ │ │ │ └── area.svelte │ │ │ ├── axis │ │ │ │ └── axis.svelte │ │ │ ├── brush │ │ │ │ └── brush.svelte │ │ │ ├── chord-diagram │ │ │ │ └── chord-diagram.svelte │ │ │ ├── crosshair │ │ │ │ └── crosshair.svelte │ │ │ ├── donut │ │ │ │ └── donut.svelte │ │ │ ├── free-brush │ │ │ │ └── free-brush.svelte │ │ │ ├── graph │ │ │ │ └── graph.svelte │ │ │ ├── grouped-bar │ │ │ │ └── grouped-bar.svelte │ │ │ ├── line │ │ │ │ └── line.svelte │ │ │ ├── nested-donut │ │ │ │ └── nested-donut.svelte │ │ │ ├── plotband │ │ │ │ └── plotband.svelte │ │ │ ├── plotline │ │ │ │ └── plotline.svelte │ │ │ ├── sankey │ │ │ │ └── sankey.svelte │ │ │ ├── scatter │ │ │ │ └── scatter.svelte │ │ │ ├── stacked-bar │ │ │ │ └── stacked-bar.svelte │ │ │ ├── timeline │ │ │ │ └── timeline.svelte │ │ │ ├── tooltip │ │ │ │ └── tooltip.svelte │ │ │ ├── topojson-map │ │ │ │ └── topojson-map.svelte │ │ │ ├── treemap │ │ │ │ └── treemap.svelte │ │ │ └── xy-labels │ │ │ │ └── xy-labels.svelte │ │ ├── containers.ts │ │ ├── containers │ │ │ ├── single-container │ │ │ │ └── single-container.svelte │ │ │ └── xy-container │ │ │ │ └── xy-container.svelte │ │ ├── declarations.d.ts │ │ ├── html-components │ │ │ ├── bullet-legend │ │ │ │ └── bullet-legend.svelte │ │ │ ├── leaflet-flow-map │ │ │ │ └── leaflet-flow-map.svelte │ │ │ ├── leaflet-map │ │ │ │ └── leaflet-map.svelte │ │ │ └── rolling-pin-legend │ │ │ │ └── rolling-pin-legend.svelte │ │ ├── index.ts │ │ ├── types │ │ │ └── context.ts │ │ └── utils │ │ │ └── props.ts │ ├── svelte.config.js │ └── tsconfig.json ├── ts │ ├── LICENSE │ ├── README.md │ ├── declaration.d.ts │ ├── global.d.ts │ ├── index.ts │ ├── licences.txt │ ├── maps.ts │ ├── package.json │ ├── rollup.config.js │ ├── rules │ │ └── ts-getter-setter.js │ ├── src │ │ ├── components.ts │ │ ├── components │ │ │ ├── annotations │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── area │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── axis │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── brush │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── bullet-legend │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ └── shape.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── chord-diagram │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ ├── label.ts │ │ │ │ │ ├── layout.ts │ │ │ │ │ ├── link.ts │ │ │ │ │ └── node.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── crosshair │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── donut │ │ │ │ ├── config.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ └── arc.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── flow-legend │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── free-brush │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── graph │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ ├── layout-helpers.ts │ │ │ │ │ ├── layout.ts │ │ │ │ │ ├── link │ │ │ │ │ │ ├── helper.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── style.ts │ │ │ │ │ ├── node │ │ │ │ │ │ ├── helper.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── style.ts │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── helper.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── style.ts │ │ │ │ │ ├── shape.ts │ │ │ │ │ └── zoom-levels.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── grouped-bar │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ └── style.ts │ │ │ ├── leaflet-flow-map │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── renderer-utils.ts │ │ │ │ ├── renderer.ts │ │ │ │ ├── shaders.ts │ │ │ │ └── types.ts │ │ │ ├── leaflet-map │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── leaflet.css │ │ │ │ ├── modules │ │ │ │ │ ├── clusterBackground.ts │ │ │ │ │ ├── donut.ts │ │ │ │ │ ├── map.ts │ │ │ │ │ ├── node.ts │ │ │ │ │ ├── selectionRing.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── renderer │ │ │ │ │ ├── leaflet-maplibre-gl.js │ │ │ │ │ ├── map-style.ts │ │ │ │ │ ├── mapboxgl-layer.ts │ │ │ │ │ ├── mapboxgl-utils.ts │ │ │ │ │ ├── mapboxgl │ │ │ │ │ │ ├── mapboxgl-dark-theme.json │ │ │ │ │ │ ├── mapboxgl-light-theme.json │ │ │ │ │ │ └── mapboxgl-settings.json │ │ │ │ │ └── maplibre-gl.css.js │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── line │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── nested-donut │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ ├── arc.ts │ │ │ │ │ └── label.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── plotband │ │ │ │ ├── config.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── plotline │ │ │ │ ├── config.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── rolling-pin-legend │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── sankey │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ ├── label.ts │ │ │ │ │ ├── link.ts │ │ │ │ │ └── node.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── scatter │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ ├── point.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── stacked-bar │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── timeline │ │ │ │ ├── config.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── tooltip │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ └── style.ts │ │ │ ├── topojson-map │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── treemap │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ ├── vis-controls │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ │ └── xy-labels │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ └── label.ts │ │ │ │ ├── style.ts │ │ │ │ └── types.ts │ │ ├── containers.ts │ │ ├── containers │ │ │ ├── single-container │ │ │ │ ├── config.ts │ │ │ │ └── index.ts │ │ │ └── xy-container │ │ │ │ ├── config.ts │ │ │ │ └── index.ts │ │ ├── core │ │ │ ├── component │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── container │ │ │ │ ├── config.ts │ │ │ │ └── index.ts │ │ │ └── xy-component │ │ │ │ ├── config.ts │ │ │ │ └── index.ts │ │ ├── data-models │ │ │ ├── core.ts │ │ │ ├── graph.ts │ │ │ ├── index.ts │ │ │ ├── map-graph.ts │ │ │ ├── map.ts │ │ │ └── series.ts │ │ ├── index.ts │ │ ├── maps.ts │ │ ├── maps │ │ │ ├── china-provinces.json │ │ │ ├── fr-regions.json │ │ │ ├── germany-regions.json │ │ │ ├── ind-regions.json │ │ │ ├── uk-regions.json │ │ │ ├── us-counties.json │ │ │ ├── us-states.json │ │ │ ├── world-110m-alpha.json │ │ │ ├── world-simple.json │ │ │ └── world-simplest.json │ │ ├── styles │ │ │ ├── colors.ts │ │ │ ├── index.ts │ │ │ ├── patterns.ts │ │ │ └── sizes.ts │ │ ├── types.ts │ │ ├── types │ │ │ ├── accessor.ts │ │ │ ├── component.ts │ │ │ ├── curve.ts │ │ │ ├── data.ts │ │ │ ├── direction.ts │ │ │ ├── graph.ts │ │ │ ├── map.ts │ │ │ ├── misc.ts │ │ │ ├── position.ts │ │ │ ├── scale.ts │ │ │ ├── shape.ts │ │ │ ├── spacing.ts │ │ │ ├── svg.ts │ │ │ ├── symbol.ts │ │ │ └── text.ts │ │ └── utils │ │ │ ├── color.ts │ │ │ ├── d3.ts │ │ │ ├── data.ts │ │ │ ├── html.ts │ │ │ ├── index.ts │ │ │ ├── map.ts │ │ │ ├── misc.ts │ │ │ ├── path.ts │ │ │ ├── resize-observer.ts │ │ │ ├── scale.ts │ │ │ ├── style.ts │ │ │ ├── svg.ts │ │ │ ├── text.ts │ │ │ └── type.ts │ └── tsconfig.json ├── vue │ ├── LICENSE │ ├── README.md │ ├── autogen │ │ ├── component.ts │ │ ├── index.ts │ │ ├── rollup.config.js │ │ └── tsconfig.json │ ├── eslint.config.js │ ├── index.d.ts │ ├── index.html │ ├── index.js │ ├── licences.txt │ ├── package.json │ ├── src-demo │ │ ├── App.vue │ │ └── main.ts │ ├── src │ │ ├── components.ts │ │ ├── components │ │ │ ├── annotations │ │ │ │ └── index.vue │ │ │ ├── area │ │ │ │ └── index.vue │ │ │ ├── axis │ │ │ │ └── index.vue │ │ │ ├── brush │ │ │ │ └── index.vue │ │ │ ├── chord-diagram │ │ │ │ └── index.vue │ │ │ ├── crosshair │ │ │ │ └── index.vue │ │ │ ├── donut │ │ │ │ └── index.vue │ │ │ ├── free-brush │ │ │ │ └── index.vue │ │ │ ├── graph │ │ │ │ └── index.vue │ │ │ ├── grouped-bar │ │ │ │ └── index.vue │ │ │ ├── line │ │ │ │ └── index.vue │ │ │ ├── nested-donut │ │ │ │ └── index.vue │ │ │ ├── plotband │ │ │ │ └── index.vue │ │ │ ├── plotline │ │ │ │ └── index.vue │ │ │ ├── sankey │ │ │ │ └── index.vue │ │ │ ├── scatter │ │ │ │ └── index.vue │ │ │ ├── stacked-bar │ │ │ │ └── index.vue │ │ │ ├── timeline │ │ │ │ └── index.vue │ │ │ ├── tooltip │ │ │ │ └── index.vue │ │ │ ├── topojson-map │ │ │ │ └── index.vue │ │ │ ├── treemap │ │ │ │ └── index.vue │ │ │ └── xy-labels │ │ │ │ └── index.vue │ │ ├── containers.ts │ │ ├── containers │ │ │ ├── single-container │ │ │ │ └── index.vue │ │ │ └── xy-container │ │ │ │ └── index.vue │ │ ├── html-components │ │ │ ├── bullet-legend │ │ │ │ └── index.vue │ │ │ ├── leaflet-flow-map │ │ │ │ └── index.vue │ │ │ ├── leaflet-map │ │ │ │ └── index.vue │ │ │ └── rolling-pin-legend │ │ │ │ └── index.vue │ │ ├── index.ts │ │ ├── shims-vue.d.ts │ │ └── utils │ │ │ ├── context.ts │ │ │ └── props.ts │ ├── tsconfig.json │ └── vite.config.ts └── website │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── babel.config.js │ ├── contributing │ ├── architecture.mdx │ ├── getting-started.mdx │ ├── guides │ │ ├── _category_.json │ │ ├── adding-a-component.mdx │ │ └── gallery-examples.mdx │ ├── intro.mdx │ └── pull-requests.mdx │ ├── docs │ ├── auxiliary │ │ ├── Annotations.mdx │ │ ├── Axis.mdx │ │ ├── Brush.mdx │ │ ├── BulletLegend.mdx │ │ ├── Crosshair.mdx │ │ ├── FreeBrush.mdx │ │ ├── Plotband.mdx │ │ ├── Plotline.mdx │ │ ├── RollingPinLegend.mdx │ │ ├── Tooltip.mdx │ │ └── XYLabels.mdx │ ├── components │ │ ├── css-variables.tsx │ │ └── framework-tabs.tsx │ ├── containers │ │ ├── Single_Container.mdx │ │ ├── XY_Container.mdx │ │ └── styles.css │ ├── guides │ │ ├── js-usage.mdx │ │ ├── styles.css │ │ ├── theming.mdx │ │ └── tips-and-tricks.mdx │ ├── intro.mdx │ ├── maps │ │ ├── LeafletFlowMap.mdx │ │ ├── LeafletMap.mdx │ │ ├── TopoJSONMap.mdx │ │ ├── data │ │ │ ├── areas.json │ │ │ ├── cities.json │ │ │ ├── cities_big.json │ │ │ ├── index.ts │ │ │ ├── topojson_overlay.json │ │ │ └── us_cities.json │ │ └── styles.css │ ├── misc │ │ ├── Donut.mdx │ │ ├── NestedDonut.mdx │ │ └── Treemap.mdx │ ├── networks-and-flows │ │ ├── ChordDiagram.mdx │ │ ├── Graph.mdx │ │ ├── Sankey.mdx │ │ └── assets │ │ │ └── graph-layout-parallel.svg │ ├── quick-start.mdx │ ├── quick-start.snippets.tsx │ ├── styles.css │ ├── utils │ │ ├── code.ts │ │ ├── data.ts │ │ └── parser.ts │ ├── wrappers │ │ ├── base │ │ │ ├── doc-tabs.tsx │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── interactive │ │ │ ├── dynamic-doc-wrapper.tsx │ │ │ ├── index.ts │ │ │ ├── input-doc-wrapper.tsx │ │ │ └── styles.css │ │ ├── types.ts │ │ └── xy-wrapper │ │ │ ├── custom.css │ │ │ └── index.tsx │ └── xy-charts │ │ ├── Area.mdx │ │ ├── GroupedBar.mdx │ │ ├── Line.mdx │ │ ├── Scatter.mdx │ │ ├── StackedBar.mdx │ │ └── Timeline.mdx │ ├── docusaurus.config.js │ ├── licences.txt │ ├── minify-build.js │ ├── package-lock.json │ ├── package.json │ ├── releases │ ├── 1.0.md │ ├── 1.1.md │ ├── 1.2.md │ ├── 1.3.md │ ├── 1.4.md │ ├── 1.5.md │ ├── 1.6.md │ ├── authors.yml │ └── unovis-banner.png │ ├── sidebars.js │ ├── src │ ├── components │ │ ├── GalleryCard │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── GalleryViewer │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── HomepageFeatures │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── HomepageHeader │ │ │ ├── background.tsx │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── HomepageLogos │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── PropsTable │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ └── StackblitzButton │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── gallery │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ └── view.tsx │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── unovis-background.svg │ ├── theme │ │ ├── ColorModeToggle │ │ │ └── index.tsx │ │ ├── DocCard │ │ │ └── index.tsx │ │ └── Tabs │ │ │ └── index.tsx │ ├── types │ │ └── code.ts │ └── utils │ │ ├── stackblitz.ts │ │ └── text.ts │ ├── static │ ├── .nojekyll │ ├── img │ │ ├── open-in-stackblitz.svg │ │ ├── unovis-image-1.svg │ │ ├── unovis-image-2.svg │ │ ├── unovis-image-3.svg │ │ ├── unovis-logo-dark-theme.svg │ │ ├── unovis-logo.svg │ │ ├── unovis-pictogram-square.svg │ │ ├── unovis-pictogram.svg │ │ └── unovis-social.png │ └── logo │ │ ├── f5.svg │ │ ├── nginx-dark.svg │ │ └── nginx.svg │ ├── svelte.config.js │ └── tsconfig.json ├── postinstall.sh ├── tsconfig.json └── update-version.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/f5-cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.github/workflows/f5-cla.yml -------------------------------------------------------------------------------- /.github/workflows/github_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.github/workflows/github_pages.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/cover.png -------------------------------------------------------------------------------- /examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/examples.png -------------------------------------------------------------------------------- /lic-report-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/lic-report-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/package.json -------------------------------------------------------------------------------- /packages/angular/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/LICENSE -------------------------------------------------------------------------------- /packages/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/README.md -------------------------------------------------------------------------------- /packages/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/angular.json -------------------------------------------------------------------------------- /packages/angular/autogen/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/autogen/component.ts -------------------------------------------------------------------------------- /packages/angular/autogen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/autogen/index.ts -------------------------------------------------------------------------------- /packages/angular/autogen/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/autogen/module.ts -------------------------------------------------------------------------------- /packages/angular/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/gallery.js -------------------------------------------------------------------------------- /packages/angular/gallery/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/gallery/src/index.html -------------------------------------------------------------------------------- /packages/angular/gallery/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/gallery/src/main.ts -------------------------------------------------------------------------------- /packages/angular/gallery/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/gallery/src/polyfills.ts -------------------------------------------------------------------------------- /packages/angular/gallery/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/gallery/tsconfig.app.json -------------------------------------------------------------------------------- /packages/angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/karma.conf.js -------------------------------------------------------------------------------- /packages/angular/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/licences.txt -------------------------------------------------------------------------------- /packages/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/ng-package.json -------------------------------------------------------------------------------- /packages/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/package.json -------------------------------------------------------------------------------- /packages/angular/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/rollup.config.js -------------------------------------------------------------------------------- /packages/angular/src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components.ts -------------------------------------------------------------------------------- /packages/angular/src/components/area/area.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/area/area.component.ts -------------------------------------------------------------------------------- /packages/angular/src/components/area/area.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/area/area.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/axis/axis.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/axis/axis.component.ts -------------------------------------------------------------------------------- /packages/angular/src/components/axis/axis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/axis/axis.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/brush/brush.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/brush/brush.component.ts -------------------------------------------------------------------------------- /packages/angular/src/components/brush/brush.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/brush/brush.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/donut/donut.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/donut/donut.component.ts -------------------------------------------------------------------------------- /packages/angular/src/components/donut/donut.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/donut/donut.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/graph/graph.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/graph/graph.component.ts -------------------------------------------------------------------------------- /packages/angular/src/components/graph/graph.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/graph/graph.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/line/line.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/line/line.component.ts -------------------------------------------------------------------------------- /packages/angular/src/components/line/line.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/line/line.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/plotband/plotband.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/plotband/plotband.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/plotline/plotline.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/plotline/plotline.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/sankey/sankey.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/sankey/sankey.component.ts -------------------------------------------------------------------------------- /packages/angular/src/components/sankey/sankey.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/sankey/sankey.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/scatter/scatter.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/scatter/scatter.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/timeline/timeline.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/timeline/timeline.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/tooltip/tooltip.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/tooltip/tooltip.module.ts -------------------------------------------------------------------------------- /packages/angular/src/components/treemap/treemap.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/components/treemap/treemap.module.ts -------------------------------------------------------------------------------- /packages/angular/src/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/containers.ts -------------------------------------------------------------------------------- /packages/angular/src/core/core-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/core/core-component.ts -------------------------------------------------------------------------------- /packages/angular/src/core/generic-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/core/generic-component.ts -------------------------------------------------------------------------------- /packages/angular/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/core/index.ts -------------------------------------------------------------------------------- /packages/angular/src/core/xy-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/core/xy-component.ts -------------------------------------------------------------------------------- /packages/angular/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/src/public-api.ts -------------------------------------------------------------------------------- /packages/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/tsconfig.json -------------------------------------------------------------------------------- /packages/angular/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/angular/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /packages/angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/angular/tsconfig.spec.json -------------------------------------------------------------------------------- /packages/dev/.percy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/.percy.json -------------------------------------------------------------------------------- /packages/dev/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress.config.ts -------------------------------------------------------------------------------- /packages/dev/cypress/e2e/tooltip.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress/e2e/tooltip.cy.ts -------------------------------------------------------------------------------- /packages/dev/cypress/e2e/unovis.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress/e2e/unovis.cy.ts -------------------------------------------------------------------------------- /packages/dev/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress/support/commands.ts -------------------------------------------------------------------------------- /packages/dev/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress/support/component-index.html -------------------------------------------------------------------------------- /packages/dev/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress/support/component.ts -------------------------------------------------------------------------------- /packages/dev/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress/support/e2e.ts -------------------------------------------------------------------------------- /packages/dev/cypress/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/cypress/urls.ts -------------------------------------------------------------------------------- /packages/dev/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/licences.txt -------------------------------------------------------------------------------- /packages/dev/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/package-lock.json -------------------------------------------------------------------------------- /packages/dev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/package.json -------------------------------------------------------------------------------- /packages/dev/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/public/favicon.svg -------------------------------------------------------------------------------- /packages/dev/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/public/index.html -------------------------------------------------------------------------------- /packages/dev/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/App.module.css -------------------------------------------------------------------------------- /packages/dev/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/App.tsx -------------------------------------------------------------------------------- /packages/dev/src/components/ExampleViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/ExampleViewer/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/components/ExampleViewer/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/ExampleViewer/style.module.css -------------------------------------------------------------------------------- /packages/dev/src/components/NavigationItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/NavigationItem/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/components/NavigationItem/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/NavigationItem/style.module.css -------------------------------------------------------------------------------- /packages/dev/src/components/NavigationSideBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/NavigationSideBar/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/components/ThemeSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/ThemeSelector/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/components/ThemeSelector/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/ThemeSelector/style.module.css -------------------------------------------------------------------------------- /packages/dev/src/components/TransitionComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/components/TransitionComponent/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/dev/src/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/index.ts -------------------------------------------------------------------------------- /packages/dev/src/examples/maps/leaflet/leaflet-map-colorMap/style.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/dev/src/examples/maps/topojson/all-maps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/maps/topojson/all-maps/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/maps/topojson/world-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/maps/topojson/world-map/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/misc/donut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/misc/donut/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/misc/nested-donut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/misc/nested-donut/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/misc/treemap/basic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/misc/treemap/basic/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/misc/treemap/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/misc/treemap/search/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/xy-components/area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/xy-components/area/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/xy-components/dual-axis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/xy-components/dual-axis/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/xy-components/plotband/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/xy-components/plotband/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/xy-components/plotline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/xy-components/plotline/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/examples/xy-components/timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/examples/xy-components/timeline/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/global.d.ts -------------------------------------------------------------------------------- /packages/dev/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/index.tsx -------------------------------------------------------------------------------- /packages/dev/src/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/utils/array.ts -------------------------------------------------------------------------------- /packages/dev/src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/utils/data.ts -------------------------------------------------------------------------------- /packages/dev/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/src/utils/text.ts -------------------------------------------------------------------------------- /packages/dev/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/tsconfig.json -------------------------------------------------------------------------------- /packages/dev/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/dev/webpack.config.js -------------------------------------------------------------------------------- /packages/react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/LICENSE -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/autogen/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/autogen/component.ts -------------------------------------------------------------------------------- /packages/react/autogen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/autogen/index.ts -------------------------------------------------------------------------------- /packages/react/autogen/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/autogen/rollup.config.js -------------------------------------------------------------------------------- /packages/react/autogen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/autogen/tsconfig.json -------------------------------------------------------------------------------- /packages/react/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dist' 2 | -------------------------------------------------------------------------------- /packages/react/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/licences.txt -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/rollup.config.js -------------------------------------------------------------------------------- /packages/react/src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components.ts -------------------------------------------------------------------------------- /packages/react/src/components/annotations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/annotations/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/area/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/axis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/axis/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/brush/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/brush/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/chord-diagram/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/chord-diagram/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/crosshair/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/crosshair/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/donut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/donut/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/free-brush/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/free-brush/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/graph/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/grouped-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/grouped-bar/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/line/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/line/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/nested-donut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/nested-donut/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plotband/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/plotband/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plotline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/plotline/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/sankey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/sankey/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/scatter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/scatter/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/stacked-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/stacked-bar/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/timeline/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/tooltip/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/topojson-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/topojson-map/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/treemap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/treemap/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/xy-labels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/components/xy-labels/index.tsx -------------------------------------------------------------------------------- /packages/react/src/composites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/composites.ts -------------------------------------------------------------------------------- /packages/react/src/composites/time-series/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/composites/time-series/index.tsx -------------------------------------------------------------------------------- /packages/react/src/composites/time-series/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/composites/time-series/style.module.css -------------------------------------------------------------------------------- /packages/react/src/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/containers.ts -------------------------------------------------------------------------------- /packages/react/src/containers/single-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/containers/single-container/index.tsx -------------------------------------------------------------------------------- /packages/react/src/containers/xy-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/containers/xy-container/index.tsx -------------------------------------------------------------------------------- /packages/react/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/react/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/global.d.ts -------------------------------------------------------------------------------- /packages/react/src/html-components/bullet-legend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/html-components/bullet-legend/index.tsx -------------------------------------------------------------------------------- /packages/react/src/html-components/leaflet-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/html-components/leaflet-map/index.tsx -------------------------------------------------------------------------------- /packages/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/index.ts -------------------------------------------------------------------------------- /packages/react/src/types/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/types/dom.ts -------------------------------------------------------------------------------- /packages/react/src/utils/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/src/utils/react.ts -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/react/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/shared/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/shared/examples/_previews/advanced-leaflet-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/advanced-leaflet-map.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/baseline-area-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/baseline-area-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-annotations.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-donut-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-donut-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-grouped-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-grouped-bar.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-leaflet-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-leaflet-map.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-line-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-sankey-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-sankey-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-sankey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-sankey.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-scatter-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-scatter-plot.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-timeline-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-timeline-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/basic-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/basic-timeline.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/brush-grouped-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/brush-grouped-bar.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/custom-nodes-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/custom-nodes-graph.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/dagre-graph-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/dagre-graph-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/dagre-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/dagre-graph.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/data-gap-line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/data-gap-line-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/dual-axis-chart-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/dual-axis-chart-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/dual-axis-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/dual-axis-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/elk-layered-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/elk-layered-graph.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/expandable-sankey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/expandable-sankey.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/force-graph-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/force-graph-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/force-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/force-graph.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/free-brush-scatters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/free-brush-scatters.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/leaflet-flow-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/leaflet-flow-map.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/multi-line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/multi-line-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/parallel-graph-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/parallel-graph-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/parallel-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/parallel-graph.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/patchy-line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/patchy-line-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/plotband-plotline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/plotband-plotline.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/range-plot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/range-plot-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/range-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/range-plot.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/shaped-scatter-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/shaped-scatter-plot.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/sized-scatter-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/sized-scatter-plot.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/stacked-area-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/stacked-area-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/step-area-chart-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/step-area-chart-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/step-area-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/step-area-chart.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/topojson-map-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/topojson-map-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/topojson-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/topojson-map.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/treemap-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/treemap-dark.png -------------------------------------------------------------------------------- /packages/shared/examples/_previews/treemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/_previews/treemap.png -------------------------------------------------------------------------------- /packages/shared/examples/advanced-leaflet-map/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/advanced-leaflet-map/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/advanced-leaflet-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/advanced-leaflet-map/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/baseline-area-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/baseline-area-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/baseline-area-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/baseline-area-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-annotations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-annotations/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-annotations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-annotations/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-donut-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-donut-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-donut-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-donut-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-grouped-bar/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-grouped-bar/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-grouped-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-grouped-bar/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-leaflet-map/constants.ts: -------------------------------------------------------------------------------- 1 | export const mapKey = 'LNln6dGJDxyBa7F3c7Gd' 2 | -------------------------------------------------------------------------------- /packages/shared/examples/basic-leaflet-map/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-leaflet-map/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-leaflet-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-leaflet-map/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-line-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-line-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-line-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-line-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-sankey/basic-sankey.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-sankey/basic-sankey.svelte -------------------------------------------------------------------------------- /packages/shared/examples/basic-sankey/basic-sankey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-sankey/basic-sankey.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-sankey/basic-sankey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-sankey/basic-sankey.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-sankey/basic-sankey.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-sankey/basic-sankey.vue -------------------------------------------------------------------------------- /packages/shared/examples/basic-sankey/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-sankey/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-sankey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-sankey/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-scatter-plot/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-scatter-plot/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-scatter-plot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-scatter-plot/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-timeline/basic-timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-timeline/basic-timeline.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-timeline/basic-timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-timeline/basic-timeline.tsx -------------------------------------------------------------------------------- /packages/shared/examples/basic-timeline/basic-timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-timeline/basic-timeline.vue -------------------------------------------------------------------------------- /packages/shared/examples/basic-timeline/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-timeline/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/basic-timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/basic-timeline/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/brush-grouped-bar/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/brush-grouped-bar/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/brush-grouped-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/brush-grouped-bar/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/crosshair-stacked-bar/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/crosshair-stacked-bar/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/crosshair-stacked-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/crosshair-stacked-bar/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/custom-nodes-graph/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/custom-nodes-graph/constants.ts -------------------------------------------------------------------------------- /packages/shared/examples/custom-nodes-graph/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/custom-nodes-graph/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/custom-nodes-graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/custom-nodes-graph/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/custom-nodes-graph/styles.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap'); 2 | -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/dagre-graph-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/dagre-graph-solid.tsx -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/dagre-graph.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/dagre-graph.module.ts -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/dagre-graph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/dagre-graph.svelte -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/dagre-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/dagre-graph.ts -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/dagre-graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/dagre-graph.tsx -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/dagre-graph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/dagre-graph.vue -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/dagre-graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dagre-graph/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/data-gap-line-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/data-gap-line-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/data-gap-line-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/data-gap-line-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/data-gap-line-chart/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/data-gap-line-chart/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/dual-axis-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dual-axis-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/dual-axis-chart/dual-axis-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dual-axis-chart/dual-axis-chart.ts -------------------------------------------------------------------------------- /packages/shared/examples/dual-axis-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dual-axis-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/dual-axis-chart/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/dual-axis-chart/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/elk-layered-graph/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/elk-layered-graph/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/elk-layered-graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/elk-layered-graph/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/elk-layered-graph/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/elk-layered-graph/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/examples-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/examples-list.tsx -------------------------------------------------------------------------------- /packages/shared/examples/expandable-sankey/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/expandable-sankey/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/expandable-sankey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/expandable-sankey/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/force-graph-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/force-graph-solid.tsx -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/force-graph.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/force-graph.module.ts -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/force-graph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/force-graph.svelte -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/force-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/force-graph.ts -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/force-graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/force-graph.tsx -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/force-graph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/force-graph.vue -------------------------------------------------------------------------------- /packages/shared/examples/force-graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/force-graph/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/free-brush-scatters/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/free-brush-scatters/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/free-brush-scatters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/free-brush-scatters/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/free-brush-scatters/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/free-brush-scatters/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/hierarchical-chord-diagram/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/hierarchical-chord-diagram/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/leaflet-flow-map/constants.ts: -------------------------------------------------------------------------------- 1 | export const mapKey = 'LNln6dGJDxyBa7F3c7Gd' 2 | -------------------------------------------------------------------------------- /packages/shared/examples/leaflet-flow-map/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/leaflet-flow-map/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/leaflet-flow-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/leaflet-flow-map/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/leaflet-flow-map/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/leaflet-flow-map/preview.jpg -------------------------------------------------------------------------------- /packages/shared/examples/multi-line-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/multi-line-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/multi-line-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/multi-line-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/non-stacked-area-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/non-stacked-area-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/non-stacked-area-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/non-stacked-area-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/parallel-graph/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/parallel-graph/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/parallel-graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/parallel-graph/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/parallel-graph/parallel-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/parallel-graph/parallel-graph.ts -------------------------------------------------------------------------------- /packages/shared/examples/parallel-graph/parallel-graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/parallel-graph/parallel-graph.tsx -------------------------------------------------------------------------------- /packages/shared/examples/parallel-graph/parallel-graph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/parallel-graph/parallel-graph.vue -------------------------------------------------------------------------------- /packages/shared/examples/parallel-graph/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/parallel-graph/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/patchy-line-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/patchy-line-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/patchy-line-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/patchy-line-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/patchy-line-chart/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/patchy-line-chart/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/plotband-plotline/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/plotband-plotline/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/plotband-plotline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/plotband-plotline/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/range-plot-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/range-plot-solid.tsx -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/range-plot.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/range-plot.component.ts -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/range-plot.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/range-plot.module.ts -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/range-plot.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/range-plot.svelte -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/range-plot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/range-plot.ts -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/range-plot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/range-plot.tsx -------------------------------------------------------------------------------- /packages/shared/examples/range-plot/range-plot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/range-plot/range-plot.vue -------------------------------------------------------------------------------- /packages/shared/examples/shaped-scatter-plot/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/shaped-scatter-plot/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/shaped-scatter-plot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/shaped-scatter-plot/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/sized-scatter-plot/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/sized-scatter-plot/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/sized-scatter-plot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/sized-scatter-plot/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/stacked-area-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/stacked-area-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/stacked-area-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/stacked-area-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/step-area-chart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/step-area-chart/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/step-area-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/step-area-chart/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/step-area-chart/step-area-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/step-area-chart/step-area-chart.ts -------------------------------------------------------------------------------- /packages/shared/examples/step-area-chart/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/step-area-chart/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/sunburst-nested-donut/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/sunburst-nested-donut/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/sunburst-nested-donut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/sunburst-nested-donut/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/sunburst-nested-donut/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/sunburst-nested-donut/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/topojson-map/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/topojson-map/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/topojson-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/topojson-map/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/topojson-map/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/topojson-map/styles.css -------------------------------------------------------------------------------- /packages/shared/examples/topojson-map/topojson-map.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/topojson-map/topojson-map.svelte -------------------------------------------------------------------------------- /packages/shared/examples/topojson-map/topojson-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/topojson-map/topojson-map.ts -------------------------------------------------------------------------------- /packages/shared/examples/topojson-map/topojson-map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/topojson-map/topojson-map.tsx -------------------------------------------------------------------------------- /packages/shared/examples/topojson-map/topojson-map.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/topojson-map/topojson-map.vue -------------------------------------------------------------------------------- /packages/shared/examples/treemap/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/data.ts -------------------------------------------------------------------------------- /packages/shared/examples/treemap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/index.tsx -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap-solid.tsx -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap.component.html -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap.component.ts -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap.module.ts -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap.svelte -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap.ts -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap.tsx -------------------------------------------------------------------------------- /packages/shared/examples/treemap/treemap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/treemap/treemap.vue -------------------------------------------------------------------------------- /packages/shared/examples/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/examples/types.ts -------------------------------------------------------------------------------- /packages/shared/integrations/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/integrations/components.ts -------------------------------------------------------------------------------- /packages/shared/integrations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/integrations/types.ts -------------------------------------------------------------------------------- /packages/shared/integrations/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/integrations/utils.ts -------------------------------------------------------------------------------- /packages/shared/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/licences.txt -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/package.json -------------------------------------------------------------------------------- /packages/shared/tsconfig.angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/tsconfig.angular.json -------------------------------------------------------------------------------- /packages/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/tsconfig.json -------------------------------------------------------------------------------- /packages/shared/tsconfig.svelte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/shared/tsconfig.svelte.json -------------------------------------------------------------------------------- /packages/solid/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/solid/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/.prettierrc -------------------------------------------------------------------------------- /packages/solid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/LICENSE -------------------------------------------------------------------------------- /packages/solid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/README.md -------------------------------------------------------------------------------- /packages/solid/autogen/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/autogen/component.ts -------------------------------------------------------------------------------- /packages/solid/autogen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/autogen/index.ts -------------------------------------------------------------------------------- /packages/solid/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './dist/index.d.ts' 2 | -------------------------------------------------------------------------------- /packages/solid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/index.html -------------------------------------------------------------------------------- /packages/solid/index.js: -------------------------------------------------------------------------------- 1 | export * from './dist/index.js' 2 | -------------------------------------------------------------------------------- /packages/solid/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/licences.txt -------------------------------------------------------------------------------- /packages/solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/package.json -------------------------------------------------------------------------------- /packages/solid/src-demo/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src-demo/app.tsx -------------------------------------------------------------------------------- /packages/solid/src-demo/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src-demo/main.css -------------------------------------------------------------------------------- /packages/solid/src-demo/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src-demo/main.tsx -------------------------------------------------------------------------------- /packages/solid/src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components.ts -------------------------------------------------------------------------------- /packages/solid/src/components/annotations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/annotations/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/area/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/axis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/axis/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/brush/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/brush/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/chord-diagram/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/chord-diagram/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/crosshair/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/crosshair/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/donut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/donut/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/free-brush/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/free-brush/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/graph/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/grouped-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/grouped-bar/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/line/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/line/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/nested-donut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/nested-donut/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/plotband/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/plotband/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/plotline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/plotline/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/sankey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/sankey/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/scatter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/scatter/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/stacked-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/stacked-bar/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/timeline/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/tooltip/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/topojson-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/topojson-map/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/treemap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/treemap/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/components/xy-labels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/components/xy-labels/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/containers.ts -------------------------------------------------------------------------------- /packages/solid/src/containers/single-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/containers/single-container/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/containers/xy-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/containers/xy-container/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/html-components/bullet-legend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/html-components/bullet-legend/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/html-components/leaflet-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/html-components/leaflet-map/index.tsx -------------------------------------------------------------------------------- /packages/solid/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/index.ts -------------------------------------------------------------------------------- /packages/solid/src/utils/combine-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/utils/combine-style.ts -------------------------------------------------------------------------------- /packages/solid/src/utils/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/utils/context.ts -------------------------------------------------------------------------------- /packages/solid/src/utils/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/utils/props.ts -------------------------------------------------------------------------------- /packages/solid/src/utils/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/src/utils/trigger.ts -------------------------------------------------------------------------------- /packages/solid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/tsconfig.json -------------------------------------------------------------------------------- /packages/solid/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/solid/vite.config.ts -------------------------------------------------------------------------------- /packages/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/svelte/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/LICENSE -------------------------------------------------------------------------------- /packages/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/README.md -------------------------------------------------------------------------------- /packages/svelte/autogen/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/autogen/component.ts -------------------------------------------------------------------------------- /packages/svelte/autogen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/autogen/index.ts -------------------------------------------------------------------------------- /packages/svelte/autogen/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/autogen/rollup.config.js -------------------------------------------------------------------------------- /packages/svelte/autogen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/autogen/tsconfig.json -------------------------------------------------------------------------------- /packages/svelte/gallery.rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/gallery.rollup.config.js -------------------------------------------------------------------------------- /packages/svelte/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/index.js -------------------------------------------------------------------------------- /packages/svelte/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/licences.txt -------------------------------------------------------------------------------- /packages/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/package.json -------------------------------------------------------------------------------- /packages/svelte/src-demo/svelte-gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src-demo/svelte-gallery.html -------------------------------------------------------------------------------- /packages/svelte/src-demo/svelte-gallery.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src-demo/svelte-gallery.svelte -------------------------------------------------------------------------------- /packages/svelte/src-demo/svelte-gallery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src-demo/svelte-gallery.ts -------------------------------------------------------------------------------- /packages/svelte/src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components.ts -------------------------------------------------------------------------------- /packages/svelte/src/components/area/area.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/area/area.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/axis/axis.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/axis/axis.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/brush/brush.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/brush/brush.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/crosshair/crosshair.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/crosshair/crosshair.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/donut/donut.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/donut/donut.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/free-brush/free-brush.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/free-brush/free-brush.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/graph/graph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/graph/graph.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/line/line.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/line/line.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/plotband/plotband.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/plotband/plotband.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/plotline/plotline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/plotline/plotline.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/sankey/sankey.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/sankey/sankey.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/scatter/scatter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/scatter/scatter.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/timeline/timeline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/timeline/timeline.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/tooltip/tooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/tooltip/tooltip.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/treemap/treemap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/treemap/treemap.svelte -------------------------------------------------------------------------------- /packages/svelte/src/components/xy-labels/xy-labels.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/components/xy-labels/xy-labels.svelte -------------------------------------------------------------------------------- /packages/svelte/src/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/containers.ts -------------------------------------------------------------------------------- /packages/svelte/src/declarations.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/svelte/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/index.ts -------------------------------------------------------------------------------- /packages/svelte/src/types/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/types/context.ts -------------------------------------------------------------------------------- /packages/svelte/src/utils/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/src/utils/props.ts -------------------------------------------------------------------------------- /packages/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/svelte.config.js -------------------------------------------------------------------------------- /packages/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/svelte/tsconfig.json -------------------------------------------------------------------------------- /packages/ts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/LICENSE -------------------------------------------------------------------------------- /packages/ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/README.md -------------------------------------------------------------------------------- /packages/ts/declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/declaration.d.ts -------------------------------------------------------------------------------- /packages/ts/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/global.d.ts -------------------------------------------------------------------------------- /packages/ts/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dist' 2 | -------------------------------------------------------------------------------- /packages/ts/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/licences.txt -------------------------------------------------------------------------------- /packages/ts/maps.ts: -------------------------------------------------------------------------------- 1 | export * from './dist/maps' 2 | -------------------------------------------------------------------------------- /packages/ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/package.json -------------------------------------------------------------------------------- /packages/ts/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/rollup.config.js -------------------------------------------------------------------------------- /packages/ts/rules/ts-getter-setter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/rules/ts-getter-setter.js -------------------------------------------------------------------------------- /packages/ts/src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components.ts -------------------------------------------------------------------------------- /packages/ts/src/components/annotations/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/annotations/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/annotations/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/annotations/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/annotations/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/annotations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/annotations/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/area/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/area/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/area/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/area/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/area/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/area/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/area/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/axis/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/axis/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/axis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/axis/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/axis/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/axis/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/axis/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/axis/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/brush/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/brush/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/brush/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/brush/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/brush/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/brush/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/brush/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/brush/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/bullet-legend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/bullet-legend/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/bullet-legend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/bullet-legend/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/bullet-legend/modules/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/bullet-legend/modules/shape.ts -------------------------------------------------------------------------------- /packages/ts/src/components/bullet-legend/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/bullet-legend/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/bullet-legend/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/bullet-legend/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/modules/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/modules/label.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/modules/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/modules/layout.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/modules/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/modules/link.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/modules/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/modules/node.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/chord-diagram/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/chord-diagram/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/crosshair/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/crosshair/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/crosshair/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/crosshair/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/crosshair/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/crosshair/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/crosshair/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/crosshair/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/donut/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/donut/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/donut/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/donut/constants.ts -------------------------------------------------------------------------------- /packages/ts/src/components/donut/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/donut/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/donut/modules/arc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/donut/modules/arc.ts -------------------------------------------------------------------------------- /packages/ts/src/components/donut/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/donut/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/donut/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/donut/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/flow-legend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/flow-legend/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/flow-legend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/flow-legend/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/flow-legend/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/flow-legend/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/flow-legend/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/flow-legend/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/free-brush/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/free-brush/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/free-brush/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/free-brush/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/free-brush/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/free-brush/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/free-brush/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/free-brush/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/layout-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/layout-helpers.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/layout.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/link/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/link/helper.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/link/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/link/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/link/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/node/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/node/helper.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/node/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/node/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/node/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/panel/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/panel/helper.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/panel/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/panel/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/panel/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/shape.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/modules/zoom-levels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/modules/zoom-levels.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/graph/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/graph/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/grouped-bar/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/grouped-bar/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/grouped-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/grouped-bar/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/grouped-bar/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/grouped-bar/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-flow-map/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-flow-map/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-flow-map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-flow-map/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-flow-map/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-flow-map/renderer.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-flow-map/shaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-flow-map/shaders.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-flow-map/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-flow-map/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/leaflet.css -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/modules/donut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/modules/donut.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/modules/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/modules/map.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/modules/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/modules/node.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/modules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/modules/utils.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/leaflet-map/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/leaflet-map/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/line/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/line/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/line/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/line/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/line/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/line/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/line/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/line/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/nested-donut/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/nested-donut/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/nested-donut/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/nested-donut/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/nested-donut/modules/arc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/nested-donut/modules/arc.ts -------------------------------------------------------------------------------- /packages/ts/src/components/nested-donut/modules/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/nested-donut/modules/label.ts -------------------------------------------------------------------------------- /packages/ts/src/components/nested-donut/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/nested-donut/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/nested-donut/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/nested-donut/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotband/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotband/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotband/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotband/constants.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotband/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotband/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotband/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotband/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotband/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotband/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotline/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotline/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotline/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotline/constants.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotline/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotline/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotline/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/plotline/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/plotline/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/rolling-pin-legend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/rolling-pin-legend/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/rolling-pin-legend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/rolling-pin-legend/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/rolling-pin-legend/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/rolling-pin-legend/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/rolling-pin-legend/types.ts: -------------------------------------------------------------------------------- 1 | export type RollingPinLegendItem = string; 2 | -------------------------------------------------------------------------------- /packages/ts/src/components/sankey/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/sankey/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/sankey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/sankey/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/sankey/modules/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/sankey/modules/label.ts -------------------------------------------------------------------------------- /packages/ts/src/components/sankey/modules/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/sankey/modules/link.ts -------------------------------------------------------------------------------- /packages/ts/src/components/sankey/modules/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/sankey/modules/node.ts -------------------------------------------------------------------------------- /packages/ts/src/components/sankey/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/sankey/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/sankey/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/sankey/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/scatter/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/scatter/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/scatter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/scatter/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/scatter/modules/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/scatter/modules/point.ts -------------------------------------------------------------------------------- /packages/ts/src/components/scatter/modules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/scatter/modules/utils.ts -------------------------------------------------------------------------------- /packages/ts/src/components/scatter/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/scatter/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/scatter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/scatter/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/stacked-bar/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/stacked-bar/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/stacked-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/stacked-bar/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/stacked-bar/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/stacked-bar/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/stacked-bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/stacked-bar/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/timeline/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/timeline/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/timeline/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/timeline/constants.ts -------------------------------------------------------------------------------- /packages/ts/src/components/timeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/timeline/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/timeline/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/timeline/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/timeline/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/timeline/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/timeline/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/timeline/utils.ts -------------------------------------------------------------------------------- /packages/ts/src/components/tooltip/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/tooltip/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/tooltip/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/tooltip/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/tooltip/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/topojson-map/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/topojson-map/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/topojson-map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/topojson-map/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/topojson-map/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/topojson-map/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/topojson-map/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/topojson-map/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/topojson-map/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/topojson-map/utils.ts -------------------------------------------------------------------------------- /packages/ts/src/components/treemap/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/treemap/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/treemap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/treemap/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/treemap/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/treemap/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/treemap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/treemap/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/vis-controls/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/vis-controls/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/vis-controls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/vis-controls/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/vis-controls/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/vis-controls/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/vis-controls/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/vis-controls/types.ts -------------------------------------------------------------------------------- /packages/ts/src/components/xy-labels/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/xy-labels/config.ts -------------------------------------------------------------------------------- /packages/ts/src/components/xy-labels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/xy-labels/index.ts -------------------------------------------------------------------------------- /packages/ts/src/components/xy-labels/modules/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/xy-labels/modules/label.ts -------------------------------------------------------------------------------- /packages/ts/src/components/xy-labels/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/xy-labels/style.ts -------------------------------------------------------------------------------- /packages/ts/src/components/xy-labels/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/components/xy-labels/types.ts -------------------------------------------------------------------------------- /packages/ts/src/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/containers.ts -------------------------------------------------------------------------------- /packages/ts/src/containers/single-container/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/containers/single-container/config.ts -------------------------------------------------------------------------------- /packages/ts/src/containers/single-container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/containers/single-container/index.ts -------------------------------------------------------------------------------- /packages/ts/src/containers/xy-container/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/containers/xy-container/config.ts -------------------------------------------------------------------------------- /packages/ts/src/containers/xy-container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/containers/xy-container/index.ts -------------------------------------------------------------------------------- /packages/ts/src/core/component/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/core/component/config.ts -------------------------------------------------------------------------------- /packages/ts/src/core/component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/core/component/index.ts -------------------------------------------------------------------------------- /packages/ts/src/core/component/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/core/component/types.ts -------------------------------------------------------------------------------- /packages/ts/src/core/container/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/core/container/config.ts -------------------------------------------------------------------------------- /packages/ts/src/core/container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/core/container/index.ts -------------------------------------------------------------------------------- /packages/ts/src/core/xy-component/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/core/xy-component/config.ts -------------------------------------------------------------------------------- /packages/ts/src/core/xy-component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/core/xy-component/index.ts -------------------------------------------------------------------------------- /packages/ts/src/data-models/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/data-models/core.ts -------------------------------------------------------------------------------- /packages/ts/src/data-models/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/data-models/graph.ts -------------------------------------------------------------------------------- /packages/ts/src/data-models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/data-models/index.ts -------------------------------------------------------------------------------- /packages/ts/src/data-models/map-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/data-models/map-graph.ts -------------------------------------------------------------------------------- /packages/ts/src/data-models/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/data-models/map.ts -------------------------------------------------------------------------------- /packages/ts/src/data-models/series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/data-models/series.ts -------------------------------------------------------------------------------- /packages/ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/index.ts -------------------------------------------------------------------------------- /packages/ts/src/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps.ts -------------------------------------------------------------------------------- /packages/ts/src/maps/china-provinces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/china-provinces.json -------------------------------------------------------------------------------- /packages/ts/src/maps/fr-regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/fr-regions.json -------------------------------------------------------------------------------- /packages/ts/src/maps/germany-regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/germany-regions.json -------------------------------------------------------------------------------- /packages/ts/src/maps/ind-regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/ind-regions.json -------------------------------------------------------------------------------- /packages/ts/src/maps/uk-regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/uk-regions.json -------------------------------------------------------------------------------- /packages/ts/src/maps/us-counties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/us-counties.json -------------------------------------------------------------------------------- /packages/ts/src/maps/us-states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/us-states.json -------------------------------------------------------------------------------- /packages/ts/src/maps/world-110m-alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/world-110m-alpha.json -------------------------------------------------------------------------------- /packages/ts/src/maps/world-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/world-simple.json -------------------------------------------------------------------------------- /packages/ts/src/maps/world-simplest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/maps/world-simplest.json -------------------------------------------------------------------------------- /packages/ts/src/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/styles/colors.ts -------------------------------------------------------------------------------- /packages/ts/src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/styles/index.ts -------------------------------------------------------------------------------- /packages/ts/src/styles/patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/styles/patterns.ts -------------------------------------------------------------------------------- /packages/ts/src/styles/sizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/styles/sizes.ts -------------------------------------------------------------------------------- /packages/ts/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types.ts -------------------------------------------------------------------------------- /packages/ts/src/types/accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/accessor.ts -------------------------------------------------------------------------------- /packages/ts/src/types/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/component.ts -------------------------------------------------------------------------------- /packages/ts/src/types/curve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/curve.ts -------------------------------------------------------------------------------- /packages/ts/src/types/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/data.ts -------------------------------------------------------------------------------- /packages/ts/src/types/direction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/direction.ts -------------------------------------------------------------------------------- /packages/ts/src/types/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/graph.ts -------------------------------------------------------------------------------- /packages/ts/src/types/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/map.ts -------------------------------------------------------------------------------- /packages/ts/src/types/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/misc.ts -------------------------------------------------------------------------------- /packages/ts/src/types/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/position.ts -------------------------------------------------------------------------------- /packages/ts/src/types/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/scale.ts -------------------------------------------------------------------------------- /packages/ts/src/types/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/shape.ts -------------------------------------------------------------------------------- /packages/ts/src/types/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/spacing.ts -------------------------------------------------------------------------------- /packages/ts/src/types/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/svg.ts -------------------------------------------------------------------------------- /packages/ts/src/types/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/symbol.ts -------------------------------------------------------------------------------- /packages/ts/src/types/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/types/text.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/color.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/d3.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/data.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/html.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/index.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/map.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/misc.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/path.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/resize-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/resize-observer.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/scale.ts: -------------------------------------------------------------------------------- 1 | export const DefaultRange = [1, 40] 2 | -------------------------------------------------------------------------------- /packages/ts/src/utils/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/style.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/svg.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/text.ts -------------------------------------------------------------------------------- /packages/ts/src/utils/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/src/utils/type.ts -------------------------------------------------------------------------------- /packages/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/ts/tsconfig.json -------------------------------------------------------------------------------- /packages/vue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/LICENSE -------------------------------------------------------------------------------- /packages/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/README.md -------------------------------------------------------------------------------- /packages/vue/autogen/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/autogen/component.ts -------------------------------------------------------------------------------- /packages/vue/autogen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/autogen/index.ts -------------------------------------------------------------------------------- /packages/vue/autogen/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/autogen/rollup.config.js -------------------------------------------------------------------------------- /packages/vue/autogen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/autogen/tsconfig.json -------------------------------------------------------------------------------- /packages/vue/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/eslint.config.js -------------------------------------------------------------------------------- /packages/vue/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './dist/index' 2 | -------------------------------------------------------------------------------- /packages/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/index.html -------------------------------------------------------------------------------- /packages/vue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/index.js -------------------------------------------------------------------------------- /packages/vue/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/licences.txt -------------------------------------------------------------------------------- /packages/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/package.json -------------------------------------------------------------------------------- /packages/vue/src-demo/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src-demo/App.vue -------------------------------------------------------------------------------- /packages/vue/src-demo/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src-demo/main.ts -------------------------------------------------------------------------------- /packages/vue/src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components.ts -------------------------------------------------------------------------------- /packages/vue/src/components/annotations/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/annotations/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/area/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/area/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/axis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/axis/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/brush/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/brush/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/chord-diagram/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/chord-diagram/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/crosshair/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/crosshair/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/donut/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/donut/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/free-brush/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/free-brush/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/graph/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/graph/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/grouped-bar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/grouped-bar/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/line/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/line/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/nested-donut/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/nested-donut/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/plotband/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/plotband/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/plotline/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/plotline/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/sankey/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/sankey/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/scatter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/scatter/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/stacked-bar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/stacked-bar/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/timeline/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/timeline/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/tooltip/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/tooltip/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/topojson-map/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/topojson-map/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/treemap/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/treemap/index.vue -------------------------------------------------------------------------------- /packages/vue/src/components/xy-labels/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/components/xy-labels/index.vue -------------------------------------------------------------------------------- /packages/vue/src/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/containers.ts -------------------------------------------------------------------------------- /packages/vue/src/containers/single-container/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/containers/single-container/index.vue -------------------------------------------------------------------------------- /packages/vue/src/containers/xy-container/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/containers/xy-container/index.vue -------------------------------------------------------------------------------- /packages/vue/src/html-components/bullet-legend/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/html-components/bullet-legend/index.vue -------------------------------------------------------------------------------- /packages/vue/src/html-components/leaflet-flow-map/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/html-components/leaflet-flow-map/index.vue -------------------------------------------------------------------------------- /packages/vue/src/html-components/leaflet-map/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/html-components/leaflet-map/index.vue -------------------------------------------------------------------------------- /packages/vue/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/index.ts -------------------------------------------------------------------------------- /packages/vue/src/shims-vue.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.vue'; 2 | -------------------------------------------------------------------------------- /packages/vue/src/utils/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/utils/context.ts -------------------------------------------------------------------------------- /packages/vue/src/utils/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/src/utils/props.ts -------------------------------------------------------------------------------- /packages/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/tsconfig.json -------------------------------------------------------------------------------- /packages/vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/vue/vite.config.ts -------------------------------------------------------------------------------- /packages/website/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/.gitignore -------------------------------------------------------------------------------- /packages/website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/babel.config.js -------------------------------------------------------------------------------- /packages/website/contributing/architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/contributing/architecture.mdx -------------------------------------------------------------------------------- /packages/website/contributing/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/contributing/getting-started.mdx -------------------------------------------------------------------------------- /packages/website/contributing/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/contributing/guides/_category_.json -------------------------------------------------------------------------------- /packages/website/contributing/guides/adding-a-component.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/contributing/guides/adding-a-component.mdx -------------------------------------------------------------------------------- /packages/website/contributing/guides/gallery-examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/contributing/guides/gallery-examples.mdx -------------------------------------------------------------------------------- /packages/website/contributing/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/contributing/intro.mdx -------------------------------------------------------------------------------- /packages/website/contributing/pull-requests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/contributing/pull-requests.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/Annotations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/Annotations.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/Axis.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/Axis.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/Brush.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/Brush.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/BulletLegend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/BulletLegend.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/Crosshair.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/Crosshair.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/FreeBrush.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/FreeBrush.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/Plotband.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/Plotband.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/Plotline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/Plotline.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/RollingPinLegend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/RollingPinLegend.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/Tooltip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/Tooltip.mdx -------------------------------------------------------------------------------- /packages/website/docs/auxiliary/XYLabels.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/auxiliary/XYLabels.mdx -------------------------------------------------------------------------------- /packages/website/docs/components/css-variables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/components/css-variables.tsx -------------------------------------------------------------------------------- /packages/website/docs/components/framework-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/components/framework-tabs.tsx -------------------------------------------------------------------------------- /packages/website/docs/containers/Single_Container.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/containers/Single_Container.mdx -------------------------------------------------------------------------------- /packages/website/docs/containers/XY_Container.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/containers/XY_Container.mdx -------------------------------------------------------------------------------- /packages/website/docs/containers/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/containers/styles.css -------------------------------------------------------------------------------- /packages/website/docs/guides/js-usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/guides/js-usage.mdx -------------------------------------------------------------------------------- /packages/website/docs/guides/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/guides/styles.css -------------------------------------------------------------------------------- /packages/website/docs/guides/theming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/guides/theming.mdx -------------------------------------------------------------------------------- /packages/website/docs/guides/tips-and-tricks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/guides/tips-and-tricks.mdx -------------------------------------------------------------------------------- /packages/website/docs/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/intro.mdx -------------------------------------------------------------------------------- /packages/website/docs/maps/LeafletFlowMap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/LeafletFlowMap.mdx -------------------------------------------------------------------------------- /packages/website/docs/maps/LeafletMap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/LeafletMap.mdx -------------------------------------------------------------------------------- /packages/website/docs/maps/TopoJSONMap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/TopoJSONMap.mdx -------------------------------------------------------------------------------- /packages/website/docs/maps/data/areas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/data/areas.json -------------------------------------------------------------------------------- /packages/website/docs/maps/data/cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/data/cities.json -------------------------------------------------------------------------------- /packages/website/docs/maps/data/cities_big.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/data/cities_big.json -------------------------------------------------------------------------------- /packages/website/docs/maps/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/data/index.ts -------------------------------------------------------------------------------- /packages/website/docs/maps/data/topojson_overlay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/data/topojson_overlay.json -------------------------------------------------------------------------------- /packages/website/docs/maps/data/us_cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/data/us_cities.json -------------------------------------------------------------------------------- /packages/website/docs/maps/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/maps/styles.css -------------------------------------------------------------------------------- /packages/website/docs/misc/Donut.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/misc/Donut.mdx -------------------------------------------------------------------------------- /packages/website/docs/misc/NestedDonut.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/misc/NestedDonut.mdx -------------------------------------------------------------------------------- /packages/website/docs/misc/Treemap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/misc/Treemap.mdx -------------------------------------------------------------------------------- /packages/website/docs/networks-and-flows/ChordDiagram.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/networks-and-flows/ChordDiagram.mdx -------------------------------------------------------------------------------- /packages/website/docs/networks-and-flows/Graph.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/networks-and-flows/Graph.mdx -------------------------------------------------------------------------------- /packages/website/docs/networks-and-flows/Sankey.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/networks-and-flows/Sankey.mdx -------------------------------------------------------------------------------- /packages/website/docs/quick-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/quick-start.mdx -------------------------------------------------------------------------------- /packages/website/docs/quick-start.snippets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/quick-start.snippets.tsx -------------------------------------------------------------------------------- /packages/website/docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/styles.css -------------------------------------------------------------------------------- /packages/website/docs/utils/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/utils/code.ts -------------------------------------------------------------------------------- /packages/website/docs/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/utils/data.ts -------------------------------------------------------------------------------- /packages/website/docs/utils/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/utils/parser.ts -------------------------------------------------------------------------------- /packages/website/docs/wrappers/base/doc-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/base/doc-tabs.tsx -------------------------------------------------------------------------------- /packages/website/docs/wrappers/base/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/base/index.tsx -------------------------------------------------------------------------------- /packages/website/docs/wrappers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/index.ts -------------------------------------------------------------------------------- /packages/website/docs/wrappers/interactive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/interactive/index.ts -------------------------------------------------------------------------------- /packages/website/docs/wrappers/interactive/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/interactive/styles.css -------------------------------------------------------------------------------- /packages/website/docs/wrappers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/types.ts -------------------------------------------------------------------------------- /packages/website/docs/wrappers/xy-wrapper/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/xy-wrapper/custom.css -------------------------------------------------------------------------------- /packages/website/docs/wrappers/xy-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/wrappers/xy-wrapper/index.tsx -------------------------------------------------------------------------------- /packages/website/docs/xy-charts/Area.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/xy-charts/Area.mdx -------------------------------------------------------------------------------- /packages/website/docs/xy-charts/GroupedBar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/xy-charts/GroupedBar.mdx -------------------------------------------------------------------------------- /packages/website/docs/xy-charts/Line.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/xy-charts/Line.mdx -------------------------------------------------------------------------------- /packages/website/docs/xy-charts/Scatter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/xy-charts/Scatter.mdx -------------------------------------------------------------------------------- /packages/website/docs/xy-charts/StackedBar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/xy-charts/StackedBar.mdx -------------------------------------------------------------------------------- /packages/website/docs/xy-charts/Timeline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docs/xy-charts/Timeline.mdx -------------------------------------------------------------------------------- /packages/website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/docusaurus.config.js -------------------------------------------------------------------------------- /packages/website/licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/licences.txt -------------------------------------------------------------------------------- /packages/website/minify-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/minify-build.js -------------------------------------------------------------------------------- /packages/website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/package-lock.json -------------------------------------------------------------------------------- /packages/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/package.json -------------------------------------------------------------------------------- /packages/website/releases/1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/1.0.md -------------------------------------------------------------------------------- /packages/website/releases/1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/1.1.md -------------------------------------------------------------------------------- /packages/website/releases/1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/1.2.md -------------------------------------------------------------------------------- /packages/website/releases/1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/1.3.md -------------------------------------------------------------------------------- /packages/website/releases/1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/1.4.md -------------------------------------------------------------------------------- /packages/website/releases/1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/1.5.md -------------------------------------------------------------------------------- /packages/website/releases/1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/1.6.md -------------------------------------------------------------------------------- /packages/website/releases/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/authors.yml -------------------------------------------------------------------------------- /packages/website/releases/unovis-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/releases/unovis-banner.png -------------------------------------------------------------------------------- /packages/website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/sidebars.js -------------------------------------------------------------------------------- /packages/website/src/components/GalleryCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/components/GalleryCard/index.tsx -------------------------------------------------------------------------------- /packages/website/src/components/GalleryViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/components/GalleryViewer/index.tsx -------------------------------------------------------------------------------- /packages/website/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /packages/website/src/components/HomepageHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/components/HomepageHeader/index.tsx -------------------------------------------------------------------------------- /packages/website/src/components/HomepageLogos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/components/HomepageLogos/index.tsx -------------------------------------------------------------------------------- /packages/website/src/components/PropsTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/components/PropsTable/index.tsx -------------------------------------------------------------------------------- /packages/website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/css/custom.css -------------------------------------------------------------------------------- /packages/website/src/pages/gallery/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/pages/gallery/index.module.css -------------------------------------------------------------------------------- /packages/website/src/pages/gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/pages/gallery/index.tsx -------------------------------------------------------------------------------- /packages/website/src/pages/gallery/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/pages/gallery/view.tsx -------------------------------------------------------------------------------- /packages/website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/pages/index.module.css -------------------------------------------------------------------------------- /packages/website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/pages/index.tsx -------------------------------------------------------------------------------- /packages/website/src/pages/unovis-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/pages/unovis-background.svg -------------------------------------------------------------------------------- /packages/website/src/theme/ColorModeToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/theme/ColorModeToggle/index.tsx -------------------------------------------------------------------------------- /packages/website/src/theme/DocCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/theme/DocCard/index.tsx -------------------------------------------------------------------------------- /packages/website/src/theme/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/theme/Tabs/index.tsx -------------------------------------------------------------------------------- /packages/website/src/types/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/types/code.ts -------------------------------------------------------------------------------- /packages/website/src/utils/stackblitz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/utils/stackblitz.ts -------------------------------------------------------------------------------- /packages/website/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/src/utils/text.ts -------------------------------------------------------------------------------- /packages/website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/website/static/img/open-in-stackblitz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/open-in-stackblitz.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-image-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-image-1.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-image-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-image-2.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-image-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-image-3.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-logo-dark-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-logo-dark-theme.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-logo.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-pictogram-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-pictogram-square.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-pictogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-pictogram.svg -------------------------------------------------------------------------------- /packages/website/static/img/unovis-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/img/unovis-social.png -------------------------------------------------------------------------------- /packages/website/static/logo/f5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/logo/f5.svg -------------------------------------------------------------------------------- /packages/website/static/logo/nginx-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/logo/nginx-dark.svg -------------------------------------------------------------------------------- /packages/website/static/logo/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/static/logo/nginx.svg -------------------------------------------------------------------------------- /packages/website/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/svelte.config.js -------------------------------------------------------------------------------- /packages/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/packages/website/tsconfig.json -------------------------------------------------------------------------------- /postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/postinstall.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5/unovis/HEAD/update-version.sh --------------------------------------------------------------------------------