@acorex/components 1.3.93 → 1.3.94

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.
@@ -1229,7 +1229,7 @@
1229
1229
  core.Component({
1230
1230
  selector: 'ax-button',
1231
1231
  encapsulation: core.ViewEncapsulation.None,
1232
- template: "<button #container class=\"ax button form-control {{type}} {{size}}\" [class.selected]=\"selected\" [class.icon]=\"icon\"\r\n [class.icon]=\"loading\" [class.disabled]=\"disabled || loading\" (click)=\"handleClick($event)\" [disabled]=\"disabled\"\r\n [ngStyle]=\"{'width.%': block ? 100 : 'auto'}\" [attr.tabindex]=\"tabIndex\">\r\n <div class=\"button-inner-content\">\r\n <ng-container *ngIf=\"icon && !loading\">\r\n <i class=\"{{icon}} icon\"></i><ng-container *ngIf=\"refContent.innerText.length==0 && refContent.children.length == 0\">&nbsp;&nbsp;</ng-container>\r\n </ng-container>\r\n <ng-container *ngIf=\"loading\">\r\n <i class=\"far fa-circle-notch fa-spin icon\"></i><ng-container *ngIf=\"refContent.innerText.length==0 && refContent.children.length == 0\">&nbsp;&nbsp;</ng-container>\r\n </ng-container>\r\n <div class=\"ax-wrapper\" #refContent>\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n</button>"
1232
+ template: "<button #container class=\"ax button form-control {{type}} {{size}}\" [class.selected]=\"selected\" [class.icon]=\"icon\"\r\n [class.icon]=\"loading\" [class.disabled]=\"disabled || loading\" (click)=\"handleClick($event)\" [disabled]=\"disabled\"\r\n [ngStyle]=\"{'width.%': block ? 100 : 'auto'}\" [attr.tabindex]=\"tabIndex\">\r\n <div class=\"button-inner-content\">\r\n <ng-container *ngIf=\"icon && !loading\">\r\n <i class=\"{{icon}} icon\"></i>\r\n <ng-container *ngIf=\"refContent.innerText.length==0 && refContent.children.length == 0\"></ng-container>\r\n </ng-container>\r\n <ng-container *ngIf=\"loading\">\r\n <i class=\"far fa-circle-notch fa-spin icon\"></i>\r\n <ng-container *ngIf=\"refContent.innerText.length==0 && refContent.children.length == 0\"></ng-container>\r\n </ng-container>\r\n <div class=\"ax-wrapper\" #refContent>\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n</button>"
1233
1233
  }),
1234
1234
  __metadata("design:paramtypes", [core.ElementRef])
1235
1235
  ], AXButtonComponent);
@@ -8432,6 +8432,7 @@
8432
8432
  _this.showCheckBox = true;
8433
8433
  _this.readonly = false;
8434
8434
  _this.rtl = core$1.AXConfig.get('layout.rtl');
8435
+ _this.disabled = false;
8435
8436
  _this.size = 'md';
8436
8437
  _this.allowNull = true;
8437
8438
  _this.textAlign = null;
@@ -8914,6 +8915,7 @@
8914
8915
  };
8915
8916
  AXSelectBoxComponent.prototype.onFocusTextBox = function (e) { };
8916
8917
  AXSelectBoxComponent.prototype.onTextBoxClick = function (e) {
8918
+ debugger;
8917
8919
  if (this.disabled == false && this.readonly == false) {
8918
8920
  this.dropdown.open();
8919
8921
  }