zek 16.1.15 → 16.1.17

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,6 +3,12 @@ import { BooleanInput } from '../../components';
3
3
  import { PrintType } from '../../models/print.model';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ZekEditToolbar {
6
+ private _showSave;
7
+ get showSave(): BooleanInput;
8
+ set showSave(v: BooleanInput);
9
+ private _showCancel;
10
+ get showCancel(): BooleanInput;
11
+ set showCancel(v: BooleanInput);
6
12
  printType: typeof PrintType;
7
13
  private _showExport;
8
14
  get showExport(): BooleanInput;
@@ -11,7 +17,7 @@ export declare class ZekEditToolbar {
11
17
  get showPrint(): BooleanInput;
12
18
  set showPrint(v: BooleanInput);
13
19
  private _readOnly;
14
- get readOnly(): boolean;
20
+ get readOnly(): BooleanInput;
15
21
  set readOnly(v: BooleanInput);
16
22
  onSave: EventEmitter<any>;
17
23
  onCancel: EventEmitter<any>;
@@ -21,5 +27,5 @@ export declare class ZekEditToolbar {
21
27
  onExport: EventEmitter<number>;
22
28
  exportExcel(): void;
23
29
  static ɵfac: i0.ɵɵFactoryDeclaration<ZekEditToolbar, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ZekEditToolbar, "zek-edit-toolbar", never, { "showExport": { "alias": "showExport"; "required": false; }; "showPrint": { "alias": "showPrint"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "onSave": "onSave"; "onCancel": "onCancel"; "onPrint": "onPrint"; "onExport": "onExport"; }, never, ["*"], true, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ZekEditToolbar, "zek-edit-toolbar", never, { "showSave": { "alias": "showSave"; "required": false; }; "showCancel": { "alias": "showCancel"; "required": false; }; "showExport": { "alias": "showExport"; "required": false; }; "showPrint": { "alias": "showPrint"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "onSave": "onSave"; "onCancel": "onCancel"; "onPrint": "onPrint"; "onExport": "onExport"; }, never, ["*"], true, never>;
25
31
  }
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter } from "@angular/core";
2
- import { CoreComponent, BooleanInput, StringInput, NumberInput } from "../../components";
2
+ import { CoreComponent, BooleanInput, NumberInput } from "../../components";
3
3
  import * as i0 from "@angular/core";
4
4
  export interface GoogleLoginConfig {
5
5
  client_id: string;
@@ -8,6 +8,8 @@ export type GoogleLoginButtonTextInput = 'signin_with' | 'signup_with' | 'contin
8
8
  export declare class ZekGoogleLoginButton extends CoreComponent {
9
9
  private readonly client_id;
10
10
  constructor(client_id: string);
11
+ private _uniqueId;
12
+ id: string;
11
13
  private _prompt;
12
14
  get prompt(): BooleanInput;
13
15
  set prompt(v: BooleanInput);
@@ -25,9 +27,6 @@ export declare class ZekGoogleLoginButton extends CoreComponent {
25
27
  set text(v: GoogleLoginButtonTextInput);
26
28
  onLoginResponse: EventEmitter<any>;
27
29
  onLogin: EventEmitter<any>;
28
- private _buttonContainer;
29
- get buttonContainer(): StringInput;
30
- set buttonContainer(v: StringInput);
31
30
  private google?;
32
31
  init(): Promise<void>;
33
32
  private onLoadComplete;
@@ -36,5 +35,5 @@ export declare class ZekGoogleLoginButton extends CoreComponent {
36
35
  autoPrompt(): void;
37
36
  handleCredentialResponse(response: any): void;
38
37
  static ɵfac: i0.ɵɵFactoryDeclaration<ZekGoogleLoginButton, never>;
39
- static ɵdir: i0.ɵɵDirectiveDeclaration<ZekGoogleLoginButton, "zek-google-login", never, { "prompt": { "alias": "prompt"; "required": false; }; "autoSelect": { "alias": "autoSelect"; "required": false; }; "cancelOnTapOutside": { "alias": "cancelOnTapOutside"; "required": false; }; "width": { "alias": "width"; "required": false; }; "text": { "alias": "text"; "required": false; }; "buttonContainer": { "alias": "buttonContainer"; "required": false; }; }, { "onLoginResponse": "onLoginResponse"; "onLogin": "onLogin"; }, never, never, false, never>;
38
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ZekGoogleLoginButton, "zek-google-login", never, { "id": { "alias": "id"; "required": false; }; "prompt": { "alias": "prompt"; "required": false; }; "autoSelect": { "alias": "autoSelect"; "required": false; }; "cancelOnTapOutside": { "alias": "cancelOnTapOutside"; "required": false; }; "width": { "alias": "width"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, { "onLoginResponse": "onLoginResponse"; "onLogin": "onLogin"; }, never, never, false, never>;
40
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "16.1.15",
3
+ "version": "16.1.17",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"