Skip to content

Commit

Permalink
Merge pull request #2134 from Brett-S-OWB/standard-custom-theme
Browse files Browse the repository at this point in the history
Standard theme add energy flow chart
  • Loading branch information
benderl authored Jan 13, 2025
2 parents 66e0695 + b2430a1 commit a7d8478
Show file tree
Hide file tree
Showing 19 changed files with 1,241 additions and 106 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Herkunft der Icons:
https://www.veryicon.com/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
v-for="(chartComponent, index) in chartCarouselItems"
:key="index"
:name="chartComponent.name"
class="col items-center justify-center"
>
<component :is="chartComponent" />
<component :is="chartComponent.component" />
</q-carousel-slide>

<template v-slot:control>
Expand All @@ -39,7 +38,7 @@
import { ref } from 'vue';
import { useQuasar } from 'quasar';
import EnergyFlowChart from './charts/EnergyFlowChart.vue';
import EnergyFlowChart from './charts/energyFlowChart/EnergyFlowChart.vue';
import HistoryChart from './charts/HistoryChart.vue';
defineOptions({
Expand All @@ -48,6 +47,15 @@ defineOptions({
const $q = useQuasar();
const fullscreen = ref(false);
const chartCarouselItems = [EnergyFlowChart, HistoryChart];
const currentSlide = ref<string>(EnergyFlowChart.__name ?? '');
const chartCarouselItems = [
{
name: 'EnergyFlowChart',
component: EnergyFlowChart,
},
{
name: 'HistoryChart',
component: HistoryChart,
},
];
const currentSlide = ref<string>(chartCarouselItems[0].name);
</script>

This file was deleted.

Loading

0 comments on commit a7d8478

Please sign in to comment.