@progress/kendo-vue-scheduler 8.0.3-develop.2 → 8.0.3-develop.4

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.
Files changed (176) hide show
  1. package/Scheduler.d.ts +1536 -0
  2. package/common.d.ts +13 -0
  3. package/components/BaseView.d.ts +74 -0
  4. package/components/CurrentTimeMarker.d.ts +35 -0
  5. package/components/CurrentTimeMarkerArrow.d.ts +33 -0
  6. package/components/DateHeaderCell.d.ts +70 -0
  7. package/components/SchedulerActionButtons.d.ts +32 -0
  8. package/components/SchedulerForm.d.ts +70 -0
  9. package/components/SchedulerOccurrenceDialog.d.ts +75 -0
  10. package/components/SchedulerRemoveDialog.d.ts +61 -0
  11. package/components/ShowMoreItemsButton.d.ts +36 -0
  12. package/components/TimeHeaderCell.d.ts +70 -0
  13. package/components/footer/SchedulerFooter.d.ts +20 -0
  14. package/components/footer/bussiness-hours/BusinessHours.d.ts +27 -0
  15. package/components/footer/bussiness-hours/BusinessHours.js +1 -1
  16. package/components/footer/bussiness-hours/BusinessHours.mjs +1 -1
  17. package/components/header/SchedulerHeader.d.ts +23 -0
  18. package/components/header/navigation/DatePickerToggleButton.d.ts +16 -0
  19. package/components/header/navigation/NavigationDatePicker.d.ts +34 -0
  20. package/components/header/navigation/SchedulerNavigation.d.ts +39 -0
  21. package/components/header/view-selector/SchedulerViewSelector.d.ts +20 -0
  22. package/components/header/view-selector/ViewSelectorItem.d.ts +25 -0
  23. package/components/header/view-selector/ViewSelectorList.d.ts +17 -0
  24. package/constants/main.d.ts +66 -0
  25. package/context/SchedulerContext.d.ts +29 -0
  26. package/context/SchedulerEditItemContext.d.ts +22 -0
  27. package/context/SchedulerEditSlotContext.d.ts +17 -0
  28. package/context/SchedulerEditTaskContext.d.ts +18 -0
  29. package/context/SchedulerResourceIteratorContext.d.ts +47 -0
  30. package/context/SchedulerViewContext.d.ts +25 -0
  31. package/context/main.d.ts +12 -0
  32. package/dist/cdn/js/kendo-vue-scheduler.js +1 -1
  33. package/editors/FilterableComboBox.d.ts +38 -0
  34. package/editors/ResourceEditor.d.ts +60 -0
  35. package/editors/SchedulerFormEditor.d.ts +3858 -0
  36. package/editors/ZonedDateTime.d.ts +32 -0
  37. package/editors/common.d.ts +19 -0
  38. package/hooks/main.d.ts +16 -0
  39. package/hooks/use-items-focus.d.ts +29 -0
  40. package/hooks/use-items-focus.js +1 -1
  41. package/hooks/use-items-focus.mjs +2 -2
  42. package/hooks/use-items-selection.d.ts +36 -0
  43. package/hooks/use-items-selection.js +1 -1
  44. package/hooks/use-items-selection.mjs +2 -2
  45. package/hooks/use-slots-focus.d.ts +39 -0
  46. package/hooks/use-slots-focus.js +1 -1
  47. package/hooks/use-slots-focus.mjs +2 -2
  48. package/hooks/use-slots-selection.d.ts +29 -0
  49. package/hooks/use-slots-selection.js +1 -1
  50. package/hooks/use-slots-selection.mjs +2 -2
  51. package/hooks/useAsyncMouseEnterLeave.d.ts +17 -0
  52. package/hooks/useCellSync.d.ts +16 -0
  53. package/hooks/useEditable.d.ts +10 -0
  54. package/hooks/usePropOrState.d.ts +9 -0
  55. package/hooks/useRowSync.d.ts +17 -0
  56. package/hooks/useSchedulerSlot.d.ts +13 -0
  57. package/hooks/useSlotExpand.d.ts +10 -0
  58. package/hooks/useWorkHours.d.ts +9 -0
  59. package/index.d.mts +45 -10991
  60. package/index.d.ts +45 -10991
  61. package/items/SchedulerEditItem.d.ts +896 -0
  62. package/items/SchedulerItem.d.ts +404 -0
  63. package/items/SchedulerItemContent.d.ts +27 -0
  64. package/items/SchedulerViewItem.d.ts +235 -0
  65. package/items/hooks/use-drag-item.d.ts +40 -0
  66. package/items/hooks/use-drag-item.js +1 -1
  67. package/items/hooks/use-drag-item.mjs +2 -2
  68. package/items/hooks/use-form-item.d.ts +29 -0
  69. package/items/hooks/use-form-item.js +1 -1
  70. package/items/hooks/use-form-item.mjs +2 -2
  71. package/items/hooks/use-remove-item.d.ts +37 -0
  72. package/items/hooks/use-remove-item.js +1 -1
  73. package/items/hooks/use-remove-item.mjs +2 -2
  74. package/items/hooks/use-resize-item.d.ts +45 -0
  75. package/items/hooks/use-resize-item.js +1 -1
  76. package/items/hooks/use-resize-item.mjs +2 -2
  77. package/items/hooks/use-series.d.ts +32 -0
  78. package/items/hooks/use-series.js +1 -1
  79. package/items/hooks/use-series.mjs +2 -2
  80. package/items/hooks/use-show-occurrence-dialog.d.ts +36 -0
  81. package/items/hooks/use-show-occurrence-dialog.js +1 -1
  82. package/items/hooks/use-show-occurrence-dialog.mjs +2 -2
  83. package/items/hooks/use-show-remove-item-dialog.d.ts +36 -0
  84. package/items/hooks/use-show-remove-item-dialog.js +1 -1
  85. package/items/hooks/use-show-remove-item-dialog.mjs +2 -2
  86. package/messages/main.d.ts +243 -0
  87. package/models/DataItem.d.ts +15 -0
  88. package/models/DateRange.d.ts +25 -0
  89. package/models/EditableProp.d.ts +36 -0
  90. package/models/Fields.d.ts +24 -0
  91. package/models/Group.d.ts +15 -0
  92. package/models/Item.d.ts +69 -0
  93. package/models/NavigationAction.d.ts +24 -0
  94. package/models/Occurrence.d.ts +59 -0
  95. package/models/Omit.d.ts +11 -0
  96. package/models/Orientation.d.ts +9 -0
  97. package/models/Range.d.ts +17 -0
  98. package/models/Rect.d.ts +22 -0
  99. package/models/Resource.d.ts +15 -0
  100. package/models/SchedulerGroup.d.ts +20 -0
  101. package/models/SchedulerHandle.d.ts +13 -0
  102. package/models/SchedulerModelFields.d.ts +69 -0
  103. package/models/SchedulerResource.d.ts +40 -0
  104. package/models/SchedulerView.d.ts +90 -0
  105. package/models/Slot.d.ts +58 -0
  106. package/models/events.d.ts +88 -0
  107. package/models/main.d.ts +24 -0
  108. package/package-metadata.d.ts +12 -0
  109. package/package-metadata.js +1 -1
  110. package/package-metadata.mjs +2 -2
  111. package/package.json +19 -13
  112. package/recurrence/RecurrenceEditor.d.ts +82 -0
  113. package/recurrence/RecurrenceFrequencyEditor.d.ts +32 -0
  114. package/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +59 -0
  115. package/recurrence/common.d.ts +64 -0
  116. package/recurrence/types/EndRule.d.ts +11 -0
  117. package/recurrence/types/Frequency.d.ts +11 -0
  118. package/recurrence/types/FrequencyEntity.d.ts +15 -0
  119. package/recurrence/types/MonthEntity.d.ts +14 -0
  120. package/recurrence/types/OffsetPosition.d.ts +11 -0
  121. package/recurrence/types/OffsetPositionEntity.d.ts +14 -0
  122. package/recurrence/types/RepeatOnRule.d.ts +11 -0
  123. package/recurrence/types/WeekDayEntity.d.ts +14 -0
  124. package/recurrence/types/WeekDayRule.d.ts +14 -0
  125. package/recurrence/utils/main.d.ts +7 -0
  126. package/reducers/editReducer.d.ts +40 -0
  127. package/reducers/main.d.ts +8 -0
  128. package/services/itemsService.d.ts +21 -0
  129. package/services/main.d.ts +11 -0
  130. package/services/occurrenceService.d.ts +14 -0
  131. package/services/rangeService.d.ts +13 -0
  132. package/services/slotsService.d.ts +15 -0
  133. package/slots/SchedulerEditSlot.d.ts +148 -0
  134. package/slots/SchedulerSlot.d.ts +248 -0
  135. package/slots/SchedulerViewSlot.d.ts +134 -0
  136. package/tasks/SchedulerEditTask.d.ts +225 -0
  137. package/tasks/SchedulerTask.d.ts +139 -0
  138. package/tasks/SchedulerViewTask.d.ts +120 -0
  139. package/utils/main.d.ts +192 -0
  140. package/utils/main.mjs +3 -3
  141. package/views/agenda/AgendaView.d.ts +173 -0
  142. package/views/agenda/AgendaView.js +1 -1
  143. package/views/agenda/AgendaView.mjs +2 -2
  144. package/views/agenda/AgendaViewBody.d.ts +53 -0
  145. package/views/agenda/AgendaViewHead.d.ts +24 -0
  146. package/views/agenda/AgendaViewHeaderItem.d.ts +22 -0
  147. package/views/common/HorizontalResourceIterator.d.ts +57 -0
  148. package/views/common/SchedulerDrag.d.ts +459 -0
  149. package/views/common/SchedulerResize.d.ts +462 -0
  150. package/views/common/VerticalResourceIterator.d.ts +57 -0
  151. package/views/common/utils.d.ts +41 -0
  152. package/views/day/DayView.d.ts +208 -0
  153. package/views/day/DayViewAllDayRowContent.d.ts +19 -0
  154. package/views/day/DayViewAllDaySlots.d.ts +63 -0
  155. package/views/day/DayViewGroupRowContent.d.ts +19 -0
  156. package/views/day/DayViewHead.d.ts +21 -0
  157. package/views/day/DayViewMiddleRow.d.ts +82 -0
  158. package/views/day/DayViewRowContent.d.ts +29 -0
  159. package/views/day/DayViewVerticalRow.d.ts +43 -0
  160. package/views/day/DayViewVerticalSlotsRow.d.ts +94 -0
  161. package/views/day/DayViewVerticalSlotsRow.mjs +3 -3
  162. package/views/day/MultiDayView.d.ts +411 -0
  163. package/views/month/MonthView.d.ts +205 -0
  164. package/views/month/MonthView.js +1 -1
  165. package/views/month/MonthView.mjs +1 -1
  166. package/views/month/MonthViewBody.d.ts +57 -0
  167. package/views/month/MonthViewHead.d.ts +30 -0
  168. package/views/time/MultiDayTimelineView.d.ts +382 -0
  169. package/views/time/TimelineView.d.ts +233 -0
  170. package/views/time/TimelineViewAllEventsRowContent.d.ts +13 -0
  171. package/views/time/TimelineViewBody.d.ts +66 -0
  172. package/views/time/TimelineViewBody.mjs +3 -3
  173. package/views/time/TimelineViewRowContent.d.ts +13 -0
  174. package/views/week/WeekView.d.ts +270 -0
  175. package/views/week/WeekView.mjs +1 -1
  176. package/views/week/WorkWeekView.d.ts +141 -0
