@acorex/components 3.0.7 → 3.0.8
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 +4 -4
- 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/selectbox/selectbox.component.js +2 -2
- package/esm2015/lib/textarea/textarea.component.js +4 -4
- package/esm5/lib/selectbox/selectbox.component.js +2 -2
- package/esm5/lib/textarea/textarea.component.js +4 -4
- package/fesm2015/acorex-components.js +4 -4
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +4 -4
- package/fesm5/acorex-components.js.map +1 -1
- package/lib/textarea/textarea.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -8241,7 +8241,7 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
|
|
|
8241
8241
|
_this.size = 'md';
|
|
8242
8242
|
_this.allowNull = true;
|
|
8243
8243
|
_this.textAlign = null;
|
|
8244
|
-
_this.bufferSize =
|
|
8244
|
+
_this.bufferSize = 20;
|
|
8245
8245
|
_this.remoteOperation = false;
|
|
8246
8246
|
// this input is Private and only use in LOV
|
|
8247
8247
|
_this.currentfocusedIndex = -1;
|
|
@@ -11494,7 +11494,7 @@ var AXTextAreaComponent = /** @class */ (function (_super) {
|
|
|
11494
11494
|
_this.cdr = cdr;
|
|
11495
11495
|
_this.rows = 0;
|
|
11496
11496
|
_this.cols = 0;
|
|
11497
|
-
_this.
|
|
11497
|
+
_this.maxLength = null;
|
|
11498
11498
|
return _this;
|
|
11499
11499
|
}
|
|
11500
11500
|
AXTextAreaComponent_1 = AXTextAreaComponent;
|
|
@@ -11514,11 +11514,11 @@ var AXTextAreaComponent = /** @class */ (function (_super) {
|
|
|
11514
11514
|
__decorate([
|
|
11515
11515
|
Input(),
|
|
11516
11516
|
__metadata("design:type", Number)
|
|
11517
|
-
], AXTextAreaComponent.prototype, "
|
|
11517
|
+
], AXTextAreaComponent.prototype, "maxLength", void 0);
|
|
11518
11518
|
AXTextAreaComponent = AXTextAreaComponent_1 = __decorate([
|
|
11519
11519
|
Component({
|
|
11520
11520
|
selector: 'ax-text-area',
|
|
11521
|
-
template: "<div class=\"ax form-item {{size}}\" [class.disabled]=\"disabled\" [attr.id]=\"uid\">\r\n <div class=\"content\">\r\n <div class=\"ax input {{size}}\" [class.disabled]=\"disabled\" [class.readonly]=\"readonly\">\r\n <textarea [attr.maxlength]=\"
|
|
11521
|
+
template: "<div class=\"ax form-item {{size}}\" [class.disabled]=\"disabled\" [attr.id]=\"uid\">\r\n <div class=\"content\">\r\n <div class=\"ax input {{size}}\" [class.disabled]=\"disabled\" [class.readonly]=\"readonly\">\r\n <textarea [attr.maxlength]=\"maxLength\" rows=\"{{rows}}\" cols=\"{{cols}}\" #input type=\"text\"\r\n class=\"ax icon {{size}}\" [ngClass]=\"setTextAlign()\" placeholder=\"{{placeholder}}\" [readonly]=\"readonly\"\r\n [disabled]=\"disabled\" value=\"{{value}}\"></textarea>\r\n </div>\r\n </div>\r\n <div class=\"ax buttons\">\r\n <ng-content select=\"ax-button\">\r\n </ng-content>\r\n </div>\r\n</div>",
|
|
11522
11522
|
encapsulation: ViewEncapsulation.None,
|
|
11523
11523
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
11524
11524
|
host: { style: 'display: contents;' },
|