@progress/kendo-vue-scheduler 9.2.0-develop.5 → 9.2.1-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Scheduler.d.ts +3 -3
- package/components/SchedulerForm.d.ts +3 -3
- package/components/footer/bussiness-hours/BusinessHours.d.ts +1 -1
- package/dist/cdn/js/kendo-vue-scheduler.js +1 -1
- package/editors/ResourceEditor.d.ts +1 -1
- package/editors/SchedulerFormEditor.d.ts +8 -8
- package/editors/ZonedDateTime.d.ts +1 -1
- package/items/SchedulerItem.d.ts +24 -24
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
- package/recurrence/RecurrenceEditor.d.ts +1 -1
- package/recurrence/RecurrenceFrequencyEditor.d.ts +1 -1
- package/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +1 -1
- package/slots/SchedulerSlot.d.ts +15 -15
- package/slots/SchedulerViewSlot.d.ts +4 -4
- package/views/common/SchedulerDrag.d.ts +48 -48
- package/views/common/SchedulerResize.d.ts +48 -48
- package/views/day/DayView.d.ts +1 -1
- package/views/time/TimelineView.d.ts +1 -1
- package/views/week/WeekView.d.ts +1 -1
- package/views/week/WorkWeekView.d.ts +1 -1
package/Scheduler.d.ts
CHANGED
|
@@ -925,7 +925,7 @@ declare const Scheduler: import('vue').DefineComponent<import('vue').ExtractProp
|
|
|
925
925
|
viewItem: PropType<any>;
|
|
926
926
|
editable: PropType<boolean | EditableProp>;
|
|
927
927
|
}>> & Readonly<{
|
|
928
|
-
onDataaction?: (...args: any
|
|
928
|
+
onDataaction?: (...args: any) => any;
|
|
929
929
|
}>, {
|
|
930
930
|
title: string | ((localization: import('@progress/kendo-vue-intl').LocalizationService) => string);
|
|
931
931
|
name: string;
|
|
@@ -1117,7 +1117,7 @@ declare const Scheduler: import('vue').DefineComponent<import('vue').ExtractProp
|
|
|
1117
1117
|
};
|
|
1118
1118
|
format: PropType<string>;
|
|
1119
1119
|
}>> & Readonly<{
|
|
1120
|
-
onDataaction?: (...args: any
|
|
1120
|
+
onDataaction?: (...args: any) => any;
|
|
1121
1121
|
}>, {
|
|
1122
1122
|
name: string;
|
|
1123
1123
|
step: number;
|
|
@@ -1248,7 +1248,7 @@ declare const Scheduler: import('vue').DefineComponent<import('vue').ExtractProp
|
|
|
1248
1248
|
default: boolean;
|
|
1249
1249
|
};
|
|
1250
1250
|
}>> & Readonly<{
|
|
1251
|
-
onDataaction?: (...args: any
|
|
1251
|
+
onDataaction?: (...args: any) => any;
|
|
1252
1252
|
}>, {
|
|
1253
1253
|
name: string;
|
|
1254
1254
|
editable: boolean;
|
|
@@ -63,8 +63,8 @@ declare const SchedulerForm: import('vue').DefineComponent<import('vue').Extract
|
|
|
63
63
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
64
64
|
dataItem: PropType<any>;
|
|
65
65
|
}>> & Readonly<{
|
|
66
|
-
onCancel?: (...args: any
|
|
67
|
-
onClose?: (...args: any
|
|
68
|
-
onSubmit?: (...args: any
|
|
66
|
+
onCancel?: (...args: any) => any;
|
|
67
|
+
onClose?: (...args: any) => any;
|
|
68
|
+
onSubmit?: (...args: any) => any;
|
|
69
69
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
70
|
export { SchedulerForm };
|
|
@@ -22,6 +22,6 @@ declare const BusinessHours: import('vue').DefineComponent<import('vue').Extract
|
|
|
22
22
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
23
|
slotDuration: PropType<number>;
|
|
24
24
|
}>> & Readonly<{
|
|
25
|
-
onClick?: (...args: any
|
|
25
|
+
onClick?: (...args: any) => any;
|
|
26
26
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
27
|
export { BusinessHours };
|