@acorex/components 16.19.39 → 16.19.40

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.
@@ -13536,6 +13536,7 @@ class AXNumberBoxPropertyEditorComponent extends AXProperyEditorComponent {
13536
13536
  showCounter = true;
13537
13537
  scrollWeel = true;
13538
13538
  readonly = false;
13539
+ placeholder = '';
13539
13540
  textBox;
13540
13541
  constructor(cdr) {
13541
13542
  super(cdr);
@@ -13561,6 +13562,7 @@ class AXNumberBoxPropertyEditorComponent extends AXProperyEditorComponent {
13561
13562
  [showCounter]="showCounter"
13562
13563
  [readonly]="readonly"
13563
13564
  [scrollWeel]="scrollWeel"
13565
+ [placeholder]="placeholder"
13564
13566
  >
13565
13567
  <ax-validation [rules]="validation?.rules"> </ax-validation>
13566
13568
  </ax-number-box>
@@ -13581,11 +13583,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
13581
13583
  [showCounter]="showCounter"
13582
13584
  [readonly]="readonly"
13583
13585
  [scrollWeel]="scrollWeel"
13586
+ [placeholder]="placeholder"
13584
13587
  >
13585
13588
  <ax-validation [rules]="validation?.rules"> </ax-validation>
13586
13589
  </ax-number-box>
13587
13590
  `,
13588
- standalone: false
13591
+ standalone: false,
13589
13592
  }]
13590
13593
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { textBox: [{
13591
13594
  type: ViewChild,
@@ -14137,6 +14140,7 @@ class AXTextPropertyEditorComponent extends AXProperyEditorComponent {
14137
14140
  mask;
14138
14141
  maskGuid = false;
14139
14142
  showMask = false;
14143
+ placeholder = '';
14140
14144
  constructor(cdr) {
14141
14145
  super(cdr);
14142
14146
  this.cdr = cdr;
@@ -14149,11 +14153,11 @@ class AXTextPropertyEditorComponent extends AXProperyEditorComponent {
14149
14153
  this.onRenderCompleted.emit();
14150
14154
  }
14151
14155
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: AXTextPropertyEditorComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
14152
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: AXTextPropertyEditorComponent, isStandalone: false, selector: "ng-component", viewQueries: [{ propertyName: "textBox", first: true, predicate: AXTextBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ax-text-box (onValueChanged)=\"handleValueChange($event)\" [value]=\"value\" [readonly]=\"readonly\"\n [allowClear]=\"clearButton\" [mask]=\"mask\" [showMask]=\"showMask\">\n <ax-validation [rules]=\"validation?.rules\">\n </ax-validation>\n</ax-text-box>", dependencies: [{ kind: "component", type: AXTextBoxComponent, selector: "ax-text-box", inputs: ["mask", "showMask", "type", "maxLength", "maskGuid", "maskPlaceholder", "maskKeepCharPositions", "leadZeroDateTime"] }, { kind: "component", type: AXValidationComponent, selector: "ax-validation", inputs: ["rules", "validateOn"], outputs: ["rulesChange", "showMessage"] }] });
14156
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: AXTextPropertyEditorComponent, isStandalone: false, selector: "ng-component", viewQueries: [{ propertyName: "textBox", first: true, predicate: AXTextBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ax-text-box\n (onValueChanged)=\"handleValueChange($event)\"\n [value]=\"value\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [allowClear]=\"clearButton\"\n [mask]=\"mask\"\n [showMask]=\"showMask\"\n>\n <ax-validation [rules]=\"validation?.rules\"> </ax-validation>\n</ax-text-box>\n", dependencies: [{ kind: "component", type: AXTextBoxComponent, selector: "ax-text-box", inputs: ["mask", "showMask", "type", "maxLength", "maskGuid", "maskPlaceholder", "maskKeepCharPositions", "leadZeroDateTime"] }, { kind: "component", type: AXValidationComponent, selector: "ax-validation", inputs: ["rules", "validateOn"], outputs: ["rulesChange", "showMessage"] }] });
14153
14157
  }
14154
14158
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: AXTextPropertyEditorComponent, decorators: [{
14155
14159
  type: Component,
14156
- args: [{ standalone: false, template: "<ax-text-box (onValueChanged)=\"handleValueChange($event)\" [value]=\"value\" [readonly]=\"readonly\"\n [allowClear]=\"clearButton\" [mask]=\"mask\" [showMask]=\"showMask\">\n <ax-validation [rules]=\"validation?.rules\">\n </ax-validation>\n</ax-text-box>" }]
14160
+ args: [{ standalone: false, template: "<ax-text-box\n (onValueChanged)=\"handleValueChange($event)\"\n [value]=\"value\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [allowClear]=\"clearButton\"\n [mask]=\"mask\"\n [showMask]=\"showMask\"\n>\n <ax-validation [rules]=\"validation?.rules\"> </ax-validation>\n</ax-text-box>\n" }]
14157
14161
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { textBox: [{
14158
14162
  type: ViewChild,
14159
14163
  args: [AXTextBoxComponent]