├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .prettierignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── dev_examples └── remark_example.js ├── jsconfig.json ├── node.api.js ├── package.json ├── prettier.config.js ├── public ├── robots.txt └── static │ ├── btn-border-red.svg │ ├── btn-border.svg │ ├── hero@2x.png │ ├── icon-back.svg │ ├── icon-barrier.svg │ ├── icon-external.svg │ ├── icon-internal.svg │ ├── icon-link.svg │ ├── icon-search.svg │ ├── logos │ ├── favicon.ico │ ├── logo-1024.png │ ├── logo-48.png │ ├── logo-airbnb.png │ ├── logo-airbnb.svg │ ├── logo-fivethirtyeight.svg │ ├── logo-github.svg │ ├── logo-gitter.svg │ ├── logo-ookla.svg │ ├── logo-postmark.svg │ ├── logo-redfin.svg │ ├── logo-tune.svg │ ├── logo-usafacts.svg │ ├── logo-viacom.svg │ └── logo-zillow.svg │ ├── logotype-hero.svg │ ├── native-alt.svg │ ├── native.svg │ ├── robots.txt │ ├── showcase-cumul8.png │ ├── showcase-fivethirtyeight.png │ ├── showcase-postmark.png │ └── showcase-tune.png ├── src ├── app.js ├── content │ ├── common-props │ │ └── common-props.md │ ├── docs │ │ ├── common-container-props.md │ │ ├── create-container.md │ │ ├── victory-animation.md │ │ ├── victory-area.md │ │ ├── victory-axis.md │ │ ├── victory-bar.md │ │ ├── victory-boxplot.md │ │ ├── victory-brush-container.md │ │ ├── victory-brush-line.md │ │ ├── victory-candlestick.md │ │ ├── victory-chart.md │ │ ├── victory-clip-container.md │ │ ├── victory-container.md │ │ ├── victory-cursor-container.md │ │ ├── victory-errorbar.md │ │ ├── victory-group.md │ │ ├── victory-histogram.md │ │ ├── victory-label.md │ │ ├── victory-legend.md │ │ ├── victory-line.md │ │ ├── victory-pie.md │ │ ├── victory-polar-axis.md │ │ ├── victory-portal.md │ │ ├── victory-primitives.md │ │ ├── victory-scatter.md │ │ ├── victory-selection-container.md │ │ ├── victory-shared-events.md │ │ ├── victory-stack.md │ │ ├── victory-theme.md │ │ ├── victory-tooltip.md │ │ ├── victory-transition.md │ │ ├── victory-voronoi-container.md │ │ ├── victory-voronoi.md │ │ └── victory-zoom-container.md │ ├── faq │ │ └── faq.md │ ├── gallery │ │ ├── alternative-events.md │ │ ├── animating-circular-progress-bar.md │ │ ├── area-hover.md │ │ ├── brush-zoom.md │ │ ├── column-chart.md │ │ ├── custom-tooltip-labels.md │ │ ├── histogram-with-slider.md │ │ ├── horizontal-grouped-bars.md │ │ ├── interpolation.md │ │ ├── multiple-dependent-axes.md │ │ ├── multipoint-tooltip-labels.md │ │ ├── parallel-brush-axis.md │ │ ├── polar-cardioid.md │ │ ├── radar-chart.md │ │ ├── stacked-bars-central-axis.md │ │ ├── stacked-grouped-bars.md │ │ ├── stacked-histogram.md │ │ ├── stacked-polar-bars.md │ │ ├── stream-graph.md │ │ ├── victory-area-animation.md │ │ ├── victory-area-stroke.md │ │ ├── victory-line-null-data.md │ │ ├── victory-pie-center-label.md │ │ ├── victory-portal-stacked-area.md │ │ └── voronoi-tooltips-grouped.md │ ├── guides │ │ ├── animations.md │ │ ├── brush-and-zoom.md │ │ ├── custom-charts.md │ │ ├── custom-components.md │ │ ├── data-accessors.md │ │ ├── events.md │ │ ├── layout.md │ │ ├── polar-charts.md │ │ ├── tooltips.md │ │ └── zoom-large-data.md │ └── introduction │ │ ├── index.md │ │ ├── native.md │ │ └── new.md ├── data │ ├── basketball-data.js │ ├── downloads.js │ ├── listening-data.js │ └── versions.js ├── google-analytics.js ├── helpers │ └── path-helpers.js ├── html.js ├── index.js ├── pages │ ├── 404.js │ ├── about.js │ ├── docs-template.js │ ├── gallery-item-template.js │ ├── gallery.js │ ├── index.js │ ├── redirect.js │ └── themes-template.js ├── partials │ ├── about │ │ ├── showcase-app.js │ │ └── showcase.js │ ├── button.js │ ├── footer.js │ ├── gallery │ │ ├── preview.js │ │ └── slider.js │ ├── guides │ │ └── themes │ │ │ ├── demo-component.js │ │ │ ├── grayscale.example.js │ │ │ ├── material.example.js │ │ │ └── pure-render.js │ ├── header.js │ ├── home │ │ ├── _content.js │ │ ├── companies.js │ │ ├── demo-animation.js │ │ ├── demo-custom-chart.js │ │ ├── demo-custom-components.js │ │ ├── demo-shared-events.js │ │ ├── demo-tooltips.js │ │ ├── demo-zoom.js │ │ ├── examples │ │ │ ├── composable.md │ │ │ └── friendly.md │ │ ├── features.js │ │ ├── get-started.js │ │ ├── guides.js │ │ ├── hero-demo.js │ │ ├── hero.js │ │ ├── more-oss.js │ │ ├── npm-copy.js │ │ └── styles │ │ │ ├── bounce-animation.js │ │ │ ├── drop-shadow.js │ │ │ ├── index.js │ │ │ ├── landing-section-content.js │ │ │ ├── landing-section-wrapper.js │ │ │ └── link-button.js │ ├── icon.js │ ├── lazy-image.js │ ├── lazy-render.js │ ├── markdown │ │ ├── index.js │ │ ├── playground-container.js │ │ └── scope-map.js │ ├── page.js │ ├── seo │ │ └── index.js │ └── sidebar │ │ ├── components │ │ ├── category.js │ │ ├── introduction.js │ │ ├── search-input.js │ │ └── table-of-contents.js │ │ ├── constants.js │ │ ├── index.js │ │ └── styles │ │ ├── index.js │ │ ├── sidebar-list-item-anchor-link.js │ │ ├── sidebar-list-item-link-style.js │ │ ├── sidebar-list-item-link.js │ │ ├── sidebar-list-item.js │ │ ├── sidebar-section-heading.js │ │ ├── sidebar-section-subheading.js │ │ └── sidebar-section-sublist.js └── styles │ ├── global.js │ ├── prism.js │ └── theme.js ├── static-config-helpers ├── constants.js ├── get-md-files.js ├── md-data-transforms.js └── site-data.js ├── static.config.js ├── static ├── btn-border-red.svg ├── btn-border.svg ├── burger.svg ├── feature-flexible.svg ├── feature-native.png ├── feature-robust.svg ├── hero-background.svg ├── hero-badge.svg ├── hero@2x.png ├── icon-back.svg ├── icon-barrier.svg ├── icon-external.svg ├── icon-internal.svg ├── icon-link.svg ├── icon-search.svg ├── logos │ ├── favicon.ico │ ├── logo-1024.png │ ├── logo-48.png │ ├── logo-airbnb.png │ ├── logo-airbnb.svg │ ├── logo-benaroya.png │ ├── logo-fivethirtyeight.svg │ ├── logo-formidable-icon.svg │ ├── logo-formidable.svg │ ├── logo-github.svg │ ├── logo-gitter.svg │ ├── logo-ookla.svg │ ├── logo-postmark.svg │ ├── logo-redfin.svg │ ├── logo-renature.svg │ ├── logo-runpkg.png │ ├── logo-spectacle.png │ ├── logo-spectacle.svg │ ├── logo-tune.svg │ ├── logo-urql.svg │ ├── logo-usafacts.svg │ ├── logo-viacom.svg │ ├── logo-victory.svg │ └── logo-zillow.svg ├── logotype-hero.svg ├── native-alt.svg ├── native.svg ├── not-found.png ├── robots.txt ├── showcase-cumul8.jpg ├── showcase-fivethirtyeight.jpg ├── showcase-postmark.jpg └── showcase-tune.jpg ├── test ├── formidable-nav-integration.js ├── screenshots │ └── docs │ │ └── example-faq-victory.png └── victory-nav-integration.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/README.md -------------------------------------------------------------------------------- /dev_examples/remark_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/dev_examples/remark_example.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/jsconfig.json -------------------------------------------------------------------------------- /node.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/node.api.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /public/static/btn-border-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/btn-border-red.svg -------------------------------------------------------------------------------- /public/static/btn-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/btn-border.svg -------------------------------------------------------------------------------- /public/static/hero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/hero@2x.png -------------------------------------------------------------------------------- /public/static/icon-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/icon-back.svg -------------------------------------------------------------------------------- /public/static/icon-barrier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/icon-barrier.svg -------------------------------------------------------------------------------- /public/static/icon-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/icon-external.svg -------------------------------------------------------------------------------- /public/static/icon-internal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/icon-internal.svg -------------------------------------------------------------------------------- /public/static/icon-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/icon-link.svg -------------------------------------------------------------------------------- /public/static/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/icon-search.svg -------------------------------------------------------------------------------- /public/static/logos/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/favicon.ico -------------------------------------------------------------------------------- /public/static/logos/logo-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-1024.png -------------------------------------------------------------------------------- /public/static/logos/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-48.png -------------------------------------------------------------------------------- /public/static/logos/logo-airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-airbnb.png -------------------------------------------------------------------------------- /public/static/logos/logo-airbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-airbnb.svg -------------------------------------------------------------------------------- /public/static/logos/logo-fivethirtyeight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-fivethirtyeight.svg -------------------------------------------------------------------------------- /public/static/logos/logo-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-github.svg -------------------------------------------------------------------------------- /public/static/logos/logo-gitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-gitter.svg -------------------------------------------------------------------------------- /public/static/logos/logo-ookla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-ookla.svg -------------------------------------------------------------------------------- /public/static/logos/logo-postmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-postmark.svg -------------------------------------------------------------------------------- /public/static/logos/logo-redfin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-redfin.svg -------------------------------------------------------------------------------- /public/static/logos/logo-tune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-tune.svg -------------------------------------------------------------------------------- /public/static/logos/logo-usafacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-usafacts.svg -------------------------------------------------------------------------------- /public/static/logos/logo-viacom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-viacom.svg -------------------------------------------------------------------------------- /public/static/logos/logo-zillow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logos/logo-zillow.svg -------------------------------------------------------------------------------- /public/static/logotype-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/logotype-hero.svg -------------------------------------------------------------------------------- /public/static/native-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/native-alt.svg -------------------------------------------------------------------------------- /public/static/native.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/native.svg -------------------------------------------------------------------------------- /public/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/robots.txt -------------------------------------------------------------------------------- /public/static/showcase-cumul8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/showcase-cumul8.png -------------------------------------------------------------------------------- /public/static/showcase-fivethirtyeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/showcase-fivethirtyeight.png -------------------------------------------------------------------------------- /public/static/showcase-postmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/showcase-postmark.png -------------------------------------------------------------------------------- /public/static/showcase-tune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/public/static/showcase-tune.png -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/app.js -------------------------------------------------------------------------------- /src/content/common-props/common-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/common-props/common-props.md -------------------------------------------------------------------------------- /src/content/docs/common-container-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/common-container-props.md -------------------------------------------------------------------------------- /src/content/docs/create-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/create-container.md -------------------------------------------------------------------------------- /src/content/docs/victory-animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-animation.md -------------------------------------------------------------------------------- /src/content/docs/victory-area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-area.md -------------------------------------------------------------------------------- /src/content/docs/victory-axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-axis.md -------------------------------------------------------------------------------- /src/content/docs/victory-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-bar.md -------------------------------------------------------------------------------- /src/content/docs/victory-boxplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-boxplot.md -------------------------------------------------------------------------------- /src/content/docs/victory-brush-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-brush-container.md -------------------------------------------------------------------------------- /src/content/docs/victory-brush-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-brush-line.md -------------------------------------------------------------------------------- /src/content/docs/victory-candlestick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-candlestick.md -------------------------------------------------------------------------------- /src/content/docs/victory-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-chart.md -------------------------------------------------------------------------------- /src/content/docs/victory-clip-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-clip-container.md -------------------------------------------------------------------------------- /src/content/docs/victory-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-container.md -------------------------------------------------------------------------------- /src/content/docs/victory-cursor-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-cursor-container.md -------------------------------------------------------------------------------- /src/content/docs/victory-errorbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-errorbar.md -------------------------------------------------------------------------------- /src/content/docs/victory-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-group.md -------------------------------------------------------------------------------- /src/content/docs/victory-histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-histogram.md -------------------------------------------------------------------------------- /src/content/docs/victory-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-label.md -------------------------------------------------------------------------------- /src/content/docs/victory-legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-legend.md -------------------------------------------------------------------------------- /src/content/docs/victory-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-line.md -------------------------------------------------------------------------------- /src/content/docs/victory-pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-pie.md -------------------------------------------------------------------------------- /src/content/docs/victory-polar-axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-polar-axis.md -------------------------------------------------------------------------------- /src/content/docs/victory-portal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-portal.md -------------------------------------------------------------------------------- /src/content/docs/victory-primitives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-primitives.md -------------------------------------------------------------------------------- /src/content/docs/victory-scatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-scatter.md -------------------------------------------------------------------------------- /src/content/docs/victory-selection-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-selection-container.md -------------------------------------------------------------------------------- /src/content/docs/victory-shared-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-shared-events.md -------------------------------------------------------------------------------- /src/content/docs/victory-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-stack.md -------------------------------------------------------------------------------- /src/content/docs/victory-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-theme.md -------------------------------------------------------------------------------- /src/content/docs/victory-tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-tooltip.md -------------------------------------------------------------------------------- /src/content/docs/victory-transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-transition.md -------------------------------------------------------------------------------- /src/content/docs/victory-voronoi-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-voronoi-container.md -------------------------------------------------------------------------------- /src/content/docs/victory-voronoi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-voronoi.md -------------------------------------------------------------------------------- /src/content/docs/victory-zoom-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/docs/victory-zoom-container.md -------------------------------------------------------------------------------- /src/content/faq/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/faq/faq.md -------------------------------------------------------------------------------- /src/content/gallery/alternative-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/alternative-events.md -------------------------------------------------------------------------------- /src/content/gallery/animating-circular-progress-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/animating-circular-progress-bar.md -------------------------------------------------------------------------------- /src/content/gallery/area-hover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/area-hover.md -------------------------------------------------------------------------------- /src/content/gallery/brush-zoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/brush-zoom.md -------------------------------------------------------------------------------- /src/content/gallery/column-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/column-chart.md -------------------------------------------------------------------------------- /src/content/gallery/custom-tooltip-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/custom-tooltip-labels.md -------------------------------------------------------------------------------- /src/content/gallery/histogram-with-slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/histogram-with-slider.md -------------------------------------------------------------------------------- /src/content/gallery/horizontal-grouped-bars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/horizontal-grouped-bars.md -------------------------------------------------------------------------------- /src/content/gallery/interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/interpolation.md -------------------------------------------------------------------------------- /src/content/gallery/multiple-dependent-axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/multiple-dependent-axes.md -------------------------------------------------------------------------------- /src/content/gallery/multipoint-tooltip-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/multipoint-tooltip-labels.md -------------------------------------------------------------------------------- /src/content/gallery/parallel-brush-axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/parallel-brush-axis.md -------------------------------------------------------------------------------- /src/content/gallery/polar-cardioid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/polar-cardioid.md -------------------------------------------------------------------------------- /src/content/gallery/radar-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/radar-chart.md -------------------------------------------------------------------------------- /src/content/gallery/stacked-bars-central-axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/stacked-bars-central-axis.md -------------------------------------------------------------------------------- /src/content/gallery/stacked-grouped-bars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/stacked-grouped-bars.md -------------------------------------------------------------------------------- /src/content/gallery/stacked-histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/stacked-histogram.md -------------------------------------------------------------------------------- /src/content/gallery/stacked-polar-bars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/stacked-polar-bars.md -------------------------------------------------------------------------------- /src/content/gallery/stream-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/stream-graph.md -------------------------------------------------------------------------------- /src/content/gallery/victory-area-animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/victory-area-animation.md -------------------------------------------------------------------------------- /src/content/gallery/victory-area-stroke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/victory-area-stroke.md -------------------------------------------------------------------------------- /src/content/gallery/victory-line-null-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/victory-line-null-data.md -------------------------------------------------------------------------------- /src/content/gallery/victory-pie-center-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/victory-pie-center-label.md -------------------------------------------------------------------------------- /src/content/gallery/victory-portal-stacked-area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/victory-portal-stacked-area.md -------------------------------------------------------------------------------- /src/content/gallery/voronoi-tooltips-grouped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/gallery/voronoi-tooltips-grouped.md -------------------------------------------------------------------------------- /src/content/guides/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/animations.md -------------------------------------------------------------------------------- /src/content/guides/brush-and-zoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/brush-and-zoom.md -------------------------------------------------------------------------------- /src/content/guides/custom-charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/custom-charts.md -------------------------------------------------------------------------------- /src/content/guides/custom-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/custom-components.md -------------------------------------------------------------------------------- /src/content/guides/data-accessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/data-accessors.md -------------------------------------------------------------------------------- /src/content/guides/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/events.md -------------------------------------------------------------------------------- /src/content/guides/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/layout.md -------------------------------------------------------------------------------- /src/content/guides/polar-charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/polar-charts.md -------------------------------------------------------------------------------- /src/content/guides/tooltips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/tooltips.md -------------------------------------------------------------------------------- /src/content/guides/zoom-large-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/guides/zoom-large-data.md -------------------------------------------------------------------------------- /src/content/introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/introduction/index.md -------------------------------------------------------------------------------- /src/content/introduction/native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/introduction/native.md -------------------------------------------------------------------------------- /src/content/introduction/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/content/introduction/new.md -------------------------------------------------------------------------------- /src/data/basketball-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/data/basketball-data.js -------------------------------------------------------------------------------- /src/data/downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/data/downloads.js -------------------------------------------------------------------------------- /src/data/listening-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/data/listening-data.js -------------------------------------------------------------------------------- /src/data/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/data/versions.js -------------------------------------------------------------------------------- /src/google-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/google-analytics.js -------------------------------------------------------------------------------- /src/helpers/path-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/helpers/path-helpers.js -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/html.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/docs-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/docs-template.js -------------------------------------------------------------------------------- /src/pages/gallery-item-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/gallery-item-template.js -------------------------------------------------------------------------------- /src/pages/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/gallery.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/redirect.js -------------------------------------------------------------------------------- /src/pages/themes-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/pages/themes-template.js -------------------------------------------------------------------------------- /src/partials/about/showcase-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/about/showcase-app.js -------------------------------------------------------------------------------- /src/partials/about/showcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/about/showcase.js -------------------------------------------------------------------------------- /src/partials/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/button.js -------------------------------------------------------------------------------- /src/partials/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/footer.js -------------------------------------------------------------------------------- /src/partials/gallery/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/gallery/preview.js -------------------------------------------------------------------------------- /src/partials/gallery/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/gallery/slider.js -------------------------------------------------------------------------------- /src/partials/guides/themes/demo-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/guides/themes/demo-component.js -------------------------------------------------------------------------------- /src/partials/guides/themes/grayscale.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/guides/themes/grayscale.example.js -------------------------------------------------------------------------------- /src/partials/guides/themes/material.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/guides/themes/material.example.js -------------------------------------------------------------------------------- /src/partials/guides/themes/pure-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/guides/themes/pure-render.js -------------------------------------------------------------------------------- /src/partials/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/header.js -------------------------------------------------------------------------------- /src/partials/home/_content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/_content.js -------------------------------------------------------------------------------- /src/partials/home/companies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/companies.js -------------------------------------------------------------------------------- /src/partials/home/demo-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/demo-animation.js -------------------------------------------------------------------------------- /src/partials/home/demo-custom-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/demo-custom-chart.js -------------------------------------------------------------------------------- /src/partials/home/demo-custom-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/demo-custom-components.js -------------------------------------------------------------------------------- /src/partials/home/demo-shared-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/demo-shared-events.js -------------------------------------------------------------------------------- /src/partials/home/demo-tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/demo-tooltips.js -------------------------------------------------------------------------------- /src/partials/home/demo-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/demo-zoom.js -------------------------------------------------------------------------------- /src/partials/home/examples/composable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/examples/composable.md -------------------------------------------------------------------------------- /src/partials/home/examples/friendly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/examples/friendly.md -------------------------------------------------------------------------------- /src/partials/home/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/features.js -------------------------------------------------------------------------------- /src/partials/home/get-started.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/get-started.js -------------------------------------------------------------------------------- /src/partials/home/guides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/guides.js -------------------------------------------------------------------------------- /src/partials/home/hero-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/hero-demo.js -------------------------------------------------------------------------------- /src/partials/home/hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/hero.js -------------------------------------------------------------------------------- /src/partials/home/more-oss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/more-oss.js -------------------------------------------------------------------------------- /src/partials/home/npm-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/npm-copy.js -------------------------------------------------------------------------------- /src/partials/home/styles/bounce-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/styles/bounce-animation.js -------------------------------------------------------------------------------- /src/partials/home/styles/drop-shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/styles/drop-shadow.js -------------------------------------------------------------------------------- /src/partials/home/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/styles/index.js -------------------------------------------------------------------------------- /src/partials/home/styles/landing-section-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/styles/landing-section-content.js -------------------------------------------------------------------------------- /src/partials/home/styles/landing-section-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/styles/landing-section-wrapper.js -------------------------------------------------------------------------------- /src/partials/home/styles/link-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/home/styles/link-button.js -------------------------------------------------------------------------------- /src/partials/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/icon.js -------------------------------------------------------------------------------- /src/partials/lazy-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/lazy-image.js -------------------------------------------------------------------------------- /src/partials/lazy-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/lazy-render.js -------------------------------------------------------------------------------- /src/partials/markdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/markdown/index.js -------------------------------------------------------------------------------- /src/partials/markdown/playground-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/markdown/playground-container.js -------------------------------------------------------------------------------- /src/partials/markdown/scope-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/markdown/scope-map.js -------------------------------------------------------------------------------- /src/partials/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/page.js -------------------------------------------------------------------------------- /src/partials/seo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/seo/index.js -------------------------------------------------------------------------------- /src/partials/sidebar/components/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/components/category.js -------------------------------------------------------------------------------- /src/partials/sidebar/components/introduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/components/introduction.js -------------------------------------------------------------------------------- /src/partials/sidebar/components/search-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/components/search-input.js -------------------------------------------------------------------------------- /src/partials/sidebar/components/table-of-contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/components/table-of-contents.js -------------------------------------------------------------------------------- /src/partials/sidebar/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/constants.js -------------------------------------------------------------------------------- /src/partials/sidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/index.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/index.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/sidebar-list-item-anchor-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/sidebar-list-item-anchor-link.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/sidebar-list-item-link-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/sidebar-list-item-link-style.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/sidebar-list-item-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/sidebar-list-item-link.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/sidebar-list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/sidebar-list-item.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/sidebar-section-heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/sidebar-section-heading.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/sidebar-section-subheading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/sidebar-section-subheading.js -------------------------------------------------------------------------------- /src/partials/sidebar/styles/sidebar-section-sublist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/partials/sidebar/styles/sidebar-section-sublist.js -------------------------------------------------------------------------------- /src/styles/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/styles/global.js -------------------------------------------------------------------------------- /src/styles/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/styles/prism.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /static-config-helpers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static-config-helpers/constants.js -------------------------------------------------------------------------------- /static-config-helpers/get-md-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static-config-helpers/get-md-files.js -------------------------------------------------------------------------------- /static-config-helpers/md-data-transforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static-config-helpers/md-data-transforms.js -------------------------------------------------------------------------------- /static-config-helpers/site-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static-config-helpers/site-data.js -------------------------------------------------------------------------------- /static.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static.config.js -------------------------------------------------------------------------------- /static/btn-border-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/btn-border-red.svg -------------------------------------------------------------------------------- /static/btn-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/btn-border.svg -------------------------------------------------------------------------------- /static/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/burger.svg -------------------------------------------------------------------------------- /static/feature-flexible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/feature-flexible.svg -------------------------------------------------------------------------------- /static/feature-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/feature-native.png -------------------------------------------------------------------------------- /static/feature-robust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/feature-robust.svg -------------------------------------------------------------------------------- /static/hero-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/hero-background.svg -------------------------------------------------------------------------------- /static/hero-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/hero-badge.svg -------------------------------------------------------------------------------- /static/hero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/hero@2x.png -------------------------------------------------------------------------------- /static/icon-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/icon-back.svg -------------------------------------------------------------------------------- /static/icon-barrier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/icon-barrier.svg -------------------------------------------------------------------------------- /static/icon-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/icon-external.svg -------------------------------------------------------------------------------- /static/icon-internal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/icon-internal.svg -------------------------------------------------------------------------------- /static/icon-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/icon-link.svg -------------------------------------------------------------------------------- /static/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/icon-search.svg -------------------------------------------------------------------------------- /static/logos/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/favicon.ico -------------------------------------------------------------------------------- /static/logos/logo-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-1024.png -------------------------------------------------------------------------------- /static/logos/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-48.png -------------------------------------------------------------------------------- /static/logos/logo-airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-airbnb.png -------------------------------------------------------------------------------- /static/logos/logo-airbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-airbnb.svg -------------------------------------------------------------------------------- /static/logos/logo-benaroya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-benaroya.png -------------------------------------------------------------------------------- /static/logos/logo-fivethirtyeight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-fivethirtyeight.svg -------------------------------------------------------------------------------- /static/logos/logo-formidable-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-formidable-icon.svg -------------------------------------------------------------------------------- /static/logos/logo-formidable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-formidable.svg -------------------------------------------------------------------------------- /static/logos/logo-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-github.svg -------------------------------------------------------------------------------- /static/logos/logo-gitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-gitter.svg -------------------------------------------------------------------------------- /static/logos/logo-ookla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-ookla.svg -------------------------------------------------------------------------------- /static/logos/logo-postmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-postmark.svg -------------------------------------------------------------------------------- /static/logos/logo-redfin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-redfin.svg -------------------------------------------------------------------------------- /static/logos/logo-renature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-renature.svg -------------------------------------------------------------------------------- /static/logos/logo-runpkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-runpkg.png -------------------------------------------------------------------------------- /static/logos/logo-spectacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-spectacle.png -------------------------------------------------------------------------------- /static/logos/logo-spectacle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-spectacle.svg -------------------------------------------------------------------------------- /static/logos/logo-tune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-tune.svg -------------------------------------------------------------------------------- /static/logos/logo-urql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-urql.svg -------------------------------------------------------------------------------- /static/logos/logo-usafacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-usafacts.svg -------------------------------------------------------------------------------- /static/logos/logo-viacom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-viacom.svg -------------------------------------------------------------------------------- /static/logos/logo-victory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-victory.svg -------------------------------------------------------------------------------- /static/logos/logo-zillow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logos/logo-zillow.svg -------------------------------------------------------------------------------- /static/logotype-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/logotype-hero.svg -------------------------------------------------------------------------------- /static/native-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/native-alt.svg -------------------------------------------------------------------------------- /static/native.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/native.svg -------------------------------------------------------------------------------- /static/not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/not-found.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/showcase-cumul8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/showcase-cumul8.jpg -------------------------------------------------------------------------------- /static/showcase-fivethirtyeight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/showcase-fivethirtyeight.jpg -------------------------------------------------------------------------------- /static/showcase-postmark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/showcase-postmark.jpg -------------------------------------------------------------------------------- /static/showcase-tune.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/static/showcase-tune.jpg -------------------------------------------------------------------------------- /test/formidable-nav-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/test/formidable-nav-integration.js -------------------------------------------------------------------------------- /test/screenshots/docs/example-faq-victory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/test/screenshots/docs/example-faq-victory.png -------------------------------------------------------------------------------- /test/victory-nav-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/test/victory-nav-integration.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-docs/HEAD/yarn.lock --------------------------------------------------------------------------------