@@ -26,7 +26,7 @@ import dxScheduler from 'devextreme/ui/scheduler';
2626import dxSortable from 'devextreme/ui/sortable' ;
2727import dxDraggable from 'devextreme/ui/draggable' ;
2828import DataSource from 'devextreme/data/data_source' ;
29- import { AllDayPanelMode , ViewType , dxSchedulerAppointment , CellAppointmentsLimit , AppointmentAddedEvent , AppointmentAddingEvent , AppointmentClickEvent , AppointmentContextMenuEvent , AppointmentDblClickEvent , AppointmentDeletedEvent , AppointmentDeletingEvent , AppointmentFormOpeningEvent , AppointmentRenderedEvent , AppointmentTooltipShowingEvent , AppointmentUpdatedEvent , AppointmentUpdatingEvent , CellClickEvent , CellContextMenuEvent , ContentReadyEvent , DisposingEvent , InitializedEvent , OptionChangedEvent , RecurrenceEditMode , dxSchedulerScrolling , dxSchedulerToolbar } from 'devextreme/ui/scheduler' ;
29+ import { AllDayPanelMode , ViewType , dxSchedulerAppointment , SchedulerAppointmentFormIconDisplay , CellAppointmentsLimit , AppointmentAddedEvent , AppointmentAddingEvent , AppointmentClickEvent , AppointmentContextMenuEvent , AppointmentDblClickEvent , AppointmentDeletedEvent , AppointmentDeletingEvent , AppointmentFormOpeningEvent , AppointmentRenderedEvent , AppointmentTooltipShowingEvent , AppointmentUpdatedEvent , AppointmentUpdatingEvent , CellClickEvent , CellContextMenuEvent , ContentReadyEvent , DisposingEvent , InitializedEvent , OptionChangedEvent , RecurrenceEditMode , dxSchedulerScrolling , dxSchedulerToolbar } from 'devextreme/ui/scheduler' ;
3030import { event } from 'devextreme/events/events.types' ;
3131import { DataSourceOptions } from 'devextreme/data/data_source' ;
3232import { Store } from 'devextreme/data/store' ;
@@ -393,10 +393,10 @@ export class DxSchedulerComponent extends DxComponent implements OnDestroy, OnCh
393393
394394 */
395395 @Input ( )
396- get editing ( ) : boolean | { allowAdding ?: boolean , allowDeleting ?: boolean , allowDragging ?: boolean , allowResizing ?: boolean , allowTimeZoneEditing ?: boolean , allowUpdating ?: boolean , form ?: undefined | { items ?: Array < dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem > , onCanceled ?: ( ( formData : any ) => void ) , onSaved ?: ( ( formData : any ) => void ) } } {
396+ get editing ( ) : boolean | { allowAdding ?: boolean , allowDeleting ?: boolean , allowDragging ?: boolean , allowResizing ?: boolean , allowTimeZoneEditing ?: boolean , allowUpdating ?: boolean , form ?: undefined | { items ?: Array < dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem > , onCanceled ?: ( ( formData : any ) => void ) , onSaved ?: ( ( formData : any ) => void ) , showIcons ?: SchedulerAppointmentFormIconDisplay } } {
397397 return this . _getOption ( 'editing' ) ;
398398 }
399- set editing ( value : boolean | { allowAdding ?: boolean , allowDeleting ?: boolean , allowDragging ?: boolean , allowResizing ?: boolean , allowTimeZoneEditing ?: boolean , allowUpdating ?: boolean , form ?: undefined | { items ?: Array < dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem > , onCanceled ?: ( ( formData : any ) => void ) , onSaved ?: ( ( formData : any ) => void ) } } ) {
399+ set editing ( value : boolean | { allowAdding ?: boolean , allowDeleting ?: boolean , allowDragging ?: boolean , allowResizing ?: boolean , allowTimeZoneEditing ?: boolean , allowUpdating ?: boolean , form ?: undefined | { items ?: Array < dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem > , onCanceled ?: ( ( formData : any ) => void ) , onSaved ?: ( ( formData : any ) => void ) , showIcons ?: SchedulerAppointmentFormIconDisplay } } ) {
400400 this . _setOption ( 'editing' , value ) ;
401401 }
402402
@@ -679,10 +679,10 @@ export class DxSchedulerComponent extends DxComponent implements OnDestroy, OnCh
679679
680680 */
681681 @Input ( )
682- get resources ( ) : { allowMultiple ?: boolean , colorExpr ?: string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , displayExpr ?: ( ( resource : any ) => string ) | string , fieldExpr ?: string , label ?: string , useColorAsDefault ?: boolean , valueExpr ?: Function | string } [ ] {
682+ get resources ( ) : { allowMultiple ?: boolean , colorExpr ?: string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , displayExpr ?: ( ( resource : any ) => string ) | string , fieldExpr ?: string , icon ?: string , label ?: string , useColorAsDefault ?: boolean , valueExpr ?: Function | string } [ ] {
683683 return this . _getOption ( 'resources' ) ;
684684 }
685- set resources ( value : { allowMultiple ?: boolean , colorExpr ?: string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , displayExpr ?: ( ( resource : any ) => string ) | string , fieldExpr ?: string , label ?: string , useColorAsDefault ?: boolean , valueExpr ?: Function | string } [ ] ) {
685+ set resources ( value : { allowMultiple ?: boolean , colorExpr ?: string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , displayExpr ?: ( ( resource : any ) => string ) | string , fieldExpr ?: string , icon ?: string , label ?: string , useColorAsDefault ?: boolean , valueExpr ?: Function | string } [ ] ) {
686686 this . _setOption ( 'resources' , value ) ;
687687 }
688688
@@ -1202,7 +1202,7 @@ export class DxSchedulerComponent extends DxComponent implements OnDestroy, OnCh
12021202 * This member supports the internal infrastructure and is not intended to be used directly from your code.
12031203
12041204 */
1205- @Output ( ) editingChange : EventEmitter < boolean | { allowAdding ?: boolean , allowDeleting ?: boolean , allowDragging ?: boolean , allowResizing ?: boolean , allowTimeZoneEditing ?: boolean , allowUpdating ?: boolean , form ?: undefined | { items ?: Array < dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem > , onCanceled ?: ( ( formData : any ) => void ) , onSaved ?: ( ( formData : any ) => void ) } } > ;
1205+ @Output ( ) editingChange : EventEmitter < boolean | { allowAdding ?: boolean , allowDeleting ?: boolean , allowDragging ?: boolean , allowResizing ?: boolean , allowTimeZoneEditing ?: boolean , allowUpdating ?: boolean , form ?: undefined | { items ?: Array < dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem > , onCanceled ?: ( ( formData : any ) => void ) , onSaved ?: ( ( formData : any ) => void ) , showIcons ?: SchedulerAppointmentFormIconDisplay } } > ;
12061206
12071207 /**
12081208
@@ -1356,7 +1356,7 @@ export class DxSchedulerComponent extends DxComponent implements OnDestroy, OnCh
13561356 * This member supports the internal infrastructure and is not intended to be used directly from your code.
13571357
13581358 */
1359- @Output ( ) resourcesChange : EventEmitter < { allowMultiple ?: boolean , colorExpr ?: string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , displayExpr ?: ( ( resource : any ) => string ) | string , fieldExpr ?: string , label ?: string , useColorAsDefault ?: boolean , valueExpr ?: Function | string } [ ] > ;
1359+ @Output ( ) resourcesChange : EventEmitter < { allowMultiple ?: boolean , colorExpr ?: string , dataSource ?: Array < any > | DataSource | DataSourceOptions | null | Store | string , displayExpr ?: ( ( resource : any ) => string ) | string , fieldExpr ?: string , icon ?: string , label ?: string , useColorAsDefault ?: boolean , valueExpr ?: Function | string } [ ] > ;
13601360
13611361 /**
13621362
0 commit comments