Rework data loading, get first dashboard roughly in order.

This commit is contained in:
Joshua Bemenderfer
2021-12-30 13:25:31 -05:00
parent b8cca082ed
commit 38976cf29d
180 changed files with 632 additions and 263 deletions

11
components.d.ts vendored
View File

@@ -5,9 +5,7 @@
declare module 'vue' {
export interface GlobalComponents {
Card: typeof import('./src/components/Card.vue')['default']
CasesPerDay: typeof import('./src/components/charts/CasesPerDay.vue')['default']
Data: typeof import('./src/components/Data.vue')['default']
DataFetcher: typeof import('./src/components/DataFetcher.vue')['default']
ChipsTesting: typeof import('./src/components/charts/state/testing/ChipsTesting.vue')['default']
IconHealthiconsClinicalFOutline: typeof import('~icons/healthicons/clinical-f-outline')['default']
IconMdiGenderMaleFemale: typeof import('~icons/mdi/gender-male-female')['default']
IconMdiGraveStone: typeof import('~icons/mdi/grave-stone')['default']
@@ -22,7 +20,12 @@ declare module 'vue' {
JSGrid: typeof import('./src/components/jscharting/JSGrid.vue')['default']
JSLabel: typeof import('./src/components/jscharting/JSLabel.vue')['default']
SliceSelector: typeof import('./src/components/SliceSelector.vue')['default']
TestingTrend: typeof import('./src/components/charts/TestingTrend.vue')['default']
StatCard: typeof import('./src/components/cards/StatCard.vue')['default']
TestingDataSetup: typeof import('./src/components/pages/state/TestingDataSetup.vue')['default']
TrendAntigenPositive: typeof import('./src/components/charts/state/testing/TrendAntigenPositive.vue')['default']
TrendAntigenTests: typeof import('./src/components/charts/state/testing/TrendAntigenTests.vue')['default']
TrendPCRPositive: typeof import('./src/components/charts/state/testing/TrendPCRPositive.vue')['default']
TrendPCRTests: typeof import('./src/components/charts/state/testing/TrendPCRTests.vue')['default']
Util: typeof import('./src/components/charts/util.js')['default']
}
}