@progress/kendo-vue-scheduler 8.0.3-develop.2 → 8.0.3-develop.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/Scheduler.d.ts +1536 -0
- package/common.d.ts +13 -0
- package/components/BaseView.d.ts +74 -0
- package/components/CurrentTimeMarker.d.ts +35 -0
- package/components/CurrentTimeMarkerArrow.d.ts +33 -0
- package/components/DateHeaderCell.d.ts +70 -0
- package/components/SchedulerActionButtons.d.ts +32 -0
- package/components/SchedulerForm.d.ts +70 -0
- package/components/SchedulerOccurrenceDialog.d.ts +75 -0
- package/components/SchedulerRemoveDialog.d.ts +61 -0
- package/components/ShowMoreItemsButton.d.ts +36 -0
- package/components/TimeHeaderCell.d.ts +70 -0
- package/components/footer/SchedulerFooter.d.ts +20 -0
- package/components/footer/bussiness-hours/BusinessHours.d.ts +27 -0
- package/components/footer/bussiness-hours/BusinessHours.js +1 -1
- package/components/footer/bussiness-hours/BusinessHours.mjs +1 -1
- package/components/header/SchedulerHeader.d.ts +23 -0
- package/components/header/navigation/DatePickerToggleButton.d.ts +16 -0
- package/components/header/navigation/NavigationDatePicker.d.ts +34 -0
- package/components/header/navigation/SchedulerNavigation.d.ts +39 -0
- package/components/header/view-selector/SchedulerViewSelector.d.ts +20 -0
- package/components/header/view-selector/ViewSelectorItem.d.ts +25 -0
- package/components/header/view-selector/ViewSelectorList.d.ts +17 -0
- package/constants/main.d.ts +66 -0
- package/context/SchedulerContext.d.ts +29 -0
- package/context/SchedulerEditItemContext.d.ts +22 -0
- package/context/SchedulerEditSlotContext.d.ts +17 -0
- package/context/SchedulerEditTaskContext.d.ts +18 -0
- package/context/SchedulerResourceIteratorContext.d.ts +47 -0
- package/context/SchedulerViewContext.d.ts +25 -0
- package/context/main.d.ts +12 -0
- package/dist/cdn/js/kendo-vue-scheduler.js +1 -1
- package/editors/FilterableComboBox.d.ts +38 -0
- package/editors/ResourceEditor.d.ts +60 -0
- package/editors/SchedulerFormEditor.d.ts +3858 -0
- package/editors/ZonedDateTime.d.ts +32 -0
- package/editors/common.d.ts +19 -0
- package/hooks/main.d.ts +16 -0
- package/hooks/use-items-focus.d.ts +29 -0
- package/hooks/use-items-focus.js +1 -1
- package/hooks/use-items-focus.mjs +2 -2
- package/hooks/use-items-selection.d.ts +36 -0
- package/hooks/use-items-selection.js +1 -1
- package/hooks/use-items-selection.mjs +2 -2
- package/hooks/use-slots-focus.d.ts +39 -0
- package/hooks/use-slots-focus.js +1 -1
- package/hooks/use-slots-focus.mjs +2 -2
- package/hooks/use-slots-selection.d.ts +29 -0
- package/hooks/use-slots-selection.js +1 -1
- package/hooks/use-slots-selection.mjs +2 -2
- package/hooks/useAsyncMouseEnterLeave.d.ts +17 -0
- package/hooks/useCellSync.d.ts +16 -0
- package/hooks/useEditable.d.ts +10 -0
- package/hooks/usePropOrState.d.ts +9 -0
- package/hooks/useRowSync.d.ts +17 -0
- package/hooks/useSchedulerSlot.d.ts +13 -0
- package/hooks/useSlotExpand.d.ts +10 -0
- package/hooks/useWorkHours.d.ts +9 -0
- package/index.d.mts +45 -10991
- package/index.d.ts +45 -10991
- package/items/SchedulerEditItem.d.ts +896 -0
- package/items/SchedulerItem.d.ts +404 -0
- package/items/SchedulerItemContent.d.ts +27 -0
- package/items/SchedulerViewItem.d.ts +235 -0
- package/items/hooks/use-drag-item.d.ts +40 -0
- package/items/hooks/use-drag-item.js +1 -1
- package/items/hooks/use-drag-item.mjs +2 -2
- package/items/hooks/use-form-item.d.ts +29 -0
- package/items/hooks/use-form-item.js +1 -1
- package/items/hooks/use-form-item.mjs +2 -2
- package/items/hooks/use-remove-item.d.ts +37 -0
- package/items/hooks/use-remove-item.js +1 -1
- package/items/hooks/use-remove-item.mjs +2 -2
- package/items/hooks/use-resize-item.d.ts +45 -0
- package/items/hooks/use-resize-item.js +1 -1
- package/items/hooks/use-resize-item.mjs +2 -2
- package/items/hooks/use-series.d.ts +32 -0
- package/items/hooks/use-series.js +1 -1
- package/items/hooks/use-series.mjs +2 -2
- package/items/hooks/use-show-occurrence-dialog.d.ts +36 -0
- package/items/hooks/use-show-occurrence-dialog.js +1 -1
- package/items/hooks/use-show-occurrence-dialog.mjs +2 -2
- package/items/hooks/use-show-remove-item-dialog.d.ts +36 -0
- package/items/hooks/use-show-remove-item-dialog.js +1 -1
- package/items/hooks/use-show-remove-item-dialog.mjs +2 -2
- package/messages/main.d.ts +243 -0
- package/models/DataItem.d.ts +15 -0
- package/models/DateRange.d.ts +25 -0
- package/models/EditableProp.d.ts +36 -0
- package/models/Fields.d.ts +24 -0
- package/models/Group.d.ts +15 -0
- package/models/Item.d.ts +69 -0
- package/models/NavigationAction.d.ts +24 -0
- package/models/Occurrence.d.ts +59 -0
- package/models/Omit.d.ts +11 -0
- package/models/Orientation.d.ts +9 -0
- package/models/Range.d.ts +17 -0
- package/models/Rect.d.ts +22 -0
- package/models/Resource.d.ts +15 -0
- package/models/SchedulerGroup.d.ts +20 -0
- package/models/SchedulerHandle.d.ts +13 -0
- package/models/SchedulerModelFields.d.ts +69 -0
- package/models/SchedulerResource.d.ts +40 -0
- package/models/SchedulerView.d.ts +90 -0
- package/models/Slot.d.ts +58 -0
- package/models/events.d.ts +88 -0
- package/models/main.d.ts +24 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +19 -13
- package/recurrence/RecurrenceEditor.d.ts +82 -0
- package/recurrence/RecurrenceFrequencyEditor.d.ts +32 -0
- package/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +59 -0
- package/recurrence/common.d.ts +64 -0
- package/recurrence/types/EndRule.d.ts +11 -0
- package/recurrence/types/Frequency.d.ts +11 -0
- package/recurrence/types/FrequencyEntity.d.ts +15 -0
- package/recurrence/types/MonthEntity.d.ts +14 -0
- package/recurrence/types/OffsetPosition.d.ts +11 -0
- package/recurrence/types/OffsetPositionEntity.d.ts +14 -0
- package/recurrence/types/RepeatOnRule.d.ts +11 -0
- package/recurrence/types/WeekDayEntity.d.ts +14 -0
- package/recurrence/types/WeekDayRule.d.ts +14 -0
- package/recurrence/utils/main.d.ts +7 -0
- package/reducers/editReducer.d.ts +40 -0
- package/reducers/main.d.ts +8 -0
- package/services/itemsService.d.ts +21 -0
- package/services/main.d.ts +11 -0
- package/services/occurrenceService.d.ts +14 -0
- package/services/rangeService.d.ts +13 -0
- package/services/slotsService.d.ts +15 -0
- package/slots/SchedulerEditSlot.d.ts +148 -0
- package/slots/SchedulerSlot.d.ts +248 -0
- package/slots/SchedulerViewSlot.d.ts +134 -0
- package/tasks/SchedulerEditTask.d.ts +225 -0
- package/tasks/SchedulerTask.d.ts +139 -0
- package/tasks/SchedulerViewTask.d.ts +120 -0
- package/utils/main.d.ts +192 -0
- package/utils/main.mjs +3 -3
- package/views/agenda/AgendaView.d.ts +173 -0
- package/views/agenda/AgendaView.js +1 -1
- package/views/agenda/AgendaView.mjs +2 -2
- package/views/agenda/AgendaViewBody.d.ts +53 -0
- package/views/agenda/AgendaViewHead.d.ts +24 -0
- package/views/agenda/AgendaViewHeaderItem.d.ts +22 -0
- package/views/common/HorizontalResourceIterator.d.ts +57 -0
- package/views/common/SchedulerDrag.d.ts +459 -0
- package/views/common/SchedulerResize.d.ts +462 -0
- package/views/common/VerticalResourceIterator.d.ts +57 -0
- package/views/common/utils.d.ts +41 -0
- package/views/day/DayView.d.ts +208 -0
- package/views/day/DayViewAllDayRowContent.d.ts +19 -0
- package/views/day/DayViewAllDaySlots.d.ts +63 -0
- package/views/day/DayViewGroupRowContent.d.ts +19 -0
- package/views/day/DayViewHead.d.ts +21 -0
- package/views/day/DayViewMiddleRow.d.ts +82 -0
- package/views/day/DayViewRowContent.d.ts +29 -0
- package/views/day/DayViewVerticalRow.d.ts +43 -0
- package/views/day/DayViewVerticalSlotsRow.d.ts +94 -0
- package/views/day/DayViewVerticalSlotsRow.mjs +3 -3
- package/views/day/MultiDayView.d.ts +411 -0
- package/views/month/MonthView.d.ts +205 -0
- package/views/month/MonthView.js +1 -1
- package/views/month/MonthView.mjs +1 -1
- package/views/month/MonthViewBody.d.ts +57 -0
- package/views/month/MonthViewHead.d.ts +30 -0
- package/views/time/MultiDayTimelineView.d.ts +382 -0
- package/views/time/TimelineView.d.ts +233 -0
- package/views/time/TimelineViewAllEventsRowContent.d.ts +13 -0
- package/views/time/TimelineViewBody.d.ts +66 -0
- package/views/time/TimelineViewBody.mjs +3 -3
- package/views/time/TimelineViewRowContent.d.ts +13 -0
- package/views/week/WeekView.d.ts +270 -0
- package/views/week/WeekView.mjs +1 -1
- package/views/week/WorkWeekView.d.ts +141 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Defines the model fields that will be used for creating `SchedulerEvent` instances.
|
|
10
|
+
*/
|
|
11
|
+
export interface SchedulerModelFields {
|
|
12
|
+
/**
|
|
13
|
+
* The name of the `ID` model field.
|
|
14
|
+
* Defaults to `"id"`.
|
|
15
|
+
*/
|
|
16
|
+
id?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The name of the start date model field.
|
|
19
|
+
* Defaults to `"start"`.
|
|
20
|
+
*/
|
|
21
|
+
start?: string;
|
|
22
|
+
/**
|
|
23
|
+
* The name of the start timezone model field.
|
|
24
|
+
* Defaults to `"startTimezone"`.
|
|
25
|
+
*/
|
|
26
|
+
startTimezone?: string;
|
|
27
|
+
/** @hidden */
|
|
28
|
+
originalStart?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The name of the end date model field.
|
|
31
|
+
* Defaults to `"end"`.
|
|
32
|
+
*/
|
|
33
|
+
end?: string;
|
|
34
|
+
/**
|
|
35
|
+
* The name of the end timezone model field.
|
|
36
|
+
* Defaults to `"endTimezone"`.
|
|
37
|
+
*/
|
|
38
|
+
endTimezone?: string;
|
|
39
|
+
/**
|
|
40
|
+
* The name of the all-day flag model field.
|
|
41
|
+
* Defaults to `"isAllDay"`.
|
|
42
|
+
*/
|
|
43
|
+
isAllDay?: string;
|
|
44
|
+
/**
|
|
45
|
+
* The name of the title model field.
|
|
46
|
+
* Defaults to `"title"`.
|
|
47
|
+
*/
|
|
48
|
+
title?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The name of the description model field.
|
|
51
|
+
* Defaults to `"title"`.
|
|
52
|
+
*/
|
|
53
|
+
description?: string;
|
|
54
|
+
/**
|
|
55
|
+
* The name of the recurrence model field.
|
|
56
|
+
* Defaults to `"recurrenceRule"`.
|
|
57
|
+
*/
|
|
58
|
+
recurrenceRule?: string;
|
|
59
|
+
/**
|
|
60
|
+
* The name of the recurrence ID model field.
|
|
61
|
+
* Defaults to `"recurrenceId"`.
|
|
62
|
+
*/
|
|
63
|
+
recurrenceId?: string;
|
|
64
|
+
/**
|
|
65
|
+
* The name of the recurrence exceptions model field.
|
|
66
|
+
* Defaults to `"recurrenceExceptions"`.
|
|
67
|
+
*/
|
|
68
|
+
recurrenceExceptions?: string;
|
|
69
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* An interface for the resources of the Scheduler.
|
|
10
|
+
*/
|
|
11
|
+
export interface SchedulerResource {
|
|
12
|
+
/**
|
|
13
|
+
* The resource name. If not set, the value of the `field` option is used.
|
|
14
|
+
*/
|
|
15
|
+
name?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The field name of the event that contains the resource value.
|
|
18
|
+
*/
|
|
19
|
+
field: string;
|
|
20
|
+
/**
|
|
21
|
+
* The resource data.
|
|
22
|
+
*/
|
|
23
|
+
data: any[];
|
|
24
|
+
/**
|
|
25
|
+
* The field name from the data that contains the resource value.
|
|
26
|
+
*/
|
|
27
|
+
valueField: string;
|
|
28
|
+
/**
|
|
29
|
+
* The field name from the data that contains the resource text.
|
|
30
|
+
*/
|
|
31
|
+
textField: string;
|
|
32
|
+
/**
|
|
33
|
+
* The field name from the data that contains the resource color.
|
|
34
|
+
*/
|
|
35
|
+
colorField?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Specifies if the events have multiple resource values.
|
|
38
|
+
*/
|
|
39
|
+
multiple?: boolean;
|
|
40
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { LocalizationService, IntlService } from '@progress/kendo-vue-intl';
|
|
9
|
+
import { DateRange } from './DateRange';
|
|
10
|
+
import { Day } from '@progress/kendo-date-math';
|
|
11
|
+
import { DataAction } from '../Scheduler';
|
|
12
|
+
/**
|
|
13
|
+
* Represents the arguments which are passed to the [dateRange]({% slug api_scheduler_schedulerviewprops %}#toc-daterange) function.
|
|
14
|
+
*/
|
|
15
|
+
export interface SchedulerViewDateRangeArgs {
|
|
16
|
+
date: Date;
|
|
17
|
+
intl: IntlService;
|
|
18
|
+
timezone?: string;
|
|
19
|
+
numberOfDays?: number;
|
|
20
|
+
workWeekStart?: Day;
|
|
21
|
+
workWeekEnd?: Day;
|
|
22
|
+
}
|
|
23
|
+
/** @hidden */
|
|
24
|
+
export type SchedulerViewDateRangeFunction = (args: SchedulerViewDateRangeArgs) => DateRange;
|
|
25
|
+
/**
|
|
26
|
+
* Represents the required props which every [SchedulerView]({% slug api_scheduler_schedulerviewprops %}) must accept.
|
|
27
|
+
*/
|
|
28
|
+
export interface SchedulerViewProps {
|
|
29
|
+
/**
|
|
30
|
+
* The name property is used by the Scheduler to match which view is selected. Every view has a default name.
|
|
31
|
+
*/
|
|
32
|
+
name?: string;
|
|
33
|
+
/**
|
|
34
|
+
* The title to be displayed in the view selection list in the Toolbar.
|
|
35
|
+
* If a function is passed, it will receive a [LocalizationService]({ slug api_intl_localizationservice }) as an argument
|
|
36
|
+
*/
|
|
37
|
+
title?: string | ((localization: LocalizationService) => string);
|
|
38
|
+
/**
|
|
39
|
+
* Called every time any of the SchedulerView Slots or Items trigger a data action, through editing, deleting or creating new `DataItem`.
|
|
40
|
+
*/
|
|
41
|
+
onDataaction?: (action: DataAction) => void;
|
|
42
|
+
/**
|
|
43
|
+
* Specifies the number of days to be shown in the current view.
|
|
44
|
+
*/
|
|
45
|
+
numberOfDays?: number;
|
|
46
|
+
/**
|
|
47
|
+
* The long-date format for displaying the
|
|
48
|
+
* selected date in the Scheduler toolbar.
|
|
49
|
+
* Defaults to `{0:Y}`
|
|
50
|
+
* ([more information](https://www.github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md))
|
|
51
|
+
*/
|
|
52
|
+
selectedDateFormat?: string;
|
|
53
|
+
/**
|
|
54
|
+
* The short-date format for displaying the
|
|
55
|
+
* selected date in the Scheduler toolbar.
|
|
56
|
+
* Defaults to `{0:Y}`
|
|
57
|
+
* ([more information](https://www.github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md))
|
|
58
|
+
*/
|
|
59
|
+
selectedShortDateFormat?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Overrides the `dateRange` calculated by the `Scheduler` component.
|
|
62
|
+
*
|
|
63
|
+
* If a function is passed, an object of type [SchedulerViewDateRangeArgs]({% slug api_scheduler_schedulerviewdaterangeargs %}) will be passed.
|
|
64
|
+
*/
|
|
65
|
+
dateRange?: DateRange | ((args: SchedulerViewDateRangeArgs) => DateRange);
|
|
66
|
+
/** @hidden */
|
|
67
|
+
header?: any;
|
|
68
|
+
/** @hidden */
|
|
69
|
+
footer?: any;
|
|
70
|
+
/** @hidden */
|
|
71
|
+
slotDivisions?: number;
|
|
72
|
+
/** @hidden */
|
|
73
|
+
slotDuration?: number;
|
|
74
|
+
/** @hidden */
|
|
75
|
+
workWeekStart?: Day;
|
|
76
|
+
/** @hidden */
|
|
77
|
+
workWeekEnd?: Day;
|
|
78
|
+
/** @hidden */
|
|
79
|
+
format?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Overrides the `dragItem` prop of the Scheduler for the specified view only.
|
|
82
|
+
*/
|
|
83
|
+
dragItem?: any;
|
|
84
|
+
/**
|
|
85
|
+
* Overrides the `resizeItem` prop of the Scheduler for the specified view only.
|
|
86
|
+
*/
|
|
87
|
+
resizeItem?: any;
|
|
88
|
+
}
|
|
89
|
+
/** @hidden */
|
|
90
|
+
export type SchedulerView = any;
|
package/models/Slot.d.ts
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ZonedDate } from '@progress/kendo-date-math';
|
|
9
|
+
import { Item } from './Item';
|
|
10
|
+
import { Group } from './Group';
|
|
11
|
+
import { Range } from './Range';
|
|
12
|
+
/** @hidden */
|
|
13
|
+
export interface Slot {
|
|
14
|
+
/** @hidden */
|
|
15
|
+
refTo: any;
|
|
16
|
+
/** @hidden */
|
|
17
|
+
cSlot?: any;
|
|
18
|
+
/**
|
|
19
|
+
* Represents the consecutive number of the slot in the current range.
|
|
20
|
+
*/
|
|
21
|
+
index: number;
|
|
22
|
+
/**
|
|
23
|
+
* The `end` date of the slot.
|
|
24
|
+
*/
|
|
25
|
+
start: Date;
|
|
26
|
+
/**
|
|
27
|
+
* The `end` date of the slot.
|
|
28
|
+
*/
|
|
29
|
+
end: Date;
|
|
30
|
+
/**
|
|
31
|
+
* Represents the `start` Date in the provided timezone.
|
|
32
|
+
*
|
|
33
|
+
* For more information about timezones, refer to the [Scheduler TImezones]({% slug timezones_scheduler %}) article.
|
|
34
|
+
*/
|
|
35
|
+
zonedStart: ZonedDate;
|
|
36
|
+
/**
|
|
37
|
+
* Represents the `end` Date in the provided timezone.
|
|
38
|
+
*
|
|
39
|
+
* For more information about timezones, refer to the [Scheduler TImezones]({% slug timezones_scheduler %}) article.
|
|
40
|
+
*/
|
|
41
|
+
zonedEnd: ZonedDate;
|
|
42
|
+
/**
|
|
43
|
+
* A collection of all `items` which fits in the current slot.
|
|
44
|
+
*/
|
|
45
|
+
items: Item[];
|
|
46
|
+
/**
|
|
47
|
+
* Represents the current group in which the slot is rendered.
|
|
48
|
+
*/
|
|
49
|
+
group: Group;
|
|
50
|
+
/**
|
|
51
|
+
* Represents the current range in which the slot is rendered.
|
|
52
|
+
*/
|
|
53
|
+
range: Range;
|
|
54
|
+
/**
|
|
55
|
+
* Represents if the slot is an `All-day` slot.
|
|
56
|
+
*/
|
|
57
|
+
isAllDay?: boolean;
|
|
58
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { SchedulerItemHandle } from '../items/SchedulerItem';
|
|
9
|
+
import { SchedulerSlotHandle } from '../slots/SchedulerSlot';
|
|
10
|
+
import { SchedulerTaskHandle } from '../tasks/SchedulerTask';
|
|
11
|
+
/** @hidden */
|
|
12
|
+
export interface BaseEvent<T> {
|
|
13
|
+
target: T;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
export interface ItemDragEvent {
|
|
19
|
+
pageX: number;
|
|
20
|
+
pageY: number;
|
|
21
|
+
clientX: number;
|
|
22
|
+
clientY: number;
|
|
23
|
+
offsetX: number;
|
|
24
|
+
offsetY: number;
|
|
25
|
+
type: string;
|
|
26
|
+
ctrlKey: boolean;
|
|
27
|
+
shiftKey: boolean;
|
|
28
|
+
altKey: boolean;
|
|
29
|
+
originalEvent: PointerEvent;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
export interface ViewChangeEvent {
|
|
35
|
+
target: any;
|
|
36
|
+
event: any;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* @hidden
|
|
40
|
+
*/
|
|
41
|
+
export interface SchedulerItemFocusEvent {
|
|
42
|
+
target: SchedulerItemHandle;
|
|
43
|
+
event: any;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @hidden
|
|
47
|
+
*/
|
|
48
|
+
export interface SchedulerItemMouseEvent {
|
|
49
|
+
target: SchedulerItemHandle;
|
|
50
|
+
event: any;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @hidden
|
|
54
|
+
*/
|
|
55
|
+
export interface SchedulerItemKeyboardEvent {
|
|
56
|
+
target: SchedulerItemHandle;
|
|
57
|
+
event: any;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* @hidden
|
|
61
|
+
*/
|
|
62
|
+
export interface SchedulerItemDragEvent {
|
|
63
|
+
target: SchedulerItemHandle;
|
|
64
|
+
dragEvent: ItemDragEvent;
|
|
65
|
+
}
|
|
66
|
+
export interface SchedulerTaskMouseEvent {
|
|
67
|
+
target: SchedulerTaskHandle;
|
|
68
|
+
event: any;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @hidden
|
|
72
|
+
*/
|
|
73
|
+
export interface SchedulerSlotFocusEvent {
|
|
74
|
+
target: SchedulerSlotHandle;
|
|
75
|
+
event: any;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* @hidden
|
|
79
|
+
*/
|
|
80
|
+
export interface SchedulerSlotMouseEvent {
|
|
81
|
+
target: SchedulerSlotHandle;
|
|
82
|
+
event: any;
|
|
83
|
+
}
|
|
84
|
+
/** @hidden */
|
|
85
|
+
export interface SchedulerSlotKeyboardEvent {
|
|
86
|
+
target: SchedulerSlotHandle;
|
|
87
|
+
event: any;
|
|
88
|
+
}
|
package/models/main.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
export * from './DateRange';
|
|
9
|
+
export * from './DataItem';
|
|
10
|
+
export * from './SchedulerModelFields';
|
|
11
|
+
export * from './Rect';
|
|
12
|
+
export * from './Item';
|
|
13
|
+
export * from './Slot';
|
|
14
|
+
export * from './Occurrence';
|
|
15
|
+
export * from './Range';
|
|
16
|
+
export * from './Group';
|
|
17
|
+
export * from './SchedulerGroup';
|
|
18
|
+
export * from './EditableProp';
|
|
19
|
+
export * from './SchedulerView';
|
|
20
|
+
export * from './SchedulerResource';
|
|
21
|
+
export * from './events';
|
|
22
|
+
export * from './Resource';
|
|
23
|
+
export * from './Orientation';
|
|
24
|
+
export * from './Fields';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { PackageMetadata } from '@progress/kendo-licensing';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare const packageMetadata: PackageMetadata;
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-scheduler",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-scheduler",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773401820,version:"8.0.3-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "8.0.3-develop.
|
|
13
|
+
publishDate: 1773401820,
|
|
14
|
+
version: "8.0.3-develop.3",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-scheduler",
|
|
3
|
-
"version": "8.0.3-develop.
|
|
3
|
+
"version": "8.0.3-develop.3",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -9,8 +9,14 @@
|
|
|
9
9
|
"types": "./index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"import":
|
|
13
|
-
|
|
12
|
+
"import": {
|
|
13
|
+
"types": "./index.d.mts",
|
|
14
|
+
"default": "./index.mjs"
|
|
15
|
+
},
|
|
16
|
+
"require": {
|
|
17
|
+
"types": "./index.d.ts",
|
|
18
|
+
"default": "./index.js"
|
|
19
|
+
}
|
|
14
20
|
},
|
|
15
21
|
"./package.json": {
|
|
16
22
|
"default": "./package.json"
|
|
@@ -21,15 +27,15 @@
|
|
|
21
27
|
"@progress/kendo-date-math": "^1.5.13",
|
|
22
28
|
"@progress/kendo-drawing": "^1.20.1",
|
|
23
29
|
"@progress/kendo-licensing": "^1.7.2",
|
|
24
|
-
"@progress/kendo-vue-common": "8.0.3-develop.
|
|
25
|
-
"@progress/kendo-vue-buttons": "8.0.3-develop.
|
|
26
|
-
"@progress/kendo-vue-dateinputs": "8.0.3-develop.
|
|
27
|
-
"@progress/kendo-vue-dialogs": "8.0.3-develop.
|
|
28
|
-
"@progress/kendo-vue-dropdowns": "8.0.3-develop.
|
|
29
|
-
"@progress/kendo-vue-form": "8.0.3-develop.
|
|
30
|
-
"@progress/kendo-vue-inputs": "8.0.3-develop.
|
|
31
|
-
"@progress/kendo-vue-intl": "8.0.3-develop.
|
|
32
|
-
"@progress/kendo-vue-popup": "8.0.3-develop.
|
|
30
|
+
"@progress/kendo-vue-common": "8.0.3-develop.3",
|
|
31
|
+
"@progress/kendo-vue-buttons": "8.0.3-develop.3",
|
|
32
|
+
"@progress/kendo-vue-dateinputs": "8.0.3-develop.3",
|
|
33
|
+
"@progress/kendo-vue-dialogs": "8.0.3-develop.3",
|
|
34
|
+
"@progress/kendo-vue-dropdowns": "8.0.3-develop.3",
|
|
35
|
+
"@progress/kendo-vue-form": "8.0.3-develop.3",
|
|
36
|
+
"@progress/kendo-vue-inputs": "8.0.3-develop.3",
|
|
37
|
+
"@progress/kendo-vue-intl": "8.0.3-develop.3",
|
|
38
|
+
"@progress/kendo-vue-popup": "8.0.3-develop.3",
|
|
33
39
|
"@progress/kendo-svg-icons": "^4.4.0",
|
|
34
40
|
"vue": "^3.0.2"
|
|
35
41
|
},
|
|
@@ -54,7 +60,7 @@
|
|
|
54
60
|
"package": {
|
|
55
61
|
"productName": "Kendo UI for Vue",
|
|
56
62
|
"productCode": "KENDOUIVUE",
|
|
57
|
-
"publishDate":
|
|
63
|
+
"publishDate": 1773401820,
|
|
58
64
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
59
65
|
}
|
|
60
66
|
},
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { RecurrenceRule } from '@progress/kendo-recurrence';
|
|
9
|
+
import { ZonedDate } from '@progress/kendo-date-math';
|
|
10
|
+
import { NumericTextBoxChangeEvent, RadioGroupChangeEvent } from '@progress/kendo-vue-inputs';
|
|
11
|
+
import { DropDownListChangeEvent } from '@progress/kendo-vue-dropdowns';
|
|
12
|
+
import { DatePickerChangeEvent } from '@progress/kendo-vue-dateinputs';
|
|
13
|
+
import { PropType } from 'vue';
|
|
14
|
+
/** @hidden */
|
|
15
|
+
export interface RecurrenceEditorProps {
|
|
16
|
+
name: string;
|
|
17
|
+
value: string;
|
|
18
|
+
start: Date;
|
|
19
|
+
timezone: string;
|
|
20
|
+
onChange?: ({ value }: {
|
|
21
|
+
value: string | null;
|
|
22
|
+
}) => void;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
declare const RecurrenceEditor: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
28
|
+
name: PropType<string>;
|
|
29
|
+
value: {
|
|
30
|
+
type: PropType<string>;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
start: PropType<Date>;
|
|
34
|
+
timezone: PropType<string>;
|
|
35
|
+
}>, {}, {
|
|
36
|
+
defaultCount: number;
|
|
37
|
+
defaultUntil: ZonedDate;
|
|
38
|
+
}, {
|
|
39
|
+
rrule(): RecurrenceRule;
|
|
40
|
+
frequencies(): import('./types/FrequencyEntity').FrequencyEntity[];
|
|
41
|
+
frequency(): import('./types/Frequency').Frequency;
|
|
42
|
+
extendedWeekDays(): import('./types/WeekDayEntity').WeekDayEntity[];
|
|
43
|
+
weekDay(): import('./types/WeekDayEntity').WeekDayEntity;
|
|
44
|
+
months(): import('./types/MonthEntity').MonthEntity[];
|
|
45
|
+
month(): import('./types/MonthEntity').MonthEntity;
|
|
46
|
+
offsets(): import('./types/OffsetPositionEntity').OffsetPositionEntity[];
|
|
47
|
+
offset(): import('./types/OffsetPositionEntity').OffsetPositionEntity;
|
|
48
|
+
endRule(): import('./types/EndRule').EndRule;
|
|
49
|
+
monthDay(): number;
|
|
50
|
+
until(): Date;
|
|
51
|
+
weekDays(): import('./types/WeekDayEntity').WeekDayEntity[];
|
|
52
|
+
repeatOnRule(): import('./types/RepeatOnRule').RepeatOnRule;
|
|
53
|
+
}, {
|
|
54
|
+
localizeMessage(baseMassage: string, removePrepend?: boolean): string;
|
|
55
|
+
onChangeHandler(newRrule: RecurrenceRule): void;
|
|
56
|
+
handleFrequencyChange(newFreq: string): void;
|
|
57
|
+
handleIntervalChange(event: NumericTextBoxChangeEvent): void;
|
|
58
|
+
handleCountChange(event: NumericTextBoxChangeEvent): void;
|
|
59
|
+
handleUntilChange(event: DatePickerChangeEvent): void;
|
|
60
|
+
handleWeekDaysChange(newWeekDays: number[]): void;
|
|
61
|
+
handleWeekDayChange(event: DropDownListChangeEvent): void;
|
|
62
|
+
handleMonthDayChange(event: NumericTextBoxChangeEvent): void;
|
|
63
|
+
handleMonthChange(event: DropDownListChangeEvent): void;
|
|
64
|
+
handleEndRuleChange(event: RadioGroupChangeEvent): void;
|
|
65
|
+
handleRepeatOnRuleChange(event: RadioGroupChangeEvent): void;
|
|
66
|
+
handleOffsetChange(event: DropDownListChangeEvent): void;
|
|
67
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
68
|
+
change: any;
|
|
69
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
70
|
+
name: PropType<string>;
|
|
71
|
+
value: {
|
|
72
|
+
type: PropType<string>;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
start: PropType<Date>;
|
|
76
|
+
timezone: PropType<string>;
|
|
77
|
+
}>> & Readonly<{
|
|
78
|
+
onChange?: (...args: any[] | unknown[]) => any;
|
|
79
|
+
}>, {
|
|
80
|
+
value: string;
|
|
81
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
82
|
+
export { RecurrenceEditor };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ButtonGroupProps } from '@progress/kendo-vue-buttons';
|
|
9
|
+
import { PropType } from 'vue';
|
|
10
|
+
/** @hidden */
|
|
11
|
+
export interface RecurrenceFrequencyEditorProps extends ButtonGroupProps {
|
|
12
|
+
value: string;
|
|
13
|
+
dataItems: any[];
|
|
14
|
+
onChange?: (value: string) => void;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare const RecurrenceFrequencyEditor: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
+
value: PropType<string>;
|
|
21
|
+
dataItems: PropType<any[]>;
|
|
22
|
+
}>, {}, {}, {}, {
|
|
23
|
+
handleClick(event: any): void;
|
|
24
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
+
change: any;
|
|
26
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
|
+
value: PropType<string>;
|
|
28
|
+
dataItems: PropType<any[]>;
|
|
29
|
+
}>> & Readonly<{
|
|
30
|
+
onChange?: (...args: any[] | unknown[]) => any;
|
|
31
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
32
|
+
export { RecurrenceFrequencyEditor };
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { ButtonGroupProps } from '@progress/kendo-vue-buttons';
|
|
9
|
+
import { PropType } from 'vue';
|
|
10
|
+
/** @hidden */
|
|
11
|
+
export interface RecurrenceRepeatOnWeekEditorProps extends ButtonGroupProps {
|
|
12
|
+
dataItems?: {
|
|
13
|
+
text: string;
|
|
14
|
+
value: number | string;
|
|
15
|
+
}[];
|
|
16
|
+
value?: (number | string)[];
|
|
17
|
+
onChange?: (value: number[]) => void;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @hidden
|
|
21
|
+
*/
|
|
22
|
+
declare const RecurrenceRepeatOnWeekEditor: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
23
|
+
dataItems: {
|
|
24
|
+
type: PropType<{
|
|
25
|
+
text: string;
|
|
26
|
+
value: number | string;
|
|
27
|
+
}[]>;
|
|
28
|
+
default: () => any[];
|
|
29
|
+
};
|
|
30
|
+
value: {
|
|
31
|
+
type: PropType<(string | number)[]>;
|
|
32
|
+
default: () => any[];
|
|
33
|
+
};
|
|
34
|
+
}>, {}, {}, {}, {
|
|
35
|
+
handleClick(event: any): void;
|
|
36
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
|
+
change: any;
|
|
38
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
39
|
+
dataItems: {
|
|
40
|
+
type: PropType<{
|
|
41
|
+
text: string;
|
|
42
|
+
value: number | string;
|
|
43
|
+
}[]>;
|
|
44
|
+
default: () => any[];
|
|
45
|
+
};
|
|
46
|
+
value: {
|
|
47
|
+
type: PropType<(string | number)[]>;
|
|
48
|
+
default: () => any[];
|
|
49
|
+
};
|
|
50
|
+
}>> & Readonly<{
|
|
51
|
+
onChange?: (...args: any[] | unknown[]) => any;
|
|
52
|
+
}>, {
|
|
53
|
+
value: (string | number)[];
|
|
54
|
+
dataItems: {
|
|
55
|
+
text: string;
|
|
56
|
+
value: number | string;
|
|
57
|
+
}[];
|
|
58
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
59
|
+
export { RecurrenceRepeatOnWeekEditor };
|