tent-lib 0.0.233 → 0.0.235

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.
@@ -1,6 +1,7 @@
1
1
  import { OwlOptions } from 'ngx-owl-carousel-o';
2
- import { ButtonI } from '../../../../public-api';
3
2
  import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
3
+ import { ButtonI } from '../../../interfaces/atomic/button.interface';
4
+ import { Image } from '../../../interfaces/atomic/image.interface';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class HotelAboutComponent {
6
7
  private readonly sanitizer;
@@ -20,6 +21,6 @@ export declare class HotelAboutComponent {
20
21
  static ɵcmp: i0.ɵɵComponentDeclaration<HotelAboutComponent, "tent-hotel-about", never, { "title": { "alias": "title"; "required": false; }; "titleDark": { "alias": "titleDark"; "required": false; }; "description": { "alias": "description"; "required": false; }; "additionalDescription": { "alias": "additionalDescription"; "required": false; }; "btnMore": { "alias": "btnMore"; "required": false; }; "btnLess": { "alias": "btnLess"; "required": false; }; "slides": { "alias": "slides"; "required": false; }; }, {}, never, never, true, never>;
21
22
  }
22
23
  export interface HotelAboutSlide {
23
- image: string;
24
+ image: Image;
24
25
  badge: string;
25
26
  }
@@ -0,0 +1,16 @@
1
+ import { GalleryFilterOption } from '../../components/core/generic-head/generic-head.component';
2
+ import { BreadcrumpI } from '../atomic/breadcrump.interface';
3
+ import { ButtonI } from '../atomic/button.interface';
4
+ import { DropdownI } from '../atomic/dropdown.interface';
5
+ export interface GenericHeadI {
6
+ theme?: string;
7
+ galleryFilterOptions?: GalleryFilterOption[];
8
+ title?: string;
9
+ titleDark?: string;
10
+ breadcrumps?: BreadcrumpI;
11
+ filter?: DropdownI;
12
+ button?: ButtonI;
13
+ galleryBtns?: ButtonI[];
14
+ linkMaps?: ButtonI;
15
+ linkBack?: ButtonI;
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tent-lib",
3
- "version": "0.0.233",
3
+ "version": "0.0.235",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0",
package/public-api.d.ts CHANGED
@@ -100,4 +100,5 @@ export * from './lib/interfaces/core/hotel-app.interface';
100
100
  export * from './lib/interfaces/core/hotel-equipment.interface';
101
101
  export * from './lib/interfaces/core/hotel-location.interface';
102
102
  export * from './lib/interfaces/core/submenu.interface';
103
+ export * from './lib/interfaces/core/generic-head.interface';
103
104
  export * from './services';