@@ -152,6 +152,32 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
152152
153153 instance : DxDiagram = null ;
154154
155+ /**
156+ * [descr:WidgetOptions.accessKey]
157+
158+ */
159+ @Input ( )
160+ get accessKey ( ) : string | undefined {
161+ return this . _getOption ( 'accessKey' ) ;
162+ }
163+ set accessKey ( value : string | undefined ) {
164+ this . _setOption ( 'accessKey' , value ) ;
165+ }
166+
167+
168+ /**
169+ * [descr:WidgetOptions.activeStateEnabled]
170+
171+ */
172+ @Input ( )
173+ get activeStateEnabled ( ) : boolean {
174+ return this . _getOption ( 'activeStateEnabled' ) ;
175+ }
176+ set activeStateEnabled ( value : boolean ) {
177+ this . _setOption ( 'activeStateEnabled' , value ) ;
178+ }
179+
180+
155181 /**
156182 * [descr:dxDiagramOptions.autoZoomMode]
157183
@@ -308,6 +334,19 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
308334 }
309335
310336
337+ /**
338+ * [descr:WidgetOptions.focusStateEnabled]
339+
340+ */
341+ @Input ( )
342+ get focusStateEnabled ( ) : boolean {
343+ return this . _getOption ( 'focusStateEnabled' ) ;
344+ }
345+ set focusStateEnabled ( value : boolean ) {
346+ this . _setOption ( 'focusStateEnabled' , value ) ;
347+ }
348+
349+
311350 /**
312351 * [descr:dxDiagramOptions.fullScreen]
313352
@@ -360,6 +399,19 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
360399 }
361400
362401
402+ /**
403+ * [descr:WidgetOptions.hint]
404+
405+ */
406+ @Input ( )
407+ get hint ( ) : string | undefined {
408+ return this . _getOption ( 'hint' ) ;
409+ }
410+ set hint ( value : string | undefined ) {
411+ this . _setOption ( 'hint' , value ) ;
412+ }
413+
414+
363415 /**
364416 * [descr:dxDiagramOptions.historyToolbar]
365417
@@ -373,6 +425,19 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
373425 }
374426
375427
428+ /**
429+ * [descr:WidgetOptions.hoverStateEnabled]
430+
431+ */
432+ @Input ( )
433+ get hoverStateEnabled ( ) : boolean {
434+ return this . _getOption ( 'hoverStateEnabled' ) ;
435+ }
436+ set hoverStateEnabled ( value : boolean ) {
437+ this . _setOption ( 'hoverStateEnabled' , value ) ;
438+ }
439+
440+
376441 /**
377442 * [descr:dxDiagramOptions.mainToolbar]
378443
@@ -516,6 +581,19 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
516581 }
517582
518583
584+ /**
585+ * [descr:WidgetOptions.tabIndex]
586+
587+ */
588+ @Input ( )
589+ get tabIndex ( ) : number {
590+ return this . _getOption ( 'tabIndex' ) ;
591+ }
592+ set tabIndex ( value : number ) {
593+ this . _setOption ( 'tabIndex' , value ) ;
594+ }
595+
596+
519597 /**
520598 * [descr:dxDiagramOptions.toolbox]
521599
@@ -699,6 +777,20 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
699777 */
700778 @Output ( ) onSelectionChanged : EventEmitter < SelectionChangedEvent > ;
701779
780+ /**
781+
782+ * This member supports the internal infrastructure and is not intended to be used directly from your code.
783+
784+ */
785+ @Output ( ) accessKeyChange : EventEmitter < string | undefined > ;
786+
787+ /**
788+
789+ * This member supports the internal infrastructure and is not intended to be used directly from your code.
790+
791+ */
792+ @Output ( ) activeStateEnabledChange : EventEmitter < boolean > ;
793+
702794 /**
703795
704796 * This member supports the internal infrastructure and is not intended to be used directly from your code.
@@ -783,6 +875,13 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
783875 */
784876 @Output ( ) exportChange : EventEmitter < { fileName ?: string } > ;
785877
878+ /**
879+
880+ * This member supports the internal infrastructure and is not intended to be used directly from your code.
881+
882+ */
883+ @Output ( ) focusStateEnabledChange : EventEmitter < boolean > ;
884+
786885 /**
787886
788887 * This member supports the internal infrastructure and is not intended to be used directly from your code.
@@ -811,13 +910,27 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
811910 */
812911 @Output ( ) heightChange : EventEmitter < number | string | undefined > ;
813912
913+ /**
914+
915+ * This member supports the internal infrastructure and is not intended to be used directly from your code.
916+
917+ */
918+ @Output ( ) hintChange : EventEmitter < string | undefined > ;
919+
814920 /**
815921
816922 * This member supports the internal infrastructure and is not intended to be used directly from your code.
817923
818924 */
819925 @Output ( ) historyToolbarChange : EventEmitter < { commands ?: Array < Command | CustomCommand > , visible ?: boolean } > ;
820926
927+ /**
928+
929+ * This member supports the internal infrastructure and is not intended to be used directly from your code.
930+
931+ */
932+ @Output ( ) hoverStateEnabledChange : EventEmitter < boolean > ;
933+
821934 /**
822935
823936 * This member supports the internal infrastructure and is not intended to be used directly from your code.
@@ -895,6 +1008,13 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
8951008 */
8961009 @Output ( ) snapToGridChange : EventEmitter < boolean > ;
8971010
1011+ /**
1012+
1013+ * This member supports the internal infrastructure and is not intended to be used directly from your code.
1014+
1015+ */
1016+ @Output ( ) tabIndexChange : EventEmitter < number > ;
1017+
8981018 /**
8991019
9001020 * This member supports the internal infrastructure and is not intended to be used directly from your code.
@@ -974,6 +1094,8 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
9741094 { subscribe : 'requestEditOperation' , emit : 'onRequestEditOperation' } ,
9751095 { subscribe : 'requestLayoutUpdate' , emit : 'onRequestLayoutUpdate' } ,
9761096 { subscribe : 'selectionChanged' , emit : 'onSelectionChanged' } ,
1097+ { emit : 'accessKeyChange' } ,
1098+ { emit : 'activeStateEnabledChange' } ,
9771099 { emit : 'autoZoomModeChange' } ,
9781100 { emit : 'contextMenuChange' } ,
9791101 { emit : 'contextToolboxChange' } ,
@@ -986,11 +1108,14 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
9861108 { emit : 'editingChange' } ,
9871109 { emit : 'elementAttrChange' } ,
9881110 { emit : 'exportChange' } ,
1111+ { emit : 'focusStateEnabledChange' } ,
9891112 { emit : 'fullScreenChange' } ,
9901113 { emit : 'gridSizeChange' } ,
9911114 { emit : 'hasChangesChange' } ,
9921115 { emit : 'heightChange' } ,
1116+ { emit : 'hintChange' } ,
9931117 { emit : 'historyToolbarChange' } ,
1118+ { emit : 'hoverStateEnabledChange' } ,
9941119 { emit : 'mainToolbarChange' } ,
9951120 { emit : 'nodesChange' } ,
9961121 { emit : 'pageColorChange' } ,
@@ -1002,6 +1127,7 @@ export class DxDiagramComponent extends DxComponent implements OnDestroy, OnChan
10021127 { emit : 'showGridChange' } ,
10031128 { emit : 'simpleViewChange' } ,
10041129 { emit : 'snapToGridChange' } ,
1130+ { emit : 'tabIndexChange' } ,
10051131 { emit : 'toolboxChange' } ,
10061132 { emit : 'unitsChange' } ,
10071133 { emit : 'useNativeScrollingChange' } ,
0 commit comments