File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
__internal/scheduler/utils/options Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export const DEFAULT_SCHEDULER_OPTIONS: Properties = {
4444 form : {
4545 iconsShowMode : DEFAULT_ICONS_SHOW_MODE ,
4646 } ,
47- popup : { } ,
47+ popup : undefined ,
4848 } ,
4949 showAllDayPanel : true ,
5050 showCurrentTimeIndicator : true ,
@@ -106,7 +106,7 @@ export const DEFAULT_SCHEDULER_INTERNAL_OPTIONS: SchedulerInternalOptions = {
106106 legacyForm : false ,
107107 // @ts -expect-error copy from default so that you can rewrite it
108108 ...DEFAULT_SCHEDULER_OPTIONS . editing ,
109- popup : { } ,
109+ popup : undefined ,
110110 } ,
111111 _draggingMode : 'outlook' ,
112112 _appointmentTooltipOffset : { x : 0 , y : 0 } ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import {
3131import dxDraggable from './draggable' ;
3232
3333import dxForm , { Item as FormItem } from './form' ;
34- import dxPopup , { Properties as SchedulerPopupOptions } from './popup' ;
34+ import dxPopup , { Properties as PopupProperties } from './popup' ;
3535
3636import dxSortable from './sortable' ;
3737import { dxToolbarItem } from './toolbar' ;
@@ -667,10 +667,10 @@ export interface dxSchedulerOptions extends WidgetOptions<dxScheduler> {
667667 } | undefined ;
668668 /**
669669 * @docid
670- * @default {}
671670 * @public
671+ * @type PopupProperties
672672 */
673- popup ?: SchedulerPopupOptions ;
673+ popup ?: PopupProperties ;
674674 } ;
675675 /**
676676 * @docid
You can’t perform that action at this time.
0 commit comments