@dynect/base 0.10.0 → 0.10.1
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/package.json +1 -1
- package/src/runtime/components/dynect/Dropzone.vue +1 -0
- package/src/runtime/components/dynect/Gantt.vue +1 -1
- package/src/runtime/components/dynect/Kanban.vue +1 -1
- package/src/runtime/components/ui/gantt/GanttCreateMarkerTrigger.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttFeatureItem.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttFeatureList.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttFeatureListGroup.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttHeader.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttMarker.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttSidebar.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttSidebarGroup.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttSidebarItem.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttTimeline.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttToday.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttZoomControls.vue +1 -0
- package/src/runtime/components/ui/gantt/index.ts +1 -1
- package/src/runtime/components/ui/kanban/KanbanBoard.vue +1 -0
- package/src/runtime/components/ui/kanban/KanbanCard.vue +1 -0
- package/src/runtime/components/ui/kanban/KanbanCards.vue +1 -0
- package/src/runtime/components/ui/kanban/index.ts +1 -1
package/package.json
CHANGED
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
</template>
|
|
96
96
|
|
|
97
97
|
<script setup lang="ts">
|
|
98
|
+
import { useDropzone } from '../../composables/useDropzone';
|
|
98
99
|
import { useField } from 'vee-validate';
|
|
99
100
|
import { computed, onMounted, onUnmounted, ref, watch } from 'vue';
|
|
100
101
|
import { useId } from 'nuxt/app';
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
<script setup lang="ts" generic="T extends DynectGanttFeature">
|
|
92
92
|
import { computed } from 'vue';
|
|
93
93
|
import { cn } from '@/lib/utils';
|
|
94
|
-
import type { GanttFeature, GanttRange } from '
|
|
94
|
+
import type { GanttFeature, GanttRange } from '../../composables/useGantt';
|
|
95
95
|
|
|
96
96
|
export interface DynectGanttFeature extends GanttFeature {
|
|
97
97
|
[key: string]: any;
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
|
|
53
53
|
<script setup lang="ts" generic="T extends KanbanItemProps, C extends KanbanColumnProps">
|
|
54
54
|
import { cn } from '@/lib/utils';
|
|
55
|
-
import type { KanbanItemProps, KanbanColumnProps } from '
|
|
55
|
+
import type { KanbanItemProps, KanbanColumnProps } from '../../composables/useKanban';
|
|
56
56
|
|
|
57
57
|
export interface DynectKanbanColumn extends KanbanColumnProps {
|
|
58
58
|
color?: string;
|
|
@@ -14,5 +14,5 @@ export { default as GanttCreateMarkerTrigger } from './GanttCreateMarkerTrigger.
|
|
|
14
14
|
export { default as GanttZoomControls } from './GanttZoomControls.vue';
|
|
15
15
|
|
|
16
16
|
// Gantt composable and types
|
|
17
|
-
export type { GanttFeature, GanttRange } from '
|
|
17
|
+
export type { GanttFeature, GanttRange } from '../../../composables/useGantt';
|
|
18
18
|
export type { GanttMarkerProps } from './GanttMarker.vue';
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
</template>
|
|
10
10
|
|
|
11
11
|
<script setup lang="ts" generic="T extends KanbanItemProps">
|
|
12
|
+
import { useKanbanContext } from '../../../composables/useKanban';
|
|
12
13
|
import { computed, ref } from 'vue';
|
|
13
14
|
import { makeDraggable } from '@vue-dnd-kit/core';
|
|
14
15
|
import { cn } from '@/lib/utils';
|
|
@@ -5,4 +5,4 @@ export { default as KanbanCards } from './KanbanCards.vue';
|
|
|
5
5
|
export { default as KanbanHeader } from './KanbanHeader.vue';
|
|
6
6
|
|
|
7
7
|
// Export types
|
|
8
|
-
export type { KanbanItemProps, KanbanColumnProps } from '
|
|
8
|
+
export type { KanbanItemProps, KanbanColumnProps } from '../../../composables/useKanban';
|