galaxy-charts 0.0.19 → 0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/main.yml +64 -0
- package/.vscode/extensions.json +3 -0
- package/docs/.vitepress/cache/deps/_metadata.json +40 -0
- package/docs/.vitepress/cache/deps/chunk-G3PMV62Z.js +36 -0
- package/docs/.vitepress/cache/deps/chunk-G3PMV62Z.js.map +7 -0
- package/docs/.vitepress/cache/deps/chunk-XYSSNQS4.js +12492 -0
- package/docs/.vitepress/cache/deps/chunk-XYSSNQS4.js.map +7 -0
- package/docs/.vitepress/cache/deps/naive-ui.js +107113 -0
- package/docs/.vitepress/cache/deps/naive-ui.js.map +7 -0
- package/docs/.vitepress/cache/deps/package.json +3 -0
- package/docs/.vitepress/cache/deps/vitepress___@vue_devtools-api.js +4494 -0
- package/docs/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map +7 -0
- package/docs/.vitepress/cache/deps/vitepress___@vueuse_core.js +9345 -0
- package/docs/.vitepress/cache/deps/vitepress___@vueuse_core.js.map +7 -0
- package/docs/.vitepress/cache/deps/vue.js +344 -0
- package/docs/.vitepress/cache/deps/vue.js.map +7 -0
- package/docs/.vitepress/config.mts +55 -0
- package/docs/.vitepress/theme/index.js +7 -0
- package/docs/.vitepress/theme/tailwind.css +7 -0
- package/docs/content/configuration.md +45 -0
- package/docs/content/deploy-plugin.md +22 -0
- package/docs/content/deploy-request.md +65 -0
- package/docs/content/installation.md +42 -0
- package/docs/content/introduction.md +45 -0
- package/docs/content/vue-introduction.md +38 -0
- package/docs/content/vue-utilities.md +70 -0
- package/docs/content/xml-datasources.md +34 -0
- package/docs/content/xml-framework.md +140 -0
- package/docs/content/xml-inputs.md +248 -0
- package/docs/content/xml-introduction.md +23 -0
- package/docs/content/xml-sections.md +50 -0
- package/docs/index.md +27 -0
- package/docs/package-lock.json +4203 -0
- package/docs/package.json +21 -0
- package/docs/postcss.config.js +6 -0
- package/docs/public/eslint.svg +7 -0
- package/docs/public/galaxy-charts-demo.gif +0 -0
- package/docs/public/galaxy-charts-starter.jpg +0 -0
- package/docs/public/galaxy-charts.svg +7 -0
- package/docs/public/javascript.svg +8 -0
- package/docs/public/naive-ui.svg +9 -0
- package/docs/public/next-js.svg +25 -0
- package/docs/public/nuxt.svg +3 -0
- package/docs/public/prettier.svg +46 -0
- package/docs/public/react.svg +1 -0
- package/docs/public/tailwind.svg +12 -0
- package/docs/public/typescript.svg +8 -0
- package/docs/public/vite.svg +15 -0
- package/docs/public/vitest.svg +9 -0
- package/docs/public/vue.svg +8 -0
- package/docs/public/vuetify.svg +9 -0
- package/docs/tailwind.config.js +9 -0
- package/index.html +13 -0
- package/lib/galaxy-charts.js +7 -0
- package/package.json +8 -10
- package/postcss.config.js +6 -0
- package/prettier.config.js +5 -0
- package/public/galaxy-charts.xml +138 -0
- package/src/App.vue +23 -0
- package/src/Plugin.vue +37 -0
- package/src/api/client.ts +46 -0
- package/src/api/datasets.ts +34 -0
- package/src/api/visualizations.ts +33 -0
- package/src/components/AlertNotify.vue +35 -0
- package/src/components/ApiStatus.vue +39 -0
- package/src/components/GalaxyCharts.vue +136 -0
- package/src/components/InputConditional.vue +109 -0
- package/src/components/InputData.vue +74 -0
- package/src/components/InputDataColumn.vue +54 -0
- package/src/components/InputForm.vue +119 -0
- package/src/components/InputRepeats.vue +70 -0
- package/src/components/SidePanel.vue +158 -0
- package/src/main.js +27 -0
- package/src/store/columnsStore.ts +59 -0
- package/src/store/configStore.ts +29 -0
- package/src/style.css +3 -0
- package/src/utilities/getFileName.test.js +8 -0
- package/src/utilities/getFileName.ts +4 -0
- package/src/utilities/parseColumns.ts +34 -0
- package/src/utilities/parseDefaults.test.js +13 -0
- package/src/utilities/parseDefaults.ts +17 -0
- package/src/utilities/parseIncoming.ts +32 -0
- package/src/utilities/parsePlugin.ts +95 -0
- package/src/utilities/parseXML.ts +156 -0
- package/src/utilities/simpleError.ts +21 -0
- package/src/utilities/toBoolean.test.js +12 -0
- package/src/utilities/toBoolean.ts +5 -0
- package/tailwind.config.js +8 -0
- package/tsconfig.json +28 -0
- package/vite.config.js +70 -0
- package/dist/galaxy-charts.css +0 -1
- package/dist/galaxy-charts.js +0 -21277
- package/dist/galaxy-charts.umd.cjs +0 -2073
- /package/{dist/types.d.ts → src/types.ts} +0 -0