@acorex/cdk 20.2.56 → 20.2.58
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,7 +336,6 @@ declare class MXInteractiveComponent extends MXBaseComponent {
|
|
|
336
336
|
*
|
|
337
337
|
* @param isDisabled - Whether the component should be disabled.
|
|
338
338
|
*/
|
|
339
|
-
setDisabledState(isDisabled: boolean): void;
|
|
340
339
|
_tabIndex: number;
|
|
341
340
|
/**
|
|
342
341
|
* Specifies the tabindex of the component.
|
|
@@ -419,6 +419,15 @@ class MXInteractiveComponent extends MXBaseComponent {
|
|
|
419
419
|
* @event
|
|
420
420
|
*/
|
|
421
421
|
this.disabledChange = new EventEmitter();
|
|
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
|
+
// }
|
|
422
431
|
this._tabIndex = 0;
|
|
423
432
|
/**
|
|
424
433
|
* Fires each time the component gets focused.
|
|
@@ -478,14 +487,6 @@ class MXInteractiveComponent extends MXBaseComponent {
|
|
|
478
487
|
},
|
|
479
488
|
});
|
|
480
489
|
}
|
|
481
|
-
/**
|
|
482
|
-
* Sets the disabled state of the component.
|
|
483
|
-
*
|
|
484
|
-
* @param isDisabled - Whether the component should be disabled.
|
|
485
|
-
*/
|
|
486
|
-
setDisabledState(isDisabled) {
|
|
487
|
-
this.disabled = isDisabled;
|
|
488
|
-
}
|
|
489
490
|
/**
|
|
490
491
|
* Specifies the tabindex of the component.
|
|
491
492
|
*/
|
|
@@ -560,7 +561,7 @@ class MXValueComponent extends MXInteractiveComponent {
|
|
|
560
561
|
*/
|
|
561
562
|
this.valueChange = new EventEmitter();
|
|
562
563
|
this.readonlyChange = new EventEmitter();
|
|
563
|
-
this._readonly =
|
|
564
|
+
this._readonly = null;
|
|
564
565
|
this._dirty = false;
|
|
565
566
|
this._isUserInteraction = false;
|
|
566
567
|
this.stateChange = new EventEmitter();
|