tent-lib 0.0.37 → 0.0.39

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.
@@ -16,5 +16,5 @@ export interface Cards2colItem {
16
16
  image: string;
17
17
  imageBackground: string;
18
18
  link: ButtonI;
19
- btn: ButtonI;
19
+ btns?: ButtonI[];
20
20
  }
@@ -1,5 +1,16 @@
1
+ import { ButtonI } from '../../../../public-api';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class FooterBComponent {
4
+ linksWithImage: FooterBLinkWithImage[];
5
+ logo: FooterBLinkWithImage;
6
+ title?: string;
7
+ links: ButtonI[];
8
+ buttons?: ButtonI[];
3
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FooterBComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<FooterBComponent, "tent-footer-b", never, {}, {}, never, never, true, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterBComponent, "tent-footer-b", never, { "linksWithImage": { "alias": "linksWithImage"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "title": { "alias": "title"; "required": false; }; "links": { "alias": "links"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, {}, never, never, true, never>;
11
+ }
12
+ export interface FooterBLinkWithImage {
13
+ img: string;
14
+ alt?: string;
15
+ url: string;
5
16
  }
@@ -16,5 +16,5 @@ export interface HotelServicesItem {
16
16
  title: string;
17
17
  subtitle: string;
18
18
  description: string;
19
- button: ButtonI;
19
+ buttons: ButtonI[];
20
20
  }
@@ -1,2 +1,9 @@
1
+ import { FooterBLinkWithImage } from '../../components/core/footer-b/footer-b.component';
2
+ import { ButtonI } from '../atomic/button.interface';
1
3
  export interface FooterBI {
4
+ linksWithImage: FooterBLinkWithImage[];
5
+ logo: FooterBLinkWithImage;
6
+ title?: string;
7
+ links: ButtonI[];
8
+ buttons?: ButtonI[];
2
9
  }
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "tent-lib",
3
- "version": "0.0.37",
3
+ "version": "0.0.39",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0",
7
7
  "@angular/material": "^17.0.2",
8
+ "@angular/google-maps": "^17.3.9",
8
9
  "ngx-owl-carousel-o": "^17.0.0"
9
10
  },
10
11
  "dependencies": {