ngx-rs-ant 2.1.7 → 2.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-rs-ant",
3
- "version": "2.1.7",
3
+ "version": "2.2.0",
4
4
  "license": "MIT",
5
5
  "description": "RsAnt components based on Angular and DevExtreme",
6
6
  "exports": {
package/util/utils.d.ts CHANGED
@@ -14,3 +14,12 @@ export declare function validate_group_by_name(name: string, brokenElementParent
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
16
  export declare function evaluateFilter(filter: any, model: any): boolean;
17
+ export declare function addWatermark(container: HTMLElement, watermark: {
18
+ id: string;
19
+ text: string;
20
+ color: string;
21
+ font: string;
22
+ size: number;
23
+ rotate: number;
24
+ density: number;
25
+ }): void;