@dynect/base 0.7.1 → 0.7.3
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 +2 -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 +2 -0
- package/src/runtime/components/dynect/Badge.vue +1 -0
- package/src/runtime/components/dynect/Checkbox.vue +2 -0
- package/src/runtime/components/dynect/DatePicker.vue +2 -0
- package/src/runtime/components/dynect/DateRange.vue +2 -0
- package/src/runtime/components/dynect/Dropzone.vue +2 -0
- package/src/runtime/components/dynect/EventCalendar.vue +1 -0
- package/src/runtime/components/dynect/Filters.vue +1 -0
- package/src/runtime/components/dynect/FormField.vue +1 -0
- package/src/runtime/components/dynect/Gantt.vue +1 -0
- package/src/runtime/components/dynect/Input.vue +2 -0
- package/src/runtime/components/dynect/Modal.vue +1 -0
- package/src/runtime/components/dynect/OtpInput.vue +2 -0
- package/src/runtime/components/dynect/Progress.vue +1 -0
- package/src/runtime/components/dynect/Radio.vue +2 -0
- package/src/runtime/components/dynect/Select.vue +2 -0
- package/src/runtime/components/dynect/SelectMultiple.vue +2 -0
- package/src/runtime/components/dynect/Sheet.vue +1 -0
- package/src/runtime/components/dynect/Signature.vue +2 -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 +2 -0
- package/src/runtime/components/dynect/Telephone.vue +2 -0
- package/src/runtime/components/dynect/TextEditor.vue +1 -0
- package/src/runtime/components/dynect/Textarea.vue +2 -0
- package/src/runtime/components/dynect/TimePicker.vue +2 -0
- package/src/runtime/components/dynect/Timeline.vue +1 -0
- package/src/runtime/components/dynect/Toggle.vue +2 -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/field/index.ts +1 -0
- package/src/runtime/components/ui/form/index.ts +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,8 @@
|
|
|
50
50
|
</template>
|
|
51
51
|
|
|
52
52
|
<script setup lang="ts">
|
|
53
|
+
import { useField } from 'vee-validate';
|
|
54
|
+
import { computed, readonly, ref, watch } from 'vue';
|
|
53
55
|
import { useId } from 'nuxt/app';
|
|
54
56
|
import type { DateValue } from '@internationalized/date';
|
|
55
57
|
import { DateFormatter, getLocalTimeZone, parseDate, today } from '@internationalized/date';
|
|
@@ -53,6 +53,8 @@
|
|
|
53
53
|
</template>
|
|
54
54
|
|
|
55
55
|
<script setup lang="ts">
|
|
56
|
+
import { useField } from 'vee-validate';
|
|
57
|
+
import { computed, readonly, ref, watch } from 'vue';
|
|
56
58
|
import { useId } from 'nuxt/app';
|
|
57
59
|
import type { DateValue } from '@internationalized/date';
|
|
58
60
|
import { DateFormatter, getLocalTimeZone, today, parseDate } from '@internationalized/date';
|
|
@@ -101,6 +101,8 @@
|
|
|
101
101
|
</template>
|
|
102
102
|
|
|
103
103
|
<script setup lang="ts">
|
|
104
|
+
import { Field, useField } from 'vee-validate';
|
|
105
|
+
import { computed, readonly, ref, watch } from 'vue';
|
|
104
106
|
import { useId } from 'nuxt/app';
|
|
105
107
|
import { onClickOutside } from '@vueuse/core';
|
|
106
108
|
import { cva } from 'class-variance-authority';
|
|
@@ -107,6 +107,8 @@
|
|
|
107
107
|
</template>
|
|
108
108
|
|
|
109
109
|
<script setup lang="ts">
|
|
110
|
+
import { useField } from 'vee-validate';
|
|
111
|
+
import { computed, nextTick, onMounted, reactive, readonly, ref, watch } from 'vue';
|
|
110
112
|
import { parsePhoneNumberFromString, type CountryCode, type NumberFormat } from 'libphonenumber-js/max';
|
|
111
113
|
import { cva } from 'class-variance-authority';
|
|
112
114
|
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';
|