coer-elements 1.1.29 → 1.1.31

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": "coer-elements",
3
- "version": "1.1.29",
3
+ "version": "1.1.31",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -61,6 +61,10 @@ export declare class COERSystem {
61
61
  UploadImage(images: IFile[]): void;
62
62
  /** */
63
63
  DeleteUserImage(): Promise<void>;
64
+ /** */
65
+ OpenSideNav(): void;
66
+ /** */
67
+ CloseSideNav(): void;
64
68
  static ɵfac: i0.ɵɵFactoryDeclaration<COERSystem, never>;
65
69
  static ɵcmp: i0.ɵɵComponentDeclaration<COERSystem, "coer-system", never, { "appName": { "alias": "appName"; "required": false; "isSignal": true; }; "userImage": { "alias": "userImage"; "required": false; "isSignal": true; }; "toolbarMenu": { "alias": "toolbarMenu"; "required": false; "isSignal": true; }; "user": { "alias": "user"; "required": false; }; "userRoles": { "alias": "userRoles"; "required": false; }; "navigation": { "alias": "navigation"; "required": false; }; }, { "onLogin": "onLogin"; "onRecovery": "onRecovery"; "onClickOption": "onClickOption"; "onResetPassword": "onResetPassword"; "onUpdateProfile": "onUpdateProfile"; "onUploadUserImage": "onUploadUserImage"; "onDeleteUserImage": "onDeleteUserImage"; }, never, ["*"], false, never>;
66
70
  }
@@ -12,7 +12,8 @@ export declare class Section<T> implements AfterViewInit, OnDestroy {
12
12
  onIsLoading: import("@angular/core").OutputEmitterRef<boolean>;
13
13
  onUpdated: import("@angular/core").OutputEmitterRef<T | null>;
14
14
  protected enableAnimations: boolean;
15
- ngAfterViewInit(): void;
15
+ protected isReadySection: boolean;
16
+ ngAfterViewInit(): Promise<void>;
16
17
  ngOnDestroy(): void;
17
18
  /** Main method. Starts after ngAfterViewInit() */
18
19
  protected RunSection(): void;