feat: replace our home-grown gantt implementation with ganttastic #2180

Merged
konrad merged 78 commits from feature/ganttastic into main 2022-10-27 16:03:27 +00:00
Showing only changes of commit aefda38bdd - Show all commits

View File

@ -1,5 +1,4 @@
<template>
<div>
<Loading
konrad marked this conversation as resolved Outdated

Use loading component. This way it's easier for us to refactor the is-loading styles from bulma later.

Use loading component. This way it's easier for us to refactor the `is-loading` styles from bulma later.

Done.

Done.
v-if="props.isLoading && tasks.size || dayjsLanguageLoading"
class="gantt-container"
@ -36,7 +35,6 @@
/>
</GGanttChart>
</div>
</div>
</template>
<script setup lang="ts">
@ -181,7 +179,7 @@ function dayIsToday(label: string): boolean {
<style lang="scss">
// Not scoped because we need to style the elements inside the gantt chart component
.g-gantt-chart {
width: 2000px;
width: max-content;
}
.g-gantt-row-label {