ngx-rs-ant 2.1.3 → 2.1.5
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.
- package/esm2020/data-grid/cell-component-template/cell-component-template.component.mjs +1 -1
- package/esm2020/data-grid/data-grid.component.mjs +7 -1
- package/esm2020/form/field-selector/field-selector.component.mjs +3 -3
- package/esm2020/form/form.component.mjs +31 -4
- package/esm2020/util/utils.mjs +75 -1
- package/fesm2015/ngx-rs-ant.mjs +113 -5
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +112 -5
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/form/form.component.d.ts +2 -1
- package/package.json +1 -1
- package/util/utils.d.ts +1 -0
package/form/form.component.d.ts
CHANGED
|
@@ -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<
|
|
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
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;
|