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/components/lib/coer-tab/coer-tab.component.d.ts +1 -0
- package/esm2022/components/lib/coer-modal/coer-modal.component.mjs +3 -3
- package/esm2022/components/lib/coer-tab/coer-tab.component.mjs +13 -1
- package/esm2022/tools/lib/section.class.mjs +8 -2
- package/esm2022/tools/lib/tools.mjs +13 -1
- package/fesm2022/coer-elements-components.mjs +14 -2
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +19 -1
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/tools/lib/section.class.d.ts +2 -0
- package/tools/lib/tools.d.ts +2 -0
package/package.json
CHANGED
@@ -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;
|
package/tools/lib/tools.d.ts
CHANGED
@@ -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
|
};
|