@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.
- package/acorex-components.metadata.json +1 -1
- package/bundles/acorex-components.umd.js +3 -1
- package/bundles/acorex-components.umd.js.map +1 -1
- package/bundles/acorex-components.umd.min.js +1 -1
- package/bundles/acorex-components.umd.min.js.map +1 -1
- package/esm2015/lib/button/button.component.js +2 -2
- package/esm2015/lib/selectbox/selectbox.component.js +3 -1
- package/esm5/lib/button/button.component.js +2 -2
- package/esm5/lib/selectbox/selectbox.component.js +3 -1
- package/fesm2015/acorex-components.js +3 -1
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +3 -1
- package/fesm5/acorex-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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
|
}
|