ngx-rs-ant 2.1.3 → 2.1.4

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.
@@ -32,6 +32,7 @@ export declare class FormComponent extends UniqueId implements OnInit, OnChanges
32
32
  private valueChange;
33
33
  protected context: any;
34
34
  protected extraValidateMessage: any;
35
+ get _validatorGroupName(): string;
35
36
  constructor(viewContainerRef: ViewContainerRef, service: FormService, elementRef: ElementRef);
36
37
  ngOnInit(): void;
37
38
  ngOnChanges(changes: SimpleChanges): void;
@@ -40,7 +41,7 @@ export declare class FormComponent extends UniqueId implements OnInit, OnChanges
40
41
  protected extraValidate(): Promise<any>;
41
42
  protected submitForm(): void;
42
43
  scrollToAnchorPoint(anchorPointId: string): void;
43
- validate(): Promise<boolean>;
44
+ validate(): Promise<unknown>;
44
45
  submit(): void;
45
46
  static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
46
47
  static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "rs-form", never, { "tenant": "tenant"; "className": "className"; "oid": "oid"; "copyOid": "copyOid"; "template": "template"; "extraAttrMap": "extraAttrMap"; "params": "params"; "tabViewContainerRef": "tabViewContainerRef"; "onlyFrontEnd": "onlyFrontEnd"; "model": "model"; "readonly": "readonly"; }, { "onDataLoaded": "onDataLoaded"; "submitCallback": "submitCallback"; }, never, never, false, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-rs-ant",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "license": "MIT",
5
5
  "description": "RsAnt components based on Angular and DevExtreme",
6
6
  "exports": {
package/util/utils.d.ts CHANGED
@@ -13,3 +13,4 @@ export declare function validate_group(validationGroupComponent: any): Promise<b
13
13
  export declare function validate_group_by_name(name: string, brokenElementParent: Element): Promise<boolean>;
14
14
  export declare function openBrowserTab(pluginName: string, title?: string, pluginConfig?: any, params?: any): Window | null;
15
15
  export declare function deepClone<T>(obj: any): T;
16
+ export declare function evaluateFilter(filter: any, model: any): boolean;