@acorex/components 3.0.65 → 3.0.66

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.
@@ -16804,6 +16804,55 @@
16804
16804
  return AXTimePropertyEditorModule;
16805
16805
  }());
16806
16806
 
16807
+ var AXTextareaPropertyEditorComponent = /** @class */ (function (_super) {
16808
+ __extends(AXTextareaPropertyEditorComponent, _super);
16809
+ function AXTextareaPropertyEditorComponent(cdr) {
16810
+ var _this = _super.call(this, cdr) || this;
16811
+ _this.cdr = cdr;
16812
+ _this.clearButton = false;
16813
+ _this.placeholder = null;
16814
+ _this.rows = 3;
16815
+ return _this;
16816
+ }
16817
+ AXTextareaPropertyEditorComponent.prototype.handleValueChange = function (e) {
16818
+ _super.prototype.handleValueChange.call(this, e.value);
16819
+ };
16820
+ AXTextareaPropertyEditorComponent.prototype.ngAfterViewInit = function () {
16821
+ this.registerForValidationForm(this.textBox);
16822
+ this.onRenderCompleted.emit();
16823
+ };
16824
+ AXTextareaPropertyEditorComponent.ctorParameters = function () { return [
16825
+ { type: core.ChangeDetectorRef }
16826
+ ]; };
16827
+ __decorate([
16828
+ core.ViewChild(AXTextBoxComponent),
16829
+ __metadata("design:type", AXTextBoxComponent)
16830
+ ], AXTextareaPropertyEditorComponent.prototype, "textBox", void 0);
16831
+ AXTextareaPropertyEditorComponent = __decorate([
16832
+ core.Component({
16833
+ template: "<ax-text-area (onValueChanged)=\"handleValueChange($event)\" [value]=\"value\" \r\n [readonly]=\"readonly\" \r\n [allowClear]=\"clearButton\"\r\n [placeholder]=\"placeholder\"\r\n [rows]=\"rows\"\r\n >\r\n <ax-validation [rules]=\"validation?.rules\">\r\n </ax-validation>\r\n</ax-text-area>"
16834
+ }),
16835
+ __metadata("design:paramtypes", [core.ChangeDetectorRef])
16836
+ ], AXTextareaPropertyEditorComponent);
16837
+ return AXTextareaPropertyEditorComponent;
16838
+ }(AXProperyEditorComponent));
16839
+
16840
+ var AXTextareaPropertyEditorModule = /** @class */ (function () {
16841
+ function AXTextareaPropertyEditorModule() {
16842
+ }
16843
+ AXTextareaPropertyEditorModule = __decorate([
16844
+ core.NgModule({
16845
+ declarations: [AXTextareaPropertyEditorComponent],
16846
+ imports: [common.CommonModule, forms.FormsModule, AXTextAreaModule, AXValidationModule],
16847
+ exports: [AXTextareaPropertyEditorComponent],
16848
+ entryComponents: [AXTextareaPropertyEditorComponent],
16849
+ providers: [],
16850
+ }),
16851
+ __metadata("design:paramtypes", [])
16852
+ ], AXTextareaPropertyEditorModule);
16853
+ return AXTextareaPropertyEditorModule;
16854
+ }());
16855
+
16807
16856
  var WDIGET_MODULES = [
16808
16857
  AXNumberBoxPropertyEditorModule,
16809
16858
  AXTextPropertyEditorModule,
@@ -16814,7 +16863,8 @@
16814
16863
  AXColumnPropertyEditorModule,
16815
16864
  AXSwitchPropertyEditorModule,
16816
16865
  AXDatePropertyEditorModule,
16817
- AXTimePropertyEditorModule
16866
+ AXTimePropertyEditorModule,
16867
+ AXTextareaPropertyEditorModule
16818
16868
  ];
16819
16869
  var AXProppertyEditorModule = /** @class */ (function () {
16820
16870
  function AXProppertyEditorModule() {
@@ -16828,6 +16878,10 @@
16828
16878
  component: AXTextPropertyEditorComponent,
16829
16879
  path: 'ax/editors/text'
16830
16880
  },
16881
+ {
16882
+ component: AXTextareaPropertyEditorComponent,
16883
+ path: 'ax/editors/textarea'
16884
+ },
16831
16885
  {
16832
16886
  component: AXSelectBoxPropertyEditorComponent,
16833
16887
  path: 'ax/editors/select'
@@ -17090,6 +17144,8 @@
17090
17144
  exports.ɵm = AXDatePropertyEditorComponent;
17091
17145
  exports.ɵn = AXTimePropertyEditorModule;
17092
17146
  exports.ɵo = AXTimePropertyEditorComponent;
17147
+ exports.ɵp = AXTextareaPropertyEditorModule;
17148
+ exports.ɵq = AXTextareaPropertyEditorComponent;
17093
17149
 
17094
17150
  Object.defineProperty(exports, '__esModule', { value: true });
17095
17151