coer-elements 0.0.50 → 0.0.52

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "0.0.50",
3
+ "version": "0.0.52",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -0,0 +1,11 @@
1
+ export declare class Filters {
2
+ private static readonly storage;
3
+ /** */
4
+ static Add<T>(filters: T, path: string): void;
5
+ /** */
6
+ static Get<T>(path: string): T | null;
7
+ /** */
8
+ static Remove(path: string): void;
9
+ /** */
10
+ static RemoveAll(): void;
11
+ }
@@ -24,7 +24,10 @@ export declare class Page implements AfterViewInit, OnDestroy {
24
24
  /** */
25
25
  protected pageResponse: any;
26
26
  /** */
27
+ protected pageFilters: any;
28
+ /** */
27
29
  protected goBack: IGoBack;
30
+ private _path;
28
31
  private _page;
29
32
  private _source;
30
33
  private _preventDestroy;
@@ -40,7 +43,7 @@ export declare class Page implements AfterViewInit, OnDestroy {
40
43
  /** */
41
44
  private __GetSource;
42
45
  /** */
43
- protected GetPageResponse(): void;
46
+ private __GetPageResponse;
44
47
  /** */
45
48
  private __GetNavigation;
46
49
  /** */
@@ -54,6 +57,10 @@ export declare class Page implements AfterViewInit, OnDestroy {
54
57
  /** */
55
58
  protected ReloadPage(): void;
56
59
  /** */
60
+ protected SetPageFilters<T>(filters: T): void;
61
+ /** */
62
+ private __GetPageFilter;
63
+ /** */
57
64
  protected Log(value: any, log?: string | null): void;
58
65
  protected isActiveTemplate: (item: import("coer-elements/interfaces").IGridItem<any>) => string;
59
66
  protected coerSwitchTemplate: (item: import("coer-elements/interfaces").IGridItem<any>) => import("coer-elements/interfaces").IGridCoerSwitch;
@@ -5,6 +5,7 @@ export * from './lib/colors.class';
5
5
  export * from './lib/control-value.class';
6
6
  export * from './lib/date-time.class';
7
7
  export * from './lib/files.class';
8
+ export * from './lib/filters.class';
8
9
  export * from './lib/menu.class';
9
10
  export * from './lib/page.class';
10
11
  export * from './lib/screen.class';