@acorex/components 16.19.39 → 16.19.41

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.
@@ -13,6 +13,7 @@ export declare class AXNumberBoxPropertyEditorComponent extends AXProperyEditorC
13
13
  showCounter: boolean;
14
14
  scrollWeel: boolean;
15
15
  readonly: boolean;
16
+ placeholder: string;
16
17
  private textBox;
17
18
  constructor(cdr: ChangeDetectorRef);
18
19
  handleValueChange(e: any): void;
@@ -10,6 +10,7 @@ export declare class AXTextPropertyEditorComponent extends AXProperyEditorCompon
10
10
  mask: any;
11
11
  maskGuid: boolean;
12
12
  showMask: boolean;
13
+ placeholder: string;
13
14
  constructor(cdr: ChangeDetectorRef);
14
15
  handleValueChange(e: any): void;
15
16
  ngAfterViewInit(): void;
@@ -11,7 +11,7 @@ export declare class AXValidationRules {
11
11
  }
12
12
  export declare class AXValidationRuleComponent implements AXValidationRule {
13
13
  private ref?;
14
- type: AXValidationRuleTypes;
14
+ type: AXValidationRuleTypes | string;
15
15
  message: string;
16
16
  value: any;
17
17
  enabled: boolean;
@@ -1,7 +1,7 @@
1
1
  export type AXValidationRuleTypes = 'required' | 'regex' | 'callback' | 'custom';
2
2
  export interface AXValidationRule {
3
3
  message?: string;
4
- type: AXValidationRuleTypes;
4
+ type: AXValidationRuleTypes | string;
5
5
  value?: any;
6
6
  enabled?: boolean;
7
7
  }
@@ -1,4 +1,4 @@
1
- import { EventEmitter, ElementRef } from '@angular/core';
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
2
  import { AXValidationRule, AXValidationRuleResult } from './validation.class';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare abstract class AXValidation {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "16.19.39",
3
+ "version": "16.19.41",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.5",
6
6
  "@angular/core": "^19.0.5",