coer-elements 1.1.16 → 1.1.19

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.
@@ -3,5 +3,6 @@ export interface IHttpResponse<T> {
3
3
  status: number;
4
4
  message: string;
5
5
  text: string;
6
+ arraybuffer: ArrayBuffer | null;
6
7
  ok: boolean;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "1.1.16",
3
+ "version": "1.1.19",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -42,6 +42,8 @@ export declare class COERSystem {
42
42
  /** */
43
43
  protected SelectedOption(menu: IToolbarMenu): Promise<void>;
44
44
  /** */
45
+ SetUser(user: string): void;
46
+ /** */
45
47
  FocusUser(): void;
46
48
  /** */
47
49
  FocusPassword(): void;
@@ -10,6 +10,7 @@ export declare class LoginPage {
10
10
  title: import("@angular/core").InputSignal<string>;
11
11
  protected user: string;
12
12
  protected password: string;
13
+ protected remember: boolean;
13
14
  protected show: 'login' | 'recovery';
14
15
  onLogin: import("@angular/core").OutputEmitterRef<ILogIn>;
15
16
  onRecovery: import("@angular/core").OutputEmitterRef<string>;
@@ -26,6 +27,8 @@ export declare class LoginPage {
26
27
  FocusUser(): void;
27
28
  /** */
28
29
  FocusPassword(): void;
30
+ /** */
31
+ SetUser(user: string): void;
29
32
  static ɵfac: i0.ɵɵFactoryDeclaration<LoginPage, never>;
30
33
  static ɵcmp: i0.ɵɵComponentDeclaration<LoginPage, "login-page", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; }, { "onLogin": "onLogin"; "onRecovery": "onRecovery"; }, never, never, false, never>;
31
34
  }