tent-lib 0.0.70 → 0.0.72

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.
@@ -0,0 +1,29 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { DropdownOption } from '../../atomic/dropdown/dropdown.component';
3
+ import { BreadcrumpI } from '../../../interfaces/atomic/breadcrump.interface';
4
+ import { DropdownI } from '../../../interfaces/atomic/dropdown.interface';
5
+ import { ButtonI } from '../../../interfaces/atomic/button.interface';
6
+ import * as i0 from "@angular/core";
7
+ export declare class GenericHeadComponent implements OnInit {
8
+ theme?: string;
9
+ galleryFilterOptions?: GalleryFilterOption[];
10
+ title?: string;
11
+ titleDark?: string;
12
+ breadcrumps?: BreadcrumpI;
13
+ filter?: DropdownI;
14
+ button?: ButtonI;
15
+ galleryBtns?: ButtonI[];
16
+ linkMaps?: ButtonI;
17
+ linkBack?: ButtonI;
18
+ filterChange: EventEmitter<DropdownOption>;
19
+ galleryFilterSelected: GalleryFilterOption;
20
+ ngOnInit(): void;
21
+ filterChanged(option: DropdownOption): void;
22
+ filterGalleryClicked(option: GalleryFilterOption): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<GenericHeadComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<GenericHeadComponent, "tent-generic-head", never, { "theme": { "alias": "theme"; "required": false; }; "galleryFilterOptions": { "alias": "galleryFilterOptions"; "required": false; }; "title": { "alias": "title"; "required": false; }; "titleDark": { "alias": "titleDark"; "required": false; }; "breadcrumps": { "alias": "breadcrumps"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "button": { "alias": "button"; "required": false; }; "galleryBtns": { "alias": "galleryBtns"; "required": false; }; "linkMaps": { "alias": "linkMaps"; "required": false; }; "linkBack": { "alias": "linkBack"; "required": false; }; }, { "filterChange": "filterChange"; }, never, never, true, never>;
25
+ }
26
+ export interface GalleryFilterOption {
27
+ id: string;
28
+ label: string;
29
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tent-lib",
3
- "version": "0.0.70",
3
+ "version": "0.0.72",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0",
package/public-api.d.ts CHANGED
@@ -59,6 +59,7 @@ export * from './lib/components/core/services-details/services-details.component
59
59
  export * from './lib/components/core/submenu/submenu.component';
60
60
  export * from './lib/components/core/thanks/thanks.component';
61
61
  export * from './lib/components/core/webmap/webmap.component';
62
+ export * from './lib/components/core/generic-head/generic-head.component';
62
63
  export * from './lib/interfaces/atomic/button.interface';
63
64
  export * from './lib/interfaces/atomic/datepicker.interface';
64
65
  export * from './lib/interfaces/atomic/dropdown.interface';