@@ -0,0 +1,3858 @@
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 { FormRenderProps, FormElementProps } from '@progress/kendo-vue-form';
9
+ import { Omit } from '../models/Omit';
10
+ /**
11
+ * Represents the props of the Kendo UI for Vue `SchedulerFormEditor` component.
12
+ */
13
+ export interface SchedulerFormEditorProps extends Omit<FormElementProps, 'children'>, FormRenderProps {
14
+ /** @hidden */
15
+ as?: any;
16
+ /**
17
+ * Specifies the `id` attribute of the root element.
18
+ */
19
+ id?: string;
20
+ /**
21
+ * Specifies the `tabIndex` attribute of the root element.
22
+ */
23
+ tabIndex?: number;
24
+ /**
25
+ * Overrides the component used for visualizing the `title` field label.
26
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
27
+ *
28
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
29
+ */
30
+ titleLabel?: any;
31
+ /**
32
+ * Overrides the component used for visualizing the `title` field error.
33
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
34
+ *
35
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
36
+ */
37
+ titleError?: any;
38
+ /**
39
+ * Overrides the component used for visualizing the `title` field editor.
40
+ * The [Kendo UI for Vue Input]({% slug overview_textbox %}) component is used, by default.
41
+ *
42
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
43
+ */
44
+ titleEditor?: any;
45
+ /**
46
+ * Overrides the component used for visualizing the `start` field label.
47
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
48
+ *
49
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
50
+ */
51
+ startLabel?: any;
52
+ /**
53
+ * Overrides the component used for visualizing the `start` field error.
54
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
55
+ *
56
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
57
+ */
58
+ startError?: any;
59
+ /**
60
+ * Overrides the component used for visualizing the `start` field editor.
61
+ * 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.
62
+ *
63
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
64
+ */
65
+ startEditor?: any;
66
+ /**
67
+ * Overrides the component used for visualizing the `start timezone` field label.
68
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
69
+ *
70
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
71
+ */
72
+ startTimezoneLabel?: any;
73
+ /**
74
+ * Overrides the component used for visualizing the `start timezone` field error.
75
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
76
+ *
77
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
78
+ */
79
+ startTimezoneError?: any;
80
+ /**
81
+ * Overrides the component used for visualizing the `start timezone` field editor.
82
+ * An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
83
+ *
84
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
85
+ */
86
+ startTimezoneEditor?: any;
87
+ /**
88
+ * Overrides the component used for visualizing the `start timezone checked` label.
89
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
90
+ *
91
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
92
+ */
93
+ startTimezoneCheckedLabel?: any;
94
+ /**
95
+ * Overrides the component used for visualizing the `start timezone checked` editor.
96
+ * The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
97
+ *
98
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
99
+ */
100
+ startTimezoneCheckedEditor?: any;
101
+ /**
102
+ * Overrides the component used for visualizing the `end` field label.
103
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
104
+ *
105
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
106
+ */
107
+ endLabel?: any;
108
+ /**
109
+ * Overrides the component used for visualizing the `end` field error.
110
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
111
+ *
112
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
113
+ */
114
+ endError?: any;
115
+ /**
116
+ * Overrides the component used for visualizing the `end` field editor.
117
+ * 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.
118
+ *
119
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
120
+ */
121
+ endEditor?: any;
122
+ /**
123
+ * Overrides the component used for visualizing the `end timezone` field label.
124
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
125
+ *
126
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
127
+ */
128
+ endTimezoneLabel?: any;
129
+ /**
130
+ * Overrides the component used for visualizing the `end timezone` field error.
131
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
132
+ *
133
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
134
+ */
135
+ endTimezoneError?: any;
136
+ /**
137
+ * Overrides the component used for visualizing the `end timezone` field editor.
138
+ * An extended [Kendo UI for Vue ComboBox]({% slug overview_combobox %}) component is used, by default.
139
+ *
140
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
141
+ */
142
+ endTimezoneEditor?: any;
143
+ /**
144
+ * Overrides the component used for visualizing the `start timezone checked` label.
145
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
146
+ *
147
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
148
+ */
149
+ endTimezoneCheckedLabel?: any;
150
+ /**
151
+ * Overrides the component used for visualizing the `end timezone checked` editor.
152
+ * The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
153
+ *
154
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
155
+ */
156
+ endTimezoneCheckedEditor?: any;
157
+ /**
158
+ * Overrides the component used for visualizing the `allDay` field label.
159
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
160
+ *
161
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
162
+ */
163
+ allDayLabel?: any;
164
+ /**
165
+ * Overrides the component used for visualizing the `allDay` field editor.
166
+ * The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
167
+ *
168
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
169
+ */
170
+ allDayEditor?: any;
171
+ /**
172
+ * Overrides the component used for visualizing the `recurrenceRule` field editor.
173
+ * A custom made RecurrenceEditor component is used, by default.
174
+ *
175
+ * > We're planing on releasing the `RecurrenceEditor` as a standalone component in the future.
176
+ *
177
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
178
+ */
179
+ recurrenceEditor?: any;
180
+ /**
181
+ * Overrides the component used for visualizing the `description` field label.
182
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
183
+ *
184
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
185
+ */
186
+ descriptionLabel?: any;
187
+ /**
188
+ * Overrides the component used for visualizing the `description` field error.
189
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
190
+ *
191
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
192
+ */
193
+ descriptionError?: any;
194
+ /**
195
+ * Overrides the component used for visualizing the `description` field editor.
196
+ * The [Kendo UI for Vue TextArea]({% slug overview_textarea %}) component is used, by default.
197
+ *
198
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
199
+ */
200
+ descriptionEditor?: any;
201
+ /**
202
+ * Overrides the component used for visualizing the `start timezone checked` field label.
203
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
204
+ *
205
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
206
+ */
207
+ resourceLabel?: any;
208
+ /**
209
+ * Overrides the component used for visualizing each `resources` field error.
210
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
211
+ *
212
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
213
+ */
214
+ resourcesError?: any;
215
+ /**
216
+ * Overrides the component used for visualizing each `resource` field editor.
217
+ * 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`.
218
+ *
219
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
220
+ */
221
+ resourceEditor?: any;
222
+ }
223
+ /** @hidden */
224
+ export interface SchedulerFormEditorHandle {
225
+ element: any;
226
+ props: SchedulerFormEditorProps;
227
+ }
228
+ /**
229
+ * @hidden
230
+ */
231
+ declare const SchedulerFormEditor: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
232
+ as: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
233
+ id: StringConstructor;
234
+ tabIndex: NumberConstructor;
235
+ titleLabel: {
236
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
237
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
238
+ id: import('vue').PropType<string>;
239
+ /**
240
+ * Specifies the `id` attribute of the root element.
241
+ */
242
+ editorId: import('vue').PropType<string>;
243
+ editorRef: import('vue').PropType<any>;
244
+ editorValid: {
245
+ type: import('vue').PropType<boolean>;
246
+ default: any;
247
+ };
248
+ editorDisabled: import('vue').PropType<boolean>;
249
+ optional: import('vue').PropType<boolean>;
250
+ }>, {
251
+ kendoLocalizationService: {};
252
+ }, {}, {
253
+ labelClassName(): {
254
+ 'k-label': boolean;
255
+ 'k-label-empty': boolean;
256
+ 'k-text-error': boolean;
257
+ 'k-text-disabled': boolean;
258
+ };
259
+ }, {
260
+ onLabelClick(e: any): void;
261
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
262
+ id: import('vue').PropType<string>;
263
+ /**
264
+ * Specifies the `id` attribute of the root element.
265
+ */
266
+ editorId: import('vue').PropType<string>;
267
+ editorRef: import('vue').PropType<any>;
268
+ editorValid: {
269
+ type: import('vue').PropType<boolean>;
270
+ default: any;
271
+ };
272
+ editorDisabled: import('vue').PropType<boolean>;
273
+ optional: import('vue').PropType<boolean>;
274
+ }>> & Readonly<{}>, {
275
+ editorValid: boolean;
276
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
277
+ };
278
+ titleError: {
279
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
280
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
281
+ id: import('vue').PropType<string>;
282
+ direction: {
283
+ type: import('vue').PropType<string>;
284
+ default: string;
285
+ validator: (value: string) => any;
286
+ };
287
+ }>, {}, {}, {
288
+ errorClassName(): object;
289
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
290
+ id: import('vue').PropType<string>;
291
+ direction: {
292
+ type: import('vue').PropType<string>;
293
+ default: string;
294
+ validator: (value: string) => any;
295
+ };
296
+ }>> & Readonly<{}>, {
297
+ direction: string;
298
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
299
+ };
300
+ titleEditor: {
301
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
302
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
303
+ modelValue: {
304
+ type: import('vue').PropType<string | number>;
305
+ default: any;
306
+ };
307
+ disabled: {
308
+ type: import('vue').PropType<boolean>;
309
+ default: any;
310
+ };
311
+ defaultValue: {
312
+ type: import('vue').PropType<string | number | string[]>;
313
+ default: string;
314
+ };
315
+ value: {
316
+ type: import('vue').PropType<string | number | string[]>;
317
+ };
318
+ label: {
319
+ type: import('vue').PropType<string>;
320
+ }; /**
321
+ * Overrides the component used for visualizing the `start timezone checked` label.
322
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
323
+ *
324
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
325
+ */
326
+ placeholder: {
327
+ type: import('vue').PropType<string>;
328
+ };
329
+ required: {
330
+ type: import('vue').PropType<boolean>;
331
+ default: boolean;
332
+ };
333
+ size: {
334
+ type: import('vue').PropType<"small" | "medium" | "large">;
335
+ validator: (value: string) => boolean;
336
+ };
337
+ rounded: {
338
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
339
+ validator: (value: string) => boolean;
340
+ };
341
+ fillMode: {
342
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
343
+ validator: (value: string) => boolean;
344
+ };
345
+ dir: {
346
+ type: import('vue').PropType<string>;
347
+ };
348
+ id: StringConstructor;
349
+ valid: {
350
+ type: import('vue').PropType<boolean>;
351
+ /**
352
+ * Overrides the component used for visualizing the `allDay` field editor.
353
+ * The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
354
+ *
355
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
356
+ */
357
+ default: any;
358
+ };
359
+ validate: {
360
+ type: import('vue').PropType<boolean>;
361
+ };
362
+ validationMessage: {
363
+ type: import('vue').PropType<string>;
364
+ };
365
+ validityStyles: {
366
+ type: import('vue').PropType<boolean>;
367
+ default: boolean;
368
+ };
369
+ iconName: import('vue').PropType<string>;
370
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
371
+ prefix: import('vue').PropType<string | boolean | Object | Function>;
372
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
373
+ suffix: import('vue').PropType<string | boolean | Object | Function>;
374
+ showValidationIcon: import('vue').PropType<boolean>;
375
+ showLoadingIcon: import('vue').PropType<boolean>;
376
+ showClearButton: import('vue').PropType<boolean>;
377
+ inputClass: import('vue').PropType<string>;
378
+ wrapperClass: import('vue').PropType<string>;
379
+ tabIndex: import('vue').PropType<number>;
380
+ role: import('vue').PropType<string>;
381
+ title: import('vue').PropType<string>;
382
+ ariaLabel: import('vue').PropType<string>;
383
+ inputAttributes: import('vue').PropType<Object>;
384
+ }>, {
385
+ inputRef: import('vue').Ref<any, any>;
386
+ }, {
387
+ hasMounted: boolean;
388
+ autofill: boolean;
389
+ currentValue: string | number | string[];
390
+ valueDuringOnChange: string;
391
+ focused: boolean;
392
+ }, {
393
+ spanClassNames(): {
394
+ 'k-floating-label-container': boolean;
395
+ 'k-focus': any;
396
+ 'k-empty': boolean;
397
+ 'k-autofill': any;
398
+ 'k-invalid': boolean;
399
+ 'k-rtl': boolean;
400
+ };
401
+ inputInnerClass(): {
402
+ [x: number]: any;
403
+ 'k-input-inner': boolean;
404
+ };
405
+ computedValue(): any;
406
+ }, {
407
+ updateValidClass(): void;
408
+ emitFocus(e: any): void;
409
+ emitBlur(e: any): void;
410
+ handleKeydown(e: any): void;
411
+ handleKeyup(e: any): void;
412
+ handleKeypress(e: any): void;
413
+ clearClick(event: any): void;
414
+ focus(): void;
415
+ validity(): {
416
+ customError: boolean;
417
+ valid: any;
418
+ badTextBox: any;
419
+ patternMismatch: any;
420
+ rangeOverflow: any;
421
+ rangeUnderflow: any;
422
+ stepMismatch: any;
423
+ tooLong: any;
424
+ tooShort: any;
425
+ typeMismatch: any;
426
+ valueMissing: any;
427
+ };
428
+ isInvalid(state: Object): boolean;
429
+ setValidity(): void;
430
+ handleInput(event: any): void;
431
+ handleChange(event: any): void;
432
+ emitUpdate(event: any, eventName: string, value: any): void;
433
+ handleAutoFill(e: any): void;
434
+ handleAutoFillEnd(e: any): void;
435
+ name: () => any;
436
+ inputWrapperClass(): {
437
+ [x: string]: any;
438
+ [x: number]: any;
439
+ 'k-textbox': boolean;
440
+ 'k-input': boolean;
441
+ 'k-invalid': boolean;
442
+ 'k-required': any;
443
+ 'k-disabled': any;
444
+ };
445
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
446
+ input: (event: Event) => true;
447
+ change: (event: import('@progress/kendo-vue-inputs').TextBoxChangeEvent) => true;
448
+ changemodel: (value: string | number) => true;
449
+ 'update:modelValue': (value: string | number) => true;
450
+ focus: (event: import('@progress/kendo-vue-inputs').TextBoxFocusEvent) => true;
451
+ blur: (event: import('@progress/kendo-vue-inputs').TextBoxBlurEvent) => true;
452
+ keyup: (event: KeyboardEvent) => true;
453
+ keydown: (event: KeyboardEvent) => true;
454
+ keypress: (event: KeyboardEvent) => true;
455
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
456
+ modelValue: {
457
+ type: import('vue').PropType<string | number>;
458
+ default: any;
459
+ };
460
+ disabled: {
461
+ type: import('vue').PropType<boolean>;
462
+ default: any;
463
+ };
464
+ defaultValue: {
465
+ type: import('vue').PropType<string | number | string[]>;
466
+ default: string;
467
+ };
468
+ value: {
469
+ type: import('vue').PropType<string | number | string[]>;
470
+ };
471
+ label: {
472
+ type: import('vue').PropType<string>;
473
+ }; /**
474
+ * Overrides the component used for visualizing the `start timezone checked` label.
475
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
476
+ *
477
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
478
+ */
479
+ placeholder: {
480
+ type: import('vue').PropType<string>;
481
+ };
482
+ required: {
483
+ type: import('vue').PropType<boolean>;
484
+ default: boolean;
485
+ };
486
+ size: {
487
+ type: import('vue').PropType<"small" | "medium" | "large">;
488
+ validator: (value: string) => boolean;
489
+ };
490
+ rounded: {
491
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
492
+ validator: (value: string) => boolean;
493
+ };
494
+ fillMode: {
495
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
496
+ validator: (value: string) => boolean;
497
+ };
498
+ dir: {
499
+ type: import('vue').PropType<string>;
500
+ };
501
+ id: StringConstructor;
502
+ valid: {
503
+ type: import('vue').PropType<boolean>;
504
+ /**
505
+ * Overrides the component used for visualizing the `allDay` field editor.
506
+ * The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
507
+ *
508
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
509
+ */
510
+ default: any;
511
+ };
512
+ validate: {
513
+ type: import('vue').PropType<boolean>;
514
+ };
515
+ validationMessage: {
516
+ type: import('vue').PropType<string>;
517
+ };
518
+ validityStyles: {
519
+ type: import('vue').PropType<boolean>;
520
+ default: boolean;
521
+ };
522
+ iconName: import('vue').PropType<string>;
523
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
524
+ prefix: import('vue').PropType<string | boolean | Object | Function>;
525
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
526
+ suffix: import('vue').PropType<string | boolean | Object | Function>;
527
+ showValidationIcon: import('vue').PropType<boolean>;
528
+ showLoadingIcon: import('vue').PropType<boolean>;
529
+ showClearButton: import('vue').PropType<boolean>;
530
+ inputClass: import('vue').PropType<string>;
531
+ wrapperClass: import('vue').PropType<string>;
532
+ tabIndex: import('vue').PropType<number>;
533
+ role: import('vue').PropType<string>;
534
+ title: import('vue').PropType<string>;
535
+ ariaLabel: import('vue').PropType<string>;
536
+ inputAttributes: import('vue').PropType<Object>;
537
+ }>> & Readonly<{
538
+ onInput?: (event: Event) => any;
539
+ onBlur?: (event: import('@progress/kendo-vue-inputs').TextBoxBlurEvent) => any;
540
+ onChange?: (event: import('@progress/kendo-vue-inputs').TextBoxChangeEvent) => any;
541
+ onFocus?: (event: import('@progress/kendo-vue-inputs').TextBoxFocusEvent) => any;
542
+ onKeydown?: (event: KeyboardEvent) => any;
543
+ onKeypress?: (event: KeyboardEvent) => any;
544
+ onKeyup?: (event: KeyboardEvent) => any;
545
+ onChangemodel?: (value: string | number) => any;
546
+ "onUpdate:modelValue"?: (value: string | number) => any;
547
+ }>, {
548
+ required: boolean;
549
+ disabled: boolean;
550
+ defaultValue: string | number | string[];
551
+ valid: boolean;
552
+ modelValue: string | number;
553
+ validityStyles: boolean;
554
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
555
+ };
556
+ startLabel: {
557
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
558
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
559
+ id: import('vue').PropType<string>;
560
+ /**
561
+ * Specifies the `id` attribute of the root element.
562
+ */
563
+ editorId: import('vue').PropType<string>;
564
+ editorRef: import('vue').PropType<any>;
565
+ editorValid: {
566
+ type: import('vue').PropType<boolean>;
567
+ default: any;
568
+ };
569
+ editorDisabled: import('vue').PropType<boolean>;
570
+ optional: import('vue').PropType<boolean>;
571
+ }>, {
572
+ kendoLocalizationService: {};
573
+ }, {}, {
574
+ labelClassName(): {
575
+ 'k-label': boolean;
576
+ 'k-label-empty': boolean;
577
+ 'k-text-error': boolean;
578
+ 'k-text-disabled': boolean;
579
+ };
580
+ }, {
581
+ onLabelClick(e: any): void;
582
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
583
+ id: import('vue').PropType<string>;
584
+ /**
585
+ * Specifies the `id` attribute of the root element.
586
+ */
587
+ editorId: import('vue').PropType<string>;
588
+ editorRef: import('vue').PropType<any>;
589
+ editorValid: {
590
+ type: import('vue').PropType<boolean>;
591
+ default: any;
592
+ };
593
+ editorDisabled: import('vue').PropType<boolean>;
594
+ optional: import('vue').PropType<boolean>;
595
+ }>> & Readonly<{}>, {
596
+ editorValid: boolean;
597
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
598
+ };
599
+ startError: {
600
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
601
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
602
+ id: import('vue').PropType<string>;
603
+ direction: {
604
+ type: import('vue').PropType<string>;
605
+ default: string;
606
+ validator: (value: string) => any;
607
+ };
608
+ }>, {}, {}, {
609
+ errorClassName(): object;
610
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
611
+ id: import('vue').PropType<string>;
612
+ direction: {
613
+ type: import('vue').PropType<string>;
614
+ default: string;
615
+ validator: (value: string) => any;
616
+ };
617
+ }>> & Readonly<{}>, {
618
+ direction: string;
619
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
620
+ };
621
+ startEditor: {
622
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
623
+ default: () => import('vue').DefineComponent<{}, {}, {}, {}, {
624
+ handleChange(event: any): any;
625
+ readDateAsLocal(value: any, timezone?: string): Date;
626
+ readDateWithTimezone(value: any, timezone?: string): Date;
627
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
628
+ change: any;
629
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
630
+ onChange?: (...args: any[] | unknown[]) => any;
631
+ }>, {} | {
632
+ [x: string]: any;
633
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
634
+ };
635
+ startTimezoneLabel: {
636
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
637
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
638
+ id: import('vue').PropType<string>;
639
+ /**
640
+ * Specifies the `id` attribute of the root element.
641
+ */
642
+ editorId: import('vue').PropType<string>;
643
+ editorRef: import('vue').PropType<any>;
644
+ editorValid: {
645
+ type: import('vue').PropType<boolean>;
646
+ default: any;
647
+ };
648
+ editorDisabled: import('vue').PropType<boolean>;
649
+ optional: import('vue').PropType<boolean>;
650
+ }>, {
651
+ kendoLocalizationService: {};
652
+ }, {}, {
653
+ labelClassName(): {
654
+ 'k-label': boolean;
655
+ 'k-label-empty': boolean;
656
+ 'k-text-error': boolean;
657
+ 'k-text-disabled': boolean;
658
+ };
659
+ }, {
660
+ onLabelClick(e: any): void;
661
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
662
+ id: import('vue').PropType<string>;
663
+ /**
664
+ * Specifies the `id` attribute of the root element.
665
+ */
666
+ editorId: import('vue').PropType<string>;
667
+ editorRef: import('vue').PropType<any>;
668
+ editorValid: {
669
+ type: import('vue').PropType<boolean>;
670
+ default: any;
671
+ };
672
+ editorDisabled: import('vue').PropType<boolean>;
673
+ optional: import('vue').PropType<boolean>;
674
+ }>> & Readonly<{}>, {
675
+ editorValid: boolean;
676
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
677
+ };
678
+ startTimezoneError: {
679
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
680
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
681
+ id: import('vue').PropType<string>;
682
+ direction: {
683
+ type: import('vue').PropType<string>;
684
+ default: string;
685
+ validator: (value: string) => any;
686
+ };
687
+ }>, {}, {}, {
688
+ errorClassName(): object;
689
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
690
+ id: import('vue').PropType<string>;
691
+ direction: {
692
+ type: import('vue').PropType<string>;
693
+ default: string;
694
+ validator: (value: string) => any;
695
+ };
696
+ }>> & Readonly<{}>, {
697
+ direction: string;
698
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
699
+ };
700
+ startTimezoneEditor: {
701
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
702
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
703
+ value: import('vue').PropType<any>;
704
+ dataItems: import('vue').PropType<any[]>;
705
+ validationMessage: import('vue').PropType<string>;
706
+ touched: import('vue').PropType<boolean>;
707
+ modified: import('vue').PropType<boolean>;
708
+ visited: import('vue').PropType<boolean>;
709
+ valid: import('vue').PropType<boolean>;
710
+ name: import('vue').PropType<string>;
711
+ }>, {
712
+ kendoLocalizationService: {};
713
+ }, {
714
+ filteredData: any[];
715
+ }, {}, {
716
+ onValueChange(e: any): void;
717
+ onFilterChange(event: any): void;
718
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
719
+ value: import('vue').PropType<any>;
720
+ dataItems: import('vue').PropType<any[]>;
721
+ validationMessage: import('vue').PropType<string>;
722
+ touched: import('vue').PropType<boolean>;
723
+ modified: import('vue').PropType<boolean>;
724
+ visited: import('vue').PropType<boolean>;
725
+ valid: import('vue').PropType<boolean>;
726
+ name: import('vue').PropType<string>;
727
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
728
+ };
729
+ startTimezoneCheckedLabel: {
730
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
731
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
732
+ id: import('vue').PropType<string>;
733
+ /**
734
+ * Specifies the `id` attribute of the root element.
735
+ */
736
+ editorId: import('vue').PropType<string>;
737
+ editorRef: import('vue').PropType<any>;
738
+ editorValid: {
739
+ type: import('vue').PropType<boolean>;
740
+ default: any;
741
+ };
742
+ editorDisabled: import('vue').PropType<boolean>;
743
+ optional: import('vue').PropType<boolean>;
744
+ }>, {
745
+ kendoLocalizationService: {};
746
+ }, {}, {
747
+ labelClassName(): {
748
+ 'k-label': boolean;
749
+ 'k-label-empty': boolean;
750
+ 'k-text-error': boolean;
751
+ 'k-text-disabled': boolean;
752
+ };
753
+ }, {
754
+ onLabelClick(e: any): void;
755
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
756
+ id: import('vue').PropType<string>;
757
+ /**
758
+ * Specifies the `id` attribute of the root element.
759
+ */
760
+ editorId: import('vue').PropType<string>;
761
+ editorRef: import('vue').PropType<any>;
762
+ editorValid: {
763
+ type: import('vue').PropType<boolean>;
764
+ default: any;
765
+ };
766
+ editorDisabled: import('vue').PropType<boolean>;
767
+ optional: import('vue').PropType<boolean>;
768
+ }>> & Readonly<{}>, {
769
+ editorValid: boolean;
770
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
771
+ };
772
+ startTimezoneCheckedEditor: {
773
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
774
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
775
+ checked: {
776
+ type: import('vue').PropType<boolean>;
777
+ default: any;
778
+ };
779
+ defaultChecked: {
780
+ type: import('vue').PropType<boolean>;
781
+ default: any;
782
+ };
783
+ defaultValue: {
784
+ type: import('vue').PropType<any>;
785
+ default: any;
786
+ };
787
+ modelValue: {
788
+ type: import('vue').PropType<string | number | boolean | string[]>;
789
+ default: any;
790
+ };
791
+ dir: import('vue').PropType<string>;
792
+ disabled: import('vue').PropType<boolean>;
793
+ id: import('vue').PropType<string>;
794
+ ariaLabelledBy: import('vue').PropType<string>;
795
+ ariaDescribedBy: import('vue').PropType<string>;
796
+ label: import('vue').PropType<string | HTMLElement>;
797
+ labelRender: import('vue').PropType<any>;
798
+ labelPlacement: import('vue').PropType<string>;
799
+ labelOptional: import('vue').PropType<boolean>;
800
+ labelClass: import('vue').PropType<string>;
801
+ name: import('vue').PropType<string>;
802
+ size: {
803
+ type: import('vue').PropType<"small" | "medium" | "large">;
804
+ validator: (value: string) => boolean;
805
+ }; /**
806
+ * Overrides the component used for visualizing the `start` field editor.
807
+ * 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.
808
+ *
809
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
810
+ */
811
+ rounded: {
812
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
813
+ validator: (value: string) => boolean;
814
+ };
815
+ tabIndex: import('vue').PropType<number>;
816
+ value: {
817
+ type: import('vue').PropType<string | number | boolean | string[]>;
818
+ default: any;
819
+ };
820
+ validationMessage: import('vue').PropType<string>;
821
+ required: import('vue').PropType<boolean>;
822
+ valid: {
823
+ type: import('vue').PropType<boolean>;
824
+ default: any;
825
+ };
826
+ validityStyles: {
827
+ type: import('vue').PropType<boolean>;
828
+ default: boolean;
829
+ }; /**
830
+ * Overrides the component used for visualizing the `start timezone` field error.
831
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
832
+ *
833
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
834
+ */
835
+ }>, {
836
+ inputRef: import('vue').Ref<any, any>;
837
+ kendoLocalizationService: {};
838
+ }, {
839
+ valueDuringOnChange: any;
840
+ currentDir: string;
841
+ currentChecked: any;
842
+ currentValue: any;
843
+ }, {
844
+ valueIsBooleanOrNull(): boolean;
845
+ isCheckedControlled(): boolean;
846
+ isValueControlled(): any;
847
+ computedValue(): any;
848
+ computedChecked(): any;
849
+ useValueAsChecked(): any;
850
+ checkedProp(): any;
851
+ valueProp(): any;
852
+ indeterminateProp(): boolean;
853
+ isValid(): any;
854
+ labelComputedClass(): {
855
+ [x: number]: any;
856
+ 'k-checkbox-label': boolean;
857
+ };
858
+ }, {
859
+ setValidity(): void;
860
+ localizeMessage(message: string): string;
861
+ focusElement(): void;
862
+ setValue(e: any, val: boolean): void;
863
+ onChangeHandler(e: any): void;
864
+ onKeyDownHandler(e: any): void;
865
+ onBlurHandler(e: any): void;
866
+ onFocusHandler(e: any): void;
867
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
868
+ changemodel: (value: boolean) => true;
869
+ 'update:modelValue': (value: boolean) => true; /**
870
+ * Specifies the `tabIndex` attribute of the root element.
871
+ */
872
+ change: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => true;
873
+ focus: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => true;
874
+ blur: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => true;
875
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
876
+ checked: {
877
+ type: import('vue').PropType<boolean>;
878
+ default: any;
879
+ };
880
+ defaultChecked: {
881
+ type: import('vue').PropType<boolean>;
882
+ default: any;
883
+ };
884
+ defaultValue: {
885
+ type: import('vue').PropType<any>;
886
+ default: any;
887
+ };
888
+ modelValue: {
889
+ type: import('vue').PropType<string | number | boolean | string[]>;
890
+ default: any;
891
+ };
892
+ dir: import('vue').PropType<string>;
893
+ disabled: import('vue').PropType<boolean>;
894
+ id: import('vue').PropType<string>;
895
+ ariaLabelledBy: import('vue').PropType<string>;
896
+ ariaDescribedBy: import('vue').PropType<string>;
897
+ label: import('vue').PropType<string | HTMLElement>;
898
+ labelRender: import('vue').PropType<any>;
899
+ labelPlacement: import('vue').PropType<string>;
900
+ labelOptional: import('vue').PropType<boolean>;
901
+ labelClass: import('vue').PropType<string>;
902
+ name: import('vue').PropType<string>;
903
+ size: {
904
+ type: import('vue').PropType<"small" | "medium" | "large">;
905
+ validator: (value: string) => boolean;
906
+ }; /**
907
+ * Overrides the component used for visualizing the `start` field editor.
908
+ * 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.
909
+ *
910
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
911
+ */
912
+ rounded: {
913
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
914
+ validator: (value: string) => boolean;
915
+ };
916
+ tabIndex: import('vue').PropType<number>;
917
+ value: {
918
+ type: import('vue').PropType<string | number | boolean | string[]>;
919
+ default: any;
920
+ };
921
+ validationMessage: import('vue').PropType<string>;
922
+ required: import('vue').PropType<boolean>;
923
+ valid: {
924
+ type: import('vue').PropType<boolean>;
925
+ default: any;
926
+ };
927
+ validityStyles: {
928
+ type: import('vue').PropType<boolean>;
929
+ default: boolean;
930
+ }; /**
931
+ * Overrides the component used for visualizing the `start timezone` field error.
932
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
933
+ *
934
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
935
+ */
936
+ }>> & Readonly<{
937
+ onBlur?: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => any;
938
+ onChange?: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => any;
939
+ onFocus?: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => any;
940
+ onChangemodel?: (value: boolean) => any;
941
+ "onUpdate:modelValue"?: (value: boolean) => any;
942
+ }>, {
943
+ value: string | number | boolean | string[];
944
+ checked: boolean;
945
+ defaultValue: any;
946
+ valid: boolean;
947
+ modelValue: string | number | boolean | string[];
948
+ validityStyles: boolean;
949
+ defaultChecked: boolean;
950
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
951
+ };
952
+ endLabel: {
953
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
954
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
955
+ id: import('vue').PropType<string>;
956
+ /**
957
+ * Specifies the `id` attribute of the root element.
958
+ */
959
+ editorId: import('vue').PropType<string>;
960
+ editorRef: import('vue').PropType<any>;
961
+ editorValid: {
962
+ type: import('vue').PropType<boolean>;
963
+ default: any;
964
+ };
965
+ editorDisabled: import('vue').PropType<boolean>;
966
+ optional: import('vue').PropType<boolean>;
967
+ }>, {
968
+ kendoLocalizationService: {};
969
+ }, {}, {
970
+ labelClassName(): {
971
+ 'k-label': boolean;
972
+ 'k-label-empty': boolean;
973
+ 'k-text-error': boolean;
974
+ 'k-text-disabled': boolean;
975
+ };
976
+ }, {
977
+ onLabelClick(e: any): void;
978
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
979
+ id: import('vue').PropType<string>;
980
+ /**
981
+ * Specifies the `id` attribute of the root element.
982
+ */
983
+ editorId: import('vue').PropType<string>;
984
+ editorRef: import('vue').PropType<any>;
985
+ editorValid: {
986
+ type: import('vue').PropType<boolean>;
987
+ default: any;
988
+ };
989
+ editorDisabled: import('vue').PropType<boolean>;
990
+ optional: import('vue').PropType<boolean>;
991
+ }>> & Readonly<{}>, {
992
+ editorValid: boolean;
993
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
994
+ };
995
+ endError: {
996
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
997
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
998
+ id: import('vue').PropType<string>;
999
+ direction: {
1000
+ type: import('vue').PropType<string>;
1001
+ default: string;
1002
+ validator: (value: string) => any;
1003
+ };
1004
+ }>, {}, {}, {
1005
+ errorClassName(): object;
1006
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1007
+ id: import('vue').PropType<string>;
1008
+ direction: {
1009
+ type: import('vue').PropType<string>;
1010
+ default: string;
1011
+ validator: (value: string) => any;
1012
+ };
1013
+ }>> & Readonly<{}>, {
1014
+ direction: string;
1015
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1016
+ };
1017
+ endEditor: {
1018
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1019
+ default: () => import('vue').DefineComponent<{}, {}, {}, {}, {
1020
+ handleChange(event: any): any;
1021
+ readDateAsLocal(value: any, timezone?: string): Date;
1022
+ readDateWithTimezone(value: any, timezone?: string): Date;
1023
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1024
+ change: any;
1025
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
1026
+ onChange?: (...args: any[] | unknown[]) => any;
1027
+ }>, {} | {
1028
+ [x: string]: any;
1029
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1030
+ };
1031
+ endTimezoneLabel: {
1032
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1033
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1034
+ id: import('vue').PropType<string>;
1035
+ /**
1036
+ * Specifies the `id` attribute of the root element.
1037
+ */
1038
+ editorId: import('vue').PropType<string>;
1039
+ editorRef: import('vue').PropType<any>;
1040
+ editorValid: {
1041
+ type: import('vue').PropType<boolean>;
1042
+ default: any;
1043
+ };
1044
+ editorDisabled: import('vue').PropType<boolean>;
1045
+ optional: import('vue').PropType<boolean>;
1046
+ }>, {
1047
+ kendoLocalizationService: {};
1048
+ }, {}, {
1049
+ labelClassName(): {
1050
+ 'k-label': boolean;
1051
+ 'k-label-empty': boolean;
1052
+ 'k-text-error': boolean;
1053
+ 'k-text-disabled': boolean;
1054
+ };
1055
+ }, {
1056
+ onLabelClick(e: any): void;
1057
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1058
+ id: import('vue').PropType<string>;
1059
+ /**
1060
+ * Specifies the `id` attribute of the root element.
1061
+ */
1062
+ editorId: import('vue').PropType<string>;
1063
+ editorRef: import('vue').PropType<any>;
1064
+ editorValid: {
1065
+ type: import('vue').PropType<boolean>;
1066
+ default: any;
1067
+ };
1068
+ editorDisabled: import('vue').PropType<boolean>;
1069
+ optional: import('vue').PropType<boolean>;
1070
+ }>> & Readonly<{}>, {
1071
+ editorValid: boolean;
1072
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1073
+ };
1074
+ endTimezoneError: {
1075
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1076
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1077
+ id: import('vue').PropType<string>;
1078
+ direction: {
1079
+ type: import('vue').PropType<string>;
1080
+ default: string;
1081
+ validator: (value: string) => any;
1082
+ };
1083
+ }>, {}, {}, {
1084
+ errorClassName(): object;
1085
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1086
+ id: import('vue').PropType<string>;
1087
+ direction: {
1088
+ type: import('vue').PropType<string>;
1089
+ default: string;
1090
+ validator: (value: string) => any;
1091
+ };
1092
+ }>> & Readonly<{}>, {
1093
+ direction: string;
1094
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1095
+ };
1096
+ endTimezoneEditor: {
1097
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1098
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1099
+ value: import('vue').PropType<any>;
1100
+ dataItems: import('vue').PropType<any[]>;
1101
+ validationMessage: import('vue').PropType<string>;
1102
+ touched: import('vue').PropType<boolean>;
1103
+ modified: import('vue').PropType<boolean>;
1104
+ visited: import('vue').PropType<boolean>;
1105
+ valid: import('vue').PropType<boolean>;
1106
+ name: import('vue').PropType<string>;
1107
+ }>, {
1108
+ kendoLocalizationService: {};
1109
+ }, {
1110
+ filteredData: any[];
1111
+ }, {}, {
1112
+ onValueChange(e: any): void;
1113
+ onFilterChange(event: any): void;
1114
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1115
+ value: import('vue').PropType<any>;
1116
+ dataItems: import('vue').PropType<any[]>;
1117
+ validationMessage: import('vue').PropType<string>;
1118
+ touched: import('vue').PropType<boolean>;
1119
+ modified: import('vue').PropType<boolean>;
1120
+ visited: import('vue').PropType<boolean>;
1121
+ valid: import('vue').PropType<boolean>;
1122
+ name: import('vue').PropType<string>;
1123
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1124
+ };
1125
+ endTimezoneCheckedLabel: {
1126
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1127
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1128
+ id: import('vue').PropType<string>;
1129
+ /**
1130
+ * Specifies the `id` attribute of the root element.
1131
+ */
1132
+ editorId: import('vue').PropType<string>;
1133
+ editorRef: import('vue').PropType<any>;
1134
+ editorValid: {
1135
+ type: import('vue').PropType<boolean>;
1136
+ default: any;
1137
+ };
1138
+ editorDisabled: import('vue').PropType<boolean>;
1139
+ optional: import('vue').PropType<boolean>;
1140
+ }>, {
1141
+ kendoLocalizationService: {};
1142
+ }, {}, {
1143
+ labelClassName(): {
1144
+ 'k-label': boolean;
1145
+ 'k-label-empty': boolean;
1146
+ 'k-text-error': boolean;
1147
+ 'k-text-disabled': boolean;
1148
+ };
1149
+ }, {
1150
+ onLabelClick(e: any): void;
1151
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1152
+ id: import('vue').PropType<string>;
1153
+ /**
1154
+ * Specifies the `id` attribute of the root element.
1155
+ */
1156
+ editorId: import('vue').PropType<string>;
1157
+ editorRef: import('vue').PropType<any>;
1158
+ editorValid: {
1159
+ type: import('vue').PropType<boolean>;
1160
+ default: any;
1161
+ };
1162
+ editorDisabled: import('vue').PropType<boolean>;
1163
+ optional: import('vue').PropType<boolean>;
1164
+ }>> & Readonly<{}>, {
1165
+ editorValid: boolean;
1166
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1167
+ };
1168
+ endTimezoneCheckedEditor: {
1169
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1170
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1171
+ checked: {
1172
+ type: import('vue').PropType<boolean>;
1173
+ default: any;
1174
+ };
1175
+ defaultChecked: {
1176
+ type: import('vue').PropType<boolean>;
1177
+ default: any;
1178
+ };
1179
+ defaultValue: {
1180
+ type: import('vue').PropType<any>;
1181
+ default: any;
1182
+ };
1183
+ modelValue: {
1184
+ type: import('vue').PropType<string | number | boolean | string[]>;
1185
+ default: any;
1186
+ };
1187
+ dir: import('vue').PropType<string>;
1188
+ disabled: import('vue').PropType<boolean>;
1189
+ id: import('vue').PropType<string>;
1190
+ ariaLabelledBy: import('vue').PropType<string>;
1191
+ ariaDescribedBy: import('vue').PropType<string>;
1192
+ label: import('vue').PropType<string | HTMLElement>;
1193
+ labelRender: import('vue').PropType<any>;
1194
+ labelPlacement: import('vue').PropType<string>;
1195
+ labelOptional: import('vue').PropType<boolean>;
1196
+ labelClass: import('vue').PropType<string>;
1197
+ name: import('vue').PropType<string>;
1198
+ size: {
1199
+ type: import('vue').PropType<"small" | "medium" | "large">;
1200
+ validator: (value: string) => boolean;
1201
+ }; /**
1202
+ * Overrides the component used for visualizing the `start` field editor.
1203
+ * 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.
1204
+ *
1205
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1206
+ */
1207
+ rounded: {
1208
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
1209
+ validator: (value: string) => boolean;
1210
+ };
1211
+ tabIndex: import('vue').PropType<number>;
1212
+ value: {
1213
+ type: import('vue').PropType<string | number | boolean | string[]>;
1214
+ default: any;
1215
+ };
1216
+ validationMessage: import('vue').PropType<string>;
1217
+ required: import('vue').PropType<boolean>;
1218
+ valid: {
1219
+ type: import('vue').PropType<boolean>;
1220
+ default: any;
1221
+ };
1222
+ validityStyles: {
1223
+ type: import('vue').PropType<boolean>;
1224
+ default: boolean;
1225
+ }; /**
1226
+ * Overrides the component used for visualizing the `start timezone` field error.
1227
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
1228
+ *
1229
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1230
+ */
1231
+ }>, {
1232
+ inputRef: import('vue').Ref<any, any>;
1233
+ kendoLocalizationService: {};
1234
+ }, {
1235
+ valueDuringOnChange: any;
1236
+ currentDir: string;
1237
+ currentChecked: any;
1238
+ currentValue: any;
1239
+ }, {
1240
+ valueIsBooleanOrNull(): boolean;
1241
+ isCheckedControlled(): boolean;
1242
+ isValueControlled(): any;
1243
+ computedValue(): any;
1244
+ computedChecked(): any;
1245
+ useValueAsChecked(): any;
1246
+ checkedProp(): any;
1247
+ valueProp(): any;
1248
+ indeterminateProp(): boolean;
1249
+ isValid(): any;
1250
+ labelComputedClass(): {
1251
+ [x: number]: any;
1252
+ 'k-checkbox-label': boolean;
1253
+ };
1254
+ }, {
1255
+ setValidity(): void;
1256
+ localizeMessage(message: string): string;
1257
+ focusElement(): void;
1258
+ setValue(e: any, val: boolean): void;
1259
+ onChangeHandler(e: any): void;
1260
+ onKeyDownHandler(e: any): void;
1261
+ onBlurHandler(e: any): void;
1262
+ onFocusHandler(e: any): void;
1263
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1264
+ changemodel: (value: boolean) => true;
1265
+ 'update:modelValue': (value: boolean) => true; /**
1266
+ * Specifies the `tabIndex` attribute of the root element.
1267
+ */
1268
+ change: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => true;
1269
+ focus: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => true;
1270
+ blur: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => true;
1271
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1272
+ checked: {
1273
+ type: import('vue').PropType<boolean>;
1274
+ default: any;
1275
+ };
1276
+ defaultChecked: {
1277
+ type: import('vue').PropType<boolean>;
1278
+ default: any;
1279
+ };
1280
+ defaultValue: {
1281
+ type: import('vue').PropType<any>;
1282
+ default: any;
1283
+ };
1284
+ modelValue: {
1285
+ type: import('vue').PropType<string | number | boolean | string[]>;
1286
+ default: any;
1287
+ };
1288
+ dir: import('vue').PropType<string>;
1289
+ disabled: import('vue').PropType<boolean>;
1290
+ id: import('vue').PropType<string>;
1291
+ ariaLabelledBy: import('vue').PropType<string>;
1292
+ ariaDescribedBy: import('vue').PropType<string>;
1293
+ label: import('vue').PropType<string | HTMLElement>;
1294
+ labelRender: import('vue').PropType<any>;
1295
+ labelPlacement: import('vue').PropType<string>;
1296
+ labelOptional: import('vue').PropType<boolean>;
1297
+ labelClass: import('vue').PropType<string>;
1298
+ name: import('vue').PropType<string>;
1299
+ size: {
1300
+ type: import('vue').PropType<"small" | "medium" | "large">;
1301
+ validator: (value: string) => boolean;
1302
+ }; /**
1303
+ * Overrides the component used for visualizing the `start` field editor.
1304
+ * 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.
1305
+ *
1306
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1307
+ */
1308
+ rounded: {
1309
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
1310
+ validator: (value: string) => boolean;
1311
+ };
1312
+ tabIndex: import('vue').PropType<number>;
1313
+ value: {
1314
+ type: import('vue').PropType<string | number | boolean | string[]>;
1315
+ default: any;
1316
+ };
1317
+ validationMessage: import('vue').PropType<string>;
1318
+ required: import('vue').PropType<boolean>;
1319
+ valid: {
1320
+ type: import('vue').PropType<boolean>;
1321
+ default: any;
1322
+ };
1323
+ validityStyles: {
1324
+ type: import('vue').PropType<boolean>;
1325
+ default: boolean;
1326
+ }; /**
1327
+ * Overrides the component used for visualizing the `start timezone` field error.
1328
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
1329
+ *
1330
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1331
+ */
1332
+ }>> & Readonly<{
1333
+ onBlur?: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => any;
1334
+ onChange?: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => any;
1335
+ onFocus?: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => any;
1336
+ onChangemodel?: (value: boolean) => any;
1337
+ "onUpdate:modelValue"?: (value: boolean) => any;
1338
+ }>, {
1339
+ value: string | number | boolean | string[];
1340
+ checked: boolean;
1341
+ defaultValue: any;
1342
+ valid: boolean;
1343
+ modelValue: string | number | boolean | string[];
1344
+ validityStyles: boolean;
1345
+ defaultChecked: boolean;
1346
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1347
+ };
1348
+ allDayLabel: {
1349
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1350
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1351
+ id: import('vue').PropType<string>;
1352
+ /**
1353
+ * Specifies the `id` attribute of the root element.
1354
+ */
1355
+ editorId: import('vue').PropType<string>;
1356
+ editorRef: import('vue').PropType<any>;
1357
+ editorValid: {
1358
+ type: import('vue').PropType<boolean>;
1359
+ default: any;
1360
+ };
1361
+ editorDisabled: import('vue').PropType<boolean>;
1362
+ optional: import('vue').PropType<boolean>;
1363
+ }>, {
1364
+ kendoLocalizationService: {};
1365
+ }, {}, {
1366
+ labelClassName(): {
1367
+ 'k-label': boolean;
1368
+ 'k-label-empty': boolean;
1369
+ 'k-text-error': boolean;
1370
+ 'k-text-disabled': boolean;
1371
+ };
1372
+ }, {
1373
+ onLabelClick(e: any): void;
1374
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1375
+ id: import('vue').PropType<string>;
1376
+ /**
1377
+ * Specifies the `id` attribute of the root element.
1378
+ */
1379
+ editorId: import('vue').PropType<string>;
1380
+ editorRef: import('vue').PropType<any>;
1381
+ editorValid: {
1382
+ type: import('vue').PropType<boolean>;
1383
+ default: any;
1384
+ };
1385
+ editorDisabled: import('vue').PropType<boolean>;
1386
+ optional: import('vue').PropType<boolean>;
1387
+ }>> & Readonly<{}>, {
1388
+ editorValid: boolean;
1389
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1390
+ };
1391
+ allDayEditor: {
1392
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1393
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1394
+ checked: {
1395
+ type: import('vue').PropType<boolean>;
1396
+ default: any;
1397
+ };
1398
+ defaultChecked: {
1399
+ type: import('vue').PropType<boolean>;
1400
+ default: any;
1401
+ };
1402
+ defaultValue: {
1403
+ type: import('vue').PropType<any>;
1404
+ default: any;
1405
+ };
1406
+ modelValue: {
1407
+ type: import('vue').PropType<string | number | boolean | string[]>;
1408
+ default: any;
1409
+ };
1410
+ dir: import('vue').PropType<string>;
1411
+ disabled: import('vue').PropType<boolean>;
1412
+ id: import('vue').PropType<string>;
1413
+ ariaLabelledBy: import('vue').PropType<string>;
1414
+ ariaDescribedBy: import('vue').PropType<string>;
1415
+ label: import('vue').PropType<string | HTMLElement>;
1416
+ labelRender: import('vue').PropType<any>;
1417
+ labelPlacement: import('vue').PropType<string>;
1418
+ labelOptional: import('vue').PropType<boolean>;
1419
+ labelClass: import('vue').PropType<string>;
1420
+ name: import('vue').PropType<string>;
1421
+ size: {
1422
+ type: import('vue').PropType<"small" | "medium" | "large">;
1423
+ validator: (value: string) => boolean;
1424
+ }; /**
1425
+ * Overrides the component used for visualizing the `start` field editor.
1426
+ * 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.
1427
+ *
1428
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1429
+ */
1430
+ rounded: {
1431
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
1432
+ validator: (value: string) => boolean;
1433
+ };
1434
+ tabIndex: import('vue').PropType<number>;
1435
+ value: {
1436
+ type: import('vue').PropType<string | number | boolean | string[]>;
1437
+ default: any;
1438
+ };
1439
+ validationMessage: import('vue').PropType<string>;
1440
+ required: import('vue').PropType<boolean>;
1441
+ valid: {
1442
+ type: import('vue').PropType<boolean>;
1443
+ default: any;
1444
+ };
1445
+ validityStyles: {
1446
+ type: import('vue').PropType<boolean>;
1447
+ default: boolean;
1448
+ }; /**
1449
+ * Overrides the component used for visualizing the `start timezone` field error.
1450
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
1451
+ *
1452
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1453
+ */
1454
+ }>, {
1455
+ inputRef: import('vue').Ref<any, any>;
1456
+ kendoLocalizationService: {};
1457
+ }, {
1458
+ valueDuringOnChange: any;
1459
+ currentDir: string;
1460
+ currentChecked: any;
1461
+ currentValue: any;
1462
+ }, {
1463
+ valueIsBooleanOrNull(): boolean;
1464
+ isCheckedControlled(): boolean;
1465
+ isValueControlled(): any;
1466
+ computedValue(): any;
1467
+ computedChecked(): any;
1468
+ useValueAsChecked(): any;
1469
+ checkedProp(): any;
1470
+ valueProp(): any;
1471
+ indeterminateProp(): boolean;
1472
+ isValid(): any;
1473
+ labelComputedClass(): {
1474
+ [x: number]: any;
1475
+ 'k-checkbox-label': boolean;
1476
+ };
1477
+ }, {
1478
+ setValidity(): void;
1479
+ localizeMessage(message: string): string;
1480
+ focusElement(): void;
1481
+ setValue(e: any, val: boolean): void;
1482
+ onChangeHandler(e: any): void;
1483
+ onKeyDownHandler(e: any): void;
1484
+ onBlurHandler(e: any): void;
1485
+ onFocusHandler(e: any): void;
1486
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1487
+ changemodel: (value: boolean) => true;
1488
+ 'update:modelValue': (value: boolean) => true; /**
1489
+ * Specifies the `tabIndex` attribute of the root element.
1490
+ */
1491
+ change: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => true;
1492
+ focus: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => true;
1493
+ blur: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => true;
1494
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1495
+ checked: {
1496
+ type: import('vue').PropType<boolean>;
1497
+ default: any;
1498
+ };
1499
+ defaultChecked: {
1500
+ type: import('vue').PropType<boolean>;
1501
+ default: any;
1502
+ };
1503
+ defaultValue: {
1504
+ type: import('vue').PropType<any>;
1505
+ default: any;
1506
+ };
1507
+ modelValue: {
1508
+ type: import('vue').PropType<string | number | boolean | string[]>;
1509
+ default: any;
1510
+ };
1511
+ dir: import('vue').PropType<string>;
1512
+ disabled: import('vue').PropType<boolean>;
1513
+ id: import('vue').PropType<string>;
1514
+ ariaLabelledBy: import('vue').PropType<string>;
1515
+ ariaDescribedBy: import('vue').PropType<string>;
1516
+ label: import('vue').PropType<string | HTMLElement>;
1517
+ labelRender: import('vue').PropType<any>;
1518
+ labelPlacement: import('vue').PropType<string>;
1519
+ labelOptional: import('vue').PropType<boolean>;
1520
+ labelClass: import('vue').PropType<string>;
1521
+ name: import('vue').PropType<string>;
1522
+ size: {
1523
+ type: import('vue').PropType<"small" | "medium" | "large">;
1524
+ validator: (value: string) => boolean;
1525
+ }; /**
1526
+ * Overrides the component used for visualizing the `start` field editor.
1527
+ * 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.
1528
+ *
1529
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1530
+ */
1531
+ rounded: {
1532
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
1533
+ validator: (value: string) => boolean;
1534
+ };
1535
+ tabIndex: import('vue').PropType<number>;
1536
+ value: {
1537
+ type: import('vue').PropType<string | number | boolean | string[]>;
1538
+ default: any;
1539
+ };
1540
+ validationMessage: import('vue').PropType<string>;
1541
+ required: import('vue').PropType<boolean>;
1542
+ valid: {
1543
+ type: import('vue').PropType<boolean>;
1544
+ default: any;
1545
+ };
1546
+ validityStyles: {
1547
+ type: import('vue').PropType<boolean>;
1548
+ default: boolean;
1549
+ }; /**
1550
+ * Overrides the component used for visualizing the `start timezone` field error.
1551
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
1552
+ *
1553
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
1554
+ */
1555
+ }>> & Readonly<{
1556
+ onBlur?: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => any;
1557
+ onChange?: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => any;
1558
+ onFocus?: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => any;
1559
+ onChangemodel?: (value: boolean) => any;
1560
+ "onUpdate:modelValue"?: (value: boolean) => any;
1561
+ }>, {
1562
+ value: string | number | boolean | string[];
1563
+ checked: boolean;
1564
+ defaultValue: any;
1565
+ valid: boolean;
1566
+ modelValue: string | number | boolean | string[];
1567
+ validityStyles: boolean;
1568
+ defaultChecked: boolean;
1569
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1570
+ };
1571
+ recurrenceEditor: {
1572
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1573
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1574
+ name: import('vue').PropType<string>;
1575
+ value: {
1576
+ type: import('vue').PropType<string>;
1577
+ default: string;
1578
+ };
1579
+ start: import('vue').PropType<Date>;
1580
+ timezone: import('vue').PropType<string>;
1581
+ }>, {}, {
1582
+ defaultCount: number;
1583
+ defaultUntil: import('@progress/kendo-date-math').ZonedDate;
1584
+ }, {
1585
+ rrule(): import('@progress/kendo-recurrence').RecurrenceRule;
1586
+ frequencies(): import('../recurrence/types/FrequencyEntity').FrequencyEntity[];
1587
+ frequency(): import('../recurrence/types/Frequency').Frequency;
1588
+ extendedWeekDays(): import('../recurrence/types/WeekDayEntity').WeekDayEntity[];
1589
+ weekDay(): import('../recurrence/types/WeekDayEntity').WeekDayEntity;
1590
+ months(): import('../recurrence/types/MonthEntity').MonthEntity[];
1591
+ month(): import('../recurrence/types/MonthEntity').MonthEntity;
1592
+ offsets(): import('../recurrence/types/OffsetPositionEntity').OffsetPositionEntity[];
1593
+ offset(): import('../recurrence/types/OffsetPositionEntity').OffsetPositionEntity;
1594
+ endRule(): import('../recurrence/types/EndRule').EndRule;
1595
+ monthDay(): number;
1596
+ until(): Date;
1597
+ weekDays(): import('../recurrence/types/WeekDayEntity').WeekDayEntity[];
1598
+ repeatOnRule(): import('../recurrence/types/RepeatOnRule').RepeatOnRule;
1599
+ }, {
1600
+ localizeMessage(baseMassage: string, removePrepend?: boolean): string;
1601
+ onChangeHandler(newRrule: import('@progress/kendo-recurrence').RecurrenceRule): void;
1602
+ handleFrequencyChange(newFreq: string): void;
1603
+ handleIntervalChange(event: import('@progress/kendo-vue-inputs').NumericTextBoxChangeEvent): void;
1604
+ handleCountChange(event: import('@progress/kendo-vue-inputs').NumericTextBoxChangeEvent): void;
1605
+ handleUntilChange(event: import('@progress/kendo-vue-dateinputs').DatePickerChangeEvent): void;
1606
+ handleWeekDaysChange(newWeekDays: number[]): void;
1607
+ handleWeekDayChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent): void;
1608
+ handleMonthDayChange(event: import('@progress/kendo-vue-inputs').NumericTextBoxChangeEvent): void;
1609
+ handleMonthChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent): void;
1610
+ handleEndRuleChange(event: import('@progress/kendo-vue-inputs').RadioGroupChangeEvent): void;
1611
+ handleRepeatOnRuleChange(event: import('@progress/kendo-vue-inputs').RadioGroupChangeEvent): void;
1612
+ handleOffsetChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent): void;
1613
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1614
+ change: any;
1615
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1616
+ name: import('vue').PropType<string>;
1617
+ value: {
1618
+ type: import('vue').PropType<string>;
1619
+ default: string;
1620
+ };
1621
+ start: import('vue').PropType<Date>;
1622
+ timezone: import('vue').PropType<string>;
1623
+ }>> & Readonly<{
1624
+ onChange?: (...args: any[] | unknown[]) => any;
1625
+ }>, {
1626
+ value: string;
1627
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1628
+ };
1629
+ descriptionLabel: {
1630
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1631
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1632
+ id: import('vue').PropType<string>;
1633
+ /**
1634
+ * Specifies the `id` attribute of the root element.
1635
+ */
1636
+ editorId: import('vue').PropType<string>;
1637
+ editorRef: import('vue').PropType<any>;
1638
+ editorValid: {
1639
+ type: import('vue').PropType<boolean>;
1640
+ default: any;
1641
+ };
1642
+ editorDisabled: import('vue').PropType<boolean>;
1643
+ optional: import('vue').PropType<boolean>;
1644
+ }>, {
1645
+ kendoLocalizationService: {};
1646
+ }, {}, {
1647
+ labelClassName(): {
1648
+ 'k-label': boolean;
1649
+ 'k-label-empty': boolean;
1650
+ 'k-text-error': boolean;
1651
+ 'k-text-disabled': boolean;
1652
+ };
1653
+ }, {
1654
+ onLabelClick(e: any): void;
1655
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1656
+ id: import('vue').PropType<string>;
1657
+ /**
1658
+ * Specifies the `id` attribute of the root element.
1659
+ */
1660
+ editorId: import('vue').PropType<string>;
1661
+ editorRef: import('vue').PropType<any>;
1662
+ editorValid: {
1663
+ type: import('vue').PropType<boolean>;
1664
+ default: any;
1665
+ };
1666
+ editorDisabled: import('vue').PropType<boolean>;
1667
+ optional: import('vue').PropType<boolean>;
1668
+ }>> & Readonly<{}>, {
1669
+ editorValid: boolean;
1670
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1671
+ };
1672
+ descriptionError: {
1673
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1674
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1675
+ id: import('vue').PropType<string>;
1676
+ direction: {
1677
+ type: import('vue').PropType<string>;
1678
+ default: string;
1679
+ validator: (value: string) => any;
1680
+ };
1681
+ }>, {}, {}, {
1682
+ errorClassName(): object;
1683
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1684
+ id: import('vue').PropType<string>;
1685
+ direction: {
1686
+ type: import('vue').PropType<string>;
1687
+ default: string;
1688
+ validator: (value: string) => any;
1689
+ };
1690
+ }>> & Readonly<{}>, {
1691
+ direction: string;
1692
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1693
+ };
1694
+ descriptionEditor: {
1695
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1696
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1697
+ title: import('vue').PropType<string>;
1698
+ ariaDescribedBy: import('vue').PropType<string>;
1699
+ ariaLabelledBy: import('vue').PropType<string>;
1700
+ autoSize: import('vue').PropType<boolean>;
1701
+ modelValue: {
1702
+ type: import('vue').PropType<string | number | string[]>;
1703
+ default: any;
1704
+ };
1705
+ defaultValue: import('vue').PropType<string | number | string[]>;
1706
+ dir: import('vue').PropType<string>;
1707
+ disabled: import('vue').PropType<boolean>;
1708
+ readOnly: import('vue').PropType<boolean>;
1709
+ rows: import('vue').PropType<number>;
1710
+ id: import('vue').PropType<string>;
1711
+ name: import('vue').PropType<string>;
1712
+ validationMessage: import('vue').PropType<string>;
1713
+ size: {
1714
+ type: import('vue').PropType<"small" | "medium" | "large">;
1715
+ validator: (value: string) => boolean;
1716
+ };
1717
+ rounded: {
1718
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
1719
+ validator: (value: string) => boolean;
1720
+ };
1721
+ fillMode: {
1722
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
1723
+ validator: (value: string) => boolean;
1724
+ };
1725
+ required: import('vue').PropType<boolean>;
1726
+ placeholder: import('vue').PropType<string>;
1727
+ tabIndex: import('vue').PropType<number>;
1728
+ valid: {
1729
+ type: import('vue').PropType<boolean>;
1730
+ default: any;
1731
+ };
1732
+ value: import('vue').PropType<string | number | string[]>;
1733
+ validityStyles: {
1734
+ type: import('vue').PropType<boolean>;
1735
+ default: boolean;
1736
+ };
1737
+ iconName: import('vue').PropType<string>;
1738
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
1739
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
1740
+ showValidationIcon: import('vue').PropType<boolean>;
1741
+ showLoadingIcon: import('vue').PropType<boolean>;
1742
+ showClearButton: import('vue').PropType<boolean>;
1743
+ inputClass: import('vue').PropType<string>;
1744
+ wrapperClass: import('vue').PropType<string>;
1745
+ flow: {
1746
+ type: import('vue').PropType<string>;
1747
+ default: string;
1748
+ validator: (value: any) => any;
1749
+ };
1750
+ resizable: {
1751
+ type: import('vue').PropType<string>;
1752
+ default: string;
1753
+ validator: (value: any) => any;
1754
+ };
1755
+ inputAttributes: import('vue').PropType<Object>;
1756
+ }>, {}, {
1757
+ currentValue: string | number | string[];
1758
+ textAreaHeight: string;
1759
+ currentDir: string;
1760
+ }, {
1761
+ resizableClass(): "k-resize-none" | "k-resize-y" | "k-resize-x" | "k-resize";
1762
+ rootClassName(): {
1763
+ [x: string]: any;
1764
+ [x: number]: any;
1765
+ 'k-input': boolean;
1766
+ 'k-textarea': boolean;
1767
+ 'k-disabled': any;
1768
+ 'k-invalid': boolean;
1769
+ 'k-required': any;
1770
+ 'k-loading': any;
1771
+ '!k-flex-col': boolean;
1772
+ '!k-flex-row': boolean;
1773
+ };
1774
+ inputInnerClass(): {
1775
+ [x: number]: any;
1776
+ 'k-input-inner': boolean;
1777
+ '!k-resize-none': boolean;
1778
+ '!k-overflow-auto': boolean;
1779
+ 'k-flex': boolean;
1780
+ };
1781
+ prefixRenderClass(): {
1782
+ 'k-input-prefix': boolean;
1783
+ '!k-align-items-start': boolean;
1784
+ 'k-input-prefix-horizontal': boolean;
1785
+ 'k-input-prefix-vertical': boolean;
1786
+ };
1787
+ suffixRenderClass(): {
1788
+ 'k-input-suffix': boolean;
1789
+ '!k-align-items-start': boolean;
1790
+ 'k-input-suffix-horizontal': boolean;
1791
+ 'k-input-suffix-vertical': boolean;
1792
+ };
1793
+ suffixIconWrapClass(): {
1794
+ 'k-flex-wrap': boolean;
1795
+ '!k-align-items-start': boolean;
1796
+ };
1797
+ computedValue(): any;
1798
+ isValid(): any;
1799
+ }, {
1800
+ setValidity(): void;
1801
+ clearClick(event: any): void;
1802
+ focus(): void;
1803
+ emitUpdate(event: any, eventName: string, value: any): void;
1804
+ handleChange(event: any): void;
1805
+ handleInput(event: any): void;
1806
+ handleFocus(event: any): void;
1807
+ handleBlur(event: any): void;
1808
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1809
+ input: (event: Event) => true;
1810
+ change: (event: import('@progress/kendo-vue-inputs').TextAreaChangeEvent) => true;
1811
+ changemodel: (value: string | number | string[]) => true;
1812
+ 'update:modelValue': (value: string | number | string[]) => true;
1813
+ focus: (event: import('@progress/kendo-vue-inputs').TextAreaFocusEvent) => true;
1814
+ blur: (event: import('packages/inputs/src/textarea/interfaces/TextAreaBlurEvent').TextAreaBlurEvent) => true;
1815
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1816
+ title: import('vue').PropType<string>;
1817
+ ariaDescribedBy: import('vue').PropType<string>;
1818
+ ariaLabelledBy: import('vue').PropType<string>;
1819
+ autoSize: import('vue').PropType<boolean>;
1820
+ modelValue: {
1821
+ type: import('vue').PropType<string | number | string[]>;
1822
+ default: any;
1823
+ };
1824
+ defaultValue: import('vue').PropType<string | number | string[]>;
1825
+ dir: import('vue').PropType<string>;
1826
+ disabled: import('vue').PropType<boolean>;
1827
+ readOnly: import('vue').PropType<boolean>;
1828
+ rows: import('vue').PropType<number>;
1829
+ id: import('vue').PropType<string>;
1830
+ name: import('vue').PropType<string>;
1831
+ validationMessage: import('vue').PropType<string>;
1832
+ size: {
1833
+ type: import('vue').PropType<"small" | "medium" | "large">;
1834
+ validator: (value: string) => boolean;
1835
+ };
1836
+ rounded: {
1837
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
1838
+ validator: (value: string) => boolean;
1839
+ };
1840
+ fillMode: {
1841
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
1842
+ validator: (value: string) => boolean;
1843
+ };
1844
+ required: import('vue').PropType<boolean>;
1845
+ placeholder: import('vue').PropType<string>;
1846
+ tabIndex: import('vue').PropType<number>;
1847
+ valid: {
1848
+ type: import('vue').PropType<boolean>;
1849
+ default: any;
1850
+ };
1851
+ value: import('vue').PropType<string | number | string[]>;
1852
+ validityStyles: {
1853
+ type: import('vue').PropType<boolean>;
1854
+ default: boolean;
1855
+ };
1856
+ iconName: import('vue').PropType<string>;
1857
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
1858
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
1859
+ showValidationIcon: import('vue').PropType<boolean>;
1860
+ showLoadingIcon: import('vue').PropType<boolean>;
1861
+ showClearButton: import('vue').PropType<boolean>;
1862
+ inputClass: import('vue').PropType<string>;
1863
+ wrapperClass: import('vue').PropType<string>;
1864
+ flow: {
1865
+ type: import('vue').PropType<string>;
1866
+ default: string;
1867
+ validator: (value: any) => any;
1868
+ };
1869
+ resizable: {
1870
+ type: import('vue').PropType<string>;
1871
+ default: string;
1872
+ validator: (value: any) => any;
1873
+ };
1874
+ inputAttributes: import('vue').PropType<Object>;
1875
+ }>> & Readonly<{
1876
+ onInput?: (event: Event) => any;
1877
+ onBlur?: (event: import('packages/inputs/src/textarea/interfaces/TextAreaBlurEvent').TextAreaBlurEvent) => any;
1878
+ onChange?: (event: import('@progress/kendo-vue-inputs').TextAreaChangeEvent) => any;
1879
+ onFocus?: (event: import('@progress/kendo-vue-inputs').TextAreaFocusEvent) => any;
1880
+ onChangemodel?: (value: string | number | string[]) => any;
1881
+ "onUpdate:modelValue"?: (value: string | number | string[]) => any;
1882
+ }>, {
1883
+ flow: string;
1884
+ resizable: string;
1885
+ valid: boolean;
1886
+ modelValue: string | number | string[];
1887
+ validityStyles: boolean;
1888
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1889
+ };
1890
+ resourceLabel: {
1891
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1892
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1893
+ id: import('vue').PropType<string>;
1894
+ /**
1895
+ * Specifies the `id` attribute of the root element.
1896
+ */
1897
+ editorId: import('vue').PropType<string>;
1898
+ editorRef: import('vue').PropType<any>;
1899
+ editorValid: {
1900
+ type: import('vue').PropType<boolean>;
1901
+ default: any;
1902
+ };
1903
+ editorDisabled: import('vue').PropType<boolean>;
1904
+ optional: import('vue').PropType<boolean>;
1905
+ }>, {
1906
+ kendoLocalizationService: {};
1907
+ }, {}, {
1908
+ labelClassName(): {
1909
+ 'k-label': boolean;
1910
+ 'k-label-empty': boolean;
1911
+ 'k-text-error': boolean;
1912
+ 'k-text-disabled': boolean;
1913
+ };
1914
+ }, {
1915
+ onLabelClick(e: any): void;
1916
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1917
+ id: import('vue').PropType<string>;
1918
+ /**
1919
+ * Specifies the `id` attribute of the root element.
1920
+ */
1921
+ editorId: import('vue').PropType<string>;
1922
+ editorRef: import('vue').PropType<any>;
1923
+ editorValid: {
1924
+ type: import('vue').PropType<boolean>;
1925
+ default: any;
1926
+ };
1927
+ editorDisabled: import('vue').PropType<boolean>;
1928
+ optional: import('vue').PropType<boolean>;
1929
+ }>> & Readonly<{}>, {
1930
+ editorValid: boolean;
1931
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1932
+ };
1933
+ resourcesError: {
1934
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1935
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1936
+ id: import('vue').PropType<string>;
1937
+ /**
1938
+ * Specifies the `id` attribute of the root element.
1939
+ */
1940
+ editorId: import('vue').PropType<string>;
1941
+ editorRef: import('vue').PropType<any>;
1942
+ editorValid: {
1943
+ type: import('vue').PropType<boolean>;
1944
+ default: any;
1945
+ };
1946
+ editorDisabled: import('vue').PropType<boolean>;
1947
+ optional: import('vue').PropType<boolean>;
1948
+ }>, {
1949
+ kendoLocalizationService: {};
1950
+ }, {}, {
1951
+ labelClassName(): {
1952
+ 'k-label': boolean;
1953
+ 'k-label-empty': boolean;
1954
+ 'k-text-error': boolean;
1955
+ 'k-text-disabled': boolean;
1956
+ };
1957
+ }, {
1958
+ onLabelClick(e: any): void;
1959
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1960
+ id: import('vue').PropType<string>;
1961
+ /**
1962
+ * Specifies the `id` attribute of the root element.
1963
+ */
1964
+ editorId: import('vue').PropType<string>;
1965
+ editorRef: import('vue').PropType<any>;
1966
+ editorValid: {
1967
+ type: import('vue').PropType<boolean>;
1968
+ default: any;
1969
+ };
1970
+ editorDisabled: import('vue').PropType<boolean>;
1971
+ optional: import('vue').PropType<boolean>;
1972
+ }>> & Readonly<{}>, {
1973
+ editorValid: boolean;
1974
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1975
+ };
1976
+ resourceEditor: {
1977
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
1978
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1979
+ resource: import('vue').PropType<import('..').SchedulerResource>;
1980
+ dataItems: import('vue').PropType<any[]>;
1981
+ textField: import('vue').PropType<string>;
1982
+ valueField: import('vue').PropType<string>;
1983
+ colorField: import('vue').PropType<string>;
1984
+ multiple: import('vue').PropType<boolean>;
1985
+ validationMessage: import('vue').PropType<string>;
1986
+ value: import('vue').PropType<any>;
1987
+ touched: import('vue').PropType<boolean>;
1988
+ modified: import('vue').PropType<boolean>;
1989
+ visited: import('vue').PropType<boolean>;
1990
+ valid: import('vue').PropType<boolean>;
1991
+ name: import('vue').PropType<string>;
1992
+ }>, {}, {}, {}, {
1993
+ handleChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent | import('@progress/kendo-vue-dropdowns').MultiSelectChangeEvent): void;
1994
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1995
+ change: any;
1996
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1997
+ resource: import('vue').PropType<import('..').SchedulerResource>;
1998
+ dataItems: import('vue').PropType<any[]>;
1999
+ textField: import('vue').PropType<string>;
2000
+ valueField: import('vue').PropType<string>;
2001
+ colorField: import('vue').PropType<string>;
2002
+ multiple: import('vue').PropType<boolean>;
2003
+ validationMessage: import('vue').PropType<string>;
2004
+ value: import('vue').PropType<any>;
2005
+ touched: import('vue').PropType<boolean>;
2006
+ modified: import('vue').PropType<boolean>;
2007
+ visited: import('vue').PropType<boolean>;
2008
+ valid: import('vue').PropType<boolean>;
2009
+ name: import('vue').PropType<string>;
2010
+ }>> & Readonly<{
2011
+ onChange?: (...args: any[] | unknown[]) => any;
2012
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2013
+ };
2014
+ errors: ObjectConstructor;
2015
+ valid: BooleanConstructor;
2016
+ touched: BooleanConstructor;
2017
+ visited: BooleanConstructor;
2018
+ modified: BooleanConstructor;
2019
+ submitted: BooleanConstructor;
2020
+ allowSubmit: BooleanConstructor;
2021
+ valueGetter: FunctionConstructor;
2022
+ }>, {}, {
2023
+ startZoneChecked: boolean;
2024
+ endZoneChecked: boolean;
2025
+ }, {}, {
2026
+ handleStartZoneCheckboxChange(e: any): void;
2027
+ handleEndZoneCheckboxChange(e: any): void;
2028
+ requiredValidator(value: any): any;
2029
+ startTimezoneValidator(_dataItem: any, formValueGetter: any): any;
2030
+ endTimezoneValidator(_dataItem: any, formValueGetter: any): any;
2031
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2032
+ as: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2033
+ id: StringConstructor;
2034
+ tabIndex: NumberConstructor;
2035
+ titleLabel: {
2036
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2037
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2038
+ id: import('vue').PropType<string>;
2039
+ /**
2040
+ * Specifies the `id` attribute of the root element.
2041
+ */
2042
+ editorId: import('vue').PropType<string>;
2043
+ editorRef: import('vue').PropType<any>;
2044
+ editorValid: {
2045
+ type: import('vue').PropType<boolean>;
2046
+ default: any;
2047
+ };
2048
+ editorDisabled: import('vue').PropType<boolean>;
2049
+ optional: import('vue').PropType<boolean>;
2050
+ }>, {
2051
+ kendoLocalizationService: {};
2052
+ }, {}, {
2053
+ labelClassName(): {
2054
+ 'k-label': boolean;
2055
+ 'k-label-empty': boolean;
2056
+ 'k-text-error': boolean;
2057
+ 'k-text-disabled': boolean;
2058
+ };
2059
+ }, {
2060
+ onLabelClick(e: any): void;
2061
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2062
+ id: import('vue').PropType<string>;
2063
+ /**
2064
+ * Specifies the `id` attribute of the root element.
2065
+ */
2066
+ editorId: import('vue').PropType<string>;
2067
+ editorRef: import('vue').PropType<any>;
2068
+ editorValid: {
2069
+ type: import('vue').PropType<boolean>;
2070
+ default: any;
2071
+ };
2072
+ editorDisabled: import('vue').PropType<boolean>;
2073
+ optional: import('vue').PropType<boolean>;
2074
+ }>> & Readonly<{}>, {
2075
+ editorValid: boolean;
2076
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2077
+ };
2078
+ titleError: {
2079
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2080
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2081
+ id: import('vue').PropType<string>;
2082
+ direction: {
2083
+ type: import('vue').PropType<string>;
2084
+ default: string;
2085
+ validator: (value: string) => any;
2086
+ };
2087
+ }>, {}, {}, {
2088
+ errorClassName(): object;
2089
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2090
+ id: import('vue').PropType<string>;
2091
+ direction: {
2092
+ type: import('vue').PropType<string>;
2093
+ default: string;
2094
+ validator: (value: string) => any;
2095
+ };
2096
+ }>> & Readonly<{}>, {
2097
+ direction: string;
2098
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2099
+ };
2100
+ titleEditor: {
2101
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2102
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2103
+ modelValue: {
2104
+ type: import('vue').PropType<string | number>;
2105
+ default: any;
2106
+ };
2107
+ disabled: {
2108
+ type: import('vue').PropType<boolean>;
2109
+ default: any;
2110
+ };
2111
+ defaultValue: {
2112
+ type: import('vue').PropType<string | number | string[]>;
2113
+ default: string;
2114
+ };
2115
+ value: {
2116
+ type: import('vue').PropType<string | number | string[]>;
2117
+ };
2118
+ label: {
2119
+ type: import('vue').PropType<string>;
2120
+ }; /**
2121
+ * Overrides the component used for visualizing the `start timezone checked` label.
2122
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
2123
+ *
2124
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2125
+ */
2126
+ placeholder: {
2127
+ type: import('vue').PropType<string>;
2128
+ };
2129
+ required: {
2130
+ type: import('vue').PropType<boolean>;
2131
+ default: boolean;
2132
+ };
2133
+ size: {
2134
+ type: import('vue').PropType<"small" | "medium" | "large">;
2135
+ validator: (value: string) => boolean;
2136
+ };
2137
+ rounded: {
2138
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
2139
+ validator: (value: string) => boolean;
2140
+ };
2141
+ fillMode: {
2142
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
2143
+ validator: (value: string) => boolean;
2144
+ };
2145
+ dir: {
2146
+ type: import('vue').PropType<string>;
2147
+ };
2148
+ id: StringConstructor;
2149
+ valid: {
2150
+ type: import('vue').PropType<boolean>;
2151
+ /**
2152
+ * Overrides the component used for visualizing the `allDay` field editor.
2153
+ * The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
2154
+ *
2155
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2156
+ */
2157
+ default: any;
2158
+ };
2159
+ validate: {
2160
+ type: import('vue').PropType<boolean>;
2161
+ };
2162
+ validationMessage: {
2163
+ type: import('vue').PropType<string>;
2164
+ };
2165
+ validityStyles: {
2166
+ type: import('vue').PropType<boolean>;
2167
+ default: boolean;
2168
+ };
2169
+ iconName: import('vue').PropType<string>;
2170
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
2171
+ prefix: import('vue').PropType<string | boolean | Object | Function>;
2172
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
2173
+ suffix: import('vue').PropType<string | boolean | Object | Function>;
2174
+ showValidationIcon: import('vue').PropType<boolean>;
2175
+ showLoadingIcon: import('vue').PropType<boolean>;
2176
+ showClearButton: import('vue').PropType<boolean>;
2177
+ inputClass: import('vue').PropType<string>;
2178
+ wrapperClass: import('vue').PropType<string>;
2179
+ tabIndex: import('vue').PropType<number>;
2180
+ role: import('vue').PropType<string>;
2181
+ title: import('vue').PropType<string>;
2182
+ ariaLabel: import('vue').PropType<string>;
2183
+ inputAttributes: import('vue').PropType<Object>;
2184
+ }>, {
2185
+ inputRef: import('vue').Ref<any, any>;
2186
+ }, {
2187
+ hasMounted: boolean;
2188
+ autofill: boolean;
2189
+ currentValue: string | number | string[];
2190
+ valueDuringOnChange: string;
2191
+ focused: boolean;
2192
+ }, {
2193
+ spanClassNames(): {
2194
+ 'k-floating-label-container': boolean;
2195
+ 'k-focus': any;
2196
+ 'k-empty': boolean;
2197
+ 'k-autofill': any;
2198
+ 'k-invalid': boolean;
2199
+ 'k-rtl': boolean;
2200
+ };
2201
+ inputInnerClass(): {
2202
+ [x: number]: any;
2203
+ 'k-input-inner': boolean;
2204
+ };
2205
+ computedValue(): any;
2206
+ }, {
2207
+ updateValidClass(): void;
2208
+ emitFocus(e: any): void;
2209
+ emitBlur(e: any): void;
2210
+ handleKeydown(e: any): void;
2211
+ handleKeyup(e: any): void;
2212
+ handleKeypress(e: any): void;
2213
+ clearClick(event: any): void;
2214
+ focus(): void;
2215
+ validity(): {
2216
+ customError: boolean;
2217
+ valid: any;
2218
+ badTextBox: any;
2219
+ patternMismatch: any;
2220
+ rangeOverflow: any;
2221
+ rangeUnderflow: any;
2222
+ stepMismatch: any;
2223
+ tooLong: any;
2224
+ tooShort: any;
2225
+ typeMismatch: any;
2226
+ valueMissing: any;
2227
+ };
2228
+ isInvalid(state: Object): boolean;
2229
+ setValidity(): void;
2230
+ handleInput(event: any): void;
2231
+ handleChange(event: any): void;
2232
+ emitUpdate(event: any, eventName: string, value: any): void;
2233
+ handleAutoFill(e: any): void;
2234
+ handleAutoFillEnd(e: any): void;
2235
+ name: () => any;
2236
+ inputWrapperClass(): {
2237
+ [x: string]: any;
2238
+ [x: number]: any;
2239
+ 'k-textbox': boolean;
2240
+ 'k-input': boolean;
2241
+ 'k-invalid': boolean;
2242
+ 'k-required': any;
2243
+ 'k-disabled': any;
2244
+ };
2245
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2246
+ input: (event: Event) => true;
2247
+ change: (event: import('@progress/kendo-vue-inputs').TextBoxChangeEvent) => true;
2248
+ changemodel: (value: string | number) => true;
2249
+ 'update:modelValue': (value: string | number) => true;
2250
+ focus: (event: import('@progress/kendo-vue-inputs').TextBoxFocusEvent) => true;
2251
+ blur: (event: import('@progress/kendo-vue-inputs').TextBoxBlurEvent) => true;
2252
+ keyup: (event: KeyboardEvent) => true;
2253
+ keydown: (event: KeyboardEvent) => true;
2254
+ keypress: (event: KeyboardEvent) => true;
2255
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2256
+ modelValue: {
2257
+ type: import('vue').PropType<string | number>;
2258
+ default: any;
2259
+ };
2260
+ disabled: {
2261
+ type: import('vue').PropType<boolean>;
2262
+ default: any;
2263
+ };
2264
+ defaultValue: {
2265
+ type: import('vue').PropType<string | number | string[]>;
2266
+ default: string;
2267
+ };
2268
+ value: {
2269
+ type: import('vue').PropType<string | number | string[]>;
2270
+ };
2271
+ label: {
2272
+ type: import('vue').PropType<string>;
2273
+ }; /**
2274
+ * Overrides the component used for visualizing the `start timezone checked` label.
2275
+ * The [Kendo UI for Vue Label]({% slug label_labels %}) component is used, by default.
2276
+ *
2277
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2278
+ */
2279
+ placeholder: {
2280
+ type: import('vue').PropType<string>;
2281
+ };
2282
+ required: {
2283
+ type: import('vue').PropType<boolean>;
2284
+ default: boolean;
2285
+ };
2286
+ size: {
2287
+ type: import('vue').PropType<"small" | "medium" | "large">;
2288
+ validator: (value: string) => boolean;
2289
+ };
2290
+ rounded: {
2291
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
2292
+ validator: (value: string) => boolean;
2293
+ };
2294
+ fillMode: {
2295
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
2296
+ validator: (value: string) => boolean;
2297
+ };
2298
+ dir: {
2299
+ type: import('vue').PropType<string>;
2300
+ };
2301
+ id: StringConstructor;
2302
+ valid: {
2303
+ type: import('vue').PropType<boolean>;
2304
+ /**
2305
+ * Overrides the component used for visualizing the `allDay` field editor.
2306
+ * The [Kendo UI for Vue Checkbox]({% slug overview_checkbox %}) component is used, by default.
2307
+ *
2308
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2309
+ */
2310
+ default: any;
2311
+ };
2312
+ validate: {
2313
+ type: import('vue').PropType<boolean>;
2314
+ };
2315
+ validationMessage: {
2316
+ type: import('vue').PropType<string>;
2317
+ };
2318
+ validityStyles: {
2319
+ type: import('vue').PropType<boolean>;
2320
+ default: boolean;
2321
+ };
2322
+ iconName: import('vue').PropType<string>;
2323
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
2324
+ prefix: import('vue').PropType<string | boolean | Object | Function>;
2325
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
2326
+ suffix: import('vue').PropType<string | boolean | Object | Function>;
2327
+ showValidationIcon: import('vue').PropType<boolean>;
2328
+ showLoadingIcon: import('vue').PropType<boolean>;
2329
+ showClearButton: import('vue').PropType<boolean>;
2330
+ inputClass: import('vue').PropType<string>;
2331
+ wrapperClass: import('vue').PropType<string>;
2332
+ tabIndex: import('vue').PropType<number>;
2333
+ role: import('vue').PropType<string>;
2334
+ title: import('vue').PropType<string>;
2335
+ ariaLabel: import('vue').PropType<string>;
2336
+ inputAttributes: import('vue').PropType<Object>;
2337
+ }>> & Readonly<{
2338
+ onInput?: (event: Event) => any;
2339
+ onBlur?: (event: import('@progress/kendo-vue-inputs').TextBoxBlurEvent) => any;
2340
+ onChange?: (event: import('@progress/kendo-vue-inputs').TextBoxChangeEvent) => any;
2341
+ onFocus?: (event: import('@progress/kendo-vue-inputs').TextBoxFocusEvent) => any;
2342
+ onKeydown?: (event: KeyboardEvent) => any;
2343
+ onKeypress?: (event: KeyboardEvent) => any;
2344
+ onKeyup?: (event: KeyboardEvent) => any;
2345
+ onChangemodel?: (value: string | number) => any;
2346
+ "onUpdate:modelValue"?: (value: string | number) => any;
2347
+ }>, {
2348
+ required: boolean;
2349
+ disabled: boolean;
2350
+ defaultValue: string | number | string[];
2351
+ valid: boolean;
2352
+ modelValue: string | number;
2353
+ validityStyles: boolean;
2354
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2355
+ };
2356
+ startLabel: {
2357
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2358
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2359
+ id: import('vue').PropType<string>;
2360
+ /**
2361
+ * Specifies the `id` attribute of the root element.
2362
+ */
2363
+ editorId: import('vue').PropType<string>;
2364
+ editorRef: import('vue').PropType<any>;
2365
+ editorValid: {
2366
+ type: import('vue').PropType<boolean>;
2367
+ default: any;
2368
+ };
2369
+ editorDisabled: import('vue').PropType<boolean>;
2370
+ optional: import('vue').PropType<boolean>;
2371
+ }>, {
2372
+ kendoLocalizationService: {};
2373
+ }, {}, {
2374
+ labelClassName(): {
2375
+ 'k-label': boolean;
2376
+ 'k-label-empty': boolean;
2377
+ 'k-text-error': boolean;
2378
+ 'k-text-disabled': boolean;
2379
+ };
2380
+ }, {
2381
+ onLabelClick(e: any): void;
2382
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2383
+ id: import('vue').PropType<string>;
2384
+ /**
2385
+ * Specifies the `id` attribute of the root element.
2386
+ */
2387
+ editorId: import('vue').PropType<string>;
2388
+ editorRef: import('vue').PropType<any>;
2389
+ editorValid: {
2390
+ type: import('vue').PropType<boolean>;
2391
+ default: any;
2392
+ };
2393
+ editorDisabled: import('vue').PropType<boolean>;
2394
+ optional: import('vue').PropType<boolean>;
2395
+ }>> & Readonly<{}>, {
2396
+ editorValid: boolean;
2397
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2398
+ };
2399
+ startError: {
2400
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2401
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2402
+ id: import('vue').PropType<string>;
2403
+ direction: {
2404
+ type: import('vue').PropType<string>;
2405
+ default: string;
2406
+ validator: (value: string) => any;
2407
+ };
2408
+ }>, {}, {}, {
2409
+ errorClassName(): object;
2410
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2411
+ id: import('vue').PropType<string>;
2412
+ direction: {
2413
+ type: import('vue').PropType<string>;
2414
+ default: string;
2415
+ validator: (value: string) => any;
2416
+ };
2417
+ }>> & Readonly<{}>, {
2418
+ direction: string;
2419
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2420
+ };
2421
+ startEditor: {
2422
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2423
+ default: () => import('vue').DefineComponent<{}, {}, {}, {}, {
2424
+ handleChange(event: any): any;
2425
+ readDateAsLocal(value: any, timezone?: string): Date;
2426
+ readDateWithTimezone(value: any, timezone?: string): Date;
2427
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2428
+ change: any;
2429
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
2430
+ onChange?: (...args: any[] | unknown[]) => any;
2431
+ }>, {} | {
2432
+ [x: string]: any;
2433
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2434
+ };
2435
+ startTimezoneLabel: {
2436
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2437
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2438
+ id: import('vue').PropType<string>;
2439
+ /**
2440
+ * Specifies the `id` attribute of the root element.
2441
+ */
2442
+ editorId: import('vue').PropType<string>;
2443
+ editorRef: import('vue').PropType<any>;
2444
+ editorValid: {
2445
+ type: import('vue').PropType<boolean>;
2446
+ default: any;
2447
+ };
2448
+ editorDisabled: import('vue').PropType<boolean>;
2449
+ optional: import('vue').PropType<boolean>;
2450
+ }>, {
2451
+ kendoLocalizationService: {};
2452
+ }, {}, {
2453
+ labelClassName(): {
2454
+ 'k-label': boolean;
2455
+ 'k-label-empty': boolean;
2456
+ 'k-text-error': boolean;
2457
+ 'k-text-disabled': boolean;
2458
+ };
2459
+ }, {
2460
+ onLabelClick(e: any): void;
2461
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2462
+ id: import('vue').PropType<string>;
2463
+ /**
2464
+ * Specifies the `id` attribute of the root element.
2465
+ */
2466
+ editorId: import('vue').PropType<string>;
2467
+ editorRef: import('vue').PropType<any>;
2468
+ editorValid: {
2469
+ type: import('vue').PropType<boolean>;
2470
+ default: any;
2471
+ };
2472
+ editorDisabled: import('vue').PropType<boolean>;
2473
+ optional: import('vue').PropType<boolean>;
2474
+ }>> & Readonly<{}>, {
2475
+ editorValid: boolean;
2476
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2477
+ };
2478
+ startTimezoneError: {
2479
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2480
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2481
+ id: import('vue').PropType<string>;
2482
+ direction: {
2483
+ type: import('vue').PropType<string>;
2484
+ default: string;
2485
+ validator: (value: string) => any;
2486
+ };
2487
+ }>, {}, {}, {
2488
+ errorClassName(): object;
2489
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2490
+ id: import('vue').PropType<string>;
2491
+ direction: {
2492
+ type: import('vue').PropType<string>;
2493
+ default: string;
2494
+ validator: (value: string) => any;
2495
+ };
2496
+ }>> & Readonly<{}>, {
2497
+ direction: string;
2498
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2499
+ };
2500
+ startTimezoneEditor: {
2501
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2502
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2503
+ value: import('vue').PropType<any>;
2504
+ dataItems: import('vue').PropType<any[]>;
2505
+ validationMessage: import('vue').PropType<string>;
2506
+ touched: import('vue').PropType<boolean>;
2507
+ modified: import('vue').PropType<boolean>;
2508
+ visited: import('vue').PropType<boolean>;
2509
+ valid: import('vue').PropType<boolean>;
2510
+ name: import('vue').PropType<string>;
2511
+ }>, {
2512
+ kendoLocalizationService: {};
2513
+ }, {
2514
+ filteredData: any[];
2515
+ }, {}, {
2516
+ onValueChange(e: any): void;
2517
+ onFilterChange(event: any): void;
2518
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2519
+ value: import('vue').PropType<any>;
2520
+ dataItems: import('vue').PropType<any[]>;
2521
+ validationMessage: import('vue').PropType<string>;
2522
+ touched: import('vue').PropType<boolean>;
2523
+ modified: import('vue').PropType<boolean>;
2524
+ visited: import('vue').PropType<boolean>;
2525
+ valid: import('vue').PropType<boolean>;
2526
+ name: import('vue').PropType<string>;
2527
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2528
+ };
2529
+ startTimezoneCheckedLabel: {
2530
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2531
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2532
+ id: import('vue').PropType<string>;
2533
+ /**
2534
+ * Specifies the `id` attribute of the root element.
2535
+ */
2536
+ editorId: import('vue').PropType<string>;
2537
+ editorRef: import('vue').PropType<any>;
2538
+ editorValid: {
2539
+ type: import('vue').PropType<boolean>;
2540
+ default: any;
2541
+ };
2542
+ editorDisabled: import('vue').PropType<boolean>;
2543
+ optional: import('vue').PropType<boolean>;
2544
+ }>, {
2545
+ kendoLocalizationService: {};
2546
+ }, {}, {
2547
+ labelClassName(): {
2548
+ 'k-label': boolean;
2549
+ 'k-label-empty': boolean;
2550
+ 'k-text-error': boolean;
2551
+ 'k-text-disabled': boolean;
2552
+ };
2553
+ }, {
2554
+ onLabelClick(e: any): void;
2555
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2556
+ id: import('vue').PropType<string>;
2557
+ /**
2558
+ * Specifies the `id` attribute of the root element.
2559
+ */
2560
+ editorId: import('vue').PropType<string>;
2561
+ editorRef: import('vue').PropType<any>;
2562
+ editorValid: {
2563
+ type: import('vue').PropType<boolean>;
2564
+ default: any;
2565
+ };
2566
+ editorDisabled: import('vue').PropType<boolean>;
2567
+ optional: import('vue').PropType<boolean>;
2568
+ }>> & Readonly<{}>, {
2569
+ editorValid: boolean;
2570
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2571
+ };
2572
+ startTimezoneCheckedEditor: {
2573
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2574
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2575
+ checked: {
2576
+ type: import('vue').PropType<boolean>;
2577
+ default: any;
2578
+ };
2579
+ defaultChecked: {
2580
+ type: import('vue').PropType<boolean>;
2581
+ default: any;
2582
+ };
2583
+ defaultValue: {
2584
+ type: import('vue').PropType<any>;
2585
+ default: any;
2586
+ };
2587
+ modelValue: {
2588
+ type: import('vue').PropType<string | number | boolean | string[]>;
2589
+ default: any;
2590
+ };
2591
+ dir: import('vue').PropType<string>;
2592
+ disabled: import('vue').PropType<boolean>;
2593
+ id: import('vue').PropType<string>;
2594
+ ariaLabelledBy: import('vue').PropType<string>;
2595
+ ariaDescribedBy: import('vue').PropType<string>;
2596
+ label: import('vue').PropType<string | HTMLElement>;
2597
+ labelRender: import('vue').PropType<any>;
2598
+ labelPlacement: import('vue').PropType<string>;
2599
+ labelOptional: import('vue').PropType<boolean>;
2600
+ labelClass: import('vue').PropType<string>;
2601
+ name: import('vue').PropType<string>;
2602
+ size: {
2603
+ type: import('vue').PropType<"small" | "medium" | "large">;
2604
+ validator: (value: string) => boolean;
2605
+ }; /**
2606
+ * Overrides the component used for visualizing the `start` field editor.
2607
+ * 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.
2608
+ *
2609
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2610
+ */
2611
+ rounded: {
2612
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
2613
+ validator: (value: string) => boolean;
2614
+ };
2615
+ tabIndex: import('vue').PropType<number>;
2616
+ value: {
2617
+ type: import('vue').PropType<string | number | boolean | string[]>;
2618
+ default: any;
2619
+ };
2620
+ validationMessage: import('vue').PropType<string>;
2621
+ required: import('vue').PropType<boolean>;
2622
+ valid: {
2623
+ type: import('vue').PropType<boolean>;
2624
+ default: any;
2625
+ };
2626
+ validityStyles: {
2627
+ type: import('vue').PropType<boolean>;
2628
+ default: boolean;
2629
+ }; /**
2630
+ * Overrides the component used for visualizing the `start timezone` field error.
2631
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
2632
+ *
2633
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2634
+ */
2635
+ }>, {
2636
+ inputRef: import('vue').Ref<any, any>;
2637
+ kendoLocalizationService: {};
2638
+ }, {
2639
+ valueDuringOnChange: any;
2640
+ currentDir: string;
2641
+ currentChecked: any;
2642
+ currentValue: any;
2643
+ }, {
2644
+ valueIsBooleanOrNull(): boolean;
2645
+ isCheckedControlled(): boolean;
2646
+ isValueControlled(): any;
2647
+ computedValue(): any;
2648
+ computedChecked(): any;
2649
+ useValueAsChecked(): any;
2650
+ checkedProp(): any;
2651
+ valueProp(): any;
2652
+ indeterminateProp(): boolean;
2653
+ isValid(): any;
2654
+ labelComputedClass(): {
2655
+ [x: number]: any;
2656
+ 'k-checkbox-label': boolean;
2657
+ };
2658
+ }, {
2659
+ setValidity(): void;
2660
+ localizeMessage(message: string): string;
2661
+ focusElement(): void;
2662
+ setValue(e: any, val: boolean): void;
2663
+ onChangeHandler(e: any): void;
2664
+ onKeyDownHandler(e: any): void;
2665
+ onBlurHandler(e: any): void;
2666
+ onFocusHandler(e: any): void;
2667
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2668
+ changemodel: (value: boolean) => true;
2669
+ 'update:modelValue': (value: boolean) => true; /**
2670
+ * Specifies the `tabIndex` attribute of the root element.
2671
+ */
2672
+ change: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => true;
2673
+ focus: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => true;
2674
+ blur: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => true;
2675
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2676
+ checked: {
2677
+ type: import('vue').PropType<boolean>;
2678
+ default: any;
2679
+ };
2680
+ defaultChecked: {
2681
+ type: import('vue').PropType<boolean>;
2682
+ default: any;
2683
+ };
2684
+ defaultValue: {
2685
+ type: import('vue').PropType<any>;
2686
+ default: any;
2687
+ };
2688
+ modelValue: {
2689
+ type: import('vue').PropType<string | number | boolean | string[]>;
2690
+ default: any;
2691
+ };
2692
+ dir: import('vue').PropType<string>;
2693
+ disabled: import('vue').PropType<boolean>;
2694
+ id: import('vue').PropType<string>;
2695
+ ariaLabelledBy: import('vue').PropType<string>;
2696
+ ariaDescribedBy: import('vue').PropType<string>;
2697
+ label: import('vue').PropType<string | HTMLElement>;
2698
+ labelRender: import('vue').PropType<any>;
2699
+ labelPlacement: import('vue').PropType<string>;
2700
+ labelOptional: import('vue').PropType<boolean>;
2701
+ labelClass: import('vue').PropType<string>;
2702
+ name: import('vue').PropType<string>;
2703
+ size: {
2704
+ type: import('vue').PropType<"small" | "medium" | "large">;
2705
+ validator: (value: string) => boolean;
2706
+ }; /**
2707
+ * Overrides the component used for visualizing the `start` field editor.
2708
+ * 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.
2709
+ *
2710
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2711
+ */
2712
+ rounded: {
2713
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
2714
+ validator: (value: string) => boolean;
2715
+ };
2716
+ tabIndex: import('vue').PropType<number>;
2717
+ value: {
2718
+ type: import('vue').PropType<string | number | boolean | string[]>;
2719
+ default: any;
2720
+ };
2721
+ validationMessage: import('vue').PropType<string>;
2722
+ required: import('vue').PropType<boolean>;
2723
+ valid: {
2724
+ type: import('vue').PropType<boolean>;
2725
+ default: any;
2726
+ };
2727
+ validityStyles: {
2728
+ type: import('vue').PropType<boolean>;
2729
+ default: boolean;
2730
+ }; /**
2731
+ * Overrides the component used for visualizing the `start timezone` field error.
2732
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
2733
+ *
2734
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
2735
+ */
2736
+ }>> & Readonly<{
2737
+ onBlur?: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => any;
2738
+ onChange?: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => any;
2739
+ onFocus?: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => any;
2740
+ onChangemodel?: (value: boolean) => any;
2741
+ "onUpdate:modelValue"?: (value: boolean) => any;
2742
+ }>, {
2743
+ value: string | number | boolean | string[];
2744
+ checked: boolean;
2745
+ defaultValue: any;
2746
+ valid: boolean;
2747
+ modelValue: string | number | boolean | string[];
2748
+ validityStyles: boolean;
2749
+ defaultChecked: boolean;
2750
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2751
+ };
2752
+ endLabel: {
2753
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2754
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2755
+ id: import('vue').PropType<string>;
2756
+ /**
2757
+ * Specifies the `id` attribute of the root element.
2758
+ */
2759
+ editorId: import('vue').PropType<string>;
2760
+ editorRef: import('vue').PropType<any>;
2761
+ editorValid: {
2762
+ type: import('vue').PropType<boolean>;
2763
+ default: any;
2764
+ };
2765
+ editorDisabled: import('vue').PropType<boolean>;
2766
+ optional: import('vue').PropType<boolean>;
2767
+ }>, {
2768
+ kendoLocalizationService: {};
2769
+ }, {}, {
2770
+ labelClassName(): {
2771
+ 'k-label': boolean;
2772
+ 'k-label-empty': boolean;
2773
+ 'k-text-error': boolean;
2774
+ 'k-text-disabled': boolean;
2775
+ };
2776
+ }, {
2777
+ onLabelClick(e: any): void;
2778
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2779
+ id: import('vue').PropType<string>;
2780
+ /**
2781
+ * Specifies the `id` attribute of the root element.
2782
+ */
2783
+ editorId: import('vue').PropType<string>;
2784
+ editorRef: import('vue').PropType<any>;
2785
+ editorValid: {
2786
+ type: import('vue').PropType<boolean>;
2787
+ default: any;
2788
+ };
2789
+ editorDisabled: import('vue').PropType<boolean>;
2790
+ optional: import('vue').PropType<boolean>;
2791
+ }>> & Readonly<{}>, {
2792
+ editorValid: boolean;
2793
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2794
+ };
2795
+ endError: {
2796
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2797
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2798
+ id: import('vue').PropType<string>;
2799
+ direction: {
2800
+ type: import('vue').PropType<string>;
2801
+ default: string;
2802
+ validator: (value: string) => any;
2803
+ };
2804
+ }>, {}, {}, {
2805
+ errorClassName(): object;
2806
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2807
+ id: import('vue').PropType<string>;
2808
+ direction: {
2809
+ type: import('vue').PropType<string>;
2810
+ default: string;
2811
+ validator: (value: string) => any;
2812
+ };
2813
+ }>> & Readonly<{}>, {
2814
+ direction: string;
2815
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2816
+ };
2817
+ endEditor: {
2818
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2819
+ default: () => import('vue').DefineComponent<{}, {}, {}, {}, {
2820
+ handleChange(event: any): any;
2821
+ readDateAsLocal(value: any, timezone?: string): Date;
2822
+ readDateWithTimezone(value: any, timezone?: string): Date;
2823
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2824
+ change: any;
2825
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
2826
+ onChange?: (...args: any[] | unknown[]) => any;
2827
+ }>, {} | {
2828
+ [x: string]: any;
2829
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2830
+ };
2831
+ endTimezoneLabel: {
2832
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2833
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2834
+ id: import('vue').PropType<string>;
2835
+ /**
2836
+ * Specifies the `id` attribute of the root element.
2837
+ */
2838
+ editorId: import('vue').PropType<string>;
2839
+ editorRef: import('vue').PropType<any>;
2840
+ editorValid: {
2841
+ type: import('vue').PropType<boolean>;
2842
+ default: any;
2843
+ };
2844
+ editorDisabled: import('vue').PropType<boolean>;
2845
+ optional: import('vue').PropType<boolean>;
2846
+ }>, {
2847
+ kendoLocalizationService: {};
2848
+ }, {}, {
2849
+ labelClassName(): {
2850
+ 'k-label': boolean;
2851
+ 'k-label-empty': boolean;
2852
+ 'k-text-error': boolean;
2853
+ 'k-text-disabled': boolean;
2854
+ };
2855
+ }, {
2856
+ onLabelClick(e: any): void;
2857
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2858
+ id: import('vue').PropType<string>;
2859
+ /**
2860
+ * Specifies the `id` attribute of the root element.
2861
+ */
2862
+ editorId: import('vue').PropType<string>;
2863
+ editorRef: import('vue').PropType<any>;
2864
+ editorValid: {
2865
+ type: import('vue').PropType<boolean>;
2866
+ default: any;
2867
+ };
2868
+ editorDisabled: import('vue').PropType<boolean>;
2869
+ optional: import('vue').PropType<boolean>;
2870
+ }>> & Readonly<{}>, {
2871
+ editorValid: boolean;
2872
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2873
+ };
2874
+ endTimezoneError: {
2875
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2876
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2877
+ id: import('vue').PropType<string>;
2878
+ direction: {
2879
+ type: import('vue').PropType<string>;
2880
+ default: string;
2881
+ validator: (value: string) => any;
2882
+ };
2883
+ }>, {}, {}, {
2884
+ errorClassName(): object;
2885
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2886
+ id: import('vue').PropType<string>;
2887
+ direction: {
2888
+ type: import('vue').PropType<string>;
2889
+ default: string;
2890
+ validator: (value: string) => any;
2891
+ };
2892
+ }>> & Readonly<{}>, {
2893
+ direction: string;
2894
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2895
+ };
2896
+ endTimezoneEditor: {
2897
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2898
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2899
+ value: import('vue').PropType<any>;
2900
+ dataItems: import('vue').PropType<any[]>;
2901
+ validationMessage: import('vue').PropType<string>;
2902
+ touched: import('vue').PropType<boolean>;
2903
+ modified: import('vue').PropType<boolean>;
2904
+ visited: import('vue').PropType<boolean>;
2905
+ valid: import('vue').PropType<boolean>;
2906
+ name: import('vue').PropType<string>;
2907
+ }>, {
2908
+ kendoLocalizationService: {};
2909
+ }, {
2910
+ filteredData: any[];
2911
+ }, {}, {
2912
+ onValueChange(e: any): void;
2913
+ onFilterChange(event: any): void;
2914
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2915
+ value: import('vue').PropType<any>;
2916
+ dataItems: import('vue').PropType<any[]>;
2917
+ validationMessage: import('vue').PropType<string>;
2918
+ touched: import('vue').PropType<boolean>;
2919
+ modified: import('vue').PropType<boolean>;
2920
+ visited: import('vue').PropType<boolean>;
2921
+ valid: import('vue').PropType<boolean>;
2922
+ name: import('vue').PropType<string>;
2923
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2924
+ };
2925
+ endTimezoneCheckedLabel: {
2926
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2927
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2928
+ id: import('vue').PropType<string>;
2929
+ /**
2930
+ * Specifies the `id` attribute of the root element.
2931
+ */
2932
+ editorId: import('vue').PropType<string>;
2933
+ editorRef: import('vue').PropType<any>;
2934
+ editorValid: {
2935
+ type: import('vue').PropType<boolean>;
2936
+ default: any;
2937
+ };
2938
+ editorDisabled: import('vue').PropType<boolean>;
2939
+ optional: import('vue').PropType<boolean>;
2940
+ }>, {
2941
+ kendoLocalizationService: {};
2942
+ }, {}, {
2943
+ labelClassName(): {
2944
+ 'k-label': boolean;
2945
+ 'k-label-empty': boolean;
2946
+ 'k-text-error': boolean;
2947
+ 'k-text-disabled': boolean;
2948
+ };
2949
+ }, {
2950
+ onLabelClick(e: any): void;
2951
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2952
+ id: import('vue').PropType<string>;
2953
+ /**
2954
+ * Specifies the `id` attribute of the root element.
2955
+ */
2956
+ editorId: import('vue').PropType<string>;
2957
+ editorRef: import('vue').PropType<any>;
2958
+ editorValid: {
2959
+ type: import('vue').PropType<boolean>;
2960
+ default: any;
2961
+ };
2962
+ editorDisabled: import('vue').PropType<boolean>;
2963
+ optional: import('vue').PropType<boolean>;
2964
+ }>> & Readonly<{}>, {
2965
+ editorValid: boolean;
2966
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2967
+ };
2968
+ endTimezoneCheckedEditor: {
2969
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
2970
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2971
+ checked: {
2972
+ type: import('vue').PropType<boolean>;
2973
+ default: any;
2974
+ };
2975
+ defaultChecked: {
2976
+ type: import('vue').PropType<boolean>;
2977
+ default: any;
2978
+ };
2979
+ defaultValue: {
2980
+ type: import('vue').PropType<any>;
2981
+ default: any;
2982
+ };
2983
+ modelValue: {
2984
+ type: import('vue').PropType<string | number | boolean | string[]>;
2985
+ default: any;
2986
+ };
2987
+ dir: import('vue').PropType<string>;
2988
+ disabled: import('vue').PropType<boolean>;
2989
+ id: import('vue').PropType<string>;
2990
+ ariaLabelledBy: import('vue').PropType<string>;
2991
+ ariaDescribedBy: import('vue').PropType<string>;
2992
+ label: import('vue').PropType<string | HTMLElement>;
2993
+ labelRender: import('vue').PropType<any>;
2994
+ labelPlacement: import('vue').PropType<string>;
2995
+ labelOptional: import('vue').PropType<boolean>;
2996
+ labelClass: import('vue').PropType<string>;
2997
+ name: import('vue').PropType<string>;
2998
+ size: {
2999
+ type: import('vue').PropType<"small" | "medium" | "large">;
3000
+ validator: (value: string) => boolean;
3001
+ }; /**
3002
+ * Overrides the component used for visualizing the `start` field editor.
3003
+ * 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.
3004
+ *
3005
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3006
+ */
3007
+ rounded: {
3008
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
3009
+ validator: (value: string) => boolean;
3010
+ };
3011
+ tabIndex: import('vue').PropType<number>;
3012
+ value: {
3013
+ type: import('vue').PropType<string | number | boolean | string[]>;
3014
+ default: any;
3015
+ };
3016
+ validationMessage: import('vue').PropType<string>;
3017
+ required: import('vue').PropType<boolean>;
3018
+ valid: {
3019
+ type: import('vue').PropType<boolean>;
3020
+ default: any;
3021
+ };
3022
+ validityStyles: {
3023
+ type: import('vue').PropType<boolean>;
3024
+ default: boolean;
3025
+ }; /**
3026
+ * Overrides the component used for visualizing the `start timezone` field error.
3027
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
3028
+ *
3029
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3030
+ */
3031
+ }>, {
3032
+ inputRef: import('vue').Ref<any, any>;
3033
+ kendoLocalizationService: {};
3034
+ }, {
3035
+ valueDuringOnChange: any;
3036
+ currentDir: string;
3037
+ currentChecked: any;
3038
+ currentValue: any;
3039
+ }, {
3040
+ valueIsBooleanOrNull(): boolean;
3041
+ isCheckedControlled(): boolean;
3042
+ isValueControlled(): any;
3043
+ computedValue(): any;
3044
+ computedChecked(): any;
3045
+ useValueAsChecked(): any;
3046
+ checkedProp(): any;
3047
+ valueProp(): any;
3048
+ indeterminateProp(): boolean;
3049
+ isValid(): any;
3050
+ labelComputedClass(): {
3051
+ [x: number]: any;
3052
+ 'k-checkbox-label': boolean;
3053
+ };
3054
+ }, {
3055
+ setValidity(): void;
3056
+ localizeMessage(message: string): string;
3057
+ focusElement(): void;
3058
+ setValue(e: any, val: boolean): void;
3059
+ onChangeHandler(e: any): void;
3060
+ onKeyDownHandler(e: any): void;
3061
+ onBlurHandler(e: any): void;
3062
+ onFocusHandler(e: any): void;
3063
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3064
+ changemodel: (value: boolean) => true;
3065
+ 'update:modelValue': (value: boolean) => true; /**
3066
+ * Specifies the `tabIndex` attribute of the root element.
3067
+ */
3068
+ change: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => true;
3069
+ focus: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => true;
3070
+ blur: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => true;
3071
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3072
+ checked: {
3073
+ type: import('vue').PropType<boolean>;
3074
+ default: any;
3075
+ };
3076
+ defaultChecked: {
3077
+ type: import('vue').PropType<boolean>;
3078
+ default: any;
3079
+ };
3080
+ defaultValue: {
3081
+ type: import('vue').PropType<any>;
3082
+ default: any;
3083
+ };
3084
+ modelValue: {
3085
+ type: import('vue').PropType<string | number | boolean | string[]>;
3086
+ default: any;
3087
+ };
3088
+ dir: import('vue').PropType<string>;
3089
+ disabled: import('vue').PropType<boolean>;
3090
+ id: import('vue').PropType<string>;
3091
+ ariaLabelledBy: import('vue').PropType<string>;
3092
+ ariaDescribedBy: import('vue').PropType<string>;
3093
+ label: import('vue').PropType<string | HTMLElement>;
3094
+ labelRender: import('vue').PropType<any>;
3095
+ labelPlacement: import('vue').PropType<string>;
3096
+ labelOptional: import('vue').PropType<boolean>;
3097
+ labelClass: import('vue').PropType<string>;
3098
+ name: import('vue').PropType<string>;
3099
+ size: {
3100
+ type: import('vue').PropType<"small" | "medium" | "large">;
3101
+ validator: (value: string) => boolean;
3102
+ }; /**
3103
+ * Overrides the component used for visualizing the `start` field editor.
3104
+ * 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.
3105
+ *
3106
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3107
+ */
3108
+ rounded: {
3109
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
3110
+ validator: (value: string) => boolean;
3111
+ };
3112
+ tabIndex: import('vue').PropType<number>;
3113
+ value: {
3114
+ type: import('vue').PropType<string | number | boolean | string[]>;
3115
+ default: any;
3116
+ };
3117
+ validationMessage: import('vue').PropType<string>;
3118
+ required: import('vue').PropType<boolean>;
3119
+ valid: {
3120
+ type: import('vue').PropType<boolean>;
3121
+ default: any;
3122
+ };
3123
+ validityStyles: {
3124
+ type: import('vue').PropType<boolean>;
3125
+ default: boolean;
3126
+ }; /**
3127
+ * Overrides the component used for visualizing the `start timezone` field error.
3128
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
3129
+ *
3130
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3131
+ */
3132
+ }>> & Readonly<{
3133
+ onBlur?: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => any;
3134
+ onChange?: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => any;
3135
+ onFocus?: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => any;
3136
+ onChangemodel?: (value: boolean) => any;
3137
+ "onUpdate:modelValue"?: (value: boolean) => any;
3138
+ }>, {
3139
+ value: string | number | boolean | string[];
3140
+ checked: boolean;
3141
+ defaultValue: any;
3142
+ valid: boolean;
3143
+ modelValue: string | number | boolean | string[];
3144
+ validityStyles: boolean;
3145
+ defaultChecked: boolean;
3146
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3147
+ };
3148
+ allDayLabel: {
3149
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3150
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3151
+ id: import('vue').PropType<string>;
3152
+ /**
3153
+ * Specifies the `id` attribute of the root element.
3154
+ */
3155
+ editorId: import('vue').PropType<string>;
3156
+ editorRef: import('vue').PropType<any>;
3157
+ editorValid: {
3158
+ type: import('vue').PropType<boolean>;
3159
+ default: any;
3160
+ };
3161
+ editorDisabled: import('vue').PropType<boolean>;
3162
+ optional: import('vue').PropType<boolean>;
3163
+ }>, {
3164
+ kendoLocalizationService: {};
3165
+ }, {}, {
3166
+ labelClassName(): {
3167
+ 'k-label': boolean;
3168
+ 'k-label-empty': boolean;
3169
+ 'k-text-error': boolean;
3170
+ 'k-text-disabled': boolean;
3171
+ };
3172
+ }, {
3173
+ onLabelClick(e: any): void;
3174
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3175
+ id: import('vue').PropType<string>;
3176
+ /**
3177
+ * Specifies the `id` attribute of the root element.
3178
+ */
3179
+ editorId: import('vue').PropType<string>;
3180
+ editorRef: import('vue').PropType<any>;
3181
+ editorValid: {
3182
+ type: import('vue').PropType<boolean>;
3183
+ default: any;
3184
+ };
3185
+ editorDisabled: import('vue').PropType<boolean>;
3186
+ optional: import('vue').PropType<boolean>;
3187
+ }>> & Readonly<{}>, {
3188
+ editorValid: boolean;
3189
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3190
+ };
3191
+ allDayEditor: {
3192
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3193
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3194
+ checked: {
3195
+ type: import('vue').PropType<boolean>;
3196
+ default: any;
3197
+ };
3198
+ defaultChecked: {
3199
+ type: import('vue').PropType<boolean>;
3200
+ default: any;
3201
+ };
3202
+ defaultValue: {
3203
+ type: import('vue').PropType<any>;
3204
+ default: any;
3205
+ };
3206
+ modelValue: {
3207
+ type: import('vue').PropType<string | number | boolean | string[]>;
3208
+ default: any;
3209
+ };
3210
+ dir: import('vue').PropType<string>;
3211
+ disabled: import('vue').PropType<boolean>;
3212
+ id: import('vue').PropType<string>;
3213
+ ariaLabelledBy: import('vue').PropType<string>;
3214
+ ariaDescribedBy: import('vue').PropType<string>;
3215
+ label: import('vue').PropType<string | HTMLElement>;
3216
+ labelRender: import('vue').PropType<any>;
3217
+ labelPlacement: import('vue').PropType<string>;
3218
+ labelOptional: import('vue').PropType<boolean>;
3219
+ labelClass: import('vue').PropType<string>;
3220
+ name: import('vue').PropType<string>;
3221
+ size: {
3222
+ type: import('vue').PropType<"small" | "medium" | "large">;
3223
+ validator: (value: string) => boolean;
3224
+ }; /**
3225
+ * Overrides the component used for visualizing the `start` field editor.
3226
+ * 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.
3227
+ *
3228
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3229
+ */
3230
+ rounded: {
3231
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
3232
+ validator: (value: string) => boolean;
3233
+ };
3234
+ tabIndex: import('vue').PropType<number>;
3235
+ value: {
3236
+ type: import('vue').PropType<string | number | boolean | string[]>;
3237
+ default: any;
3238
+ };
3239
+ validationMessage: import('vue').PropType<string>;
3240
+ required: import('vue').PropType<boolean>;
3241
+ valid: {
3242
+ type: import('vue').PropType<boolean>;
3243
+ default: any;
3244
+ };
3245
+ validityStyles: {
3246
+ type: import('vue').PropType<boolean>;
3247
+ default: boolean;
3248
+ }; /**
3249
+ * Overrides the component used for visualizing the `start timezone` field error.
3250
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
3251
+ *
3252
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3253
+ */
3254
+ }>, {
3255
+ inputRef: import('vue').Ref<any, any>;
3256
+ kendoLocalizationService: {};
3257
+ }, {
3258
+ valueDuringOnChange: any;
3259
+ currentDir: string;
3260
+ currentChecked: any;
3261
+ currentValue: any;
3262
+ }, {
3263
+ valueIsBooleanOrNull(): boolean;
3264
+ isCheckedControlled(): boolean;
3265
+ isValueControlled(): any;
3266
+ computedValue(): any;
3267
+ computedChecked(): any;
3268
+ useValueAsChecked(): any;
3269
+ checkedProp(): any;
3270
+ valueProp(): any;
3271
+ indeterminateProp(): boolean;
3272
+ isValid(): any;
3273
+ labelComputedClass(): {
3274
+ [x: number]: any;
3275
+ 'k-checkbox-label': boolean;
3276
+ };
3277
+ }, {
3278
+ setValidity(): void;
3279
+ localizeMessage(message: string): string;
3280
+ focusElement(): void;
3281
+ setValue(e: any, val: boolean): void;
3282
+ onChangeHandler(e: any): void;
3283
+ onKeyDownHandler(e: any): void;
3284
+ onBlurHandler(e: any): void;
3285
+ onFocusHandler(e: any): void;
3286
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3287
+ changemodel: (value: boolean) => true;
3288
+ 'update:modelValue': (value: boolean) => true; /**
3289
+ * Specifies the `tabIndex` attribute of the root element.
3290
+ */
3291
+ change: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => true;
3292
+ focus: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => true;
3293
+ blur: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => true;
3294
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3295
+ checked: {
3296
+ type: import('vue').PropType<boolean>;
3297
+ default: any;
3298
+ };
3299
+ defaultChecked: {
3300
+ type: import('vue').PropType<boolean>;
3301
+ default: any;
3302
+ };
3303
+ defaultValue: {
3304
+ type: import('vue').PropType<any>;
3305
+ default: any;
3306
+ };
3307
+ modelValue: {
3308
+ type: import('vue').PropType<string | number | boolean | string[]>;
3309
+ default: any;
3310
+ };
3311
+ dir: import('vue').PropType<string>;
3312
+ disabled: import('vue').PropType<boolean>;
3313
+ id: import('vue').PropType<string>;
3314
+ ariaLabelledBy: import('vue').PropType<string>;
3315
+ ariaDescribedBy: import('vue').PropType<string>;
3316
+ label: import('vue').PropType<string | HTMLElement>;
3317
+ labelRender: import('vue').PropType<any>;
3318
+ labelPlacement: import('vue').PropType<string>;
3319
+ labelOptional: import('vue').PropType<boolean>;
3320
+ labelClass: import('vue').PropType<string>;
3321
+ name: import('vue').PropType<string>;
3322
+ size: {
3323
+ type: import('vue').PropType<"small" | "medium" | "large">;
3324
+ validator: (value: string) => boolean;
3325
+ }; /**
3326
+ * Overrides the component used for visualizing the `start` field editor.
3327
+ * 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.
3328
+ *
3329
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3330
+ */
3331
+ rounded: {
3332
+ type: import('vue').PropType<"small" | "medium" | "large" | "none">;
3333
+ validator: (value: string) => boolean;
3334
+ };
3335
+ tabIndex: import('vue').PropType<number>;
3336
+ value: {
3337
+ type: import('vue').PropType<string | number | boolean | string[]>;
3338
+ default: any;
3339
+ };
3340
+ validationMessage: import('vue').PropType<string>;
3341
+ required: import('vue').PropType<boolean>;
3342
+ valid: {
3343
+ type: import('vue').PropType<boolean>;
3344
+ default: any;
3345
+ };
3346
+ validityStyles: {
3347
+ type: import('vue').PropType<boolean>;
3348
+ default: boolean;
3349
+ }; /**
3350
+ * Overrides the component used for visualizing the `start timezone` field error.
3351
+ * The [Kendo UI for Vue Error]({% slug error_labels %}) component is used, by default.
3352
+ *
3353
+ * For more information, please refer to the [`Scheduler Form Editor Customization`]({% slug editing_scheduler_custom %}) article.
3354
+ */
3355
+ }>> & Readonly<{
3356
+ onBlur?: (event: import('@progress/kendo-vue-inputs').CheckboxBlurEvent) => any;
3357
+ onChange?: (event: import('@progress/kendo-vue-inputs').CheckboxChangeEvent) => any;
3358
+ onFocus?: (event: import('@progress/kendo-vue-inputs').CheckboxFocusEvent) => any;
3359
+ onChangemodel?: (value: boolean) => any;
3360
+ "onUpdate:modelValue"?: (value: boolean) => any;
3361
+ }>, {
3362
+ value: string | number | boolean | string[];
3363
+ checked: boolean;
3364
+ defaultValue: any;
3365
+ valid: boolean;
3366
+ modelValue: string | number | boolean | string[];
3367
+ validityStyles: boolean;
3368
+ defaultChecked: boolean;
3369
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3370
+ };
3371
+ recurrenceEditor: {
3372
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3373
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3374
+ name: import('vue').PropType<string>;
3375
+ value: {
3376
+ type: import('vue').PropType<string>;
3377
+ default: string;
3378
+ };
3379
+ start: import('vue').PropType<Date>;
3380
+ timezone: import('vue').PropType<string>;
3381
+ }>, {}, {
3382
+ defaultCount: number;
3383
+ defaultUntil: import('@progress/kendo-date-math').ZonedDate;
3384
+ }, {
3385
+ rrule(): import('@progress/kendo-recurrence').RecurrenceRule;
3386
+ frequencies(): import('../recurrence/types/FrequencyEntity').FrequencyEntity[];
3387
+ frequency(): import('../recurrence/types/Frequency').Frequency;
3388
+ extendedWeekDays(): import('../recurrence/types/WeekDayEntity').WeekDayEntity[];
3389
+ weekDay(): import('../recurrence/types/WeekDayEntity').WeekDayEntity;
3390
+ months(): import('../recurrence/types/MonthEntity').MonthEntity[];
3391
+ month(): import('../recurrence/types/MonthEntity').MonthEntity;
3392
+ offsets(): import('../recurrence/types/OffsetPositionEntity').OffsetPositionEntity[];
3393
+ offset(): import('../recurrence/types/OffsetPositionEntity').OffsetPositionEntity;
3394
+ endRule(): import('../recurrence/types/EndRule').EndRule;
3395
+ monthDay(): number;
3396
+ until(): Date;
3397
+ weekDays(): import('../recurrence/types/WeekDayEntity').WeekDayEntity[];
3398
+ repeatOnRule(): import('../recurrence/types/RepeatOnRule').RepeatOnRule;
3399
+ }, {
3400
+ localizeMessage(baseMassage: string, removePrepend?: boolean): string;
3401
+ onChangeHandler(newRrule: import('@progress/kendo-recurrence').RecurrenceRule): void;
3402
+ handleFrequencyChange(newFreq: string): void;
3403
+ handleIntervalChange(event: import('@progress/kendo-vue-inputs').NumericTextBoxChangeEvent): void;
3404
+ handleCountChange(event: import('@progress/kendo-vue-inputs').NumericTextBoxChangeEvent): void;
3405
+ handleUntilChange(event: import('@progress/kendo-vue-dateinputs').DatePickerChangeEvent): void;
3406
+ handleWeekDaysChange(newWeekDays: number[]): void;
3407
+ handleWeekDayChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent): void;
3408
+ handleMonthDayChange(event: import('@progress/kendo-vue-inputs').NumericTextBoxChangeEvent): void;
3409
+ handleMonthChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent): void;
3410
+ handleEndRuleChange(event: import('@progress/kendo-vue-inputs').RadioGroupChangeEvent): void;
3411
+ handleRepeatOnRuleChange(event: import('@progress/kendo-vue-inputs').RadioGroupChangeEvent): void;
3412
+ handleOffsetChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent): void;
3413
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3414
+ change: any;
3415
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3416
+ name: import('vue').PropType<string>;
3417
+ value: {
3418
+ type: import('vue').PropType<string>;
3419
+ default: string;
3420
+ };
3421
+ start: import('vue').PropType<Date>;
3422
+ timezone: import('vue').PropType<string>;
3423
+ }>> & Readonly<{
3424
+ onChange?: (...args: any[] | unknown[]) => any;
3425
+ }>, {
3426
+ value: string;
3427
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3428
+ };
3429
+ descriptionLabel: {
3430
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3431
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3432
+ id: import('vue').PropType<string>;
3433
+ /**
3434
+ * Specifies the `id` attribute of the root element.
3435
+ */
3436
+ editorId: import('vue').PropType<string>;
3437
+ editorRef: import('vue').PropType<any>;
3438
+ editorValid: {
3439
+ type: import('vue').PropType<boolean>;
3440
+ default: any;
3441
+ };
3442
+ editorDisabled: import('vue').PropType<boolean>;
3443
+ optional: import('vue').PropType<boolean>;
3444
+ }>, {
3445
+ kendoLocalizationService: {};
3446
+ }, {}, {
3447
+ labelClassName(): {
3448
+ 'k-label': boolean;
3449
+ 'k-label-empty': boolean;
3450
+ 'k-text-error': boolean;
3451
+ 'k-text-disabled': boolean;
3452
+ };
3453
+ }, {
3454
+ onLabelClick(e: any): void;
3455
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3456
+ id: import('vue').PropType<string>;
3457
+ /**
3458
+ * Specifies the `id` attribute of the root element.
3459
+ */
3460
+ editorId: import('vue').PropType<string>;
3461
+ editorRef: import('vue').PropType<any>;
3462
+ editorValid: {
3463
+ type: import('vue').PropType<boolean>;
3464
+ default: any;
3465
+ };
3466
+ editorDisabled: import('vue').PropType<boolean>;
3467
+ optional: import('vue').PropType<boolean>;
3468
+ }>> & Readonly<{}>, {
3469
+ editorValid: boolean;
3470
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3471
+ };
3472
+ descriptionError: {
3473
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3474
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3475
+ id: import('vue').PropType<string>;
3476
+ direction: {
3477
+ type: import('vue').PropType<string>;
3478
+ default: string;
3479
+ validator: (value: string) => any;
3480
+ };
3481
+ }>, {}, {}, {
3482
+ errorClassName(): object;
3483
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3484
+ id: import('vue').PropType<string>;
3485
+ direction: {
3486
+ type: import('vue').PropType<string>;
3487
+ default: string;
3488
+ validator: (value: string) => any;
3489
+ };
3490
+ }>> & Readonly<{}>, {
3491
+ direction: string;
3492
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3493
+ };
3494
+ descriptionEditor: {
3495
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3496
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3497
+ title: import('vue').PropType<string>;
3498
+ ariaDescribedBy: import('vue').PropType<string>;
3499
+ ariaLabelledBy: import('vue').PropType<string>;
3500
+ autoSize: import('vue').PropType<boolean>;
3501
+ modelValue: {
3502
+ type: import('vue').PropType<string | number | string[]>;
3503
+ default: any;
3504
+ };
3505
+ defaultValue: import('vue').PropType<string | number | string[]>;
3506
+ dir: import('vue').PropType<string>;
3507
+ disabled: import('vue').PropType<boolean>;
3508
+ readOnly: import('vue').PropType<boolean>;
3509
+ rows: import('vue').PropType<number>;
3510
+ id: import('vue').PropType<string>;
3511
+ name: import('vue').PropType<string>;
3512
+ validationMessage: import('vue').PropType<string>;
3513
+ size: {
3514
+ type: import('vue').PropType<"small" | "medium" | "large">;
3515
+ validator: (value: string) => boolean;
3516
+ };
3517
+ rounded: {
3518
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
3519
+ validator: (value: string) => boolean;
3520
+ };
3521
+ fillMode: {
3522
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
3523
+ validator: (value: string) => boolean;
3524
+ };
3525
+ required: import('vue').PropType<boolean>;
3526
+ placeholder: import('vue').PropType<string>;
3527
+ tabIndex: import('vue').PropType<number>;
3528
+ valid: {
3529
+ type: import('vue').PropType<boolean>;
3530
+ default: any;
3531
+ };
3532
+ value: import('vue').PropType<string | number | string[]>;
3533
+ validityStyles: {
3534
+ type: import('vue').PropType<boolean>;
3535
+ default: boolean;
3536
+ };
3537
+ iconName: import('vue').PropType<string>;
3538
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
3539
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
3540
+ showValidationIcon: import('vue').PropType<boolean>;
3541
+ showLoadingIcon: import('vue').PropType<boolean>;
3542
+ showClearButton: import('vue').PropType<boolean>;
3543
+ inputClass: import('vue').PropType<string>;
3544
+ wrapperClass: import('vue').PropType<string>;
3545
+ flow: {
3546
+ type: import('vue').PropType<string>;
3547
+ default: string;
3548
+ validator: (value: any) => any;
3549
+ };
3550
+ resizable: {
3551
+ type: import('vue').PropType<string>;
3552
+ default: string;
3553
+ validator: (value: any) => any;
3554
+ };
3555
+ inputAttributes: import('vue').PropType<Object>;
3556
+ }>, {}, {
3557
+ currentValue: string | number | string[];
3558
+ textAreaHeight: string;
3559
+ currentDir: string;
3560
+ }, {
3561
+ resizableClass(): "k-resize-none" | "k-resize-y" | "k-resize-x" | "k-resize";
3562
+ rootClassName(): {
3563
+ [x: string]: any;
3564
+ [x: number]: any;
3565
+ 'k-input': boolean;
3566
+ 'k-textarea': boolean;
3567
+ 'k-disabled': any;
3568
+ 'k-invalid': boolean;
3569
+ 'k-required': any;
3570
+ 'k-loading': any;
3571
+ '!k-flex-col': boolean;
3572
+ '!k-flex-row': boolean;
3573
+ };
3574
+ inputInnerClass(): {
3575
+ [x: number]: any;
3576
+ 'k-input-inner': boolean;
3577
+ '!k-resize-none': boolean;
3578
+ '!k-overflow-auto': boolean;
3579
+ 'k-flex': boolean;
3580
+ };
3581
+ prefixRenderClass(): {
3582
+ 'k-input-prefix': boolean;
3583
+ '!k-align-items-start': boolean;
3584
+ 'k-input-prefix-horizontal': boolean;
3585
+ 'k-input-prefix-vertical': boolean;
3586
+ };
3587
+ suffixRenderClass(): {
3588
+ 'k-input-suffix': boolean;
3589
+ '!k-align-items-start': boolean;
3590
+ 'k-input-suffix-horizontal': boolean;
3591
+ 'k-input-suffix-vertical': boolean;
3592
+ };
3593
+ suffixIconWrapClass(): {
3594
+ 'k-flex-wrap': boolean;
3595
+ '!k-align-items-start': boolean;
3596
+ };
3597
+ computedValue(): any;
3598
+ isValid(): any;
3599
+ }, {
3600
+ setValidity(): void;
3601
+ clearClick(event: any): void;
3602
+ focus(): void;
3603
+ emitUpdate(event: any, eventName: string, value: any): void;
3604
+ handleChange(event: any): void;
3605
+ handleInput(event: any): void;
3606
+ handleFocus(event: any): void;
3607
+ handleBlur(event: any): void;
3608
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3609
+ input: (event: Event) => true;
3610
+ change: (event: import('@progress/kendo-vue-inputs').TextAreaChangeEvent) => true;
3611
+ changemodel: (value: string | number | string[]) => true;
3612
+ 'update:modelValue': (value: string | number | string[]) => true;
3613
+ focus: (event: import('@progress/kendo-vue-inputs').TextAreaFocusEvent) => true;
3614
+ blur: (event: import('packages/inputs/src/textarea/interfaces/TextAreaBlurEvent').TextAreaBlurEvent) => true;
3615
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3616
+ title: import('vue').PropType<string>;
3617
+ ariaDescribedBy: import('vue').PropType<string>;
3618
+ ariaLabelledBy: import('vue').PropType<string>;
3619
+ autoSize: import('vue').PropType<boolean>;
3620
+ modelValue: {
3621
+ type: import('vue').PropType<string | number | string[]>;
3622
+ default: any;
3623
+ };
3624
+ defaultValue: import('vue').PropType<string | number | string[]>;
3625
+ dir: import('vue').PropType<string>;
3626
+ disabled: import('vue').PropType<boolean>;
3627
+ readOnly: import('vue').PropType<boolean>;
3628
+ rows: import('vue').PropType<number>;
3629
+ id: import('vue').PropType<string>;
3630
+ name: import('vue').PropType<string>;
3631
+ validationMessage: import('vue').PropType<string>;
3632
+ size: {
3633
+ type: import('vue').PropType<"small" | "medium" | "large">;
3634
+ validator: (value: string) => boolean;
3635
+ };
3636
+ rounded: {
3637
+ type: import('vue').PropType<"small" | "medium" | "large" | "full" | "none">;
3638
+ validator: (value: string) => boolean;
3639
+ };
3640
+ fillMode: {
3641
+ type: import('vue').PropType<"flat" | "solid" | "outline">;
3642
+ validator: (value: string) => boolean;
3643
+ };
3644
+ required: import('vue').PropType<boolean>;
3645
+ placeholder: import('vue').PropType<string>;
3646
+ tabIndex: import('vue').PropType<number>;
3647
+ valid: {
3648
+ type: import('vue').PropType<boolean>;
3649
+ default: any;
3650
+ };
3651
+ value: import('vue').PropType<string | number | string[]>;
3652
+ validityStyles: {
3653
+ type: import('vue').PropType<boolean>;
3654
+ default: boolean;
3655
+ };
3656
+ iconName: import('vue').PropType<string>;
3657
+ inputPrefix: import('vue').PropType<string | boolean | Object | Function>;
3658
+ inputSuffix: import('vue').PropType<string | boolean | Object | Function>;
3659
+ showValidationIcon: import('vue').PropType<boolean>;
3660
+ showLoadingIcon: import('vue').PropType<boolean>;
3661
+ showClearButton: import('vue').PropType<boolean>;
3662
+ inputClass: import('vue').PropType<string>;
3663
+ wrapperClass: import('vue').PropType<string>;
3664
+ flow: {
3665
+ type: import('vue').PropType<string>;
3666
+ default: string;
3667
+ validator: (value: any) => any;
3668
+ };
3669
+ resizable: {
3670
+ type: import('vue').PropType<string>;
3671
+ default: string;
3672
+ validator: (value: any) => any;
3673
+ };
3674
+ inputAttributes: import('vue').PropType<Object>;
3675
+ }>> & Readonly<{
3676
+ onInput?: (event: Event) => any;
3677
+ onBlur?: (event: import('packages/inputs/src/textarea/interfaces/TextAreaBlurEvent').TextAreaBlurEvent) => any;
3678
+ onChange?: (event: import('@progress/kendo-vue-inputs').TextAreaChangeEvent) => any;
3679
+ onFocus?: (event: import('@progress/kendo-vue-inputs').TextAreaFocusEvent) => any;
3680
+ onChangemodel?: (value: string | number | string[]) => any;
3681
+ "onUpdate:modelValue"?: (value: string | number | string[]) => any;
3682
+ }>, {
3683
+ flow: string;
3684
+ resizable: string;
3685
+ valid: boolean;
3686
+ modelValue: string | number | string[];
3687
+ validityStyles: boolean;
3688
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3689
+ };
3690
+ resourceLabel: {
3691
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3692
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3693
+ id: import('vue').PropType<string>;
3694
+ /**
3695
+ * Specifies the `id` attribute of the root element.
3696
+ */
3697
+ editorId: import('vue').PropType<string>;
3698
+ editorRef: import('vue').PropType<any>;
3699
+ editorValid: {
3700
+ type: import('vue').PropType<boolean>;
3701
+ default: any;
3702
+ };
3703
+ editorDisabled: import('vue').PropType<boolean>;
3704
+ optional: import('vue').PropType<boolean>;
3705
+ }>, {
3706
+ kendoLocalizationService: {};
3707
+ }, {}, {
3708
+ labelClassName(): {
3709
+ 'k-label': boolean;
3710
+ 'k-label-empty': boolean;
3711
+ 'k-text-error': boolean;
3712
+ 'k-text-disabled': boolean;
3713
+ };
3714
+ }, {
3715
+ onLabelClick(e: any): void;
3716
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3717
+ id: import('vue').PropType<string>;
3718
+ /**
3719
+ * Specifies the `id` attribute of the root element.
3720
+ */
3721
+ editorId: import('vue').PropType<string>;
3722
+ editorRef: import('vue').PropType<any>;
3723
+ editorValid: {
3724
+ type: import('vue').PropType<boolean>;
3725
+ default: any;
3726
+ };
3727
+ editorDisabled: import('vue').PropType<boolean>;
3728
+ optional: import('vue').PropType<boolean>;
3729
+ }>> & Readonly<{}>, {
3730
+ editorValid: boolean;
3731
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3732
+ };
3733
+ resourcesError: {
3734
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3735
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3736
+ id: import('vue').PropType<string>;
3737
+ /**
3738
+ * Specifies the `id` attribute of the root element.
3739
+ */
3740
+ editorId: import('vue').PropType<string>;
3741
+ editorRef: import('vue').PropType<any>;
3742
+ editorValid: {
3743
+ type: import('vue').PropType<boolean>;
3744
+ default: any;
3745
+ };
3746
+ editorDisabled: import('vue').PropType<boolean>;
3747
+ optional: import('vue').PropType<boolean>;
3748
+ }>, {
3749
+ kendoLocalizationService: {};
3750
+ }, {}, {
3751
+ labelClassName(): {
3752
+ 'k-label': boolean;
3753
+ 'k-label-empty': boolean;
3754
+ 'k-text-error': boolean;
3755
+ 'k-text-disabled': boolean;
3756
+ };
3757
+ }, {
3758
+ onLabelClick(e: any): void;
3759
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3760
+ id: import('vue').PropType<string>;
3761
+ /**
3762
+ * Specifies the `id` attribute of the root element.
3763
+ */
3764
+ editorId: import('vue').PropType<string>;
3765
+ editorRef: import('vue').PropType<any>;
3766
+ editorValid: {
3767
+ type: import('vue').PropType<boolean>;
3768
+ default: any;
3769
+ };
3770
+ editorDisabled: import('vue').PropType<boolean>;
3771
+ optional: import('vue').PropType<boolean>;
3772
+ }>> & Readonly<{}>, {
3773
+ editorValid: boolean;
3774
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3775
+ };
3776
+ resourceEditor: {
3777
+ type: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
3778
+ default: () => import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3779
+ resource: import('vue').PropType<import('..').SchedulerResource>;
3780
+ dataItems: import('vue').PropType<any[]>;
3781
+ textField: import('vue').PropType<string>;
3782
+ valueField: import('vue').PropType<string>;
3783
+ colorField: import('vue').PropType<string>;
3784
+ multiple: import('vue').PropType<boolean>;
3785
+ validationMessage: import('vue').PropType<string>;
3786
+ value: import('vue').PropType<any>;
3787
+ touched: import('vue').PropType<boolean>;
3788
+ modified: import('vue').PropType<boolean>;
3789
+ visited: import('vue').PropType<boolean>;
3790
+ valid: import('vue').PropType<boolean>;
3791
+ name: import('vue').PropType<string>;
3792
+ }>, {}, {}, {}, {
3793
+ handleChange(event: import('@progress/kendo-vue-dropdowns').DropDownListChangeEvent | import('@progress/kendo-vue-dropdowns').MultiSelectChangeEvent): void;
3794
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3795
+ change: any;
3796
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3797
+ resource: import('vue').PropType<import('..').SchedulerResource>;
3798
+ dataItems: import('vue').PropType<any[]>;
3799
+ textField: import('vue').PropType<string>;
3800
+ valueField: import('vue').PropType<string>;
3801
+ colorField: import('vue').PropType<string>;
3802
+ multiple: import('vue').PropType<boolean>;
3803
+ validationMessage: import('vue').PropType<string>;
3804
+ value: import('vue').PropType<any>;
3805
+ touched: import('vue').PropType<boolean>;
3806
+ modified: import('vue').PropType<boolean>;
3807
+ visited: import('vue').PropType<boolean>;
3808
+ valid: import('vue').PropType<boolean>;
3809
+ name: import('vue').PropType<string>;
3810
+ }>> & Readonly<{
3811
+ onChange?: (...args: any[] | unknown[]) => any;
3812
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3813
+ };
3814
+ errors: ObjectConstructor;
3815
+ valid: BooleanConstructor;
3816
+ touched: BooleanConstructor;
3817
+ visited: BooleanConstructor;
3818
+ modified: BooleanConstructor;
3819
+ submitted: BooleanConstructor;
3820
+ allowSubmit: BooleanConstructor;
3821
+ valueGetter: FunctionConstructor;
3822
+ }>> & Readonly<{}>, {
3823
+ touched: boolean;
3824
+ modified: boolean;
3825
+ visited: boolean;
3826
+ valid: boolean;
3827
+ allowSubmit: boolean;
3828
+ titleLabel: string | Function | Record<string, any>;
3829
+ titleError: string | Function | Record<string, any>;
3830
+ titleEditor: string | Function | Record<string, any>;
3831
+ startLabel: string | Function | Record<string, any>;
3832
+ startError: string | Function | Record<string, any>;
3833
+ startEditor: string | Function | Record<string, any>;
3834
+ startTimezoneLabel: string | Function | Record<string, any>;
3835
+ startTimezoneError: string | Function | Record<string, any>;
3836
+ startTimezoneEditor: string | Function | Record<string, any>;
3837
+ startTimezoneCheckedLabel: string | Function | Record<string, any>;
3838
+ startTimezoneCheckedEditor: string | Function | Record<string, any>;
3839
+ endLabel: string | Function | Record<string, any>;
3840
+ endError: string | Function | Record<string, any>;
3841
+ endEditor: string | Function | Record<string, any>;
3842
+ endTimezoneLabel: string | Function | Record<string, any>;
3843
+ endTimezoneError: string | Function | Record<string, any>;
3844
+ endTimezoneEditor: string | Function | Record<string, any>;
3845
+ endTimezoneCheckedLabel: string | Function | Record<string, any>;
3846
+ endTimezoneCheckedEditor: string | Function | Record<string, any>;
3847
+ allDayLabel: string | Function | Record<string, any>;
3848
+ allDayEditor: string | Function | Record<string, any>;
3849
+ recurrenceEditor: string | Function | Record<string, any>;
3850
+ descriptionLabel: string | Function | Record<string, any>;
3851
+ descriptionError: string | Function | Record<string, any>;
3852
+ descriptionEditor: string | Function | Record<string, any>;
3853
+ resourceLabel: string | Function | Record<string, any>;
3854
+ resourcesError: string | Function | Record<string, any>;
3855
+ resourceEditor: string | Function | Record<string, any>;
3856
+ submitted: boolean;
3857
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
3858
+ export { SchedulerFormEditor };