@progress/kendo-vue-scheduler 3.3.6-dev.202206170937 → 3.4.0
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/dist/cdn/js/kendo-vue-scheduler.js +2 -2
- package/dist/es/Scheduler.d.ts +11 -11
- package/dist/es/components/TimeHeaderCell.d.ts +1 -1
- package/dist/es/editors/SchedulerFormEditor.d.ts +28 -28
- package/dist/es/items/SchedulerItem.d.ts +1 -1
- package/dist/es/items/SchedulerViewItem.d.ts +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/slots/SchedulerEditSlot.d.ts +1 -1
- package/dist/es/slots/SchedulerSlot.d.ts +1 -1
- package/dist/es/slots/SchedulerViewSlot.d.ts +2 -2
- package/dist/es/tasks/SchedulerEditTask.d.ts +1 -1
- package/dist/es/tasks/SchedulerTask.d.ts +1 -1
- package/dist/es/tasks/SchedulerViewTask.d.ts +1 -1
- package/dist/es/views/agenda/AgendaView.d.ts +1 -1
- package/dist/es/views/day/DayView.d.ts +1 -1
- package/dist/es/views/month/MonthView.d.ts +1 -1
- package/dist/es/views/time/TimelineView.d.ts +1 -1
- package/dist/es/views/week/WeekView.d.ts +1 -1
- package/dist/npm/Scheduler.d.ts +11 -11
- package/dist/npm/components/TimeHeaderCell.d.ts +1 -1
- package/dist/npm/editors/SchedulerFormEditor.d.ts +28 -28
- package/dist/npm/items/SchedulerItem.d.ts +1 -1
- package/dist/npm/items/SchedulerViewItem.d.ts +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/slots/SchedulerEditSlot.d.ts +1 -1
- package/dist/npm/slots/SchedulerSlot.d.ts +1 -1
- package/dist/npm/slots/SchedulerViewSlot.d.ts +2 -2
- package/dist/npm/tasks/SchedulerEditTask.d.ts +1 -1
- package/dist/npm/tasks/SchedulerTask.d.ts +1 -1
- package/dist/npm/tasks/SchedulerViewTask.d.ts +1 -1
- package/dist/npm/views/agenda/AgendaView.d.ts +1 -1
- package/dist/npm/views/day/DayView.d.ts +1 -1
- package/dist/npm/views/month/MonthView.d.ts +1 -1
- package/dist/npm/views/time/TimelineView.d.ts +1 -1
- package/dist/npm/views/week/WeekView.d.ts +1 -1
- package/package.json +12 -12
package/dist/es/Scheduler.d.ts
CHANGED
|
@@ -41,9 +41,9 @@ export interface SchedulerProps {
|
|
|
41
41
|
/**
|
|
42
42
|
* Overrides the default item. Specifying the `item` property of a specific view will override this property.
|
|
43
43
|
*
|
|
44
|
-
* The default component is: [SchedulerItem]({% slug
|
|
44
|
+
* The default component is: [SchedulerItem]({% slug api_scheduler_scheduleritemprops %})
|
|
45
45
|
*
|
|
46
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug
|
|
46
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug scheduler_custom_event %}) article.
|
|
47
47
|
*/
|
|
48
48
|
item?: any;
|
|
49
49
|
/**
|
|
@@ -51,7 +51,7 @@ export interface SchedulerProps {
|
|
|
51
51
|
*
|
|
52
52
|
* The default component is: [SchedulerViewItem]({% slug api_scheduler_schedulerviewitem %})
|
|
53
53
|
*
|
|
54
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug
|
|
54
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug scheduler_custom_event %}) article.
|
|
55
55
|
*/
|
|
56
56
|
viewItem?: any;
|
|
57
57
|
/**
|
|
@@ -59,16 +59,16 @@ export interface SchedulerProps {
|
|
|
59
59
|
*
|
|
60
60
|
* The default component is: [SchedulerEditItem]({% slug api_scheduler_scheduleredititem %})
|
|
61
61
|
*
|
|
62
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug
|
|
62
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug scheduler_custom_event %}) article.
|
|
63
63
|
*/
|
|
64
64
|
editItem?: any;
|
|
65
65
|
/**
|
|
66
66
|
* Overrides the default task. Specifying the `task` property of a specific view will override this property.
|
|
67
67
|
* Currently, the `task` is being used in the [AgendaView]({% slug agenda_view_scheduler %}) only.
|
|
68
68
|
*
|
|
69
|
-
* The default component is: [SchedulerTask]({% slug
|
|
69
|
+
* The default component is: [SchedulerTask]({% slug api_scheduler_schedulertaskprops %})
|
|
70
70
|
*
|
|
71
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug
|
|
71
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug overview_agenda_view_scheduler %}) article.
|
|
72
72
|
*/
|
|
73
73
|
task?: any;
|
|
74
74
|
/**
|
|
@@ -87,16 +87,16 @@ export interface SchedulerProps {
|
|
|
87
87
|
*
|
|
88
88
|
* The default component is: [SchedulerViewTask]({% slug api_scheduler_schedulerviewtask %})
|
|
89
89
|
*
|
|
90
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug
|
|
90
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug overview_agenda_view_scheduler %}) article.
|
|
91
91
|
*/
|
|
92
92
|
viewTask?: any;
|
|
93
93
|
/**
|
|
94
94
|
* Overrides the default editTask. Specifying the `editTask` property of a specific view will override this property.
|
|
95
95
|
* Currently, the `viewTask` is being used in the [AgendaView]({% slug agenda_view_scheduler %}) only.
|
|
96
96
|
*
|
|
97
|
-
* The default component is: [SchedulerEditTask]({% slug
|
|
97
|
+
* The default component is: [SchedulerEditTask]({% slug api_scheduler_scheduleredittaskprops %})
|
|
98
98
|
*
|
|
99
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug
|
|
99
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug overview_agenda_view_scheduler %}) article.
|
|
100
100
|
*/
|
|
101
101
|
editTask?: any;
|
|
102
102
|
/**
|
|
@@ -118,7 +118,7 @@ export interface SchedulerProps {
|
|
|
118
118
|
/**
|
|
119
119
|
* Overrides the default slot component. Specifying the `slot` property of a specific view will override this property.
|
|
120
120
|
*
|
|
121
|
-
* The default component is: [SchedulerSlot]({% slug
|
|
121
|
+
* The default component is: [SchedulerSlot]({% slug api_scheduler_schedulerslotprops %})
|
|
122
122
|
*
|
|
123
123
|
* For more information on customizing the scheduler slots, refer to the [Slot Customization]({% slug overview_slots_scheduler %}) article.
|
|
124
124
|
*/
|
|
@@ -126,7 +126,7 @@ export interface SchedulerProps {
|
|
|
126
126
|
/**
|
|
127
127
|
* Overrides the default viewSlot component. Specifying the `viewSlot` property of a specific view will override this property.
|
|
128
128
|
*
|
|
129
|
-
* The default component is: [SchedulerViewSlot]({% slug
|
|
129
|
+
* The default component is: [SchedulerViewSlot]({% slug api_scheduler_schedulerviewslotprops %})
|
|
130
130
|
*
|
|
131
131
|
* For more information on customizing the scheduler slots, refer to the [Slot Customization]({% slug overview_slots_scheduler %}) article.
|
|
132
132
|
*/
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { DateFormatOptions } from '@progress/kendo-vue-intl';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the properties of [TimeHeaderCell]({% slug
|
|
8
|
+
* Represents the properties of [TimeHeaderCell]({% slug api_scheduler_schedulertimeheadercell %}) component.
|
|
9
9
|
*/
|
|
10
10
|
export interface TimeHeaderCellProps {
|
|
11
11
|
/** @hidden */
|
|
@@ -23,147 +23,147 @@ export interface SchedulerFormEditorProps extends Omit<FormElementProps, 'childr
|
|
|
23
23
|
* Overrides the component used for visualizing the `title` field label.
|
|
24
24
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
25
25
|
*
|
|
26
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
26
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
27
27
|
*/
|
|
28
28
|
titleLabel?: any;
|
|
29
29
|
/**
|
|
30
30
|
* Overrides the component used for visualizing the `title` field error.
|
|
31
31
|
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
32
32
|
*
|
|
33
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
33
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
34
34
|
*/
|
|
35
35
|
titleError?: any;
|
|
36
36
|
/**
|
|
37
37
|
* Overrides the component used for visualizing the `title` field editor.
|
|
38
38
|
* The [Kendo UI for Vue Input]({% slug overview_textbox %}) component is used, by default.
|
|
39
39
|
*
|
|
40
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
40
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
41
41
|
*/
|
|
42
42
|
titleEditor?: any;
|
|
43
43
|
/**
|
|
44
44
|
* Overrides the component used for visualizing the `start` field label.
|
|
45
45
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
46
46
|
*
|
|
47
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
47
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
48
48
|
*/
|
|
49
49
|
startLabel?: any;
|
|
50
50
|
/**
|
|
51
51
|
* Overrides the component used for visualizing the `start` field error.
|
|
52
52
|
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
53
53
|
*
|
|
54
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
54
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
55
55
|
*/
|
|
56
56
|
startError?: any;
|
|
57
57
|
/**
|
|
58
58
|
* Overrides the component used for visualizing the `start` field editor.
|
|
59
59
|
* The [Kendo UI for Vue DatePicker]({% slug overview_datepicker %}) or [Kendo UI for Vue DateTimePicker]({% slug overview_datetimepicker %}) component is used by default depending on the `allDay` field value.
|
|
60
60
|
*
|
|
61
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
61
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
62
62
|
*/
|
|
63
63
|
startEditor?: any;
|
|
64
64
|
/**
|
|
65
65
|
* Overrides the component used for visualizing the `start timezone` field label.
|
|
66
66
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
67
67
|
*
|
|
68
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
68
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
69
69
|
*/
|
|
70
70
|
startTimezoneLabel?: any;
|
|
71
71
|
/**
|
|
72
72
|
* Overrides the component used for visualizing the `start timezone` field error.
|
|
73
73
|
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
74
74
|
*
|
|
75
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
75
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
76
76
|
*/
|
|
77
77
|
startTimezoneError?: any;
|
|
78
78
|
/**
|
|
79
79
|
* Overrides the component used for visualizing the `start timezone` field editor.
|
|
80
80
|
* An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
|
|
81
81
|
*
|
|
82
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
82
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
83
83
|
*/
|
|
84
84
|
startTimezoneEditor?: any;
|
|
85
85
|
/**
|
|
86
86
|
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
87
87
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
88
88
|
*
|
|
89
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
89
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
90
90
|
*/
|
|
91
91
|
startTimezoneCheckedLabel?: any;
|
|
92
92
|
/**
|
|
93
93
|
* Overrides the component used for visualizing the `start timezone checked` editor.
|
|
94
94
|
* The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
|
|
95
95
|
*
|
|
96
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
96
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
97
97
|
*/
|
|
98
98
|
startTimezoneCheckedEditor?: any;
|
|
99
99
|
/**
|
|
100
100
|
* Overrides the component used for visualizing the `end` field label.
|
|
101
101
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
102
102
|
*
|
|
103
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
103
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
104
104
|
*/
|
|
105
105
|
endLabel?: any;
|
|
106
106
|
/**
|
|
107
107
|
* Overrides the component used for visualizing the `end` field error.
|
|
108
108
|
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
109
109
|
*
|
|
110
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
110
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
111
111
|
*/
|
|
112
112
|
endError?: any;
|
|
113
113
|
/**
|
|
114
114
|
* Overrides the component used for visualizing the `end` field editor.
|
|
115
115
|
* The [Kendo UI for Vue DatePicker]({% slug overview_datepicker %}) or [Kendo UI for Vue DateTimePicker]({% slug overview_datetimepicker %}) component is used by default depending on the `allDay` field value.
|
|
116
116
|
*
|
|
117
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
117
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
118
118
|
*/
|
|
119
119
|
endEditor?: any;
|
|
120
120
|
/**
|
|
121
121
|
* Overrides the component used for visualizing the `end timezone` field label.
|
|
122
122
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
123
123
|
*
|
|
124
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
124
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
125
125
|
*/
|
|
126
126
|
endTimezoneLabel?: any;
|
|
127
127
|
/**
|
|
128
128
|
* Overrides the component used for visualizing the `end timezone` field error.
|
|
129
129
|
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
130
130
|
*
|
|
131
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
131
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
132
132
|
*/
|
|
133
133
|
endTimezoneError?: any;
|
|
134
134
|
/**
|
|
135
135
|
* Overrides the component used for visualizing the `end timezone` field editor.
|
|
136
136
|
* An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
|
|
137
137
|
*
|
|
138
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
138
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
139
139
|
*/
|
|
140
140
|
endTimezoneEditor?: any;
|
|
141
141
|
/**
|
|
142
142
|
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
143
143
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
144
144
|
*
|
|
145
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
145
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
146
146
|
*/
|
|
147
147
|
endTimezoneCheckedLabel?: any;
|
|
148
148
|
/**
|
|
149
149
|
* Overrides the component used for visualizing the `end timezone checked` editor.
|
|
150
150
|
* The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
|
|
151
151
|
*
|
|
152
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
152
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
153
153
|
*/
|
|
154
154
|
endTimezoneCheckedEditor?: any;
|
|
155
155
|
/**
|
|
156
156
|
* Overrides the component used for visualizing the `allDay` field label.
|
|
157
157
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
158
158
|
*
|
|
159
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
159
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
160
160
|
*/
|
|
161
161
|
allDayLabel?: any;
|
|
162
162
|
/**
|
|
163
163
|
* Overrides the component used for visualizing the `allDay` field editor.
|
|
164
164
|
* The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
|
|
165
165
|
*
|
|
166
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
166
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
167
167
|
*/
|
|
168
168
|
allDayEditor?: any;
|
|
169
169
|
/**
|
|
@@ -172,49 +172,49 @@ export interface SchedulerFormEditorProps extends Omit<FormElementProps, 'childr
|
|
|
172
172
|
*
|
|
173
173
|
* > We're planing on releasing the `RecurrenceEditor` as a standalone component in the future.
|
|
174
174
|
*
|
|
175
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
175
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
176
176
|
*/
|
|
177
177
|
recurrenceEditor?: any;
|
|
178
178
|
/**
|
|
179
179
|
* Overrides the component used for visualizing the `description` field label.
|
|
180
180
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
181
181
|
*
|
|
182
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
182
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
183
183
|
*/
|
|
184
184
|
descriptionLabel?: any;
|
|
185
185
|
/**
|
|
186
186
|
* Overrides the component used for visualizing the `description` field error.
|
|
187
187
|
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
188
188
|
*
|
|
189
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
189
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
190
190
|
*/
|
|
191
191
|
descriptionError?: any;
|
|
192
192
|
/**
|
|
193
193
|
* Overrides the component used for visualizing the `description` field editor.
|
|
194
194
|
* The [Kendo UI for Vue TextArea]({% slug overview_textarea %}) component is used, by default.
|
|
195
195
|
*
|
|
196
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
196
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
197
197
|
*/
|
|
198
198
|
descriptionEditor?: any;
|
|
199
199
|
/**
|
|
200
200
|
* Overrides the component used for visualizing the `start timezone checked` field label.
|
|
201
201
|
* The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
|
|
202
202
|
*
|
|
203
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
203
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
204
204
|
*/
|
|
205
205
|
resourceLabel?: any;
|
|
206
206
|
/**
|
|
207
207
|
* Overrides the component used for visualizing each `resources` field error.
|
|
208
208
|
* The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
|
|
209
209
|
*
|
|
210
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
210
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
211
211
|
*/
|
|
212
212
|
resourcesError?: any;
|
|
213
213
|
/**
|
|
214
214
|
* Overrides the component used for visualizing each `resource` field editor.
|
|
215
215
|
* An extended Kendo UI for Vue [MultiSelect]({% slug overview_multiselect %}) or [DropDownList]({% slug overview_dropdownlist %}) component is used by default, depending on the `multiple` field of each individual `resource`.
|
|
216
216
|
*
|
|
217
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug
|
|
217
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
|
|
218
218
|
*/
|
|
219
219
|
resourceEditor?: any;
|
|
220
220
|
}
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { Item, SchedulerItemDragEvent, SchedulerItemFocusEvent, SchedulerItemMouseEvent, SchedulerItemKeyboardEvent, EditableProp } from '../models';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the Kendo UI for Vue [SchedulerItem]({% slug
|
|
8
|
+
* Represents the props of the Kendo UI for Vue [SchedulerItem]({% slug api_scheduler_scheduleritemprops %}) component.
|
|
9
9
|
*/
|
|
10
10
|
export interface SchedulerItemProps extends Item {
|
|
11
11
|
/**
|
|
@@ -13,7 +13,7 @@ export interface SchedulerViewItemProps extends SchedulerItemProps {
|
|
|
13
13
|
/**
|
|
14
14
|
* Overrides the default component responsible for visualizing a single item.
|
|
15
15
|
*
|
|
16
|
-
* The default Component is: [SchedulerItem]({% slug
|
|
16
|
+
* The default Component is: [SchedulerItem]({% slug api_scheduler_scheduleritemprops %}).
|
|
17
17
|
*/
|
|
18
18
|
item?: any;
|
|
19
19
|
}
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-scheduler',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1655871995,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -14,7 +14,7 @@ export interface SchedulerEditSlotProps extends SchedulerViewSlotProps {
|
|
|
14
14
|
/**
|
|
15
15
|
* Overrides the default component responsible for view-specific functionality.
|
|
16
16
|
*
|
|
17
|
-
* The default Component is: [SchedulerViewSlot]({% slug
|
|
17
|
+
* The default Component is: [SchedulerViewSlot]({% slug api_scheduler_schedulerviewslotprops %}).
|
|
18
18
|
*/
|
|
19
19
|
viewSlot?: any;
|
|
20
20
|
/**
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { Slot, SchedulerSlotMouseEvent, SchedulerSlotKeyboardEvent, SchedulerSlotFocusEvent, EditableProp } from '../models';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the Kendo UI for Vue [SchedulerSlot]({% slug
|
|
8
|
+
* Represents the props of the Kendo UI for Vue [SchedulerSlot]({% slug api_scheduler_schedulerslotprops %}) component.
|
|
9
9
|
*/
|
|
10
10
|
export interface SchedulerSlotProps extends Slot {
|
|
11
11
|
/** @hidden */
|
|
@@ -14,13 +14,13 @@ export declare type SchedulerSlotExpandableConfig = {
|
|
|
14
14
|
offsetBottom?: number;
|
|
15
15
|
};
|
|
16
16
|
/**
|
|
17
|
-
* Represents the props of the Kendo UI for Vue [SchedulerViewSlot]({% slug
|
|
17
|
+
* Represents the props of the Kendo UI for Vue [SchedulerViewSlot]({% slug api_scheduler_schedulerviewslotprops %}) component.
|
|
18
18
|
*/
|
|
19
19
|
export interface SchedulerViewSlotProps extends SchedulerSlotProps {
|
|
20
20
|
/**
|
|
21
21
|
* Overrides the default component responsible for view-specific functionality.
|
|
22
22
|
*
|
|
23
|
-
* The default Component is: [SchedulerSlot]({% slug
|
|
23
|
+
* The default Component is: [SchedulerSlot]({% slug api_scheduler_schedulerslotprops %}).
|
|
24
24
|
*/
|
|
25
25
|
slotRender?: any;
|
|
26
26
|
/**
|
|
@@ -7,7 +7,7 @@ import { SchedulerViewTaskProps } from './SchedulerViewTask';
|
|
|
7
7
|
import { DataItem } from '../models';
|
|
8
8
|
import { DataAction } from '../Scheduler';
|
|
9
9
|
/**
|
|
10
|
-
* Represents the props of the Kendo UI for Vue [SchedulerEditTask]({% slug
|
|
10
|
+
* Represents the props of the Kendo UI for Vue [SchedulerEditTask]({% slug api_scheduler_scheduleredittaskprops %}) component.
|
|
11
11
|
*/
|
|
12
12
|
export interface SchedulerEditTaskProps extends SchedulerViewTaskProps {
|
|
13
13
|
/**
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { Item, SchedulerTaskMouseEvent, EditableProp } from '../models';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the Kendo UI for Vue [SchedulerTask]({% slug
|
|
8
|
+
* Represents the props of the Kendo UI for Vue [SchedulerTask]({% slug api_scheduler_schedulertaskprops %}) component.
|
|
9
9
|
*/
|
|
10
10
|
export interface SchedulerTaskProps extends Item {
|
|
11
11
|
/**
|
|
@@ -11,7 +11,7 @@ export interface SchedulerViewTaskProps extends SchedulerTaskProps {
|
|
|
11
11
|
/**
|
|
12
12
|
* Overrides the default component responsible for visualizing a single task.
|
|
13
13
|
*
|
|
14
|
-
* The default Component is: [SchedulerTask]({% slug
|
|
14
|
+
* The default Component is: [SchedulerTask]({% slug api_scheduler_schedulertaskprops %}).
|
|
15
15
|
*/
|
|
16
16
|
task?: any;
|
|
17
17
|
}
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { SchedulerViewProps, EditableProp } from '../../models';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the properties of the Kendo UI for Vue [AgendaView]({% slug
|
|
8
|
+
* Represents the properties of the Kendo UI for Vue [AgendaView]({% slug api_scheduler_scheduleragendaview %}) Component.
|
|
9
9
|
*/
|
|
10
10
|
export interface AgendaViewProps extends SchedulerViewProps {
|
|
11
11
|
/**
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { MultiDayViewProps } from '../day/MultiDayView';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the properties of the [DayView]({% slug
|
|
8
|
+
* Represents the properties of the [DayView]({% slug api_scheduler_schedulerdayviewprops %}) Component.
|
|
9
9
|
*/
|
|
10
10
|
export interface DayViewProps extends MultiDayViewProps {
|
|
11
11
|
}
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { SchedulerViewProps } from '../../models';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the Kendo UI for Vue [MonthView]({% slug
|
|
8
|
+
* Represents the props of the Kendo UI for Vue [MonthView]({% slug api_scheduler_schedulermonthview %}) Component.
|
|
9
9
|
*/
|
|
10
10
|
export interface MonthViewProps extends SchedulerViewProps {
|
|
11
11
|
/**
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { MultiDayTimelineViewProps } from './MultiDayTimelineView';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the properties of the Kendo UI for Vue [TimelineView]({% slug
|
|
8
|
+
* Represents the properties of the Kendo UI for Vue [TimelineView]({% slug api_scheduler_schedulertimelineview %}) Component.
|
|
9
9
|
*/
|
|
10
10
|
export interface TimelineViewProps extends MultiDayTimelineViewProps {
|
|
11
11
|
}
|
|
@@ -6,7 +6,7 @@ declare type DefaultMethods<V> = {
|
|
|
6
6
|
import { MultiDayViewProps } from '../day/MultiDayView';
|
|
7
7
|
import { Day } from '@progress/kendo-date-math';
|
|
8
8
|
/**
|
|
9
|
-
* Represents the properties of the Kendo UI for Vue [WeekView]({% slug
|
|
9
|
+
* Represents the properties of the Kendo UI for Vue [WeekView]({% slug api_scheduler_schedulerweekview %}) Component.
|
|
10
10
|
*/
|
|
11
11
|
export interface WeekViewProps extends MultiDayViewProps {
|
|
12
12
|
/**
|
package/dist/npm/Scheduler.d.ts
CHANGED
|
@@ -41,9 +41,9 @@ export interface SchedulerProps {
|
|
|
41
41
|
/**
|
|
42
42
|
* Overrides the default item. Specifying the `item` property of a specific view will override this property.
|
|
43
43
|
*
|
|
44
|
-
* The default component is: [SchedulerItem]({% slug
|
|
44
|
+
* The default component is: [SchedulerItem]({% slug api_scheduler_scheduleritemprops %})
|
|
45
45
|
*
|
|
46
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug
|
|
46
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug scheduler_custom_event %}) article.
|
|
47
47
|
*/
|
|
48
48
|
item?: any;
|
|
49
49
|
/**
|
|
@@ -51,7 +51,7 @@ export interface SchedulerProps {
|
|
|
51
51
|
*
|
|
52
52
|
* The default component is: [SchedulerViewItem]({% slug api_scheduler_schedulerviewitem %})
|
|
53
53
|
*
|
|
54
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug
|
|
54
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug scheduler_custom_event %}) article.
|
|
55
55
|
*/
|
|
56
56
|
viewItem?: any;
|
|
57
57
|
/**
|
|
@@ -59,16 +59,16 @@ export interface SchedulerProps {
|
|
|
59
59
|
*
|
|
60
60
|
* The default component is: [SchedulerEditItem]({% slug api_scheduler_scheduleredititem %})
|
|
61
61
|
*
|
|
62
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug
|
|
62
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization]({% slug scheduler_custom_event %}) article.
|
|
63
63
|
*/
|
|
64
64
|
editItem?: any;
|
|
65
65
|
/**
|
|
66
66
|
* Overrides the default task. Specifying the `task` property of a specific view will override this property.
|
|
67
67
|
* Currently, the `task` is being used in the [AgendaView]({% slug agenda_view_scheduler %}) only.
|
|
68
68
|
*
|
|
69
|
-
* The default component is: [SchedulerTask]({% slug
|
|
69
|
+
* The default component is: [SchedulerTask]({% slug api_scheduler_schedulertaskprops %})
|
|
70
70
|
*
|
|
71
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug
|
|
71
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug overview_agenda_view_scheduler %}) article.
|
|
72
72
|
*/
|
|
73
73
|
task?: any;
|
|
74
74
|
/**
|
|
@@ -87,16 +87,16 @@ export interface SchedulerProps {
|
|
|
87
87
|
*
|
|
88
88
|
* The default component is: [SchedulerViewTask]({% slug api_scheduler_schedulerviewtask %})
|
|
89
89
|
*
|
|
90
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug
|
|
90
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug overview_agenda_view_scheduler %}) article.
|
|
91
91
|
*/
|
|
92
92
|
viewTask?: any;
|
|
93
93
|
/**
|
|
94
94
|
* Overrides the default editTask. Specifying the `editTask` property of a specific view will override this property.
|
|
95
95
|
* Currently, the `viewTask` is being used in the [AgendaView]({% slug agenda_view_scheduler %}) only.
|
|
96
96
|
*
|
|
97
|
-
* The default component is: [SchedulerEditTask]({% slug
|
|
97
|
+
* The default component is: [SchedulerEditTask]({% slug api_scheduler_scheduleredittaskprops %})
|
|
98
98
|
*
|
|
99
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug
|
|
99
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization]({% slug overview_agenda_view_scheduler %}) article.
|
|
100
100
|
*/
|
|
101
101
|
editTask?: any;
|
|
102
102
|
/**
|
|
@@ -118,7 +118,7 @@ export interface SchedulerProps {
|
|
|
118
118
|
/**
|
|
119
119
|
* Overrides the default slot component. Specifying the `slot` property of a specific view will override this property.
|
|
120
120
|
*
|
|
121
|
-
* The default component is: [SchedulerSlot]({% slug
|
|
121
|
+
* The default component is: [SchedulerSlot]({% slug api_scheduler_schedulerslotprops %})
|
|
122
122
|
*
|
|
123
123
|
* For more information on customizing the scheduler slots, refer to the [Slot Customization]({% slug overview_slots_scheduler %}) article.
|
|
124
124
|
*/
|
|
@@ -126,7 +126,7 @@ export interface SchedulerProps {
|
|
|
126
126
|
/**
|
|
127
127
|
* Overrides the default viewSlot component. Specifying the `viewSlot` property of a specific view will override this property.
|
|
128
128
|
*
|
|
129
|
-
* The default component is: [SchedulerViewSlot]({% slug
|
|
129
|
+
* The default component is: [SchedulerViewSlot]({% slug api_scheduler_schedulerviewslotprops %})
|
|
130
130
|
*
|
|
131
131
|
* For more information on customizing the scheduler slots, refer to the [Slot Customization]({% slug overview_slots_scheduler %}) article.
|
|
132
132
|
*/
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { DateFormatOptions } from '@progress/kendo-vue-intl';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the properties of [TimeHeaderCell]({% slug
|
|
8
|
+
* Represents the properties of [TimeHeaderCell]({% slug api_scheduler_schedulertimeheadercell %}) component.
|
|
9
9
|
*/
|
|
10
10
|
export interface TimeHeaderCellProps {
|
|
11
11
|
/** @hidden */
|