Skip to content

Commit

Permalink
[UPD] Tsconfig and GanttChart main component
Browse files Browse the repository at this point in the history
  • Loading branch information
Xeyos88 committed Dec 4, 2024
1 parent 4bea854 commit ce969d3
Show file tree
Hide file tree
Showing 25 changed files with 388 additions and 270 deletions.
10 changes: 5 additions & 5 deletions src/components/GGanttBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
<script setup lang="ts">
import { computed, ref, toRefs, watch, onMounted, inject } from "vue"
import useBarDragManagement from "../composables/useBarDragManagement.js"
import useTimePositionMapping from "../composables/useTimePositionMapping.js"
import useBarDragLimit from "../composables/useBarDragLimit.js"
import useBarDragManagement from "../composables/useBarDragManagement"
import useTimePositionMapping from "../composables/useTimePositionMapping"
import useBarDragLimit from "../composables/useBarDragLimit"
import type { GanttBarObject } from "../types"
import provideEmitBarEvent from "../provider/provideEmitBarEvent.js"
import provideConfig from "../provider/provideConfig.js"
import provideEmitBarEvent from "../provider/provideEmitBarEvent"
import provideConfig from "../provider/provideConfig"
import { BAR_CONTAINER_KEY } from "../provider/symbols"
const props = defineProps<{
Expand Down
4 changes: 2 additions & 2 deletions src/components/GGanttBarTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import { computed, toRefs, ref, watch, nextTick } from "vue"
import type { GanttBarObject } from "../types"
import useDayjsHelper from "../composables/useDayjsHelper.js"
import provideConfig from "../provider/provideConfig.js"
import useDayjsHelper from "../composables/useDayjsHelper"
import provideConfig from "../provider/provideConfig"
const TOOLTIP_FORMATS = {
hour: "HH:mm",
Expand Down
Loading

0 comments on commit ce969d3

Please sign in to comment.