@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.
@@ -8447,7 +8447,7 @@
8447
8447
  _this.size = 'md';
8448
8448
  _this.allowNull = true;
8449
8449
  _this.textAlign = null;
8450
- _this.bufferSize = 100;
8450
+ _this.bufferSize = 20;
8451
8451
  _this.remoteOperation = false;
8452
8452
  // this input is Private and only use in LOV
8453
8453
  _this.currentfocusedIndex = -1;
@@ -11700,7 +11700,7 @@
11700
11700
  _this.cdr = cdr;
11701
11701
  _this.rows = 0;
11702
11702
  _this.cols = 0;
11703
- _this.maxlength = null;
11703
+ _this.maxLength = null;
11704
11704
  return _this;
11705
11705
  }
11706
11706
  AXTextAreaComponent_1 = AXTextAreaComponent;
@@ -11720,11 +11720,11 @@
11720
11720
  __decorate([
11721
11721
  core.Input(),
11722
11722
  __metadata("design:type", Number)
11723
- ], AXTextAreaComponent.prototype, "maxlength", void 0);
11723
+ ], AXTextAreaComponent.prototype, "maxLength", void 0);
11724
11724
  AXTextAreaComponent = AXTextAreaComponent_1 = __decorate([
11725
11725
  core.Component({
11726
11726
  selector: 'ax-text-area',
11727
- 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>",
11727
+ 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>",
11728
11728
  encapsulation: core.ViewEncapsulation.None,
11729
11729
  changeDetection: core.ChangeDetectionStrategy.OnPush,
11730
11730
  host: { style: 'display: contents;' },