├── .config ├── .cprc.json ├── .prettierrc.js ├── Dockerfile ├── README.md ├── bundler │ └── externals.ts ├── docker-compose-base.yaml ├── entrypoint.sh ├── eslint.config.mjs ├── jest-setup.js ├── jest.config.js ├── jest │ ├── mocks │ │ └── react-inlinesvg.tsx │ └── utils.js ├── supervisord │ └── supervisord.conf ├── tsconfig.json ├── types │ ├── bundler-rules.d.ts │ ├── custom.d.ts │ └── webpack-plugins.d.ts └── webpack │ ├── BuildModeWebpackPlugin.ts │ ├── constants.ts │ ├── utils.ts │ └── webpack.config.ts ├── .cprc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── enhancement-request.md └── workflows │ ├── bundle-stats.yml │ ├── ci.yml │ ├── is-compatible.yml │ ├── release.yml │ └── website.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── DEVELOPMENT_GUIDE.md ├── LICENSE ├── README.md ├── docker-compose.yaml ├── eslint.config.mjs ├── jest-setup.js ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── provisioning ├── dashboards │ ├── default.yaml │ ├── dyn-height-width.json │ ├── fonts-overview.json │ ├── overflow-customization.json │ └── update-grafana-variable.json └── datasources │ └── datasources.yml ├── src ├── HTMLPanel.tsx ├── components │ ├── CodeEditor │ │ ├── HeightControllerBar.tsx │ │ ├── constants.ts │ │ ├── declarationPaths.ts │ │ ├── declarations │ │ │ ├── @grafana │ │ │ │ ├── data.d.ts │ │ │ │ └── runtime.d.ts │ │ │ ├── customProperties.d.ts │ │ │ ├── global.d.ts │ │ │ └── index.d.ts │ │ └── index.tsx │ ├── Errors.tsx │ ├── FileUpload.tsx │ ├── PanelOptions │ │ ├── CalcsMutationOptions.tsx │ │ ├── CodeData.tsx │ │ ├── CodeEditor.tsx │ │ ├── ImportExport.tsx │ │ └── SelectedCalcsOption.tsx │ └── SimpleOptions.tsx ├── global.d.ts ├── img │ ├── logo.svg │ ├── screenshot-building-overview-edit.png │ ├── screenshot-building-overview.png │ ├── screenshot-code-editor.png │ ├── screenshot-edit-mode.png │ ├── screenshot-open-sans-font-weights.png │ ├── screenshot-overflow.png │ ├── screenshot-react-radar-example.png │ └── screenshot-simple-example.png ├── module.ts ├── plugin.json ├── registerFonts.ts ├── static │ └── fonts │ │ ├── OFL.txt │ │ ├── OpenSans-Bold.woff2 │ │ ├── OpenSans-Light.woff2 │ │ ├── OpenSans-Regular.woff2 │ │ └── OpenSans-SemiBold.woff2 ├── types.ts └── utils │ ├── addHtml.ts │ ├── addOnFunctionEvents.ts │ ├── addShadowRoot.ts │ ├── calcsMutations.ts │ ├── events │ ├── panelupdate.ts │ └── panelwillunmount.ts │ ├── exportFile.ts │ ├── getType.test.ts │ ├── getType.ts │ ├── parseJSON.test.ts │ ├── parseJSON.ts │ ├── polyfill │ ├── SVGBaseFix.test.ts │ ├── SVGBaseFix.ts │ └── index.ts │ └── readFile.ts ├── tsconfig.json ├── webpack.config.ts └── website ├── .gitignore ├── .nvmrc ├── README.md ├── config.js ├── docs ├── advanced │ └── dynamic-variables.mdx ├── contributing.mdx ├── examples │ ├── change-svg-attributes-with-grafana-variables-example.md │ ├── communicate-between-panels.md │ ├── dynamic-height-and-width.md │ ├── export-to-csv │ │ ├── _category_.json │ │ ├── index.md │ │ ├── influx1.8.md │ │ └── influx2.md │ ├── font-example.md │ ├── simple-example.md │ └── update-grafana-variable-example.md ├── guides │ ├── grafana-boot-data.md │ ├── how-to-add-the-panel.md │ ├── how-to-get-metrics.md │ ├── how-to-import-export.md │ ├── how-to-use-a-template.md │ └── http-requests.mdx ├── installation.mdx ├── options.md ├── performance.md ├── projects.md ├── quick-start.md ├── references.md └── release-notes │ ├── v2.0.0.mdx │ ├── v2.1.0.mdx │ └── v2.2.0.mdx ├── docusaurus.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── sidebars.ts ├── src ├── components │ ├── HomepageFeatures.module.css │ ├── HomepageFeatures.tsx │ ├── NewRelease.module.css │ └── NewRelease.tsx ├── css │ └── custom.css └── pages │ ├── index.module.css │ └── index.tsx ├── static ├── .nojekyll ├── CNAME ├── favicon.ico ├── gif │ ├── add-panel.gif │ ├── adjustable-code-editor-height.gif │ ├── change-svg-attributes-with-grafana-variables-example.gif │ ├── example-communicate-between-panels.gif │ ├── example-dynamic-height-and-width.gif │ ├── example-export-to-csv.gif │ ├── how-to-use-a-template.gif │ ├── import-and-export.gif │ ├── install-using-plugin-catalog.gif │ ├── load-from-file.gif │ ├── mutate-calcs-v1.5.0.gif │ ├── mutate-calcs-v2.0.0.gif │ ├── node-red-hello-from-grafana.gif │ ├── update-grafana-variable-example.gif │ ├── with-custom-scrollbar.gif │ └── with-scroll-container.gif └── img │ ├── data-object-grafana.png │ ├── data-object-influx.png │ ├── example-export-to-csv-influx1.8-query.png │ ├── example-export-to-csv-query.png │ ├── field-display-values.png │ ├── field-reducers.png │ ├── font-example.png │ ├── logo.svg │ ├── screenshot-360-payload-v1.5.0.png │ ├── screenshot-360-payload-v2.0.0.png │ ├── screenshot-360-size-v1.5.0.png │ ├── screenshot-360-size-v2.0.0.png │ ├── screenshot-dynamic-type-declaration-change1.png │ ├── screenshot-dynamic-type-declaration-change2.png │ ├── screenshot-grafana-scroll-hover.png │ ├── screenshot-grafana-scroll.png │ ├── screenshot-overflow-after-9.0.3.png │ ├── screenshot-overflow-before-9.0.3.png │ ├── simple-example.png │ └── test-variable-used.png └── tsconfig.json /.config/.cprc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/.cprc.json -------------------------------------------------------------------------------- /.config/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/.prettierrc.js -------------------------------------------------------------------------------- /.config/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/Dockerfile -------------------------------------------------------------------------------- /.config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/README.md -------------------------------------------------------------------------------- /.config/bundler/externals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/bundler/externals.ts -------------------------------------------------------------------------------- /.config/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/docker-compose-base.yaml -------------------------------------------------------------------------------- /.config/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/entrypoint.sh -------------------------------------------------------------------------------- /.config/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/eslint.config.mjs -------------------------------------------------------------------------------- /.config/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/jest-setup.js -------------------------------------------------------------------------------- /.config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/jest.config.js -------------------------------------------------------------------------------- /.config/jest/mocks/react-inlinesvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/jest/mocks/react-inlinesvg.tsx -------------------------------------------------------------------------------- /.config/jest/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/jest/utils.js -------------------------------------------------------------------------------- /.config/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/supervisord/supervisord.conf -------------------------------------------------------------------------------- /.config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/tsconfig.json -------------------------------------------------------------------------------- /.config/types/bundler-rules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/types/bundler-rules.d.ts -------------------------------------------------------------------------------- /.config/types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/types/custom.d.ts -------------------------------------------------------------------------------- /.config/types/webpack-plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/types/webpack-plugins.d.ts -------------------------------------------------------------------------------- /.config/webpack/BuildModeWebpackPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/webpack/BuildModeWebpackPlugin.ts -------------------------------------------------------------------------------- /.config/webpack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/webpack/constants.ts -------------------------------------------------------------------------------- /.config/webpack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/webpack/utils.ts -------------------------------------------------------------------------------- /.config/webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.config/webpack/webpack.config.ts -------------------------------------------------------------------------------- /.cprc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.cprc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.md -------------------------------------------------------------------------------- /.github/workflows/bundle-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.github/workflows/bundle-stats.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/is-compatible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.github/workflows/is-compatible.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage 3 | build 4 | .docusaurus 5 | pnpm-lock.yaml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/DEVELOPMENT_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/jest-setup.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /provisioning/dashboards/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/provisioning/dashboards/default.yaml -------------------------------------------------------------------------------- /provisioning/dashboards/dyn-height-width.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/provisioning/dashboards/dyn-height-width.json -------------------------------------------------------------------------------- /provisioning/dashboards/fonts-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/provisioning/dashboards/fonts-overview.json -------------------------------------------------------------------------------- /provisioning/dashboards/overflow-customization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/provisioning/dashboards/overflow-customization.json -------------------------------------------------------------------------------- /provisioning/dashboards/update-grafana-variable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/provisioning/dashboards/update-grafana-variable.json -------------------------------------------------------------------------------- /provisioning/datasources/datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/provisioning/datasources/datasources.yml -------------------------------------------------------------------------------- /src/HTMLPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/HTMLPanel.tsx -------------------------------------------------------------------------------- /src/components/CodeEditor/HeightControllerBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/HeightControllerBar.tsx -------------------------------------------------------------------------------- /src/components/CodeEditor/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/constants.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/declarationPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/declarationPaths.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/declarations/@grafana/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/declarations/@grafana/data.d.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/declarations/@grafana/runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/declarations/@grafana/runtime.d.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/declarations/customProperties.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/declarations/customProperties.d.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/declarations/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/declarations/global.d.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/declarations/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/declarations/index.d.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/CodeEditor/index.tsx -------------------------------------------------------------------------------- /src/components/Errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/Errors.tsx -------------------------------------------------------------------------------- /src/components/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/FileUpload.tsx -------------------------------------------------------------------------------- /src/components/PanelOptions/CalcsMutationOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/PanelOptions/CalcsMutationOptions.tsx -------------------------------------------------------------------------------- /src/components/PanelOptions/CodeData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/PanelOptions/CodeData.tsx -------------------------------------------------------------------------------- /src/components/PanelOptions/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/PanelOptions/CodeEditor.tsx -------------------------------------------------------------------------------- /src/components/PanelOptions/ImportExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/PanelOptions/ImportExport.tsx -------------------------------------------------------------------------------- /src/components/PanelOptions/SelectedCalcsOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/PanelOptions/SelectedCalcsOption.tsx -------------------------------------------------------------------------------- /src/components/SimpleOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/components/SimpleOptions.tsx -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/img/screenshot-building-overview-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-building-overview-edit.png -------------------------------------------------------------------------------- /src/img/screenshot-building-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-building-overview.png -------------------------------------------------------------------------------- /src/img/screenshot-code-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-code-editor.png -------------------------------------------------------------------------------- /src/img/screenshot-edit-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-edit-mode.png -------------------------------------------------------------------------------- /src/img/screenshot-open-sans-font-weights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-open-sans-font-weights.png -------------------------------------------------------------------------------- /src/img/screenshot-overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-overflow.png -------------------------------------------------------------------------------- /src/img/screenshot-react-radar-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-react-radar-example.png -------------------------------------------------------------------------------- /src/img/screenshot-simple-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/img/screenshot-simple-example.png -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/plugin.json -------------------------------------------------------------------------------- /src/registerFonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/registerFonts.ts -------------------------------------------------------------------------------- /src/static/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/static/fonts/OFL.txt -------------------------------------------------------------------------------- /src/static/fonts/OpenSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/static/fonts/OpenSans-Bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/OpenSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/static/fonts/OpenSans-Light.woff2 -------------------------------------------------------------------------------- /src/static/fonts/OpenSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/static/fonts/OpenSans-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/OpenSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/static/fonts/OpenSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/addHtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/addHtml.ts -------------------------------------------------------------------------------- /src/utils/addOnFunctionEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/addOnFunctionEvents.ts -------------------------------------------------------------------------------- /src/utils/addShadowRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/addShadowRoot.ts -------------------------------------------------------------------------------- /src/utils/calcsMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/calcsMutations.ts -------------------------------------------------------------------------------- /src/utils/events/panelupdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/events/panelupdate.ts -------------------------------------------------------------------------------- /src/utils/events/panelwillunmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/events/panelwillunmount.ts -------------------------------------------------------------------------------- /src/utils/exportFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/exportFile.ts -------------------------------------------------------------------------------- /src/utils/getType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/getType.test.ts -------------------------------------------------------------------------------- /src/utils/getType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/getType.ts -------------------------------------------------------------------------------- /src/utils/parseJSON.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/parseJSON.test.ts -------------------------------------------------------------------------------- /src/utils/parseJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/parseJSON.ts -------------------------------------------------------------------------------- /src/utils/polyfill/SVGBaseFix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/polyfill/SVGBaseFix.test.ts -------------------------------------------------------------------------------- /src/utils/polyfill/SVGBaseFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/polyfill/SVGBaseFix.ts -------------------------------------------------------------------------------- /src/utils/polyfill/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/polyfill/index.ts -------------------------------------------------------------------------------- /src/utils/readFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/src/utils/readFile.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/webpack.config.ts -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/README.md -------------------------------------------------------------------------------- /website/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/config.js -------------------------------------------------------------------------------- /website/docs/advanced/dynamic-variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/advanced/dynamic-variables.mdx -------------------------------------------------------------------------------- /website/docs/contributing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/contributing.mdx -------------------------------------------------------------------------------- /website/docs/examples/change-svg-attributes-with-grafana-variables-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/change-svg-attributes-with-grafana-variables-example.md -------------------------------------------------------------------------------- /website/docs/examples/communicate-between-panels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/communicate-between-panels.md -------------------------------------------------------------------------------- /website/docs/examples/dynamic-height-and-width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/dynamic-height-and-width.md -------------------------------------------------------------------------------- /website/docs/examples/export-to-csv/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Export to CSV" 3 | } 4 | -------------------------------------------------------------------------------- /website/docs/examples/export-to-csv/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/export-to-csv/index.md -------------------------------------------------------------------------------- /website/docs/examples/export-to-csv/influx1.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/export-to-csv/influx1.8.md -------------------------------------------------------------------------------- /website/docs/examples/export-to-csv/influx2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/export-to-csv/influx2.md -------------------------------------------------------------------------------- /website/docs/examples/font-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/font-example.md -------------------------------------------------------------------------------- /website/docs/examples/simple-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/simple-example.md -------------------------------------------------------------------------------- /website/docs/examples/update-grafana-variable-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/examples/update-grafana-variable-example.md -------------------------------------------------------------------------------- /website/docs/guides/grafana-boot-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/guides/grafana-boot-data.md -------------------------------------------------------------------------------- /website/docs/guides/how-to-add-the-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/guides/how-to-add-the-panel.md -------------------------------------------------------------------------------- /website/docs/guides/how-to-get-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/guides/how-to-get-metrics.md -------------------------------------------------------------------------------- /website/docs/guides/how-to-import-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/guides/how-to-import-export.md -------------------------------------------------------------------------------- /website/docs/guides/how-to-use-a-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/guides/how-to-use-a-template.md -------------------------------------------------------------------------------- /website/docs/guides/http-requests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/guides/http-requests.mdx -------------------------------------------------------------------------------- /website/docs/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/installation.mdx -------------------------------------------------------------------------------- /website/docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/options.md -------------------------------------------------------------------------------- /website/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/performance.md -------------------------------------------------------------------------------- /website/docs/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/projects.md -------------------------------------------------------------------------------- /website/docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/quick-start.md -------------------------------------------------------------------------------- /website/docs/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/references.md -------------------------------------------------------------------------------- /website/docs/release-notes/v2.0.0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/release-notes/v2.0.0.mdx -------------------------------------------------------------------------------- /website/docs/release-notes/v2.1.0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/release-notes/v2.1.0.mdx -------------------------------------------------------------------------------- /website/docs/release-notes/v2.2.0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docs/release-notes/v2.2.0.mdx -------------------------------------------------------------------------------- /website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/docusaurus.config.ts -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/pnpm-lock.yaml -------------------------------------------------------------------------------- /website/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/pnpm-workspace.yaml -------------------------------------------------------------------------------- /website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/sidebars.ts -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/src/components/HomepageFeatures.tsx -------------------------------------------------------------------------------- /website/src/components/NewRelease.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/src/components/NewRelease.module.css -------------------------------------------------------------------------------- /website/src/components/NewRelease.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/src/components/NewRelease.tsx -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | gapit-htmlgraphics-panel.gapit.io 2 | -------------------------------------------------------------------------------- /website/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/favicon.ico -------------------------------------------------------------------------------- /website/static/gif/add-panel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/add-panel.gif -------------------------------------------------------------------------------- /website/static/gif/adjustable-code-editor-height.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/adjustable-code-editor-height.gif -------------------------------------------------------------------------------- /website/static/gif/change-svg-attributes-with-grafana-variables-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/change-svg-attributes-with-grafana-variables-example.gif -------------------------------------------------------------------------------- /website/static/gif/example-communicate-between-panels.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/example-communicate-between-panels.gif -------------------------------------------------------------------------------- /website/static/gif/example-dynamic-height-and-width.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/example-dynamic-height-and-width.gif -------------------------------------------------------------------------------- /website/static/gif/example-export-to-csv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/example-export-to-csv.gif -------------------------------------------------------------------------------- /website/static/gif/how-to-use-a-template.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/how-to-use-a-template.gif -------------------------------------------------------------------------------- /website/static/gif/import-and-export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/import-and-export.gif -------------------------------------------------------------------------------- /website/static/gif/install-using-plugin-catalog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/install-using-plugin-catalog.gif -------------------------------------------------------------------------------- /website/static/gif/load-from-file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/load-from-file.gif -------------------------------------------------------------------------------- /website/static/gif/mutate-calcs-v1.5.0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/mutate-calcs-v1.5.0.gif -------------------------------------------------------------------------------- /website/static/gif/mutate-calcs-v2.0.0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/mutate-calcs-v2.0.0.gif -------------------------------------------------------------------------------- /website/static/gif/node-red-hello-from-grafana.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/node-red-hello-from-grafana.gif -------------------------------------------------------------------------------- /website/static/gif/update-grafana-variable-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/update-grafana-variable-example.gif -------------------------------------------------------------------------------- /website/static/gif/with-custom-scrollbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/with-custom-scrollbar.gif -------------------------------------------------------------------------------- /website/static/gif/with-scroll-container.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/gif/with-scroll-container.gif -------------------------------------------------------------------------------- /website/static/img/data-object-grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/data-object-grafana.png -------------------------------------------------------------------------------- /website/static/img/data-object-influx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/data-object-influx.png -------------------------------------------------------------------------------- /website/static/img/example-export-to-csv-influx1.8-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/example-export-to-csv-influx1.8-query.png -------------------------------------------------------------------------------- /website/static/img/example-export-to-csv-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/example-export-to-csv-query.png -------------------------------------------------------------------------------- /website/static/img/field-display-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/field-display-values.png -------------------------------------------------------------------------------- /website/static/img/field-reducers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/field-reducers.png -------------------------------------------------------------------------------- /website/static/img/font-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/font-example.png -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/screenshot-360-payload-v1.5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-360-payload-v1.5.0.png -------------------------------------------------------------------------------- /website/static/img/screenshot-360-payload-v2.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-360-payload-v2.0.0.png -------------------------------------------------------------------------------- /website/static/img/screenshot-360-size-v1.5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-360-size-v1.5.0.png -------------------------------------------------------------------------------- /website/static/img/screenshot-360-size-v2.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-360-size-v2.0.0.png -------------------------------------------------------------------------------- /website/static/img/screenshot-dynamic-type-declaration-change1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-dynamic-type-declaration-change1.png -------------------------------------------------------------------------------- /website/static/img/screenshot-dynamic-type-declaration-change2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-dynamic-type-declaration-change2.png -------------------------------------------------------------------------------- /website/static/img/screenshot-grafana-scroll-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-grafana-scroll-hover.png -------------------------------------------------------------------------------- /website/static/img/screenshot-grafana-scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-grafana-scroll.png -------------------------------------------------------------------------------- /website/static/img/screenshot-overflow-after-9.0.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-overflow-after-9.0.3.png -------------------------------------------------------------------------------- /website/static/img/screenshot-overflow-before-9.0.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/screenshot-overflow-before-9.0.3.png -------------------------------------------------------------------------------- /website/static/img/simple-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/simple-example.png -------------------------------------------------------------------------------- /website/static/img/test-variable-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/static/img/test-variable-used.png -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapitio/gapit-htmlgraphics-panel/HEAD/website/tsconfig.json --------------------------------------------------------------------------------