@rededor/site-front-end-lib 0.0.4-alpha.0 → 0.0.4-alpha.2

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.
@@ -17,6 +17,7 @@ export declare class RdsiteLinkDirective {
17
17
  private siteUrlList;
18
18
  private allowedTags;
19
19
  anchorAdjustment: number | null;
20
+ anchorExtraAdjustment: number | null;
20
21
  phonemodal: TemplateRef<HTMLElement> | null;
21
22
  constructor(router: Router, platformId: object, document: Document, libConfig: LibConfig, element: ElementRef<any>, phoneService: PhoneService, rdsitePhoneModalDirective: RdsitePhoneModalDirective);
22
23
  onClick(event: Event): void;
@@ -27,5 +28,5 @@ export declare class RdsiteLinkDirective {
27
28
  private scrollToAnchor;
28
29
  private navigateTo;
29
30
  static ɵfac: i0.ɵɵFactoryDeclaration<RdsiteLinkDirective, never>;
30
- static ɵdir: i0.ɵɵDirectiveDeclaration<RdsiteLinkDirective, "[rdsitelink]", never, { "anchorAdjustment": { "alias": "anchorAdjustment"; "required": false; }; "phonemodal": { "alias": "phonemodal"; "required": false; }; }, {}, never, never, true, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RdsiteLinkDirective, "[rdsitelink]", never, { "anchorAdjustment": { "alias": "anchorAdjustment"; "required": false; }; "anchorExtraAdjustment": { "alias": "anchorExtraAdjustment"; "required": false; }; "phonemodal": { "alias": "phonemodal"; "required": false; }; }, {}, never, never, true, never>;
31
32
  }
@@ -3,7 +3,7 @@ import { RdsiteModalComponentStyle } from '../../enums/RdsiteModalComponentStyle
3
3
  import * as i0 from "@angular/core";
4
4
  export declare abstract class AbstractModalComponent {
5
5
  abstract id: string;
6
- abstract modalTitle: string;
6
+ abstract modalTitle: string | null;
7
7
  abstract modalHeader: TemplateRef<any> | null;
8
8
  abstract modalContent: TemplateRef<any> | null;
9
9
  abstract modalContentContext: Record<string, any> | null;
@@ -2,11 +2,14 @@ import { TransferState } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class TransferStateService {
4
4
  private readonly transferState;
5
+ private platformId;
5
6
  private keys;
6
- constructor(transferState: TransferState);
7
+ constructor(transferState: TransferState, platformId: object);
7
8
  setKey(name: any, response: any | any[]): void;
8
9
  getKey(name: string, defaultValue?: any | any[]): any | any[];
9
10
  remove(name: string): void;
11
+ encryptResponseBase64(response: any): string;
12
+ decryptResponseBase64(response: any): string;
10
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TransferStateService, never>;
11
14
  static ɵprov: i0.ɵɵInjectableDeclaration<TransferStateService>;
12
15
  }
@@ -24,6 +24,7 @@ export interface LibConfig {
24
24
  };
25
25
  wpUrl: string;
26
26
  keywords: string;
27
+ logoPath?: string;
27
28
  customAnchorAdjustment?: (document: Document) => number;
28
29
  }
29
30
  export declare const LIB_CONFIG: InjectionToken<LibConfig>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rededor/site-front-end-lib",
3
- "version": "0.0.4-alpha.0",
3
+ "version": "0.0.4-alpha.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",