@dynect/base 0.7.1 → 0.7.2
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/base/event-calendar/AgendaView.vue +1 -0
- package/src/runtime/components/base/event-calendar/ColorManager.vue +1 -0
- package/src/runtime/components/base/event-calendar/DayEventsOverflowPopup.vue +1 -0
- package/src/runtime/components/base/event-calendar/DayView.vue +1 -0
- package/src/runtime/components/base/event-calendar/DragDropVisualFeedback.vue +1 -0
- package/src/runtime/components/base/event-calendar/EventCalendar.vue +1 -0
- package/src/runtime/components/base/event-calendar/EventModal.vue +1 -0
- package/src/runtime/components/base/event-calendar/EventResizeHandle.vue +1 -0
- package/src/runtime/components/base/event-calendar/ExternalCalendarSettings.vue +1 -0
- package/src/runtime/components/base/event-calendar/LocationDisplay.vue +1 -0
- package/src/runtime/components/base/event-calendar/MonthView.vue +1 -0
- package/src/runtime/components/base/event-calendar/WeekView.vue +1 -0
- package/src/runtime/components/base/org-chart/index.vue +1 -0
- package/src/runtime/components/base/signature/index.vue +1 -0
- package/src/runtime/components/base/toast/Toast.vue +1 -0
- package/src/runtime/components/base/toast/Toaster.vue +1 -0
- package/src/runtime/components/chart/Bar.vue +1 -0
- package/src/runtime/components/chart/Line.vue +1 -0
- package/src/runtime/components/chart/Pie.vue +1 -0
- package/src/runtime/components/chart/Radar.vue +1 -0
- package/src/runtime/components/dynect/Accordion.vue +1 -0
- package/src/runtime/components/dynect/Alert.vue +1 -0
- package/src/runtime/components/dynect/Autocomplete.vue +1 -0
- package/src/runtime/components/dynect/Badge.vue +1 -0
- package/src/runtime/components/dynect/Checkbox.vue +1 -0
- package/src/runtime/components/dynect/DatePicker.vue +1 -0
- package/src/runtime/components/dynect/DateRange.vue +1 -0
- package/src/runtime/components/dynect/Dropzone.vue +1 -0
- package/src/runtime/components/dynect/EventCalendar.vue +1 -0
- package/src/runtime/components/dynect/Filters.vue +1 -0
- package/src/runtime/components/dynect/Gantt.vue +1 -0
- package/src/runtime/components/dynect/Input.vue +1 -0
- package/src/runtime/components/dynect/Modal.vue +1 -0
- package/src/runtime/components/dynect/OtpInput.vue +1 -0
- package/src/runtime/components/dynect/Progress.vue +1 -0
- package/src/runtime/components/dynect/Radio.vue +1 -0
- package/src/runtime/components/dynect/Select.vue +1 -0
- package/src/runtime/components/dynect/SelectMultiple.vue +1 -0
- package/src/runtime/components/dynect/Sheet.vue +1 -0
- package/src/runtime/components/dynect/Signature.vue +1 -0
- package/src/runtime/components/dynect/SwitchColor.vue +1 -0
- package/src/runtime/components/dynect/Table.vue +2 -1
- package/src/runtime/components/dynect/TagsInput.vue +1 -0
- package/src/runtime/components/dynect/Telephone.vue +1 -0
- package/src/runtime/components/dynect/TextEditor.vue +1 -0
- package/src/runtime/components/dynect/Textarea.vue +1 -0
- package/src/runtime/components/dynect/TimePicker.vue +1 -0
- package/src/runtime/components/dynect/Timeline.vue +1 -0
- package/src/runtime/components/dynect/Toggle.vue +1 -0
- package/src/runtime/components/ui/carousel/Carousel.vue +1 -0
- package/src/runtime/components/ui/carousel/CarouselContent.vue +1 -0
- package/src/runtime/components/ui/gantt/Gantt.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttFeatureItem.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/GanttTimeline.vue +1 -0
- package/src/runtime/components/ui/gantt/GanttToday.vue +1 -0
- package/src/runtime/components/ui/inline-editable-input/InlineEditableInput.vue +1 -0
- package/src/runtime/components/ui/kanban/Kanban.vue +1 -0
- 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/resizable/ResizablePanel.vue +1 -0
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
+
import { computed, ref, shallowRef, watch } from 'vue';
|
|
2
3
|
import { useKeyboardNavigation } from './composables/useKeyboardNavigation';
|
|
3
4
|
import { useDragAndDropSystem } from './composables/useDragAndDrop';
|
|
4
5
|
import { useCompatibility } from './composables/useCompatibility';
|
|
@@ -146,6 +146,7 @@
|
|
|
146
146
|
</template>
|
|
147
147
|
|
|
148
148
|
<script lang="ts" setup>
|
|
149
|
+
import { computed, nextTick, onBeforeUnmount, onMounted, ref, watch, watchEffect } from 'vue';
|
|
149
150
|
import { cn } from '@/lib/utils';
|
|
150
151
|
import { type HeightT, type ToastProps, type ToastT, isAction } from './types';
|
|
151
152
|
import { useIsDocumentHidden, getDefaultSwipeDirections } from './hooks';
|
|
@@ -107,6 +107,7 @@
|
|
|
107
107
|
<script lang="ts"></script>
|
|
108
108
|
|
|
109
109
|
<script lang="ts" setup>
|
|
110
|
+
import { computed, nextTick, ref, watchEffect } from 'vue';
|
|
110
111
|
import type { HeightT, Position, ToastT, ToastToDismiss, ToasterProps } from './types';
|
|
111
112
|
import { ToastState } from './state';
|
|
112
113
|
import Toast from './Toast.vue';
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
</template>
|
|
51
51
|
|
|
52
52
|
<script setup lang="ts">
|
|
53
|
+
import { computed, readonly, ref, watch } from 'vue';
|
|
53
54
|
import { useId } from 'nuxt/app';
|
|
54
55
|
import type { DateValue } from '@internationalized/date';
|
|
55
56
|
import { DateFormatter, getLocalTimeZone, parseDate, today } from '@internationalized/date';
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
</template>
|
|
54
54
|
|
|
55
55
|
<script setup lang="ts">
|
|
56
|
+
import { computed, readonly, ref, watch } from 'vue';
|
|
56
57
|
import { useId } from 'nuxt/app';
|
|
57
58
|
import type { DateValue } from '@internationalized/date';
|
|
58
59
|
import { DateFormatter, getLocalTimeZone, today, parseDate } from '@internationalized/date';
|
|
@@ -107,6 +107,7 @@
|
|
|
107
107
|
</template>
|
|
108
108
|
|
|
109
109
|
<script setup lang="ts">
|
|
110
|
+
import { computed, nextTick, onMounted, reactive, readonly, ref, watch } from 'vue';
|
|
110
111
|
import { parsePhoneNumberFromString, type CountryCode, type NumberFormat } from 'libphonenumber-js/max';
|
|
111
112
|
import { cva } from 'class-variance-authority';
|
|
112
113
|
import { useState, useId } from 'nuxt/app';
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
</template>
|
|
52
52
|
|
|
53
53
|
<script setup lang="ts">
|
|
54
|
+
import { computed, onUnmounted, ref } from 'vue';
|
|
54
55
|
import { cn } from '@/lib/utils';
|
|
55
56
|
|
|
56
57
|
const props = defineProps({ id: { type: String, required: true }, startAt: { type: Date, required: true }, endAt: { type: Date, required: true }, class: { type: String, required: false }, status: { type: Object, required: false }, progress: { type: Number, required: false } });
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
</template>
|
|
10
10
|
|
|
11
11
|
<script setup lang="ts" generic="T extends KanbanItemProps">
|
|
12
|
+
import { computed, ref } from 'vue';
|
|
12
13
|
import { makeDraggable } from '@vue-dnd-kit/core';
|
|
13
14
|
import { cn } from '@/lib/utils';
|
|
14
15
|
import type { IDragEvent } from '@vue-dnd-kit/core';
|