ctt-babylon 0.4.2 → 0.4.3

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.
@@ -4,7 +4,8 @@ import * as i0 from "@angular/core";
4
4
  export declare class BabylonActionBannerComponent {
5
5
  button?: BabylonButtonI;
6
6
  image?: BabylonImageI;
7
+ table?: string;
7
8
  modalClick: EventEmitter<string>;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<BabylonActionBannerComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<BabylonActionBannerComponent, "lib-babylon-action-banner", never, { "button": { "alias": "button"; "required": false; }; "image": { "alias": "image"; "required": false; }; }, { "modalClick": "modalClick"; }, never, never, true, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<BabylonActionBannerComponent, "lib-babylon-action-banner", never, { "button": { "alias": "button"; "required": false; }; "image": { "alias": "image"; "required": false; }; "table": { "alias": "table"; "required": false; }; }, { "modalClick": "modalClick"; }, never, never, true, never>;
10
11
  }
@@ -2,4 +2,5 @@ import { BabylonButtonI, BabylonImageI } from "../../../interfaces";
2
2
  export interface BabylonActionBannerI {
3
3
  button?: BabylonButtonI;
4
4
  image?: BabylonImageI;
5
+ table?: string;
5
6
  }
@@ -3,6 +3,7 @@ import { OptionModalPopupI } from "./babylon-modal-popup.component";
3
3
  export interface BabylonModalPopupI {
4
4
  title?: string;
5
5
  subtitle?: string;
6
+ placeholder?: string;
6
7
  options?: OptionModalPopupI[];
7
8
  image?: BabylonImageI;
8
9
  }
@@ -1,7 +1,7 @@
1
- import { ElementRef, EventEmitter, OnInit } from '@angular/core';
1
+ import { ElementRef, EventEmitter, OnChanges } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import * as i0 from "@angular/core";
4
- export declare class BabylonLinkTypeDirective implements OnInit {
4
+ export declare class BabylonLinkTypeDirective implements OnChanges {
5
5
  private readonly router;
6
6
  private readonly elRef;
7
7
  linkType?: string;
@@ -14,7 +14,7 @@ export declare class BabylonLinkTypeDirective implements OnInit {
14
14
  private readonly MAILTO_RE;
15
15
  private readonly ADDRESS_RE;
16
16
  constructor(router: Router, elRef: ElementRef);
17
- ngOnInit(): void;
17
+ ngOnChanges(): void;
18
18
  btnClick(event: Event): void;
19
19
  private handleInternalLink;
20
20
  private handleExternalLink;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ctt-babylon",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",