@progress/kendo-vue-scheduler 9.3.0-develop.5 → 9.3.0-develop.7
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 +67 -4
- package/Scheduler.js +1 -1
- package/Scheduler.mjs +267 -115
- package/components/BaseView.js +1 -1
- package/components/BaseView.mjs +10 -4
- package/components/CurrentTimeMarker.js +1 -1
- package/components/CurrentTimeMarker.mjs +9 -9
- package/components/CurrentTimeMarkerArrow.js +1 -1
- package/components/CurrentTimeMarkerArrow.mjs +3 -3
- package/components/DateHeaderCell.js +1 -1
- package/components/DateHeaderCell.mjs +22 -13
- package/components/MoreEventsPopover.d.ts +77 -0
- package/components/MoreEventsPopover.js +8 -0
- package/components/MoreEventsPopover.mjs +125 -0
- package/components/SchedulerActionButtons.d.ts +6 -0
- package/components/SchedulerActionButtons.js +1 -1
- package/components/SchedulerActionButtons.mjs +25 -19
- package/components/SchedulerForm.d.ts +7 -0
- package/components/SchedulerForm.js +1 -1
- package/components/SchedulerForm.mjs +69 -61
- package/components/SchedulerOccurrenceDialog.d.ts +4 -4
- package/components/SchedulerOccurrenceDialog.js +1 -1
- package/components/SchedulerOccurrenceDialog.mjs +35 -26
- package/components/SchedulerRemoveDialog.d.ts +6 -0
- package/components/SchedulerRemoveDialog.js +1 -1
- package/components/SchedulerRemoveDialog.mjs +24 -23
- package/components/ShowMoreItemsButton.d.ts +10 -1
- package/components/ShowMoreItemsButton.js +1 -1
- package/components/ShowMoreItemsButton.mjs +40 -18
- package/components/footer/bussiness-hours/BusinessHours.js +1 -1
- package/components/footer/bussiness-hours/BusinessHours.mjs +16 -21
- package/components/header/SchedulerAdaptiveHeader.js +1 -1
- package/components/header/SchedulerAdaptiveHeader.mjs +28 -26
- package/components/header/SchedulerHeader.d.ts +5 -1
- package/components/header/SchedulerHeader.js +1 -1
- package/components/header/SchedulerHeader.mjs +11 -7
- package/components/header/navigation/NavigationDatePicker.d.ts +22 -3
- package/components/header/navigation/NavigationDatePicker.js +1 -1
- package/components/header/navigation/NavigationDatePicker.mjs +27 -30
- package/components/header/view-selector/ViewSelectorList.d.ts +26 -6
- package/components/header/view-selector/ViewSelectorList.js +1 -1
- package/components/header/view-selector/ViewSelectorList.mjs +55 -49
- package/dist/cdn/js/kendo-vue-scheduler.js +1 -1
- package/editors/RemoveRecurrenceConfirmDialog.d.ts +29 -0
- package/editors/RemoveRecurrenceConfirmDialog.js +8 -0
- package/editors/RemoveRecurrenceConfirmDialog.mjs +65 -0
- package/editors/ResourceEditor.d.ts +3 -0
- package/editors/ResourceEditor.js +1 -1
- package/editors/ResourceEditor.mjs +12 -10
- package/editors/SchedulerFormEditor.d.ts +1067 -2953
- package/editors/SchedulerFormEditor.js +1 -1
- package/editors/SchedulerFormEditor.mjs +297 -365
- package/editors/SchedulerRecurrenceDialog.d.ts +143 -0
- package/editors/SchedulerRecurrenceDialog.js +8 -0
- package/editors/SchedulerRecurrenceDialog.mjs +575 -0
- package/editors/TimezoneDropDownList.d.ts +46 -0
- package/editors/TimezoneDropDownList.js +8 -0
- package/editors/TimezoneDropDownList.mjs +63 -0
- package/editors/ZonedSplitDateTime.d.ts +65 -0
- package/editors/ZonedSplitDateTime.js +8 -0
- package/editors/ZonedSplitDateTime.mjs +100 -0
- package/hooks/main.d.ts +1 -0
- package/hooks/useGroupRowHeightSync.d.ts +10 -0
- package/hooks/useRecurrenceSummary.d.ts +10 -0
- package/hooks/useRecurrenceSummary.js +8 -0
- package/hooks/useRecurrenceSummary.mjs +74 -0
- package/hooks/useRowSync.js +1 -1
- package/hooks/useRowSync.mjs +23 -4
- package/hooks/useSlotExpand.js +1 -1
- package/hooks/useSlotExpand.mjs +36 -28
- package/index.d.mts +9 -3
- package/index.d.ts +9 -3
- package/index.js +1 -1
- package/index.mjs +83 -71
- package/items/SchedulerEditItem.d.ts +14 -3
- package/items/SchedulerEditItem.js +1 -1
- package/items/SchedulerEditItem.mjs +130 -72
- package/items/SchedulerItem.d.ts +10 -0
- package/items/SchedulerItem.js +1 -1
- package/items/SchedulerItem.mjs +153 -135
- package/items/SchedulerProportionalViewItem.d.ts +183 -0
- package/items/SchedulerProportionalViewItem.js +8 -0
- package/items/SchedulerProportionalViewItem.mjs +378 -0
- package/items/SchedulerViewItem.d.ts +3 -0
- package/items/SchedulerViewItem.js +1 -1
- package/items/SchedulerViewItem.mjs +107 -67
- package/messages/main.d.ts +186 -0
- package/messages/main.js +1 -1
- package/messages/main.mjs +226 -102
- package/models/Item.d.ts +2 -0
- package/models/Occurrence.d.ts +2 -0
- package/models/SchedulerModelFields.d.ts +5 -0
- package/models/SchedulerResource.d.ts +6 -0
- package/models/SchedulerView.d.ts +2 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -11
- package/recurrence/common.js +1 -1
- package/recurrence/common.mjs +36 -39
- package/services/itemsService.js +1 -1
- package/services/itemsService.mjs +31 -27
- package/services/occurrenceService.js +1 -1
- package/services/occurrenceService.mjs +41 -35
- package/slots/SchedulerEditSlot.d.ts +2 -0
- package/slots/SchedulerEditSlot.js +1 -1
- package/slots/SchedulerEditSlot.mjs +27 -28
- package/slots/SchedulerSlot.d.ts +4 -0
- package/slots/SchedulerSlot.js +1 -1
- package/slots/SchedulerSlot.mjs +10 -1
- package/slots/SchedulerViewSlot.d.ts +5 -0
- package/slots/SchedulerViewSlot.js +1 -1
- package/slots/SchedulerViewSlot.mjs +70 -50
- package/tasks/SchedulerEditTask.d.ts +6 -0
- package/tasks/SchedulerEditTask.js +1 -1
- package/tasks/SchedulerEditTask.mjs +64 -23
- package/tasks/SchedulerTask.d.ts +15 -0
- package/tasks/SchedulerTask.js +1 -1
- package/tasks/SchedulerTask.mjs +39 -28
- package/tasks/SchedulerViewTask.d.ts +9 -0
- package/tasks/SchedulerViewTask.js +1 -1
- package/tasks/SchedulerViewTask.mjs +10 -5
- package/utils/main.d.ts +4 -1
- package/utils/main.js +1 -1
- package/utils/main.mjs +133 -112
- package/views/agenda/AgendaView.js +1 -1
- package/views/agenda/AgendaView.mjs +28 -22
- package/views/agenda/AgendaViewBody.js +1 -1
- package/views/agenda/AgendaViewBody.mjs +44 -42
- package/views/agenda/AgendaViewHead.js +1 -1
- package/views/agenda/AgendaViewHead.mjs +14 -10
- package/views/common/SchedulerDrag.d.ts +12 -0
- package/views/common/SchedulerResize.d.ts +12 -0
- package/views/common/VerticalResourceIterator.d.ts +3 -0
- package/views/common/VerticalResourceIterator.js +1 -1
- package/views/common/VerticalResourceIterator.mjs +16 -9
- package/views/day/DayView.js +1 -1
- package/views/day/DayView.mjs +2 -2
- package/views/day/MultiDayView.js +1 -1
- package/views/day/MultiDayView.mjs +98 -127
- package/views/month/MonthView.d.ts +8 -2
- package/views/month/MonthView.js +1 -1
- package/views/month/MonthView.mjs +115 -109
- package/views/month/MonthViewBody.d.ts +7 -2
- package/views/month/MonthViewBody.js +1 -1
- package/views/month/MonthViewBody.mjs +15 -11
- package/views/time/MultiDayTimelineView.d.ts +5 -0
- package/views/time/MultiDayTimelineView.js +1 -1
- package/views/time/MultiDayTimelineView.mjs +125 -132
- package/views/time/TimelineView.js +1 -1
- package/views/time/TimelineView.mjs +2 -2
- package/views/week/WeekView.js +1 -1
- package/views/week/WeekView.mjs +2 -2
- package/views/week/WorkWeekView.js +1 -1
- package/views/week/WorkWeekView.mjs +9 -9
- package/components/header/navigation/DatePickerToggleButton.d.ts +0 -16
- package/editors/FilterableComboBox.d.ts +0 -38
- package/editors/FilterableComboBox.js +0 -8
- package/editors/FilterableComboBox.mjs +0 -61
- package/editors/ZonedDateTime.js +0 -8
- package/editors/ZonedDateTime.mjs +0 -57
|
@@ -1,61 +0,0 @@
|
|
|
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 { defineComponent as o, createVNode as a, inject as i } from "vue";
|
|
9
|
-
import { filterBy as n } from "@progress/kendo-data-query";
|
|
10
|
-
import { ComboBox as r } from "@progress/kendo-vue-dropdowns";
|
|
11
|
-
const f = /* @__PURE__ */ o({
|
|
12
|
-
name: "KendoFilterableComboBox",
|
|
13
|
-
props: {
|
|
14
|
-
value: [String, Number, Object],
|
|
15
|
-
dataItems: Array,
|
|
16
|
-
validationMessage: String,
|
|
17
|
-
touched: Boolean,
|
|
18
|
-
modified: Boolean,
|
|
19
|
-
visited: Boolean,
|
|
20
|
-
valid: Boolean,
|
|
21
|
-
name: String
|
|
22
|
-
},
|
|
23
|
-
data() {
|
|
24
|
-
return {
|
|
25
|
-
filteredData: this.$props.dataItems
|
|
26
|
-
};
|
|
27
|
-
},
|
|
28
|
-
setup() {
|
|
29
|
-
return {
|
|
30
|
-
kendoLocalizationService: i("kendoLocalizationService", {})
|
|
31
|
-
};
|
|
32
|
-
},
|
|
33
|
-
render() {
|
|
34
|
-
const {
|
|
35
|
-
data: e,
|
|
36
|
-
validationMessage: t,
|
|
37
|
-
visited: l,
|
|
38
|
-
touched: s,
|
|
39
|
-
modified: d,
|
|
40
|
-
...m
|
|
41
|
-
} = this.$props;
|
|
42
|
-
return a(r, {
|
|
43
|
-
dataItems: this.filteredData,
|
|
44
|
-
filterable: !0,
|
|
45
|
-
onFilterchange: this.onFilterChange,
|
|
46
|
-
onChange: this.onValueChange
|
|
47
|
-
}, null);
|
|
48
|
-
},
|
|
49
|
-
methods: {
|
|
50
|
-
onValueChange(e) {
|
|
51
|
-
this.$emit("change", e);
|
|
52
|
-
},
|
|
53
|
-
onFilterChange(e) {
|
|
54
|
-
const t = n(this.$props.dataItems || [], e.filter);
|
|
55
|
-
this.filteredData = t;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
});
|
|
59
|
-
export {
|
|
60
|
-
f as FilterableComboBox
|
|
61
|
-
};
|
package/editors/ZonedDateTime.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
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
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("@progress/kendo-vue-dateinputs"),o=require("@progress/kendo-date-math"),a=require("vue"),d=a.defineComponent({name:"KendoZonedDateTime",emits:{change:null},props:{...n.DateTimePicker.props,value:[String,Date],isAllDay:Boolean,as:[String,Function,Object]},inject:{ks:{default:null}},render(){const{as:e,...t}=this.$props,i=this.ks.timezone,r={...t,format:this.isAllDay?"d":"g",value:this.readDateAsLocal(t.value,i)},s=this.isAllDay?n.DatePicker:n.DateTimePicker;return a.h(s,{onChange:this.handleChange,...r})},methods:{handleChange(e){this.$emit("change",{value:this.readDateWithTimezone(e.target.value,this.ks.timezone)})},readDateAsLocal(e,t){return e&&o.toLocalDate(o.ZonedDate.fromLocalDate(e,t).toUTCDate())},readDateWithTimezone(e,t){return e&&o.ZonedDate.fromUTCDate(new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds())),t).toLocalDate()}}});exports.ZonedDateTime=d;
|
|
@@ -1,57 +0,0 @@
|
|
|
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 { DateTimePicker as o, DatePicker as s } from "@progress/kendo-vue-dateinputs";
|
|
9
|
-
import { ZonedDate as n, toLocalDate as m } from "@progress/kendo-date-math";
|
|
10
|
-
import { defineComponent as d, h } from "vue";
|
|
11
|
-
const p = /* @__PURE__ */ d({
|
|
12
|
-
name: "KendoZonedDateTime",
|
|
13
|
-
emits: {
|
|
14
|
-
change: null
|
|
15
|
-
},
|
|
16
|
-
props: {
|
|
17
|
-
...o.props,
|
|
18
|
-
value: [String, Date],
|
|
19
|
-
isAllDay: Boolean,
|
|
20
|
-
as: [String, Function, Object]
|
|
21
|
-
},
|
|
22
|
-
inject: {
|
|
23
|
-
ks: {
|
|
24
|
-
default: null
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
render() {
|
|
28
|
-
const {
|
|
29
|
-
as: e,
|
|
30
|
-
...t
|
|
31
|
-
} = this.$props, a = this.ks.timezone, i = {
|
|
32
|
-
...t,
|
|
33
|
-
format: this.isAllDay ? "d" : "g",
|
|
34
|
-
value: this.readDateAsLocal(t.value, a)
|
|
35
|
-
}, r = this.isAllDay ? s : o;
|
|
36
|
-
return h(r, {
|
|
37
|
-
onChange: this.handleChange,
|
|
38
|
-
...i
|
|
39
|
-
});
|
|
40
|
-
},
|
|
41
|
-
methods: {
|
|
42
|
-
handleChange(e) {
|
|
43
|
-
this.$emit("change", {
|
|
44
|
-
value: this.readDateWithTimezone(e.target.value, this.ks.timezone)
|
|
45
|
-
});
|
|
46
|
-
},
|
|
47
|
-
readDateAsLocal(e, t) {
|
|
48
|
-
return e && m(n.fromLocalDate(e, t).toUTCDate());
|
|
49
|
-
},
|
|
50
|
-
readDateWithTimezone(e, t) {
|
|
51
|
-
return e && n.fromUTCDate(new Date(Date.UTC(e.getFullYear(), e.getMonth(), e.getDate(), e.getHours(), e.getMinutes(), e.getSeconds(), e.getMilliseconds())), t).toLocalDate();
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
});
|
|
55
|
-
export {
|
|
56
|
-
p as ZonedDateTime
|
|
57
|
-
};
|