coer-elements 0.0.60 → 0.0.62

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.60",
3
+ "version": "0.0.62",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -14,6 +14,8 @@ export declare class Section<T> implements AfterViewInit, OnDestroy {
14
14
  protected enableAnimations: boolean;
15
15
  ngAfterViewInit(): void;
16
16
  ngOnDestroy(): void;
17
+ /** Main method. Starts after ngAfterViewInit() */
18
+ protected RunSection(): void;
17
19
  /** */
18
20
  protected Log(value: any, log?: string | null): void;
19
21
  protected isActiveTemplate: (item: import("coer-elements/interfaces").IGridItem<any>) => string;
@@ -31,4 +31,6 @@ export declare const Tools: {
31
31
  GetNumericFormat: (value: string | number | null | undefined, decimals?: number) => string;
32
32
  /** Wait the time indicated */
33
33
  Sleep: (milliseconds?: number, reference?: string | null) => Promise<unknown>;
34
+ /** */
35
+ Except: <T_9>(array: T_9[], filter: any[], ...properties: string[]) => T_9[];
34
36
  };