ngx-rs-ant 2.1.1 → 2.1.2
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/data-grid.component.mjs +2 -2
- package/esm2020/data-grid/data-grid.service.mjs +1 -1
- package/esm2020/form/form.component.mjs +5 -2
- package/esm2020/util/utils.mjs +36 -3
- package/fesm2015/ngx-rs-ant.mjs +41 -5
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +41 -5
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/package.json +1 -1
- package/util/utils.d.ts +1 -0
package/package.json
CHANGED
package/util/utils.d.ts
CHANGED
|
@@ -12,3 +12,4 @@ export declare function validate(validator: DxValidatorComponent): Promise<boole
|
|
|
12
12
|
export declare function validate_group(validationGroupComponent: any): Promise<boolean>;
|
|
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
|
+
export declare function deepClone<T>(obj: any): T;
|