@stemy/ngx-utils 12.2.12 → 12.2.14

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.
@@ -274,6 +274,8 @@ export declare class IConfiguration {
274
274
  export interface IConfigService {
275
275
  config: IConfiguration;
276
276
  readonly load: () => Promise<IConfiguration>;
277
+ readonly rootElement: any;
278
+ cloneRootElem(): any;
277
279
  prepareUrl(url: string, ending: string): string;
278
280
  getConfigValue(key: string): any;
279
281
  getQueryParameter(name: string, url?: string): string;
@@ -1,5 +1,5 @@
1
1
  import { PipeTransform } from "@angular/core";
2
2
  export declare function defaultFilter(): boolean;
3
3
  export declare class FindPipe implements PipeTransform {
4
- transform(values: any[], filter?: any, params?: any): any[];
4
+ transform(values: any[], filter?: any, params?: any): any;
5
5
  }
@@ -20,6 +20,7 @@ export declare class ConfigService implements IConfigService {
20
20
  protected initService(): void;
21
21
  protected loadJson(): Promise<IConfiguration>;
22
22
  protected prepareConfig(config: IConfiguration): Promise<IConfiguration>;
23
+ cloneRootElem(): any;
23
24
  prepareUrl(url: string, ending: string): string;
24
25
  getConfigValue(key: string): any;
25
26
  getQueryParameter(name: string, url?: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "12.2.12",
3
+ "version": "12.2.14",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",