@progress/kendo-react-scheduler 13.3.0-develop.1 → 13.3.0-develop.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cdn/js/kendo-react-scheduler.js +1 -1
- package/index.d.mts +298 -298
- package/index.d.ts +298 -298
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
package/index.d.mts
CHANGED
|
@@ -63,7 +63,7 @@ import { ToolbarProps } from '@progress/kendo-react-buttons';
|
|
|
63
63
|
import { ZonedDate } from '@progress/kendo-date-math';
|
|
64
64
|
|
|
65
65
|
/**
|
|
66
|
-
* Represents the KendoReact [AgendaView](
|
|
66
|
+
* Represents the KendoReact [AgendaView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/agenda) Component.
|
|
67
67
|
*/
|
|
68
68
|
export declare const AgendaView: React_2.FunctionComponent<AgendaViewProps>;
|
|
69
69
|
|
|
@@ -80,7 +80,7 @@ export declare const agendaViewDefaultProps: {
|
|
|
80
80
|
};
|
|
81
81
|
|
|
82
82
|
/**
|
|
83
|
-
* Represents the properties of the KendoReact [AgendaView](
|
|
83
|
+
* Represents the properties of the KendoReact [AgendaView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/agendaview) Component.
|
|
84
84
|
*/
|
|
85
85
|
export declare interface AgendaViewProps extends SchedulerViewProps {
|
|
86
86
|
/**
|
|
@@ -156,7 +156,7 @@ export declare interface BaseEvent<T> {
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
/**
|
|
159
|
-
* Specifies the available [DataAction](
|
|
159
|
+
* Specifies the available [DataAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/data_action) types.
|
|
160
160
|
*/
|
|
161
161
|
export declare enum DATA_ACTION {
|
|
162
162
|
create = 0,
|
|
@@ -165,9 +165,9 @@ export declare enum DATA_ACTION {
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
/**
|
|
168
|
-
* Specifies the action which can be dispatched through the [SchedulerDataContext](
|
|
168
|
+
* Specifies the action which can be dispatched through the [SchedulerDataContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdatacontext).
|
|
169
169
|
*
|
|
170
|
-
* For more information refer to the [Scheduler Context](
|
|
170
|
+
* For more information refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
171
171
|
*/
|
|
172
172
|
export declare interface DataAction {
|
|
173
173
|
/**
|
|
@@ -188,11 +188,11 @@ export declare interface DataAction {
|
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
|
-
* Represents the items which the [`data`](
|
|
191
|
+
* Represents the items which the [`data`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-data) property accepts.
|
|
192
192
|
* The `data` has no strict type. However, to visualize it correctly,
|
|
193
|
-
* use it in combination with the [`modelFields`](
|
|
193
|
+
* use it in combination with the [`modelFields`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-modelfields) property.
|
|
194
194
|
* For more information, refer to the article on
|
|
195
|
-
* [binding the Scheduler to data](
|
|
195
|
+
* [binding the Scheduler to data](https://www.telerik.com/kendo-react-ui/components/scheduler/data-binding).
|
|
196
196
|
*/
|
|
197
197
|
export declare type DataItem = any;
|
|
198
198
|
|
|
@@ -221,7 +221,7 @@ export declare interface DateHeaderCellHandle {
|
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
/**
|
|
224
|
-
* Represents the properties of [DateHeaderCell](
|
|
224
|
+
* Represents the properties of [DateHeaderCell](https://www.telerik.com/kendo-react-ui/components/scheduler/api/dateheadercell) component.
|
|
225
225
|
*/
|
|
226
226
|
export declare interface DateHeaderCellProps extends React_2.HTMLAttributes<HTMLDivElement> {
|
|
227
227
|
/** @hidden */
|
|
@@ -253,7 +253,7 @@ export declare interface DateRange {
|
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
/**
|
|
256
|
-
* Represents the KendoReact [DayView](
|
|
256
|
+
* Represents the KendoReact [DayView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/day) Component.
|
|
257
257
|
*/
|
|
258
258
|
export declare const DayView: React_2.FunctionComponent<DayViewProps>;
|
|
259
259
|
|
|
@@ -279,7 +279,7 @@ export declare const dayViewDefaultProps: {
|
|
|
279
279
|
};
|
|
280
280
|
|
|
281
281
|
/**
|
|
282
|
-
* Represents the properties of the [DayView](
|
|
282
|
+
* Represents the properties of the [DayView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/dayviewprops) Component.
|
|
283
283
|
*/
|
|
284
284
|
export declare interface DayViewProps extends MultiDayViewProps {
|
|
285
285
|
}
|
|
@@ -339,7 +339,7 @@ export declare interface EditableProp {
|
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
|
-
* Represents the combined object of the default and custom [modelFields](
|
|
342
|
+
* Represents the combined object of the default and custom [modelFields](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc)
|
|
343
343
|
*/
|
|
344
344
|
export declare interface Fields {
|
|
345
345
|
/**
|
|
@@ -401,7 +401,7 @@ declare enum FORM_ITEM_ACTION {
|
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
/**
|
|
404
|
-
* Represents the Scheduler `Group` object, calculated based on the [group](
|
|
404
|
+
* Represents the Scheduler `Group` object, calculated based on the [group](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-group) and [resources](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-resources)
|
|
405
405
|
*/
|
|
406
406
|
export declare interface Group {
|
|
407
407
|
/**
|
|
@@ -437,13 +437,13 @@ declare interface Item extends Occurrence {
|
|
|
437
437
|
/**
|
|
438
438
|
* Represents the `start` Date in the provided timezone.
|
|
439
439
|
*
|
|
440
|
-
* For more information about timezones, refer to the [Scheduler TImezones](
|
|
440
|
+
* For more information about timezones, refer to the [Scheduler TImezones](https://www.telerik.com/kendo-react-ui/components/scheduler/timezones) article.
|
|
441
441
|
*/
|
|
442
442
|
zonedStart: ZonedDate;
|
|
443
443
|
/**
|
|
444
444
|
* Represents the `end` Date in the provided timezone.
|
|
445
445
|
*
|
|
446
|
-
* For more information about timezones, refer to the [Scheduler TImezones](
|
|
446
|
+
* For more information about timezones, refer to the [Scheduler TImezones](https://www.telerik.com/kendo-react-ui/components/scheduler/timezones) article.
|
|
447
447
|
*/
|
|
448
448
|
zonedEnd: ZonedDate;
|
|
449
449
|
/**
|
|
@@ -522,7 +522,7 @@ export declare enum ITEMS_SELECT_ACTION {
|
|
|
522
522
|
}
|
|
523
523
|
|
|
524
524
|
/**
|
|
525
|
-
* Represents the KendoReact [MonthView](
|
|
525
|
+
* Represents the KendoReact [MonthView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/month) Component.
|
|
526
526
|
*/
|
|
527
527
|
export declare const MonthView: React_2.FunctionComponent<MonthViewProps>;
|
|
528
528
|
|
|
@@ -540,7 +540,7 @@ export declare const monthViewDefaultProps: {
|
|
|
540
540
|
};
|
|
541
541
|
|
|
542
542
|
/**
|
|
543
|
-
* Represents the props of the KendoReact [MonthView](
|
|
543
|
+
* Represents the props of the KendoReact [MonthView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/monthview) Component.
|
|
544
544
|
*/
|
|
545
545
|
export declare interface MonthViewProps extends Omit<SchedulerViewProps, 'numberOfDays' | 'step'> {
|
|
546
546
|
/**
|
|
@@ -936,7 +936,7 @@ export declare interface Occurrence {
|
|
|
936
936
|
/**
|
|
937
937
|
* Represents the original `DataItem` from which the item was created.
|
|
938
938
|
*
|
|
939
|
-
* For more information about the `data` collection, refer to the [Scheduler Data Binding](
|
|
939
|
+
* For more information about the `data` collection, refer to the [Scheduler Data Binding](https://www.telerik.com/kendo-react-ui/components/scheduler/data-binding) article.
|
|
940
940
|
*/
|
|
941
941
|
dataItem: DataItem;
|
|
942
942
|
}
|
|
@@ -1012,7 +1012,7 @@ export declare interface Resource {
|
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
1014
|
/**
|
|
1015
|
-
* Represents the [KendoReact Scheduler component](
|
|
1015
|
+
* Represents the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler)
|
|
1016
1016
|
*
|
|
1017
1017
|
* @remarks
|
|
1018
1018
|
* Supported children components are: {@link TimelineView}, {@link DayView}, {@link WeekView}, {@link MonthView}, {@link AgendaView}.
|
|
@@ -1090,19 +1090,19 @@ export declare const Scheduler: React_2.ForwardRefExoticComponent<SchedulerProps
|
|
|
1090
1090
|
/**
|
|
1091
1091
|
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler internal `activeView` state.
|
|
1092
1092
|
*
|
|
1093
|
-
* For more information, refer to the [Scheduler Context](
|
|
1093
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
1094
1094
|
*/
|
|
1095
1095
|
export declare const SchedulerActiveViewContext: React_2.Context<SchedulerActiveViewContextType>;
|
|
1096
1096
|
|
|
1097
1097
|
/**
|
|
1098
|
-
* Specifies the result of the [useSchedulerActiveViewContext](
|
|
1098
|
+
* Specifies the result of the [useSchedulerActiveViewContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleractiveviewcontext) and [SchedulerActiveViewContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleractiveviewcontext).
|
|
1099
1099
|
*/
|
|
1100
1100
|
export declare type SchedulerActiveViewContextType = [string, (activeView: string, event?: any) => void];
|
|
1101
1101
|
|
|
1102
1102
|
/**
|
|
1103
1103
|
* Fires every time the user changes the provided `data`.
|
|
1104
1104
|
*
|
|
1105
|
-
* For more information, refer to the [Scheduler Data Binding](
|
|
1105
|
+
* For more information, refer to the [Scheduler Data Binding](https://www.telerik.com/kendo-react-ui/components/scheduler/data-binding) article.
|
|
1106
1106
|
*/
|
|
1107
1107
|
export declare interface SchedulerDataChangeEvent {
|
|
1108
1108
|
/**
|
|
@@ -1122,12 +1122,12 @@ export declare interface SchedulerDataChangeEvent {
|
|
|
1122
1122
|
/**
|
|
1123
1123
|
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler internal `data` reducer.
|
|
1124
1124
|
*
|
|
1125
|
-
* For more information, refer to the [Scheduler Context](
|
|
1125
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
1126
1126
|
*/
|
|
1127
1127
|
export declare const SchedulerDataContext: React_2.Context<SchedulerDataContextType>;
|
|
1128
1128
|
|
|
1129
1129
|
/**
|
|
1130
|
-
* Specifies the result of the [useSchedulerDataContext](
|
|
1130
|
+
* Specifies the result of the [useSchedulerDataContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerdatacontext) and [SchedulerDataContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdatacontext).
|
|
1131
1131
|
*/
|
|
1132
1132
|
export declare type SchedulerDataContextType = [DataItem[], (action: DataAction, event?: any) => void];
|
|
1133
1133
|
|
|
@@ -1135,7 +1135,7 @@ export declare type SchedulerDataContextType = [DataItem[], (action: DataAction,
|
|
|
1135
1135
|
* Fires every time the user changes the selected `date`.
|
|
1136
1136
|
* The value is a JavaScript `Date` object.
|
|
1137
1137
|
* For more information, refer to the article on
|
|
1138
|
-
* [date selection](
|
|
1138
|
+
* [date selection](https://www.telerik.com/kendo-react-ui/components/scheduler/date-selection).
|
|
1139
1139
|
*/
|
|
1140
1140
|
export declare interface SchedulerDateChangeEvent {
|
|
1141
1141
|
/**
|
|
@@ -1147,24 +1147,24 @@ export declare interface SchedulerDateChangeEvent {
|
|
|
1147
1147
|
/**
|
|
1148
1148
|
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler internal `date` state.
|
|
1149
1149
|
*
|
|
1150
|
-
* For more information, refer to the [Scheduler Context](
|
|
1150
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
1151
1151
|
*/
|
|
1152
1152
|
export declare const SchedulerDateContext: React_2.Context<SchedulerDateContextType>;
|
|
1153
1153
|
|
|
1154
1154
|
/**
|
|
1155
|
-
* Specifies the result of the [useSchedulerDateContext](
|
|
1155
|
+
* Specifies the result of the [useSchedulerDateContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerdatecontext) and [SchedulerDateContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdatecontext).
|
|
1156
1156
|
*/
|
|
1157
1157
|
export declare type SchedulerDateContextType = [Date, (date: Date, event?: any) => void];
|
|
1158
1158
|
|
|
1159
1159
|
/**
|
|
1160
1160
|
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the `dateRange` of the current view.
|
|
1161
1161
|
*
|
|
1162
|
-
* For more information, refer to the [Scheduler Context](
|
|
1162
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
1163
1163
|
*/
|
|
1164
1164
|
export declare const SchedulerDateRangeContext: React_2.Context<DateRange>;
|
|
1165
1165
|
|
|
1166
1166
|
/**
|
|
1167
|
-
* Specifies the result of the [useSchedulerDateRangeContext](
|
|
1167
|
+
* Specifies the result of the [useSchedulerDateRangeContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerdaterangecontext) and [SchedulerDateRangeContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdaterangecontext).
|
|
1168
1168
|
*/
|
|
1169
1169
|
export declare type SchedulerDateRangeContextType = DateRange;
|
|
1170
1170
|
|
|
@@ -1219,9 +1219,9 @@ export declare interface SchedulerDragProps {
|
|
|
1219
1219
|
}
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
|
-
* Represents the default `editItem` component rendered by the [KendoReact Scheduler component](
|
|
1222
|
+
* Represents the default `editItem` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
1223
1223
|
*
|
|
1224
|
-
* This is a composite component of the [`SchedulerViewItem`](
|
|
1224
|
+
* This is a composite component of the [`SchedulerViewItem`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewitem), extending it to provide editing through drag, resize and external form.
|
|
1225
1225
|
*/
|
|
1226
1226
|
export declare const SchedulerEditItem: React_2.ForwardRefExoticComponent<SchedulerEditItemProps & React_2.RefAttributes<SchedulerEditItemHandle>>;
|
|
1227
1227
|
|
|
@@ -1229,16 +1229,16 @@ export declare const SchedulerEditItem: React_2.ForwardRefExoticComponent<Schedu
|
|
|
1229
1229
|
* Represents the available SchedulerEditItem` actions.
|
|
1230
1230
|
*
|
|
1231
1231
|
* Can be one of:
|
|
1232
|
-
* - [SchedulerItemDragItemAction](
|
|
1233
|
-
* - [SchedulerItemResizeItemAction](
|
|
1234
|
-
* - [SchedulerItemRemoveItemAction](
|
|
1235
|
-
* - [SchedulerItemShowRemoveDialogAction](
|
|
1236
|
-
* - [SchedulerItemShowOccurrenceDialogAction](
|
|
1237
|
-
* - [SchedulerItemSeriesAction](
|
|
1238
|
-
* - [SchedulerItemsFocusAction](
|
|
1239
|
-
* - [SchedulerItemsSelectAction](
|
|
1240
|
-
* - [SchedulerSlotsFocusAction](
|
|
1241
|
-
* - [SchedulerSlotsSelectAction](
|
|
1232
|
+
* - [SchedulerItemDragItemAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemdragitemaction)
|
|
1233
|
+
* - [SchedulerItemResizeItemAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemresizeitemaction)
|
|
1234
|
+
* - [SchedulerItemRemoveItemAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemremoveitemaction)
|
|
1235
|
+
* - [SchedulerItemShowRemoveDialogAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemshowremovedialogaction)
|
|
1236
|
+
* - [SchedulerItemShowOccurrenceDialogAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemshowoccurrencedialogaction)
|
|
1237
|
+
* - [SchedulerItemSeriesAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemseriesaction)
|
|
1238
|
+
* - [SchedulerItemsFocusAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemsfocusaction)
|
|
1239
|
+
* - [SchedulerItemsSelectAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemsselectaction)
|
|
1240
|
+
* - [SchedulerSlotsFocusAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerslotsfocusaction)
|
|
1241
|
+
* - [SchedulerSlotsSelectAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerslotsselectaction)
|
|
1242
1242
|
*
|
|
1243
1243
|
* The following `falsy` values will be ignored:
|
|
1244
1244
|
* - `null`
|
|
@@ -1336,14 +1336,14 @@ export declare const schedulerEditItemDefaultProps: {
|
|
|
1336
1336
|
};
|
|
1337
1337
|
|
|
1338
1338
|
/**
|
|
1339
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](
|
|
1339
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `dragItem` state.
|
|
1340
1340
|
*
|
|
1341
|
-
* For more information, refer to the [Items Context](
|
|
1341
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1342
1342
|
*/
|
|
1343
1343
|
export declare const SchedulerEditItemDragItemContext: React_2.Context<SchedulerEditItemDragItemContextType>;
|
|
1344
1344
|
|
|
1345
1345
|
/**
|
|
1346
|
-
* Specifies the result of the [useSchedulerEditItemDragItemContext](
|
|
1346
|
+
* Specifies the result of the [useSchedulerEditItemDragItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemdragitemcontext) and [SchedulerEditItemDragItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemdragitemcontext).
|
|
1347
1347
|
*/
|
|
1348
1348
|
export declare type SchedulerEditItemDragItemContextType = [
|
|
1349
1349
|
DataItem | null,
|
|
@@ -1356,14 +1356,14 @@ DataItem | null,
|
|
|
1356
1356
|
];
|
|
1357
1357
|
|
|
1358
1358
|
/**
|
|
1359
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](
|
|
1359
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `formItem` state.
|
|
1360
1360
|
*
|
|
1361
|
-
* For more information, refer to the [Items Context](
|
|
1361
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1362
1362
|
*/
|
|
1363
1363
|
export declare const SchedulerEditItemFormItemContext: React_2.Context<SchedulerEditItemFormItemContextType>;
|
|
1364
1364
|
|
|
1365
1365
|
/**
|
|
1366
|
-
* Specifies the result of the [useSchedulerEditItemFormItemContext](
|
|
1366
|
+
* Specifies the result of the [useSchedulerEditItemFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemformitemcontext) and [SchedulerEditItemFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemformitemcontext).
|
|
1367
1367
|
*/
|
|
1368
1368
|
export declare type SchedulerEditItemFormItemContextType = [
|
|
1369
1369
|
DataItem | null,
|
|
@@ -1376,7 +1376,7 @@ DataItem | null,
|
|
|
1376
1376
|
];
|
|
1377
1377
|
|
|
1378
1378
|
/**
|
|
1379
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerEditItem](
|
|
1379
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem).
|
|
1380
1380
|
*
|
|
1381
1381
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
1382
1382
|
*/
|
|
@@ -1398,37 +1398,37 @@ export declare interface SchedulerEditItemProps extends SchedulerViewItemProps {
|
|
|
1398
1398
|
/**
|
|
1399
1399
|
* Overrides the default component responsible for positioning the item inside the view.
|
|
1400
1400
|
*
|
|
1401
|
-
* The default Component is: [SchedulerViewItem](
|
|
1401
|
+
* The default Component is: [SchedulerViewItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewitem).
|
|
1402
1402
|
*/
|
|
1403
1403
|
viewItem?: React_2.ComponentType<SchedulerViewItemProps>;
|
|
1404
1404
|
/**
|
|
1405
1405
|
* Overrides the default component responsible for visualizing the `dragItem`.
|
|
1406
1406
|
*
|
|
1407
|
-
* The default Component is: [SchedulerDrag](
|
|
1407
|
+
* The default Component is: [SchedulerDrag](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdrag).
|
|
1408
1408
|
*/
|
|
1409
1409
|
drag?: React_2.ComponentType<SchedulerDragProps>;
|
|
1410
1410
|
/**
|
|
1411
1411
|
* Overrides the default component responsible for visualizing the `resizeItem`.
|
|
1412
1412
|
*
|
|
1413
|
-
* The default Component is: [SchedulerResize](
|
|
1413
|
+
* The default Component is: [SchedulerResize](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerresize).
|
|
1414
1414
|
*/
|
|
1415
1415
|
resize?: React_2.ComponentType<SchedulerResizeProps>;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* Overrides the default component responsible for visualizing the `formItem`.
|
|
1418
1418
|
*
|
|
1419
|
-
* The default Component is: [SchedulerForm](
|
|
1419
|
+
* The default Component is: [SchedulerForm](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerform).
|
|
1420
1420
|
*/
|
|
1421
1421
|
form?: React_2.ComponentType<SchedulerFormProps>;
|
|
1422
1422
|
/**
|
|
1423
1423
|
* Overrides the default component responsible for visualizing the `removeItem` and confirming the `remove` action.
|
|
1424
1424
|
*
|
|
1425
|
-
* The default Component is: [SchedulerRemoveDialog](
|
|
1425
|
+
* The default Component is: [SchedulerRemoveDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerremovedialog).
|
|
1426
1426
|
*/
|
|
1427
1427
|
removeDialog?: React_2.ComponentType<SchedulerRemoveDialogProps>;
|
|
1428
1428
|
/**
|
|
1429
1429
|
* Overrides the default component responsible for the selection between `occurrence` and `series` edit.
|
|
1430
1430
|
*
|
|
1431
|
-
* The default Component is: [SchedulerOccurrenceDialog](
|
|
1431
|
+
* The default Component is: [SchedulerOccurrenceDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleroccurrencedialog).
|
|
1432
1432
|
*/
|
|
1433
1433
|
occurrenceDialog?: React_2.ComponentType<SchedulerOccurrenceDialogProps>;
|
|
1434
1434
|
/**
|
|
@@ -1648,26 +1648,26 @@ export declare interface SchedulerEditItemProps extends SchedulerViewItemProps {
|
|
|
1648
1648
|
}
|
|
1649
1649
|
|
|
1650
1650
|
/**
|
|
1651
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](
|
|
1651
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) `props`.
|
|
1652
1652
|
*
|
|
1653
|
-
* For more information, refer to the [Items Context](
|
|
1653
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1654
1654
|
*/
|
|
1655
1655
|
export declare const SchedulerEditItemPropsContext: React_2.Context<SchedulerEditItemProps>;
|
|
1656
1656
|
|
|
1657
1657
|
/**
|
|
1658
|
-
* Specifies the result of the [useSchedulerEditItemPropsContext](
|
|
1658
|
+
* Specifies the result of the [useSchedulerEditItemPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititempropscontext) and [SchedulerEditItemPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititempropscontext).
|
|
1659
1659
|
*/
|
|
1660
1660
|
export declare type SchedulerEditItemPropsContextType = SchedulerEditItemProps;
|
|
1661
1661
|
|
|
1662
1662
|
/**
|
|
1663
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](
|
|
1663
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `removeItem` state.
|
|
1664
1664
|
*
|
|
1665
|
-
* For more information, refer to the [Items Context](
|
|
1665
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1666
1666
|
*/
|
|
1667
1667
|
export declare const SchedulerEditItemRemoveItemContext: React_2.Context<SchedulerEditItemRemoveItemContextType>;
|
|
1668
1668
|
|
|
1669
1669
|
/**
|
|
1670
|
-
* Specifies the result of the [useSchedulerEditItemRemoveItemContext](
|
|
1670
|
+
* Specifies the result of the [useSchedulerEditItemRemoveItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemremoveitemcontext) and [SchedulerEditItemRemoveItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemremoveitemcontext).
|
|
1671
1671
|
*/
|
|
1672
1672
|
export declare type SchedulerEditItemRemoveItemContextType = [
|
|
1673
1673
|
DataItem | null,
|
|
@@ -1680,14 +1680,14 @@ DataItem | null,
|
|
|
1680
1680
|
];
|
|
1681
1681
|
|
|
1682
1682
|
/**
|
|
1683
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](
|
|
1683
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `resizeItem` state.
|
|
1684
1684
|
*
|
|
1685
|
-
* For more information, refer to the [Items Context](
|
|
1685
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1686
1686
|
*/
|
|
1687
1687
|
export declare const SchedulerEditItemResizeItemContext: React_2.Context<SchedulerEditItemResizeItemContextType>;
|
|
1688
1688
|
|
|
1689
1689
|
/**
|
|
1690
|
-
* Specifies the result of the [useSchedulerEditItemResizeItemContext](
|
|
1690
|
+
* Specifies the result of the [useSchedulerEditItemResizeItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemresizeitemcontext) and [SchedulerEditItemResizeItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemresizeitemcontext).
|
|
1691
1691
|
*/
|
|
1692
1692
|
export declare type SchedulerEditItemResizeItemContextType = [
|
|
1693
1693
|
DataItem | null,
|
|
@@ -1700,14 +1700,14 @@ DataItem | null,
|
|
|
1700
1700
|
];
|
|
1701
1701
|
|
|
1702
1702
|
/**
|
|
1703
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](
|
|
1703
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showOccurrenceDialog` state.
|
|
1704
1704
|
*
|
|
1705
|
-
* For more information, refer to the [Items Context](
|
|
1705
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1706
1706
|
*/
|
|
1707
1707
|
export declare const SchedulerEditItemShowOccurrenceDialogContext: React_2.Context<SchedulerEditItemShowOccurrenceDialogContextType>;
|
|
1708
1708
|
|
|
1709
1709
|
/**
|
|
1710
|
-
* Specifies the result of the [useSchedulerEditItemShowOccurrenceDialogContext](
|
|
1710
|
+
* Specifies the result of the [useSchedulerEditItemShowOccurrenceDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemshowoccurrencedialogcontext) and [SchedulerEditItemShowOccurrenceDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemshowoccurrencedialogcontext).
|
|
1711
1711
|
*/
|
|
1712
1712
|
export declare type SchedulerEditItemShowOccurrenceDialogContextType = [
|
|
1713
1713
|
boolean,
|
|
@@ -1720,14 +1720,14 @@ boolean,
|
|
|
1720
1720
|
];
|
|
1721
1721
|
|
|
1722
1722
|
/**
|
|
1723
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](
|
|
1723
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showRemoveDialog` state.
|
|
1724
1724
|
*
|
|
1725
|
-
* For more information, refer to the [Items Context](
|
|
1725
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1726
1726
|
*/
|
|
1727
1727
|
export declare const SchedulerEditItemShowRemoveDialogContext: React_2.Context<SchedulerEditItemShowRemoveDialogContextType>;
|
|
1728
1728
|
|
|
1729
1729
|
/**
|
|
1730
|
-
* Specifies the result of the [useSchedulerEditItemShowRemoveDialogContext](
|
|
1730
|
+
* Specifies the result of the [useSchedulerEditItemShowRemoveDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemshowremovedialogcontext) and [SchedulerEditItemShowRemoveDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemshowremovedialogcontext).
|
|
1731
1731
|
*/
|
|
1732
1732
|
export declare type SchedulerEditItemShowRemoveDialogContextType = [
|
|
1733
1733
|
boolean,
|
|
@@ -1785,9 +1785,9 @@ export declare interface SchedulerEditItemStateChangeEvent<T> {
|
|
|
1785
1785
|
}
|
|
1786
1786
|
|
|
1787
1787
|
/**
|
|
1788
|
-
* Represents the default `editSlot` component rendered by the [KendoReact Scheduler component](
|
|
1788
|
+
* Represents the default `editSlot` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
1789
1789
|
*
|
|
1790
|
-
* This is a composite component of the [`SchedulerViewSlot`](
|
|
1790
|
+
* This is a composite component of the [`SchedulerViewSlot`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewslot), extending it to allow creating an item inside the slot.
|
|
1791
1791
|
*/
|
|
1792
1792
|
export declare const SchedulerEditSlot: React_2.ForwardRefExoticComponent<SchedulerEditSlotProps & React_2.RefAttributes<SchedulerEditSlotHandle>>;
|
|
1793
1793
|
|
|
@@ -1797,19 +1797,19 @@ export declare const schedulerEditSlotDefaultProps: {
|
|
|
1797
1797
|
};
|
|
1798
1798
|
|
|
1799
1799
|
/**
|
|
1800
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditSlot](
|
|
1800
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) internal `formItem` state.
|
|
1801
1801
|
*
|
|
1802
|
-
* For more information, refer to the [Slots Context](
|
|
1802
|
+
* For more information, refer to the [Slots Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/slots/state-update) article.
|
|
1803
1803
|
*/
|
|
1804
1804
|
export declare const SchedulerEditSlotFormItemContext: React_2.Context<SchedulerEditSlotFormItemContextType>;
|
|
1805
1805
|
|
|
1806
1806
|
/**
|
|
1807
|
-
* Specifies the result of the [useSchedulerEditSlotFormItemContext](
|
|
1807
|
+
* Specifies the result of the [useSchedulerEditSlotFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulereditslotformitemcontext) and [SchedulerEditSlotFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslotformitemcontext).
|
|
1808
1808
|
*/
|
|
1809
1809
|
export declare type SchedulerEditSlotFormItemContextType = [DataItem | null, (event?: any) => void];
|
|
1810
1810
|
|
|
1811
1811
|
/**
|
|
1812
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerEditSlot](
|
|
1812
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot).
|
|
1813
1813
|
*
|
|
1814
1814
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
1815
1815
|
*/
|
|
@@ -1821,19 +1821,19 @@ export declare interface SchedulerEditSlotHandle {
|
|
|
1821
1821
|
}
|
|
1822
1822
|
|
|
1823
1823
|
/**
|
|
1824
|
-
* Represents the props of the KendoReact [SchedulerEditSlot](
|
|
1824
|
+
* Represents the props of the KendoReact [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) component.
|
|
1825
1825
|
*/
|
|
1826
1826
|
export declare interface SchedulerEditSlotProps extends SchedulerViewSlotProps {
|
|
1827
1827
|
/**
|
|
1828
1828
|
* Overrides the default component responsible for view-specific functionality.
|
|
1829
1829
|
*
|
|
1830
|
-
* The default Component is: [SchedulerViewSlot](
|
|
1830
|
+
* The default Component is: [SchedulerViewSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewslot).
|
|
1831
1831
|
*/
|
|
1832
1832
|
viewSlot?: React_2.ComponentType<SchedulerViewSlotProps>;
|
|
1833
1833
|
/**
|
|
1834
1834
|
* Overrides the default component responsible for visualizing the `formItem`.
|
|
1835
1835
|
*
|
|
1836
|
-
* The default Component is: [SchedulerForm](
|
|
1836
|
+
* The default Component is: [SchedulerForm](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerform).
|
|
1837
1837
|
*/
|
|
1838
1838
|
form?: React_2.ComponentType<SchedulerFormProps>;
|
|
1839
1839
|
/**
|
|
@@ -1851,21 +1851,21 @@ export declare interface SchedulerEditSlotProps extends SchedulerViewSlotProps {
|
|
|
1851
1851
|
}
|
|
1852
1852
|
|
|
1853
1853
|
/**
|
|
1854
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditSlot](
|
|
1854
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) `props`.
|
|
1855
1855
|
*
|
|
1856
|
-
* For more information, refer to the [Items Context](
|
|
1856
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
1857
1857
|
*/
|
|
1858
1858
|
export declare const SchedulerEditSlotPropsContext: React_2.Context<SchedulerEditSlotProps>;
|
|
1859
1859
|
|
|
1860
1860
|
/**
|
|
1861
|
-
* Specifies the result of the [useSchedulerEditSlotPropsContext](
|
|
1861
|
+
* Specifies the result of the [useSchedulerEditSlotPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulereditslotpropscontext) and [SchedulerEditSlotPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslotpropscontext).
|
|
1862
1862
|
*/
|
|
1863
1863
|
export declare type SchedulerEditSlotPropsContextType = SchedulerEditSlotProps;
|
|
1864
1864
|
|
|
1865
1865
|
/**
|
|
1866
|
-
* Represents the default `editTask` component rendered by the [KendoReact Scheduler component](
|
|
1866
|
+
* Represents the default `editTask` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
1867
1867
|
*
|
|
1868
|
-
* This is a composite component of the [`SchedulerViewTask`](
|
|
1868
|
+
* This is a composite component of the [`SchedulerViewTask`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewtask), extending it to provide the `remove` editing functionality.
|
|
1869
1869
|
*/
|
|
1870
1870
|
export declare const SchedulerEditTask: React_2.ForwardRefExoticComponent<SchedulerEditTaskProps & React_2.RefAttributes<SchedulerEditTaskHandle>>;
|
|
1871
1871
|
|
|
@@ -1876,7 +1876,7 @@ export declare const schedulerEditTaskDefaultProps: {
|
|
|
1876
1876
|
};
|
|
1877
1877
|
|
|
1878
1878
|
/**
|
|
1879
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerEditTask](
|
|
1879
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerEditTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredittask).
|
|
1880
1880
|
*
|
|
1881
1881
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
1882
1882
|
*/
|
|
@@ -1892,19 +1892,19 @@ export declare interface SchedulerEditTaskHandle {
|
|
|
1892
1892
|
}
|
|
1893
1893
|
|
|
1894
1894
|
/**
|
|
1895
|
-
* Represents the props of the KendoReact [SchedulerEditTask](
|
|
1895
|
+
* Represents the props of the KendoReact [SchedulerEditTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredittask) component.
|
|
1896
1896
|
*/
|
|
1897
1897
|
export declare interface SchedulerEditTaskProps extends SchedulerViewTaskProps {
|
|
1898
1898
|
/**
|
|
1899
1899
|
* Overrides the default component responsible for positioning the task inside the view.
|
|
1900
1900
|
*
|
|
1901
|
-
* The default Component is: [SchedulerViewTask](
|
|
1901
|
+
* The default Component is: [SchedulerViewTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewtask).
|
|
1902
1902
|
*/
|
|
1903
1903
|
viewTask?: React_2.ComponentType<SchedulerViewTaskProps>;
|
|
1904
1904
|
/**
|
|
1905
1905
|
* Overrides the default component responsible for visualizing the `removeItem` and confirming the `remove` action.
|
|
1906
1906
|
*
|
|
1907
|
-
* The default Component is: [SchedulerRemoveDialog](
|
|
1907
|
+
* The default Component is: [SchedulerRemoveDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerremovedialog).
|
|
1908
1908
|
*/
|
|
1909
1909
|
removeDialog?: React_2.ComponentType<SchedulerRemoveDialogProps>;
|
|
1910
1910
|
/**
|
|
@@ -1929,7 +1929,7 @@ export declare interface SchedulerEditTaskProps extends SchedulerViewTaskProps {
|
|
|
1929
1929
|
/**
|
|
1930
1930
|
* Overrides the default component responsible for the selection between `occurrence` and `series` delete.
|
|
1931
1931
|
*
|
|
1932
|
-
* The default Component is: [SchedulerOccurrenceDialog](
|
|
1932
|
+
* The default Component is: [SchedulerOccurrenceDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleroccurrencedialog).
|
|
1933
1933
|
*/
|
|
1934
1934
|
occurrenceDialog?: React_2.ComponentType<SchedulerOccurrenceDialogProps>;
|
|
1935
1935
|
/**
|
|
@@ -1947,24 +1947,24 @@ export declare interface SchedulerEditTaskProps extends SchedulerViewTaskProps {
|
|
|
1947
1947
|
}
|
|
1948
1948
|
|
|
1949
1949
|
/**
|
|
1950
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the combined default and custom [modelFields](
|
|
1950
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the combined default and custom [modelFields](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-modelfields) of the Scheduler.
|
|
1951
1951
|
*
|
|
1952
|
-
* For more information, refer to the [Scheduler Context](
|
|
1952
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
1953
1953
|
*/
|
|
1954
1954
|
export declare const SchedulerFieldsContext: React_2.Context<Fields>;
|
|
1955
1955
|
|
|
1956
1956
|
/**
|
|
1957
|
-
* Specifies the result of the [useSchedulerFieldsContext](
|
|
1957
|
+
* Specifies the result of the [useSchedulerFieldsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerfieldscontext) and [SchedulerFieldsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfieldscontext).
|
|
1958
1958
|
*/
|
|
1959
1959
|
export declare type SchedulerFieldsContextType = Fields;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
|
-
* Represents the default `footer` component rendered by the [KendoReact Scheduler component](
|
|
1962
|
+
* Represents the default `footer` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
1963
1963
|
*/
|
|
1964
1964
|
export declare const SchedulerFooter: React_2.ForwardRefExoticComponent<SchedulerFooterProps & React_2.RefAttributes<SchedulerFooterHandle>>;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerFooter](
|
|
1967
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerFooter](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfooter).
|
|
1968
1968
|
*
|
|
1969
1969
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
1970
1970
|
*/
|
|
@@ -1980,7 +1980,7 @@ export declare interface SchedulerFooterHandle {
|
|
|
1980
1980
|
}
|
|
1981
1981
|
|
|
1982
1982
|
/**
|
|
1983
|
-
* Represents the props of the KendoReact [SchedulerFooter](
|
|
1983
|
+
* Represents the props of the KendoReact [SchedulerFooter](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfooter) component.
|
|
1984
1984
|
*/
|
|
1985
1985
|
export declare interface SchedulerFooterProps extends ToolbarProps {
|
|
1986
1986
|
/**
|
|
@@ -1990,9 +1990,9 @@ export declare interface SchedulerFooterProps extends ToolbarProps {
|
|
|
1990
1990
|
}
|
|
1991
1991
|
|
|
1992
1992
|
/**
|
|
1993
|
-
* Represents the default `form` component rendered by the [SchedulerEditItem](
|
|
1993
|
+
* Represents the default `form` component rendered by the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem) and [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) components.
|
|
1994
1994
|
*
|
|
1995
|
-
* Accepts [SchedulerFormProps](
|
|
1995
|
+
* Accepts [SchedulerFormProps](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerformprops) properties and provide [SchedulerFormHandle](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerformhandle) `ref` callback.
|
|
1996
1996
|
*/
|
|
1997
1997
|
export declare const SchedulerForm: React_2.ForwardRefExoticComponent<SchedulerFormProps & React_2.RefAttributes<SchedulerFormHandle | null>>;
|
|
1998
1998
|
|
|
@@ -2002,9 +2002,9 @@ export declare const schedulerFormDefaultProps: {
|
|
|
2002
2002
|
};
|
|
2003
2003
|
|
|
2004
2004
|
/**
|
|
2005
|
-
* The default `editor` used inside the [`SchedulerForm`](
|
|
2005
|
+
* The default `editor` used inside the [`SchedulerForm`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerform) component.
|
|
2006
2006
|
*
|
|
2007
|
-
* For the full list of the props available for this component, please refer to the [SchedulerFormEditorProps](
|
|
2007
|
+
* For the full list of the props available for this component, please refer to the [SchedulerFormEditorProps](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerformeditorprops).
|
|
2008
2008
|
*/
|
|
2009
2009
|
export declare const SchedulerFormEditor: React_2.ForwardRefExoticComponent<globalThis.Omit<SchedulerFormEditorProps, "ref"> & React_2.RefAttributes<SchedulerFormEditorHandle | null>>;
|
|
2010
2010
|
|
|
@@ -2279,149 +2279,149 @@ export declare interface SchedulerFormEditorProps extends Omit_2<FormElementProp
|
|
|
2279
2279
|
tabIndex?: number;
|
|
2280
2280
|
/**
|
|
2281
2281
|
* Overrides the component used for visualizing the `title` field label.
|
|
2282
|
-
* The [KendoReact Label](
|
|
2282
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2283
2283
|
*
|
|
2284
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2284
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2285
2285
|
*/
|
|
2286
2286
|
titleLabel?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2287
2287
|
/**
|
|
2288
2288
|
* Overrides the component used for visualizing the `title` field error.
|
|
2289
|
-
* The [KendoReact Error](
|
|
2289
|
+
* The [KendoReact Error](https://www.telerik.com/kendo-react-ui/components/labels/error) component is used, by default.
|
|
2290
2290
|
*
|
|
2291
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2291
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2292
2292
|
*/
|
|
2293
2293
|
titleError?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2294
2294
|
/**
|
|
2295
2295
|
* Overrides the component used for visualizing the `title` field editor.
|
|
2296
|
-
* The [KendoReact Input](
|
|
2296
|
+
* The [KendoReact Input](https://www.telerik.com/kendo-react-ui/components/inputs/input) component is used, by default.
|
|
2297
2297
|
*
|
|
2298
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2298
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2299
2299
|
*/
|
|
2300
2300
|
titleEditor?: React_2.ComponentType<TargetlessChangeEvent<InputProps & FieldProps, string>>;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* Overrides the component used for visualizing the `start` field label.
|
|
2303
|
-
* The [KendoReact Label](
|
|
2303
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2304
2304
|
*
|
|
2305
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2305
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2306
2306
|
*/
|
|
2307
2307
|
startLabel?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2308
2308
|
/**
|
|
2309
2309
|
* Overrides the component used for visualizing the `start` field error.
|
|
2310
|
-
* The [KendoReact Error](
|
|
2310
|
+
* The [KendoReact Error](https://www.telerik.com/kendo-react-ui/components/labels/error) component is used, by default.
|
|
2311
2311
|
*
|
|
2312
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2312
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2313
2313
|
*/
|
|
2314
2314
|
startError?: React_2.ComponentType<ErrorProps & FieldProps>;
|
|
2315
2315
|
/**
|
|
2316
2316
|
* Overrides the component used for visualizing the `start` field editor.
|
|
2317
|
-
* The [KendoReact DatePicker](
|
|
2317
|
+
* The [KendoReact DatePicker](https://www.telerik.com/kendo-react-ui/components/dateinputs/datepicker) or [KendoReact DateTimePicker](https://www.telerik.com/kendo-react-ui/components/dateinputs/datetimepicker) component is used by default depending on the `allDay` field value.
|
|
2318
2318
|
*
|
|
2319
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2319
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2320
2320
|
*/
|
|
2321
2321
|
startEditor?: React_2.ComponentType<TargetlessChangeEvent<ZonedDateTimeProps & FieldProps, Date>>;
|
|
2322
2322
|
/**
|
|
2323
2323
|
* Overrides the component used for visualizing the `start timezone` field label.
|
|
2324
|
-
* The [KendoReact Label](
|
|
2324
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2325
2325
|
*
|
|
2326
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2326
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2327
2327
|
*/
|
|
2328
2328
|
startTimezoneLabel?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* Overrides the component used for visualizing the `start timezone` field error.
|
|
2331
|
-
* The [KendoReact Error](
|
|
2331
|
+
* The [KendoReact Error](https://www.telerik.com/kendo-react-ui/components/labels/error) component is used, by default.
|
|
2332
2332
|
*
|
|
2333
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2333
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2334
2334
|
*/
|
|
2335
2335
|
startTimezoneError?: React_2.ComponentType<ErrorProps & FieldProps>;
|
|
2336
2336
|
/**
|
|
2337
2337
|
* Overrides the component used for visualizing the `start timezone` field editor.
|
|
2338
|
-
* An extended [KendoReact ComboBox](
|
|
2338
|
+
* An extended [KendoReact ComboBox](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox) component is used, by default.
|
|
2339
2339
|
*
|
|
2340
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2340
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2341
2341
|
*/
|
|
2342
2342
|
startTimezoneEditor?: React_2.ComponentType<TargetlessChangeEvent<ComboBoxProps & FieldProps, string>>;
|
|
2343
2343
|
/**
|
|
2344
2344
|
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
2345
|
-
* The [KendoReact Label](
|
|
2345
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2346
2346
|
*
|
|
2347
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2347
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2348
2348
|
*/
|
|
2349
2349
|
startTimezoneCheckedLabel?: React_2.ComponentType<LabelProps>;
|
|
2350
2350
|
/**
|
|
2351
2351
|
* Overrides the component used for visualizing the `start timezone checked` editor.
|
|
2352
|
-
* The [KendoReact Checkbox](
|
|
2352
|
+
* The [KendoReact Checkbox](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox) component is used, by default.
|
|
2353
2353
|
*
|
|
2354
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2354
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2355
2355
|
*/
|
|
2356
2356
|
startTimezoneCheckedEditor?: React_2.ComponentType<TargetlessChangeEvent<CheckboxProps, boolean>>;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* Overrides the component used for visualizing the `end` field label.
|
|
2359
|
-
* The [KendoReact Label](
|
|
2359
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2360
2360
|
*
|
|
2361
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2361
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2362
2362
|
*/
|
|
2363
2363
|
endLabel?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* Overrides the component used for visualizing the `end` field error.
|
|
2366
|
-
* The [KendoReact Error](
|
|
2366
|
+
* The [KendoReact Error](https://www.telerik.com/kendo-react-ui/components/labels/error) component is used, by default.
|
|
2367
2367
|
*
|
|
2368
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2368
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2369
2369
|
*/
|
|
2370
2370
|
endError?: React_2.ComponentType<ErrorProps & FieldProps>;
|
|
2371
2371
|
/**
|
|
2372
2372
|
* Overrides the component used for visualizing the `end` field editor.
|
|
2373
|
-
* The [KendoReact DatePicker](
|
|
2373
|
+
* The [KendoReact DatePicker](https://www.telerik.com/kendo-react-ui/components/dateinputs/datepicker) or [KendoReact DateTimePicker](https://www.telerik.com/kendo-react-ui/components/dateinputs/datetimepicker) component is used by default depending on the `allDay` field value.
|
|
2374
2374
|
*
|
|
2375
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2375
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2376
2376
|
*/
|
|
2377
2377
|
endEditor?: React_2.ComponentType<TargetlessChangeEvent<ZonedDateTimeProps & FieldProps, Date>>;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* Overrides the component used for visualizing the `end timezone` field label.
|
|
2380
|
-
* The [KendoReact Label](
|
|
2380
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2381
2381
|
*
|
|
2382
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2382
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2383
2383
|
*/
|
|
2384
2384
|
endTimezoneLabel?: React_2.ComponentType<LabelProps>;
|
|
2385
2385
|
/**
|
|
2386
2386
|
* Overrides the component used for visualizing the `end timezone` field error.
|
|
2387
|
-
* The [KendoReact Error](
|
|
2387
|
+
* The [KendoReact Error](https://www.telerik.com/kendo-react-ui/components/labels/error) component is used, by default.
|
|
2388
2388
|
*
|
|
2389
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2389
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2390
2390
|
*/
|
|
2391
2391
|
endTimezoneError?: React_2.ComponentType<ErrorProps>;
|
|
2392
2392
|
/**
|
|
2393
2393
|
* Overrides the component used for visualizing the `end timezone` field editor.
|
|
2394
|
-
* An extended [KendoReact ComboBox](
|
|
2394
|
+
* An extended [KendoReact ComboBox](https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox) component is used, by default.
|
|
2395
2395
|
*
|
|
2396
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2396
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2397
2397
|
*/
|
|
2398
2398
|
endTimezoneEditor?: React_2.ComponentType<TargetlessChangeEvent<ComboBoxProps, string>>;
|
|
2399
2399
|
/**
|
|
2400
2400
|
* Overrides the component used for visualizing the `start timezone checked` label.
|
|
2401
|
-
* The [KendoReact Label](
|
|
2401
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2402
2402
|
*
|
|
2403
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2403
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2404
2404
|
*/
|
|
2405
2405
|
endTimezoneCheckedLabel?: React_2.ComponentType<LabelProps>;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* Overrides the component used for visualizing the `end timezone checked` editor.
|
|
2408
|
-
* The [KendoReact Checkbox](
|
|
2408
|
+
* The [KendoReact Checkbox](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox) component is used, by default.
|
|
2409
2409
|
*
|
|
2410
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2410
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2411
2411
|
*/
|
|
2412
2412
|
endTimezoneCheckedEditor?: React_2.ComponentType<TargetlessChangeEvent<CheckboxProps, boolean>>;
|
|
2413
2413
|
/**
|
|
2414
2414
|
* Overrides the component used for visualizing the `allDay` field label.
|
|
2415
|
-
* The [KendoReact Label](
|
|
2415
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2416
2416
|
*
|
|
2417
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2417
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2418
2418
|
*/
|
|
2419
2419
|
allDayLabel?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2420
2420
|
/**
|
|
2421
2421
|
* Overrides the component used for visualizing the `allDay` field editor.
|
|
2422
|
-
* The [KendoReact Checkbox](
|
|
2422
|
+
* The [KendoReact Checkbox](https://www.telerik.com/kendo-react-ui/components/inputs/checkbox) component is used, by default.
|
|
2423
2423
|
*
|
|
2424
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2424
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2425
2425
|
*/
|
|
2426
2426
|
allDayEditor?: React_2.ComponentType<TargetlessChangeEvent<CheckboxProps & FieldProps, boolean>>;
|
|
2427
2427
|
/**
|
|
@@ -2430,49 +2430,49 @@ export declare interface SchedulerFormEditorProps extends Omit_2<FormElementProp
|
|
|
2430
2430
|
*
|
|
2431
2431
|
* > We're planing on releasing the `RecurrenceEditor` as a standalone component in the future.
|
|
2432
2432
|
*
|
|
2433
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2433
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2434
2434
|
*/
|
|
2435
2435
|
recurrenceEditor?: React_2.ComponentType<TargetlessChangeEvent<FieldProps, string>>;
|
|
2436
2436
|
/**
|
|
2437
2437
|
* Overrides the component used for visualizing the `description` field label.
|
|
2438
|
-
* The [KendoReact Label](
|
|
2438
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2439
2439
|
*
|
|
2440
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2440
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2441
2441
|
*/
|
|
2442
2442
|
descriptionLabel?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2443
2443
|
/**
|
|
2444
2444
|
* Overrides the component used for visualizing the `description` field error.
|
|
2445
|
-
* The [KendoReact Error](
|
|
2445
|
+
* The [KendoReact Error](https://www.telerik.com/kendo-react-ui/components/labels/error) component is used, by default.
|
|
2446
2446
|
*
|
|
2447
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2447
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2448
2448
|
*/
|
|
2449
2449
|
descriptionError?: React_2.ComponentType<ErrorProps & FieldProps>;
|
|
2450
2450
|
/**
|
|
2451
2451
|
* Overrides the component used for visualizing the `description` field editor.
|
|
2452
|
-
* The [KendoReact TextArea](
|
|
2452
|
+
* The [KendoReact TextArea](https://www.telerik.com/kendo-react-ui/components/inputs/textarea) component is used, by default.
|
|
2453
2453
|
*
|
|
2454
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2454
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2455
2455
|
*/
|
|
2456
2456
|
descriptionEditor?: React_2.ComponentType<TargetlessChangeEvent<TextAreaProps & FieldProps, string>>;
|
|
2457
2457
|
/**
|
|
2458
2458
|
* Overrides the component used for visualizing the `start timezone checked` field label.
|
|
2459
|
-
* The [KendoReact Label](
|
|
2459
|
+
* The [KendoReact Label](https://www.telerik.com/kendo-react-ui/components/labels/label) component is used, by default.
|
|
2460
2460
|
*
|
|
2461
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2461
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2462
2462
|
*/
|
|
2463
2463
|
resourceLabel?: React_2.ComponentType<LabelProps & FieldProps>;
|
|
2464
2464
|
/**
|
|
2465
2465
|
* Overrides the component used for visualizing each `resources` field error.
|
|
2466
|
-
* The [KendoReact Error](
|
|
2466
|
+
* The [KendoReact Error](https://www.telerik.com/kendo-react-ui/components/labels/error) component is used, by default.
|
|
2467
2467
|
*
|
|
2468
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2468
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2469
2469
|
*/
|
|
2470
2470
|
resourcesError?: React_2.ComponentType<ErrorProps & FieldProps>;
|
|
2471
2471
|
/**
|
|
2472
2472
|
* Overrides the component used for visualizing each `resource` field editor.
|
|
2473
|
-
* An extended KendoReact [MultiSelect](
|
|
2473
|
+
* An extended KendoReact [MultiSelect](https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect) or [DropDownList](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist) component is used by default, depending on the `multiple` field of each individual `resource`.
|
|
2474
2474
|
*
|
|
2475
|
-
* For more information, please refer to the [`Scheduler Form Editor Customization`](
|
|
2475
|
+
* For more information, please refer to the [`Scheduler Form Editor Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/editor) article.
|
|
2476
2476
|
*/
|
|
2477
2477
|
resourceEditor?: React_2.ComponentType<TargetlessChangeEvent<(MultiSelectProps | DropDownListProps) & FieldProps, any>>;
|
|
2478
2478
|
}
|
|
@@ -2488,7 +2488,7 @@ export declare interface SchedulerFormHandle {
|
|
|
2488
2488
|
}
|
|
2489
2489
|
|
|
2490
2490
|
/**
|
|
2491
|
-
* Represents the props of the KendoReact [SchedulerForm](
|
|
2491
|
+
* Represents the props of the KendoReact [SchedulerForm](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerform) component.
|
|
2492
2492
|
*/
|
|
2493
2493
|
export declare interface SchedulerFormProps extends Omit_2<FormProps, 'render' | 'onSubmit'> {
|
|
2494
2494
|
/**
|
|
@@ -2498,7 +2498,7 @@ export declare interface SchedulerFormProps extends Omit_2<FormProps, 'render' |
|
|
|
2498
2498
|
/**
|
|
2499
2499
|
* The Form content that will be rendered. The default rendering includes a `dialog` and `editor`.
|
|
2500
2500
|
*
|
|
2501
|
-
* For more information about customizing some parts of the default rendering please refer to the [SchedulerForm Customization](
|
|
2501
|
+
* For more information about customizing some parts of the default rendering please refer to the [SchedulerForm Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/overview) article.
|
|
2502
2502
|
*/
|
|
2503
2503
|
render?: (props: FormRenderProps) => any;
|
|
2504
2504
|
/**
|
|
@@ -2515,16 +2515,16 @@ export declare interface SchedulerFormProps extends Omit_2<FormProps, 'render' |
|
|
|
2515
2515
|
onSubmit: (event: SchedulerFormStateChangeEvent<any>) => void;
|
|
2516
2516
|
/**
|
|
2517
2517
|
* Overrides the component used for visualizing the `editor`.
|
|
2518
|
-
* The [SchedulerFormEditor](
|
|
2518
|
+
* The [SchedulerFormEditor](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerformeditor) component is used, by default.
|
|
2519
2519
|
*
|
|
2520
|
-
* For more information, please refer to the [`Scheduler Form Customization`](
|
|
2520
|
+
* For more information, please refer to the [`Scheduler Form Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/overview) article.
|
|
2521
2521
|
*/
|
|
2522
2522
|
editor?: React_2.ComponentType<SchedulerFormEditorProps>;
|
|
2523
2523
|
/**
|
|
2524
2524
|
* Overrides the component used for visualizing the `dialog`.
|
|
2525
|
-
* The [KendoReact Dialog](
|
|
2525
|
+
* The [KendoReact Dialog](https://www.telerik.com/kendo-react-ui/components/dialogs/api/dialog) component is used, by default.
|
|
2526
2526
|
*
|
|
2527
|
-
* For more information, please refer to the [`Scheduler Form Customization`](
|
|
2527
|
+
* For more information, please refer to the [`Scheduler Form Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/overview) article.
|
|
2528
2528
|
*/
|
|
2529
2529
|
dialog?: React_2.ComponentType<DialogProps>;
|
|
2530
2530
|
}
|
|
@@ -2559,14 +2559,14 @@ export declare interface SchedulerGroup {
|
|
|
2559
2559
|
}
|
|
2560
2560
|
|
|
2561
2561
|
/**
|
|
2562
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler `Group` object, calculated based on the [group](
|
|
2562
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler `Group` object, calculated based on the [group](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-group) and [resources](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-resources).
|
|
2563
2563
|
*
|
|
2564
|
-
* For more information, refer to the [Scheduler Context](
|
|
2564
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
2565
2565
|
*/
|
|
2566
2566
|
export declare const SchedulerGroupsContext: React_2.Context<SchedulerGroupsContextType>;
|
|
2567
2567
|
|
|
2568
2568
|
/**
|
|
2569
|
-
* Specifies the result of the [useSchedulerGroupsContext](
|
|
2569
|
+
* Specifies the result of the [useSchedulerGroupsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulergroupscontext) and [SchedulerGroupsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulergroupscontext).
|
|
2570
2570
|
*/
|
|
2571
2571
|
export declare type SchedulerGroupsContextType = Group[];
|
|
2572
2572
|
|
|
@@ -2585,12 +2585,12 @@ export declare interface SchedulerHandle {
|
|
|
2585
2585
|
}
|
|
2586
2586
|
|
|
2587
2587
|
/**
|
|
2588
|
-
* Represents the default `header` component rendered by the [KendoReact Scheduler component](
|
|
2588
|
+
* Represents the default `header` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
2589
2589
|
*/
|
|
2590
2590
|
export declare const SchedulerHeader: React_2.ForwardRefExoticComponent<SchedulerHeaderProps & React_2.RefAttributes<SchedulerHeaderHandle>>;
|
|
2591
2591
|
|
|
2592
2592
|
/**
|
|
2593
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerHeader](
|
|
2593
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerHeader](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerheader).
|
|
2594
2594
|
*
|
|
2595
2595
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
2596
2596
|
*/
|
|
@@ -2613,17 +2613,17 @@ export declare interface SchedulerHeaderProps extends ToolbarProps {
|
|
|
2613
2613
|
}
|
|
2614
2614
|
|
|
2615
2615
|
/**
|
|
2616
|
-
* Represents the default `item` component rendered by the [KendoReact Scheduler component](
|
|
2616
|
+
* Represents the default `item` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
2617
2617
|
*/
|
|
2618
2618
|
export declare const SchedulerItem: React_2.ForwardRefExoticComponent<SchedulerItemProps & React_2.RefAttributes<SchedulerItemHandle>>;
|
|
2619
2619
|
|
|
2620
2620
|
/**
|
|
2621
|
-
* A component which applies the necessary `className` for correct styling of child elements inside the [SchedulerItem](
|
|
2621
|
+
* A component which applies the necessary `className` for correct styling of child elements inside the [SchedulerItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritem)
|
|
2622
2622
|
*/
|
|
2623
2623
|
export declare const SchedulerItemContent: React_2.ForwardRefExoticComponent<SchedulerItemContentProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
2624
2624
|
|
|
2625
2625
|
/**
|
|
2626
|
-
* Represents the props of the [SchedulerItemContent](
|
|
2626
|
+
* Represents the props of the [SchedulerItemContent](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritemcontent) component.
|
|
2627
2627
|
* Extends the [native `div` props`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement).
|
|
2628
2628
|
*/
|
|
2629
2629
|
export declare interface SchedulerItemContentProps extends React_2.HTMLAttributes<HTMLDivElement> {
|
|
@@ -2666,7 +2666,7 @@ declare type SchedulerItemFormItemAction = {
|
|
|
2666
2666
|
};
|
|
2667
2667
|
|
|
2668
2668
|
/**
|
|
2669
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerItem](
|
|
2669
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritem).
|
|
2670
2670
|
*
|
|
2671
2671
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
2672
2672
|
*/
|
|
@@ -2704,7 +2704,7 @@ export declare interface SchedulerItemMouseEvent {
|
|
|
2704
2704
|
}
|
|
2705
2705
|
|
|
2706
2706
|
/**
|
|
2707
|
-
* Represents the props of the KendoReact [SchedulerItem](
|
|
2707
|
+
* Represents the props of the KendoReact [SchedulerItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritem) component.
|
|
2708
2708
|
*/
|
|
2709
2709
|
export declare interface SchedulerItemProps extends Item {
|
|
2710
2710
|
/**
|
|
@@ -2774,7 +2774,7 @@ export declare interface SchedulerItemProps extends Item {
|
|
|
2774
2774
|
/**
|
|
2775
2775
|
* Specifies the `format` in which the `zonedStart` and `zonedEnd` properties are displayed.
|
|
2776
2776
|
*
|
|
2777
|
-
* For more information, refer to the [formatDate](
|
|
2777
|
+
* For more information, refer to the [formatDate](https://www.telerik.com/kendo-react-ui/components/intl/api/intlservice#toc-formatdate) method of the [IntlService](https://www.telerik.com/kendo-react-ui/components/intl).
|
|
2778
2778
|
*/
|
|
2779
2779
|
format?: string;
|
|
2780
2780
|
/**
|
|
@@ -2838,50 +2838,50 @@ export declare interface SchedulerItemProps extends Item {
|
|
|
2838
2838
|
/**
|
|
2839
2839
|
* Fires each time the element receives a `press` event.
|
|
2840
2840
|
*
|
|
2841
|
-
* This event is used by the [`Drag & Drop`](
|
|
2842
|
-
* The SchedulerItem uses the [KendoReactDraggable](
|
|
2841
|
+
* This event is used by the [`Drag & Drop`](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) functionality of the SchedulerItem.
|
|
2842
|
+
* The SchedulerItem uses the [KendoReactDraggable](https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/draggable) instead of the `onDragStart` callback.
|
|
2843
2843
|
*/
|
|
2844
2844
|
onPress?: (event: SchedulerItemDragEvent) => void;
|
|
2845
2845
|
/**
|
|
2846
2846
|
* Fires each time the element is dragged.
|
|
2847
2847
|
*
|
|
2848
|
-
* This event is used by the [`Drag & Drop`](
|
|
2849
|
-
* The SchedulerItem uses the [KendoReactDraggable](
|
|
2848
|
+
* This event is used by the [`Drag & Drop`](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) functionality of the SchedulerItem.
|
|
2849
|
+
* The SchedulerItem uses the [KendoReactDraggable](https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/draggable) instead of the `onDrag` callback.
|
|
2850
2850
|
*/
|
|
2851
2851
|
onDrag?: (event: SchedulerItemDragEvent) => void;
|
|
2852
2852
|
/**
|
|
2853
2853
|
* Fires when you release the dragged element.
|
|
2854
2854
|
*
|
|
2855
|
-
* This event is used by the [`Drag & Drop`](
|
|
2856
|
-
* The SchedulerItem uses the [KendoReactDraggable](
|
|
2855
|
+
* This event is used by the [`Drag & Drop`](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) functionality of the SchedulerItem.
|
|
2856
|
+
* The SchedulerItem uses the [KendoReactDraggable](https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/draggable) instead of the `onDragEnd` callback.
|
|
2857
2857
|
*/
|
|
2858
2858
|
onRelease?: (event: SchedulerItemDragEvent) => void;
|
|
2859
2859
|
/**
|
|
2860
2860
|
* Fires each time any of the resize handlers receives a `press` event.
|
|
2861
2861
|
*
|
|
2862
|
-
* This event is used by the [`Resize`](
|
|
2863
|
-
* The SchedulerItem uses the [KendoReactDraggable](
|
|
2862
|
+
* This event is used by the [`Resize`](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) functionality of the SchedulerItem.
|
|
2863
|
+
* The SchedulerItem uses the [KendoReactDraggable](https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/draggable) instead of the `onDragStart` callback.
|
|
2864
2864
|
*/
|
|
2865
2865
|
onResizePress?: (event: SchedulerItemDragEvent) => void;
|
|
2866
2866
|
/**
|
|
2867
2867
|
* Fires each time the resize handler responsible for the item `start` is being dragged.
|
|
2868
2868
|
*
|
|
2869
|
-
* This event is used by the [`Resize`](
|
|
2870
|
-
* The SchedulerItem uses the [KendoReactDraggable](
|
|
2869
|
+
* This event is used by the [`Resize`](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) functionality of the SchedulerItem.
|
|
2870
|
+
* The SchedulerItem uses the [KendoReactDraggable](https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/draggable) instead of the `onDrag` callback.
|
|
2871
2871
|
*/
|
|
2872
2872
|
onResizeStartDrag?: (event: SchedulerItemDragEvent) => void;
|
|
2873
2873
|
/**
|
|
2874
2874
|
* Fires each time the resize handler responsible for the item `end` is being dragged.
|
|
2875
2875
|
*
|
|
2876
|
-
* This event is used by the [`Resize`](
|
|
2877
|
-
* The SchedulerItem uses the [KendoReactDraggable](
|
|
2876
|
+
* This event is used by the [`Resize`](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) functionality of the SchedulerItem.
|
|
2877
|
+
* The SchedulerItem uses the [KendoReactDraggable](https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/draggable) instead of the `onDrag` callback.
|
|
2878
2878
|
*/
|
|
2879
2879
|
onResizeEndDrag?: (event: SchedulerItemDragEvent) => void;
|
|
2880
2880
|
/**
|
|
2881
2881
|
* Fires when you release the dragged resize handler.
|
|
2882
2882
|
*
|
|
2883
|
-
* This event is used by the [`Resize`](
|
|
2884
|
-
* The SchedulerItem uses the [KendoReactDraggable](
|
|
2883
|
+
* This event is used by the [`Resize`](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) functionality of the SchedulerItem.
|
|
2884
|
+
* The SchedulerItem uses the [KendoReactDraggable](https://www.telerik.com/kendo-react-ui/components/common/drag-and-drop/draggable) instead of the `onDragEnd` callback.
|
|
2885
2885
|
*/
|
|
2886
2886
|
onResizeRelease?: (event: SchedulerItemDragEvent) => void;
|
|
2887
2887
|
/** @hidden */
|
|
@@ -3042,7 +3042,7 @@ export declare interface SchedulerModelFields {
|
|
|
3042
3042
|
}
|
|
3043
3043
|
|
|
3044
3044
|
/**
|
|
3045
|
-
* Represents the default `occurrenceDialog` component rendered by the [KendoReact SchedulerEditItem component](
|
|
3045
|
+
* Represents the default `occurrenceDialog` component rendered by the [KendoReact SchedulerEditItem component](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem).
|
|
3046
3046
|
*/
|
|
3047
3047
|
export declare const SchedulerOccurrenceDialog: React_2.ForwardRefExoticComponent<SchedulerOccurrenceDialogProps & React_2.RefAttributes<SchedulerOccurrenceDialogHandle | null>>;
|
|
3048
3048
|
|
|
@@ -3054,7 +3054,7 @@ export declare type SchedulerOccurrenceDialogHandle = {
|
|
|
3054
3054
|
};
|
|
3055
3055
|
|
|
3056
3056
|
/**
|
|
3057
|
-
* Represents the props of the KendoReact [SchedulerOccurrenceDialog](
|
|
3057
|
+
* Represents the props of the KendoReact [SchedulerOccurrenceDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleroccurrencedialog) component.
|
|
3058
3058
|
*/
|
|
3059
3059
|
export declare interface SchedulerOccurrenceDialogProps {
|
|
3060
3060
|
/**
|
|
@@ -3097,19 +3097,19 @@ export declare interface SchedulerOccurrenceDialogStateChangeEvent<T> {
|
|
|
3097
3097
|
/**
|
|
3098
3098
|
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the grouping orientation of the Scheduler.
|
|
3099
3099
|
*
|
|
3100
|
-
* For more information, refer to the [Scheduler Context](
|
|
3100
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
3101
3101
|
*/
|
|
3102
3102
|
export declare const SchedulerOrientationContext: React_2.Context<Orientation>;
|
|
3103
3103
|
|
|
3104
3104
|
/**
|
|
3105
|
-
* Specifies the result of the [useSchedulerOrientationContext](
|
|
3105
|
+
* Specifies the result of the [useSchedulerOrientationContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerorientationcontext) and [SchedulerOrientationContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerorientationcontext).
|
|
3106
3106
|
*/
|
|
3107
3107
|
export declare type SchedulerOrientationContextType = Orientation;
|
|
3108
3108
|
|
|
3109
3109
|
/**
|
|
3110
3110
|
* Represents a customized `viewItem` component which position itself proportionally to the duration of the item.
|
|
3111
3111
|
*
|
|
3112
|
-
* This is a composite component of the [`SchedulerItem`](
|
|
3112
|
+
* This is a composite component of the [`SchedulerItem`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritem), extending it to provide extended positioning inside a view.
|
|
3113
3113
|
*/
|
|
3114
3114
|
export declare const SchedulerProportionalViewItem: React_2.ForwardRefExoticComponent<SchedulerViewItemProps & React_2.RefAttributes<SchedulerViewItemHandle>>;
|
|
3115
3115
|
|
|
@@ -3118,7 +3118,7 @@ export declare const schedulerProportionalViewItemDefaultProps: {
|
|
|
3118
3118
|
};
|
|
3119
3119
|
|
|
3120
3120
|
/**
|
|
3121
|
-
* Represents the props of the [KendoReact Scheduler component](
|
|
3121
|
+
* Represents the props of the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
3122
3122
|
*/
|
|
3123
3123
|
export declare interface SchedulerProps {
|
|
3124
3124
|
/**
|
|
@@ -3144,7 +3144,7 @@ export declare interface SchedulerProps {
|
|
|
3144
3144
|
/**
|
|
3145
3145
|
* Specifies the `role` attribute of the Scheduler wrapping element.
|
|
3146
3146
|
*
|
|
3147
|
-
* For more information, refer to the [Scheduler Accessibility Compliance](
|
|
3147
|
+
* For more information, refer to the [Scheduler Accessibility Compliance](https://www.telerik.com/kendo-react-ui/components/scheduler/accessibility/wai-aria-support) article.
|
|
3148
3148
|
*
|
|
3149
3149
|
* @example
|
|
3150
3150
|
* ```jsx
|
|
@@ -3155,7 +3155,7 @@ export declare interface SchedulerProps {
|
|
|
3155
3155
|
/**
|
|
3156
3156
|
* The `aria-labelledby` attribute to be applied to the Scheduler component.
|
|
3157
3157
|
*
|
|
3158
|
-
* For more information, refer to the [Scheduler Accessibility Compliance](
|
|
3158
|
+
* For more information, refer to the [Scheduler Accessibility Compliance](https://www.telerik.com/kendo-react-ui/components/scheduler/accessibility/wai-aria-support) article.
|
|
3159
3159
|
*
|
|
3160
3160
|
* @example
|
|
3161
3161
|
* ```jsx
|
|
@@ -3166,7 +3166,7 @@ export declare interface SchedulerProps {
|
|
|
3166
3166
|
/**
|
|
3167
3167
|
* The `aria-label` attribute to be applied to the Scheduler component.
|
|
3168
3168
|
*
|
|
3169
|
-
* For more information, refer to the [Scheduler Accessibility Compliance](
|
|
3169
|
+
* For more information, refer to the [Scheduler Accessibility Compliance](https://www.telerik.com/kendo-react-ui/components/scheduler/accessibility/wai-aria-support) article.
|
|
3170
3170
|
*
|
|
3171
3171
|
* @example
|
|
3172
3172
|
* ```jsx
|
|
@@ -3195,9 +3195,9 @@ export declare interface SchedulerProps {
|
|
|
3195
3195
|
/**
|
|
3196
3196
|
* Overrides the default item. If you specify the `item` property of a specific view, it overrides this property.
|
|
3197
3197
|
*
|
|
3198
|
-
* The default component is: [SchedulerItem](
|
|
3198
|
+
* The default component is: [SchedulerItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritem).
|
|
3199
3199
|
*
|
|
3200
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization](
|
|
3200
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items) article.
|
|
3201
3201
|
*
|
|
3202
3202
|
* @example
|
|
3203
3203
|
* ```jsx
|
|
@@ -3209,9 +3209,9 @@ export declare interface SchedulerProps {
|
|
|
3209
3209
|
/**
|
|
3210
3210
|
* Overrides the default viewItem. If you specify the `viewItem` property of a specific view, it overrides this property.
|
|
3211
3211
|
*
|
|
3212
|
-
* The default component is: [SchedulerViewItem](
|
|
3212
|
+
* The default component is: [SchedulerViewItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewitem).
|
|
3213
3213
|
*
|
|
3214
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization](
|
|
3214
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items) article.
|
|
3215
3215
|
*
|
|
3216
3216
|
* @example
|
|
3217
3217
|
* ```jsx
|
|
@@ -3223,9 +3223,9 @@ export declare interface SchedulerProps {
|
|
|
3223
3223
|
/**
|
|
3224
3224
|
* Overrides the default editItem. Specifying the `editItem` property of a specific view will override this property.
|
|
3225
3225
|
*
|
|
3226
|
-
* The default component is: [SchedulerEditItem](
|
|
3226
|
+
* The default component is: [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem).
|
|
3227
3227
|
*
|
|
3228
|
-
* For more information on customizing the scheduler items, refer to the [Item Customization](
|
|
3228
|
+
* For more information on customizing the scheduler items, refer to the [Item Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items) article.
|
|
3229
3229
|
*
|
|
3230
3230
|
* @example
|
|
3231
3231
|
* ```jsx
|
|
@@ -3236,11 +3236,11 @@ export declare interface SchedulerProps {
|
|
|
3236
3236
|
editItem?: React_2.ComponentType<SchedulerEditItemProps>;
|
|
3237
3237
|
/**
|
|
3238
3238
|
* Overrides the default task. Specifying the `task` property of a specific view will override this property.
|
|
3239
|
-
* Currently, only the [AgendaView](
|
|
3239
|
+
* Currently, only the [AgendaView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/agenda) uses the `task`.
|
|
3240
3240
|
*
|
|
3241
|
-
* The default component is: [SchedulerTask](
|
|
3241
|
+
* The default component is: [SchedulerTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulertask).
|
|
3242
3242
|
*
|
|
3243
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization](
|
|
3243
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/tasks) article.
|
|
3244
3244
|
*
|
|
3245
3245
|
* @example
|
|
3246
3246
|
* ```jsx
|
|
@@ -3251,11 +3251,11 @@ export declare interface SchedulerProps {
|
|
|
3251
3251
|
task?: React_2.ComponentType<SchedulerTaskProps>;
|
|
3252
3252
|
/**
|
|
3253
3253
|
* Overrides the default viewTask. Specifying the `viewTask` property of a specific view will override this property.
|
|
3254
|
-
* Currently, only the [AgendaView](
|
|
3254
|
+
* Currently, only the [AgendaView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/agenda) uses the `viewTask`.
|
|
3255
3255
|
*
|
|
3256
|
-
* The default component is: [SchedulerViewTask](
|
|
3256
|
+
* The default component is: [SchedulerViewTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewtask).
|
|
3257
3257
|
*
|
|
3258
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization](
|
|
3258
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/tasks) article.
|
|
3259
3259
|
*
|
|
3260
3260
|
* @example
|
|
3261
3261
|
* ```jsx
|
|
@@ -3266,11 +3266,11 @@ export declare interface SchedulerProps {
|
|
|
3266
3266
|
viewTask?: React_2.ComponentType<SchedulerTaskProps>;
|
|
3267
3267
|
/**
|
|
3268
3268
|
* Overrides the default editTask. Specifying the `editTask` property of a specific view will override this property.
|
|
3269
|
-
* Currently, only the [AgendaView](
|
|
3269
|
+
* Currently, only the [AgendaView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/agenda) uses the `editTask`.
|
|
3270
3270
|
*
|
|
3271
|
-
* The default component is: [SchedulerEditTask](
|
|
3271
|
+
* The default component is: [SchedulerEditTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredittask).
|
|
3272
3272
|
*
|
|
3273
|
-
* For more information on customizing the scheduler tasks, refer to the [Task Customization](
|
|
3273
|
+
* For more information on customizing the scheduler tasks, refer to the [Task Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/tasks) article.
|
|
3274
3274
|
*
|
|
3275
3275
|
* @example
|
|
3276
3276
|
* ```jsx
|
|
@@ -3282,9 +3282,9 @@ export declare interface SchedulerProps {
|
|
|
3282
3282
|
/**
|
|
3283
3283
|
* Overrides the default header component of the Scheduler.
|
|
3284
3284
|
*
|
|
3285
|
-
* The default component is: [SchedulerHeader](
|
|
3285
|
+
* The default component is: [SchedulerHeader](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerheader).
|
|
3286
3286
|
*
|
|
3287
|
-
* For more information on customizing the scheduler header, refer to the [Header Customization](
|
|
3287
|
+
* For more information on customizing the scheduler header, refer to the [Header Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/header-footer) article.
|
|
3288
3288
|
*
|
|
3289
3289
|
* @example
|
|
3290
3290
|
* ```jsx
|
|
@@ -3296,9 +3296,9 @@ export declare interface SchedulerProps {
|
|
|
3296
3296
|
/**
|
|
3297
3297
|
* Overrides the default footer component of the Scheduler.
|
|
3298
3298
|
*
|
|
3299
|
-
* The default component is: [SchedulerFooter](
|
|
3299
|
+
* The default component is: [SchedulerFooter](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfooter).
|
|
3300
3300
|
*
|
|
3301
|
-
* For more information on customizing the scheduler footer, refer to the [Footer Customization](
|
|
3301
|
+
* For more information on customizing the scheduler footer, refer to the [Footer Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/header-footer) article.
|
|
3302
3302
|
*
|
|
3303
3303
|
* @example
|
|
3304
3304
|
* ```jsx
|
|
@@ -3310,9 +3310,9 @@ export declare interface SchedulerProps {
|
|
|
3310
3310
|
/**
|
|
3311
3311
|
* Overrides the default slot component. Specifying the `slot` property of a specific view will override this property.
|
|
3312
3312
|
*
|
|
3313
|
-
* The default component is: [SchedulerSlot](
|
|
3313
|
+
* The default component is: [SchedulerSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerslot).
|
|
3314
3314
|
*
|
|
3315
|
-
* For more information on customizing the scheduler slots, refer to the [Slot Customization](
|
|
3315
|
+
* For more information on customizing the scheduler slots, refer to the [Slot Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/slots) article.
|
|
3316
3316
|
*
|
|
3317
3317
|
* @example
|
|
3318
3318
|
* ```jsx
|
|
@@ -3324,9 +3324,9 @@ export declare interface SchedulerProps {
|
|
|
3324
3324
|
/**
|
|
3325
3325
|
* Overrides the default viewSlot component. Specifying the `viewSlot` property of a specific view will override this property.
|
|
3326
3326
|
*
|
|
3327
|
-
* The default component is: [SchedulerViewSlot](
|
|
3327
|
+
* The default component is: [SchedulerViewSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewslot).
|
|
3328
3328
|
*
|
|
3329
|
-
* For more information on customizing the scheduler slots, refer to the [Slot Customization](
|
|
3329
|
+
* For more information on customizing the scheduler slots, refer to the [Slot Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/slots) article.
|
|
3330
3330
|
*
|
|
3331
3331
|
* @example
|
|
3332
3332
|
* ```jsx
|
|
@@ -3338,9 +3338,9 @@ export declare interface SchedulerProps {
|
|
|
3338
3338
|
/**
|
|
3339
3339
|
* Overrides the default editSlot component. Specifying the `editSlot` property of a specific view will override this property.
|
|
3340
3340
|
*
|
|
3341
|
-
* The default component is: [SchedulerEditSlot](
|
|
3341
|
+
* The default component is: [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot).
|
|
3342
3342
|
*
|
|
3343
|
-
* For more information on customizing the scheduler slots, refer to the [Slot Customization](
|
|
3343
|
+
* For more information on customizing the scheduler slots, refer to the [Slot Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/slots) article.
|
|
3344
3344
|
*
|
|
3345
3345
|
* @example
|
|
3346
3346
|
* ```jsx
|
|
@@ -3391,7 +3391,7 @@ export declare interface SchedulerProps {
|
|
|
3391
3391
|
/**
|
|
3392
3392
|
* Sets the initially selected view.
|
|
3393
3393
|
*
|
|
3394
|
-
* For more information refer to the [Scheduler Views](
|
|
3394
|
+
* For more information refer to the [Scheduler Views](https://www.telerik.com/kendo-react-ui/components/scheduler/views) article.
|
|
3395
3395
|
*
|
|
3396
3396
|
* Sets the initially selected view. The available values are:
|
|
3397
3397
|
* * `day`
|
|
@@ -3425,7 +3425,7 @@ export declare interface SchedulerProps {
|
|
|
3425
3425
|
*/
|
|
3426
3426
|
defaultDate?: Date;
|
|
3427
3427
|
/**
|
|
3428
|
-
* Forces RTL mode. For more information refer to [RTL Support](
|
|
3428
|
+
* Forces RTL mode. For more information refer to [RTL Support](https://www.telerik.com/kendo-react-ui/components/scheduler/globalization#toc-right-to-left-support).
|
|
3429
3429
|
*
|
|
3430
3430
|
* @example
|
|
3431
3431
|
* ```jsx
|
|
@@ -3490,7 +3490,7 @@ export declare interface SchedulerProps {
|
|
|
3490
3490
|
resources?: SchedulerResource[];
|
|
3491
3491
|
/**
|
|
3492
3492
|
* Specifies the names of the model fields from which the Scheduler reads its data
|
|
3493
|
-
* ([see example](
|
|
3493
|
+
* ([see example](https://www.telerik.com/kendo-react-ui/components/scheduler/data-binding)).
|
|
3494
3494
|
*
|
|
3495
3495
|
* @example
|
|
3496
3496
|
* ```jsx
|
|
@@ -3510,7 +3510,7 @@ export declare interface SchedulerProps {
|
|
|
3510
3510
|
*/
|
|
3511
3511
|
onDateChange?: (args: SchedulerDateChangeEvent) => void;
|
|
3512
3512
|
/**
|
|
3513
|
-
* Fires when the user selects a new `view`. [(see example)](
|
|
3513
|
+
* Fires when the user selects a new `view`. [(see example)](https://www.telerik.com/kendo-react-ui/components/scheduler/views#toc-controlling-the-selected-view).
|
|
3514
3514
|
*
|
|
3515
3515
|
* @example
|
|
3516
3516
|
* ```jsx
|
|
@@ -3521,9 +3521,9 @@ export declare interface SchedulerProps {
|
|
|
3521
3521
|
onViewChange?: (args: SchedulerViewChangeEvent) => void;
|
|
3522
3522
|
/**
|
|
3523
3523
|
* Fires each time editing occurs.
|
|
3524
|
-
* To enable editing set the `editable` property to `true` or an [`EditableProp`](
|
|
3524
|
+
* To enable editing set the `editable` property to `true` or an [`EditableProp`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/editableprop).
|
|
3525
3525
|
*
|
|
3526
|
-
* For more information refer to the [Scheduler Editing](
|
|
3526
|
+
* For more information refer to the [Scheduler Editing](https://www.telerik.com/kendo-react-ui/components/scheduler/editing) article.
|
|
3527
3527
|
*
|
|
3528
3528
|
* @example
|
|
3529
3529
|
* ```jsx
|
|
@@ -3535,14 +3535,14 @@ export declare interface SchedulerProps {
|
|
|
3535
3535
|
}
|
|
3536
3536
|
|
|
3537
3537
|
/**
|
|
3538
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [Scheduler](
|
|
3538
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [Scheduler](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduler) props.
|
|
3539
3539
|
*
|
|
3540
|
-
* For more information, refer to the [Scheduler Context](
|
|
3540
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
3541
3541
|
*/
|
|
3542
3542
|
export declare const SchedulerPropsContext: React_2.Context<SchedulerProps>;
|
|
3543
3543
|
|
|
3544
3544
|
/**
|
|
3545
|
-
* Specifies the result of the [useSchedulerPropsContext](
|
|
3545
|
+
* Specifies the result of the [useSchedulerPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerpropscontext) and [SchedulerPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerpropscontext).
|
|
3546
3546
|
*/
|
|
3547
3547
|
export declare type SchedulerPropsContextType = SchedulerProps;
|
|
3548
3548
|
|
|
@@ -3558,7 +3558,7 @@ export declare interface SchedulerRangeArgs {
|
|
|
3558
3558
|
}
|
|
3559
3559
|
|
|
3560
3560
|
/**
|
|
3561
|
-
* Represents the default `removeDialog` component rendered by the [KendoReact SchedulerEditItem component](
|
|
3561
|
+
* Represents the default `removeDialog` component rendered by the [KendoReact SchedulerEditItem component](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem).
|
|
3562
3562
|
*/
|
|
3563
3563
|
export declare const SchedulerRemoveDialog: React_2.ForwardRefExoticComponent<SchedulerRemoveDialogProps & React_2.RefAttributes<SchedulerRemoveDialogHandle | null>>;
|
|
3564
3564
|
|
|
@@ -3570,7 +3570,7 @@ export declare type SchedulerRemoveDialogHandle = {
|
|
|
3570
3570
|
};
|
|
3571
3571
|
|
|
3572
3572
|
/**
|
|
3573
|
-
* Represents the props of the KendoReact [SchedulerRemoveDialog](
|
|
3573
|
+
* Represents the props of the KendoReact [SchedulerRemoveDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerremovedialog) component.
|
|
3574
3574
|
*/
|
|
3575
3575
|
export declare interface SchedulerRemoveDialogProps {
|
|
3576
3576
|
/**
|
|
@@ -3681,7 +3681,7 @@ export declare interface SchedulerResource {
|
|
|
3681
3681
|
}
|
|
3682
3682
|
|
|
3683
3683
|
/**
|
|
3684
|
-
* Represents the default `slot` component rendered by the [KendoReact Scheduler component](
|
|
3684
|
+
* Represents the default `slot` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
3685
3685
|
*/
|
|
3686
3686
|
export declare const SchedulerSlot: React_2.ForwardRefExoticComponent<SchedulerSlotProps & React_2.RefAttributes<SchedulerSlotHandle>>;
|
|
3687
3687
|
|
|
@@ -3709,7 +3709,7 @@ export declare interface SchedulerSlotFocusEvent {
|
|
|
3709
3709
|
}
|
|
3710
3710
|
|
|
3711
3711
|
/**
|
|
3712
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerSlot](
|
|
3712
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerslot).
|
|
3713
3713
|
*
|
|
3714
3714
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
3715
3715
|
*/
|
|
@@ -3739,7 +3739,7 @@ export declare interface SchedulerSlotMouseEvent {
|
|
|
3739
3739
|
}
|
|
3740
3740
|
|
|
3741
3741
|
/**
|
|
3742
|
-
* Represents the props of the KendoReact [SchedulerSlot](
|
|
3742
|
+
* Represents the props of the KendoReact [SchedulerSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerslot) component.
|
|
3743
3743
|
*/
|
|
3744
3744
|
export declare interface SchedulerSlotProps extends Slot {
|
|
3745
3745
|
/** @hidden */
|
|
@@ -3876,14 +3876,14 @@ export declare interface SchedulerSlotsSelectAction {
|
|
|
3876
3876
|
}
|
|
3877
3877
|
|
|
3878
3878
|
/**
|
|
3879
|
-
* Represents the default `task` component rendered by the [KendoReact Scheduler component](
|
|
3879
|
+
* Represents the default `task` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
3880
3880
|
*
|
|
3881
|
-
* The SchedulerTask is the default representation of an event inside the [`AgendaView`](
|
|
3881
|
+
* The SchedulerTask is the default representation of an event inside the [`AgendaView`](https://www.telerik.com/kendo-react-ui/components/scheduler/views/agenda).
|
|
3882
3882
|
*/
|
|
3883
3883
|
export declare const SchedulerTask: React_2.ForwardRefExoticComponent<SchedulerTaskProps & React_2.RefAttributes<SchedulerTaskHandle>>;
|
|
3884
3884
|
|
|
3885
3885
|
/**
|
|
3886
|
-
* Represents the props of the KendoReact [SchedulerTask](
|
|
3886
|
+
* Represents the props of the KendoReact [SchedulerTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulertask) component.
|
|
3887
3887
|
*/
|
|
3888
3888
|
export declare interface SchedulerTaskHandle {
|
|
3889
3889
|
/**
|
|
@@ -3908,7 +3908,7 @@ export declare interface SchedulerTaskMouseEvent {
|
|
|
3908
3908
|
}
|
|
3909
3909
|
|
|
3910
3910
|
/**
|
|
3911
|
-
* Represents the props of the KendoReact [SchedulerTask](
|
|
3911
|
+
* Represents the props of the KendoReact [SchedulerTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulertask) component.
|
|
3912
3912
|
*/
|
|
3913
3913
|
export declare interface SchedulerTaskProps extends Item {
|
|
3914
3914
|
/** @hidden */
|
|
@@ -3958,7 +3958,7 @@ export declare type SchedulerView = React.ReactElement<SchedulerViewProps>;
|
|
|
3958
3958
|
/**
|
|
3959
3959
|
* Fires every time the user changes the active `view`.
|
|
3960
3960
|
*
|
|
3961
|
-
* For more information, refer to the [Scheduler Views](
|
|
3961
|
+
* For more information, refer to the [Scheduler Views](https://www.telerik.com/kendo-react-ui/components/scheduler/views) article.
|
|
3962
3962
|
*/
|
|
3963
3963
|
export declare interface SchedulerViewChangeEvent {
|
|
3964
3964
|
/**
|
|
@@ -3968,7 +3968,7 @@ export declare interface SchedulerViewChangeEvent {
|
|
|
3968
3968
|
}
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
* Represents the arguments which are passed to the [dateRange](
|
|
3971
|
+
* Represents the arguments which are passed to the [dateRange](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewprops#toc-daterange) function.
|
|
3972
3972
|
*/
|
|
3973
3973
|
export declare interface SchedulerViewDateRangeArgs {
|
|
3974
3974
|
/**
|
|
@@ -4000,9 +4000,9 @@ export declare interface SchedulerViewDateRangeArgs {
|
|
|
4000
4000
|
export declare type SchedulerViewDateRangeFunction = (args: SchedulerViewDateRangeArgs) => DateRange;
|
|
4001
4001
|
|
|
4002
4002
|
/**
|
|
4003
|
-
* Represents the default `viewItem` component rendered by the [KendoReact Scheduler component](
|
|
4003
|
+
* Represents the default `viewItem` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
4004
4004
|
*
|
|
4005
|
-
* This is a composite component of the [`SchedulerItem`](
|
|
4005
|
+
* This is a composite component of the [`SchedulerItem`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritem), extending it to provide proper positioning inside a view.
|
|
4006
4006
|
*/
|
|
4007
4007
|
export declare const SchedulerViewItem: React_2.ForwardRefExoticComponent<SchedulerViewItemProps & React_2.RefAttributes<SchedulerViewItemHandle>>;
|
|
4008
4008
|
|
|
@@ -4011,7 +4011,7 @@ export declare const schedulerViewItemDefaultProps: {
|
|
|
4011
4011
|
};
|
|
4012
4012
|
|
|
4013
4013
|
/**
|
|
4014
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerViewItem](
|
|
4014
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerViewItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewitem).
|
|
4015
4015
|
*
|
|
4016
4016
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
4017
4017
|
*/
|
|
@@ -4027,7 +4027,7 @@ export declare interface SchedulerViewItemHandle {
|
|
|
4027
4027
|
}
|
|
4028
4028
|
|
|
4029
4029
|
/**
|
|
4030
|
-
* Represents the props of the KendoReact [SchedulerViewItem](
|
|
4030
|
+
* Represents the props of the KendoReact [SchedulerViewItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewitem) component.
|
|
4031
4031
|
*/
|
|
4032
4032
|
export declare interface SchedulerViewItemProps extends SchedulerItemProps {
|
|
4033
4033
|
/** @hidden */
|
|
@@ -4035,13 +4035,13 @@ export declare interface SchedulerViewItemProps extends SchedulerItemProps {
|
|
|
4035
4035
|
/**
|
|
4036
4036
|
* Overrides the default component responsible for visualizing a single item.
|
|
4037
4037
|
*
|
|
4038
|
-
* The default Component is: [SchedulerItem](
|
|
4038
|
+
* The default Component is: [SchedulerItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleritem).
|
|
4039
4039
|
*/
|
|
4040
4040
|
item?: React_2.ComponentType<SchedulerItemProps>;
|
|
4041
4041
|
}
|
|
4042
4042
|
|
|
4043
4043
|
/**
|
|
4044
|
-
* Represents the required props which every [SchedulerView](
|
|
4044
|
+
* Represents the required props which every [SchedulerView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerview) must accept.
|
|
4045
4045
|
*/
|
|
4046
4046
|
export declare interface SchedulerViewProps {
|
|
4047
4047
|
/**
|
|
@@ -4050,7 +4050,7 @@ export declare interface SchedulerViewProps {
|
|
|
4050
4050
|
name?: string;
|
|
4051
4051
|
/**
|
|
4052
4052
|
* The title to be displayed in the view selection list in the Toolbar.
|
|
4053
|
-
* If a function is passed, it will receive a [LocalizationService](
|
|
4053
|
+
* If a function is passed, it will receive a [LocalizationService](https://www.telerik.com/kendo-react-ui/components/intl/api/localizationservice) as an argument
|
|
4054
4054
|
*/
|
|
4055
4055
|
title?: string | ((localization: LocalizationService) => string);
|
|
4056
4056
|
/**
|
|
@@ -4078,7 +4078,7 @@ export declare interface SchedulerViewProps {
|
|
|
4078
4078
|
/**
|
|
4079
4079
|
* Overrides the `dateRange` calculated by the `Scheduler` component.
|
|
4080
4080
|
*
|
|
4081
|
-
* If a function is passed, an object of type [SchedulerViewDateRangeArgs](
|
|
4081
|
+
* If a function is passed, an object of type [SchedulerViewDateRangeArgs](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewdaterangeargs) will be passed.
|
|
4082
4082
|
*/
|
|
4083
4083
|
dateRange?: DateRange | ((args: SchedulerViewDateRangeArgs) => DateRange);
|
|
4084
4084
|
/** @hidden */
|
|
@@ -4098,21 +4098,21 @@ export declare interface SchedulerViewProps {
|
|
|
4098
4098
|
}
|
|
4099
4099
|
|
|
4100
4100
|
/**
|
|
4101
|
-
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the available Scheduler [views](
|
|
4101
|
+
* A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the available Scheduler [views](https://www.telerik.com/kendo-react-ui/components/scheduler/views).
|
|
4102
4102
|
*
|
|
4103
|
-
* For more information, refer to the [Scheduler Context](
|
|
4103
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4104
4104
|
*/
|
|
4105
4105
|
export declare const SchedulerViewsContext: React_2.Context<SchedulerViewsContextType>;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
|
-
* Specifies the result of the [useSchedulerViewsContext](
|
|
4108
|
+
* Specifies the result of the [useSchedulerViewsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerviewscontext) and [SchedulerViewsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewscontext).
|
|
4109
4109
|
*/
|
|
4110
4110
|
export declare type SchedulerViewsContextType = SchedulerView[];
|
|
4111
4111
|
|
|
4112
4112
|
/**
|
|
4113
|
-
* Represents the default `viewSlot` component rendered by the [KendoReact Scheduler component](
|
|
4113
|
+
* Represents the default `viewSlot` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
4114
4114
|
*
|
|
4115
|
-
* This is a composite component of the [`SchedulerSlot`](
|
|
4115
|
+
* This is a composite component of the [`SchedulerSlot`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerslot), extending it to provide additional functionality depending on the view.
|
|
4116
4116
|
*/
|
|
4117
4117
|
export declare const SchedulerViewSlot: React_2.ForwardRefExoticComponent<SchedulerViewSlotProps & React_2.RefAttributes<SchedulerViewSlotHandle>>;
|
|
4118
4118
|
|
|
@@ -4122,7 +4122,7 @@ export declare const schedulerViewSlotDefaultProps: {
|
|
|
4122
4122
|
};
|
|
4123
4123
|
|
|
4124
4124
|
/**
|
|
4125
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerViewItem](
|
|
4125
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerViewItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewitem).
|
|
4126
4126
|
*
|
|
4127
4127
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
4128
4128
|
*/
|
|
@@ -4134,27 +4134,27 @@ export declare interface SchedulerViewSlotHandle {
|
|
|
4134
4134
|
}
|
|
4135
4135
|
|
|
4136
4136
|
/**
|
|
4137
|
-
* Represents the props of the KendoReact [SchedulerViewSlot](
|
|
4137
|
+
* Represents the props of the KendoReact [SchedulerViewSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewslot) component.
|
|
4138
4138
|
*/
|
|
4139
4139
|
export declare interface SchedulerViewSlotProps extends SchedulerSlotProps {
|
|
4140
4140
|
/**
|
|
4141
4141
|
* Overrides the default component responsible for view-specific functionality.
|
|
4142
4142
|
*
|
|
4143
|
-
* The default Component is: [SchedulerSlot](
|
|
4143
|
+
* The default Component is: [SchedulerSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerslot).
|
|
4144
4144
|
*/
|
|
4145
4145
|
slot?: React_2.ComponentType<SchedulerSlotProps>;
|
|
4146
4146
|
/**
|
|
4147
4147
|
* Set to `false` renders the `slot` as is, without expanding depending on the `items` inside it.
|
|
4148
4148
|
*
|
|
4149
|
-
* For more information, please refer to the [Adaptive Slot Height](
|
|
4149
|
+
* For more information, please refer to the [Adaptive Slot Height](https://www.telerik.com/kendo-react-ui/components/scheduler/recurring) article.
|
|
4150
4150
|
*/
|
|
4151
4151
|
expandable?: boolean | SchedulerSlotExpandableConfig;
|
|
4152
4152
|
}
|
|
4153
4153
|
|
|
4154
4154
|
/**
|
|
4155
|
-
* Represents the default `viewTask` component rendered by the [KendoReact Scheduler component](
|
|
4155
|
+
* Represents the default `viewTask` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
|
|
4156
4156
|
*
|
|
4157
|
-
* This is a composite component of the [`SchedulerTask`](
|
|
4157
|
+
* This is a composite component of the [`SchedulerTask`](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulertask).
|
|
4158
4158
|
*/
|
|
4159
4159
|
export declare const SchedulerViewTask: React_2.ForwardRefExoticComponent<SchedulerViewTaskProps & React_2.RefAttributes<SchedulerViewTaskHandle>>;
|
|
4160
4160
|
|
|
@@ -4163,7 +4163,7 @@ export declare const schedulerViewTaskDefaultProps: {
|
|
|
4163
4163
|
};
|
|
4164
4164
|
|
|
4165
4165
|
/**
|
|
4166
|
-
* Represents the object which is returned from the `ref` callback of the [SchedulerViewTask](
|
|
4166
|
+
* Represents the object which is returned from the `ref` callback of the [SchedulerViewTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewtask).
|
|
4167
4167
|
*
|
|
4168
4168
|
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
|
|
4169
4169
|
*/
|
|
@@ -4179,13 +4179,13 @@ export declare interface SchedulerViewTaskHandle {
|
|
|
4179
4179
|
}
|
|
4180
4180
|
|
|
4181
4181
|
/**
|
|
4182
|
-
* Represents the props of the KendoReact [SchedulerViewTask](
|
|
4182
|
+
* Represents the props of the KendoReact [SchedulerViewTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewtask) component.
|
|
4183
4183
|
*/
|
|
4184
4184
|
export declare interface SchedulerViewTaskProps extends SchedulerTaskProps {
|
|
4185
4185
|
/**
|
|
4186
4186
|
* Overrides the default component responsible for visualizing a single task.
|
|
4187
4187
|
*
|
|
4188
|
-
* The default Component is: [SchedulerTask](
|
|
4188
|
+
* The default Component is: [SchedulerTask](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulertask).
|
|
4189
4189
|
*/
|
|
4190
4190
|
task?: React_2.ComponentType<SchedulerTaskProps>;
|
|
4191
4191
|
}
|
|
@@ -4259,13 +4259,13 @@ export declare interface Slot {
|
|
|
4259
4259
|
/**
|
|
4260
4260
|
* Represents the `start` Date in the provided timezone.
|
|
4261
4261
|
*
|
|
4262
|
-
* For more information about timezones, refer to the [Scheduler TImezones](
|
|
4262
|
+
* For more information about timezones, refer to the [Scheduler TImezones](https://www.telerik.com/kendo-react-ui/components/scheduler/timezones) article.
|
|
4263
4263
|
*/
|
|
4264
4264
|
zonedStart: ZonedDate;
|
|
4265
4265
|
/**
|
|
4266
4266
|
* Represents the `end` Date in the provided timezone.
|
|
4267
4267
|
*
|
|
4268
|
-
* For more information about timezones, refer to the [Scheduler TImezones](
|
|
4268
|
+
* For more information about timezones, refer to the [Scheduler TImezones](https://www.telerik.com/kendo-react-ui/components/scheduler/timezones) article.
|
|
4269
4269
|
*/
|
|
4270
4270
|
zonedEnd: ZonedDate;
|
|
4271
4271
|
/**
|
|
@@ -4350,7 +4350,7 @@ export declare interface TimeHeaderCellHandle {
|
|
|
4350
4350
|
}
|
|
4351
4351
|
|
|
4352
4352
|
/**
|
|
4353
|
-
* Represents the properties of [TimeHeaderCell](
|
|
4353
|
+
* Represents the properties of [TimeHeaderCell](https://www.telerik.com/kendo-react-ui/components/scheduler/api/timeheadercell) component.
|
|
4354
4354
|
*/
|
|
4355
4355
|
export declare interface TimeHeaderCellProps extends React_2.HTMLAttributes<HTMLDivElement> {
|
|
4356
4356
|
/** @hidden */
|
|
@@ -4374,7 +4374,7 @@ export declare interface TimeHeaderCellProps extends React_2.HTMLAttributes<HTML
|
|
|
4374
4374
|
}
|
|
4375
4375
|
|
|
4376
4376
|
/**
|
|
4377
|
-
* Represents the KendoReact [TimelineView](
|
|
4377
|
+
* Represents the KendoReact [TimelineView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/timeline) Component.
|
|
4378
4378
|
*/
|
|
4379
4379
|
export declare const TimelineView: React_2.FunctionComponent<TimelineViewProps>;
|
|
4380
4380
|
|
|
@@ -4400,7 +4400,7 @@ export declare const timeLineViewDefaultProps: {
|
|
|
4400
4400
|
};
|
|
4401
4401
|
|
|
4402
4402
|
/**
|
|
4403
|
-
* Represents the properties of the KendoReact [TimelineView](
|
|
4403
|
+
* Represents the properties of the KendoReact [TimelineView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/timelineview) Component.
|
|
4404
4404
|
*/
|
|
4405
4405
|
export declare interface TimelineViewProps extends MultiDayTimelineViewProps {
|
|
4406
4406
|
}
|
|
@@ -4408,7 +4408,7 @@ export declare interface TimelineViewProps extends MultiDayTimelineViewProps {
|
|
|
4408
4408
|
/**
|
|
4409
4409
|
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler internal `activeView` state.
|
|
4410
4410
|
*
|
|
4411
|
-
* For more information, refer to the [Scheduler Context](
|
|
4411
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4412
4412
|
*
|
|
4413
4413
|
* @returns
|
|
4414
4414
|
*/
|
|
@@ -4417,7 +4417,7 @@ export declare const useSchedulerActiveViewContext: () => SchedulerActiveViewCon
|
|
|
4417
4417
|
/**
|
|
4418
4418
|
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler internal `data` reducer.
|
|
4419
4419
|
*
|
|
4420
|
-
* For more information, refer to the [Scheduler Context](
|
|
4420
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4421
4421
|
*
|
|
4422
4422
|
* @returns
|
|
4423
4423
|
*/
|
|
@@ -4426,7 +4426,7 @@ export declare const useSchedulerDataContext: () => SchedulerDataContextType;
|
|
|
4426
4426
|
/**
|
|
4427
4427
|
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler internal `date` state.
|
|
4428
4428
|
*
|
|
4429
|
-
* For more information, refer to the [Scheduler Context](
|
|
4429
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4430
4430
|
*
|
|
4431
4431
|
* @returns
|
|
4432
4432
|
*/
|
|
@@ -4435,106 +4435,106 @@ export declare const useSchedulerDateContext: () => SchedulerDateContextType;
|
|
|
4435
4435
|
/**
|
|
4436
4436
|
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the `dateRange` of the current view.
|
|
4437
4437
|
*
|
|
4438
|
-
* For more information, refer to the [Scheduler Context](
|
|
4438
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4439
4439
|
*
|
|
4440
4440
|
* @returns
|
|
4441
4441
|
*/
|
|
4442
4442
|
export declare const useSchedulerDateRangeContext: () => SchedulerDateRangeContextType;
|
|
4443
4443
|
|
|
4444
4444
|
/**
|
|
4445
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](
|
|
4445
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `dragItem` state.
|
|
4446
4446
|
*
|
|
4447
|
-
* For more information, refer to the [Items Context](
|
|
4447
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4448
4448
|
*
|
|
4449
4449
|
* @returns
|
|
4450
4450
|
*/
|
|
4451
4451
|
export declare const useSchedulerEditItemDragItemContext: () => SchedulerEditItemDragItemContextType;
|
|
4452
4452
|
|
|
4453
4453
|
/**
|
|
4454
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](
|
|
4454
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `formItem` state.
|
|
4455
4455
|
*
|
|
4456
|
-
* For more information, refer to the [Items Context](
|
|
4456
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4457
4457
|
*
|
|
4458
4458
|
* @returns
|
|
4459
4459
|
*/
|
|
4460
4460
|
export declare const useSchedulerEditItemFormItemContext: () => SchedulerEditItemFormItemContextType;
|
|
4461
4461
|
|
|
4462
4462
|
/**
|
|
4463
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](
|
|
4463
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) `props`.
|
|
4464
4464
|
*
|
|
4465
|
-
* For more information, refer to the [Items Context](
|
|
4465
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4466
4466
|
*
|
|
4467
4467
|
* @returns
|
|
4468
4468
|
*/
|
|
4469
4469
|
export declare const useSchedulerEditItemPropsContext: () => SchedulerEditItemPropsContextType;
|
|
4470
4470
|
|
|
4471
4471
|
/**
|
|
4472
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](
|
|
4472
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `removeItem` state.
|
|
4473
4473
|
*
|
|
4474
|
-
* For more information, refer to the [Items Context](
|
|
4474
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4475
4475
|
*
|
|
4476
4476
|
* @returns
|
|
4477
4477
|
*/
|
|
4478
4478
|
export declare const useSchedulerEditItemRemoveItemContext: () => SchedulerEditItemRemoveItemContextType;
|
|
4479
4479
|
|
|
4480
4480
|
/**
|
|
4481
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](
|
|
4481
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `resizeItem` state.
|
|
4482
4482
|
*
|
|
4483
|
-
* For more information, refer to the [Items Context](
|
|
4483
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4484
4484
|
*
|
|
4485
4485
|
* @returns
|
|
4486
4486
|
*/
|
|
4487
4487
|
export declare const useSchedulerEditItemResizeItemContext: () => SchedulerEditItemResizeItemContextType;
|
|
4488
4488
|
|
|
4489
4489
|
/**
|
|
4490
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](
|
|
4490
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showOccurrenceDialog` state.
|
|
4491
4491
|
*
|
|
4492
|
-
* For more information, refer to the [Items Context](
|
|
4492
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4493
4493
|
*
|
|
4494
4494
|
* @returns
|
|
4495
4495
|
*/
|
|
4496
4496
|
export declare const useSchedulerEditItemShowOccurrenceDialogContext: () => SchedulerEditItemShowOccurrenceDialogContextType;
|
|
4497
4497
|
|
|
4498
4498
|
/**
|
|
4499
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](
|
|
4499
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showRemoveDialog` state.
|
|
4500
4500
|
*
|
|
4501
|
-
* For more information, refer to the [Items Context](
|
|
4501
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4502
4502
|
*
|
|
4503
4503
|
* @returns
|
|
4504
4504
|
*/
|
|
4505
4505
|
export declare const useSchedulerEditItemShowRemoveDialogContext: () => SchedulerEditItemShowRemoveDialogContextType;
|
|
4506
4506
|
|
|
4507
4507
|
/**
|
|
4508
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditSlot](
|
|
4508
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) internal `formItem` state.
|
|
4509
4509
|
*
|
|
4510
|
-
* For more information, refer to the [Slots Context](
|
|
4510
|
+
* For more information, refer to the [Slots Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/slots/state-update) article.
|
|
4511
4511
|
*
|
|
4512
4512
|
* @returns
|
|
4513
4513
|
*/
|
|
4514
4514
|
export declare const useSchedulerEditSlotFormItemContext: () => SchedulerEditSlotFormItemContextType;
|
|
4515
4515
|
|
|
4516
4516
|
/**
|
|
4517
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditSlot](
|
|
4517
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) `props`.
|
|
4518
4518
|
*
|
|
4519
|
-
* For more information, refer to the [Items Context](
|
|
4519
|
+
* For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
|
|
4520
4520
|
*
|
|
4521
4521
|
* @returns
|
|
4522
4522
|
*/
|
|
4523
4523
|
export declare const useSchedulerEditSlotPropsContext: () => SchedulerEditSlotPropsContextType;
|
|
4524
4524
|
|
|
4525
4525
|
/**
|
|
4526
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the combined default and custom [modelFields](
|
|
4526
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the combined default and custom [modelFields](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-modelfields) of the Scheduler.
|
|
4527
4527
|
*
|
|
4528
|
-
* For more information, refer to the [Scheduler Context](
|
|
4528
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4529
4529
|
*
|
|
4530
4530
|
* @returns
|
|
4531
4531
|
*/
|
|
4532
4532
|
export declare const useSchedulerFieldsContext: () => SchedulerFieldsContextType;
|
|
4533
4533
|
|
|
4534
4534
|
/**
|
|
4535
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler `Group` object, calculated based on the [group](
|
|
4535
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler `Group` object, calculated based on the [group](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-group) and [resources](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-resources).
|
|
4536
4536
|
*
|
|
4537
|
-
* For more information, refer to the [Scheduler Context](
|
|
4537
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4538
4538
|
*
|
|
4539
4539
|
* @returns
|
|
4540
4540
|
*/
|
|
@@ -4543,25 +4543,25 @@ export declare const useSchedulerGroupsContext: () => SchedulerGroupsContextType
|
|
|
4543
4543
|
/**
|
|
4544
4544
|
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the grouping orientation of the Scheduler.
|
|
4545
4545
|
*
|
|
4546
|
-
* For more information, refer to the [Scheduler Context](
|
|
4546
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4547
4547
|
*
|
|
4548
4548
|
* @returns
|
|
4549
4549
|
*/
|
|
4550
4550
|
export declare const useSchedulerOrientationContext: () => SchedulerOrientationContextType;
|
|
4551
4551
|
|
|
4552
4552
|
/**
|
|
4553
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [Scheduler](
|
|
4553
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [Scheduler](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduler) props.
|
|
4554
4554
|
*
|
|
4555
|
-
* For more information, refer to the [Scheduler Context](
|
|
4555
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4556
4556
|
*
|
|
4557
4557
|
* @returns
|
|
4558
4558
|
*/
|
|
4559
4559
|
export declare const useSchedulerPropsContext: () => SchedulerPropsContextType;
|
|
4560
4560
|
|
|
4561
4561
|
/**
|
|
4562
|
-
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the available Scheduler [views](
|
|
4562
|
+
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the available Scheduler [views](https://www.telerik.com/kendo-react-ui/components/scheduler/views).
|
|
4563
4563
|
*
|
|
4564
|
-
* For more information, refer to the [Scheduler Context](
|
|
4564
|
+
* For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
|
|
4565
4565
|
*
|
|
4566
4566
|
* @returns
|
|
4567
4567
|
*/
|
|
@@ -4576,7 +4576,7 @@ export declare interface ViewChangeEvent {
|
|
|
4576
4576
|
}
|
|
4577
4577
|
|
|
4578
4578
|
/**
|
|
4579
|
-
* Represents the KendoReact [WeekView](
|
|
4579
|
+
* Represents the KendoReact [WeekView](https://www.telerik.com/kendo-react-ui/components/scheduler/views/week) Component.
|
|
4580
4580
|
*/
|
|
4581
4581
|
export declare const WeekView: React_2.FunctionComponent<WeekViewProps>;
|
|
4582
4582
|
|
|
@@ -4593,7 +4593,7 @@ export declare const weekViewDefaultProps: {
|
|
|
4593
4593
|
};
|
|
4594
4594
|
|
|
4595
4595
|
/**
|
|
4596
|
-
* Represents the properties of the KendoReact [WeekView](
|
|
4596
|
+
* Represents the properties of the KendoReact [WeekView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/weekview) Component.
|
|
4597
4597
|
*/
|
|
4598
4598
|
export declare interface WeekViewProps extends Omit<MultiDayViewProps, 'step' | 'numberOfDays'> {
|
|
4599
4599
|
/**
|