@acorex/cdk 20.2.57 → 20.2.59
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/common/index.d.ts
CHANGED
|
@@ -336,6 +336,7 @@ declare class MXInteractiveComponent extends MXBaseComponent {
|
|
|
336
336
|
*
|
|
337
337
|
* @param isDisabled - Whether the component should be disabled.
|
|
338
338
|
*/
|
|
339
|
+
setDisabledState(isDisabled: boolean): void;
|
|
339
340
|
_tabIndex: number;
|
|
340
341
|
/**
|
|
341
342
|
* Specifies the tabindex of the component.
|
|
@@ -420,14 +420,6 @@ class MXInteractiveComponent extends MXBaseComponent {
|
|
|
420
420
|
*/
|
|
421
421
|
this.disabledChange = new EventEmitter();
|
|
422
422
|
this._disabled = null;
|
|
423
|
-
/**
|
|
424
|
-
* Sets the disabled state of the component.
|
|
425
|
-
*
|
|
426
|
-
* @param isDisabled - Whether the component should be disabled.
|
|
427
|
-
*/
|
|
428
|
-
// setDisabledState(isDisabled: boolean): void {
|
|
429
|
-
// this.disabled = isDisabled;
|
|
430
|
-
// }
|
|
431
423
|
this._tabIndex = 0;
|
|
432
424
|
/**
|
|
433
425
|
* Fires each time the component gets focused.
|
|
@@ -487,6 +479,14 @@ class MXInteractiveComponent extends MXBaseComponent {
|
|
|
487
479
|
},
|
|
488
480
|
});
|
|
489
481
|
}
|
|
482
|
+
/**
|
|
483
|
+
* Sets the disabled state of the component.
|
|
484
|
+
*
|
|
485
|
+
* @param isDisabled - Whether the component should be disabled.
|
|
486
|
+
*/
|
|
487
|
+
setDisabledState(isDisabled) {
|
|
488
|
+
this.disabled = isDisabled;
|
|
489
|
+
}
|
|
490
490
|
/**
|
|
491
491
|
* Specifies the tabindex of the component.
|
|
492
492
|
*/
|