@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.
@@ -1023,7 +1023,7 @@ var AXButtonComponent = /** @class */ (function (_super) {
1023
1023
  Component({
1024
1024
  selector: 'ax-button',
1025
1025
  encapsulation: ViewEncapsulation.None,
1026
- 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>"
1026
+ 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>"
1027
1027
  }),
1028
1028
  __metadata("design:paramtypes", [ElementRef])
1029
1029
  ], AXButtonComponent);
@@ -8226,6 +8226,7 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
8226
8226
  _this.showCheckBox = true;
8227
8227
  _this.readonly = false;
8228
8228
  _this.rtl = AXConfig.get('layout.rtl');
8229
+ _this.disabled = false;
8229
8230
  _this.size = 'md';
8230
8231
  _this.allowNull = true;
8231
8232
  _this.textAlign = null;
@@ -8708,6 +8709,7 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
8708
8709
  };
8709
8710
  AXSelectBoxComponent.prototype.onFocusTextBox = function (e) { };
8710
8711
  AXSelectBoxComponent.prototype.onTextBoxClick = function (e) {
8712
+ debugger;
8711
8713
  if (this.disabled == false && this.readonly == false) {
8712
8714
  this.dropdown.open();
8713
8715
  }