@ -341,6 +341,6 @@ export class Expander extends Widget {
}
destroy() {
super.destroy(arguments);
super.destroy(...arguments);
@ -418,12 +418,12 @@ export class ButtonGroup extends Widget {
empty() {
super.empty(arguments);
super.empty(...arguments);
this.options.items = [];
@ -342,6 +342,6 @@ export class Loader extends Widget {
@ -191,6 +191,6 @@ export class Navigation extends Widget {
@ -263,7 +263,7 @@ export class Switcher extends Widget {
_setEnable(arg) {
super._setEnable(arguments);
super._setEnable(...arguments);
!arg && this.isViewVisible() && this._hideView();
@ -200,6 +200,6 @@ export class Tab extends Widget {
this.cardMap = {};
@ -72,7 +72,7 @@ export class Single extends Widget {
this.setValue(newValue);
})
: value;
super._init(arguments);
super._init(...arguments);
_mounted() {
@ -69,7 +69,7 @@ export class BasicButton extends Single {
this.setSelected(newValue);
: opts.selected;
if (opts.shadow) {
this._createShadow();
@ -279,7 +279,7 @@ export class TextAreaEditor extends Single {
_setValid(b) {
super._setValid(arguments);
super._setValid(...arguments);
// this.content.setValid(b);
// this.watermark && this.watermark.setValid(b);
@ -52,7 +52,7 @@ export class Checkbox extends BasicButton {
doClick() {
super.doClick(arguments);
super.doClick(...arguments);
if (this.isValid()) {
this.fireEvent(Checkbox.EVENT_CHANGE);
@ -759,7 +759,7 @@ export class File extends Widget {
_setEnable(enable) {
if (enable === true) {
this.element.removeAttr("disabled");
} else {
@ -344,7 +344,7 @@ export class Input extends Single {
_setValid() {
this._lastChangedValue = this.getValue();
this.element.removeClass("bi-input-error");
@ -28,7 +28,7 @@ export class ImageRadio extends IconButton {
this.fireEvent(ImageRadio.EVENT_CHANGE);
@ -51,7 +51,7 @@ export class Radio extends BasicButton {
this.fireEvent(Radio.EVENT_CHANGE);
@ -12,7 +12,7 @@ export class MaskersController extends LayerController {
init() {
super.init(arguments);
super.init(...arguments);
this.zindex = zIndex_masker;
@ -13,7 +13,7 @@ export class StyleLoaderManager extends OB {
_init() {
this.stylesManager = {};