tent-lib 0.0.26 → 0.0.28
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.
- package/esm2022/lib/components/atomic/badge/badge.component.mjs +3 -3
- package/esm2022/lib/components/atomic/breadcrump/breadcrump.component.mjs +30 -0
- package/esm2022/lib/components/atomic/button/button.component.mjs +10 -4
- package/esm2022/lib/components/atomic/datepicker/datepicker.component.mjs +3 -3
- package/esm2022/lib/components/atomic/dropdown/dropdown.component.mjs +3 -3
- package/esm2022/lib/components/core/advantages/advantages.component.mjs +13 -6
- package/esm2022/lib/components/core/cards-2col/cards-2col.component.mjs +24 -5
- package/esm2022/lib/components/core/cards-3col/cards-3col.component.mjs +11 -6
- package/esm2022/lib/components/core/destination-info/destination-info.component.mjs +25 -6
- package/esm2022/lib/components/core/footer-a/footer-a.component.mjs +3 -3
- package/esm2022/lib/components/core/footer-b/footer-b.component.mjs +3 -3
- package/esm2022/lib/components/core/footer-static/footer-static.component.mjs +21 -6
- package/esm2022/lib/components/core/guests-popup/guests-popup.component.mjs +37 -124
- package/esm2022/lib/components/core/header/header.component.mjs +36 -17
- package/esm2022/lib/components/core/header-mobile/header-mobile.component.mjs +30 -20
- package/esm2022/lib/components/core/hotel-services/hotel-services.component.mjs +19 -6
- package/esm2022/lib/components/core/hotel-slider/hotel-slider.component.mjs +27 -9
- package/esm2022/lib/components/core/modals/books-modal/books-modal.component.mjs +3 -3
- package/esm2022/lib/components/core/modals/checkin-modal/checkin-modal.component.mjs +3 -3
- package/esm2022/lib/components/core/modals/languages-modal/languages-modal.component.mjs +3 -3
- package/esm2022/lib/components/core/modals/menu-modal/menu-modal.component.mjs +22 -25
- package/esm2022/lib/components/core/modals/newsletter-modal/newsletter-modal.component.mjs +3 -3
- package/esm2022/lib/components/core/motor/motor.component.mjs +34 -36
- package/esm2022/lib/components/core/offer/offer.component.mjs +31 -6
- package/esm2022/lib/components/core/offer-banner/offer-banner.component.mjs +19 -5
- package/esm2022/lib/components/core/offer-slider/offer-slider.component.mjs +18 -7
- package/esm2022/lib/components/core/rooms-slider/rooms-slider.component.mjs +24 -10
- package/esm2022/lib/components/core/top-module/top-module.component.mjs +25 -8
- package/esm2022/lib/components/core/travelers/travelers.component.mjs +26 -9
- package/esm2022/lib/interfaces/atomic/badge.interface.mjs +1 -1
- package/esm2022/lib/interfaces/atomic/breadcrump.interface.mjs +2 -0
- package/esm2022/lib/interfaces/atomic/button.interface.mjs +1 -1
- package/esm2022/lib/interfaces/atomic/dropdown.interface.mjs +1 -1
- package/esm2022/lib/interfaces/atomic/input.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/advantages.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/cards2col.interface.mjs +2 -0
- package/esm2022/lib/interfaces/core/cards3col.interface.mjs +2 -0
- package/esm2022/lib/interfaces/core/destination-info.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/footer-static.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/guests-popup.interface.mjs +2 -0
- package/esm2022/lib/interfaces/core/hotel-services.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/hotel-slider.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/offer-banner.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/offer-slider.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/offer.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/rooms-slider.interface.mjs +1 -1
- package/esm2022/lib/interfaces/core/top-module.interface.mjs +1 -1
- package/esm2022/public-api.mjs +6 -2
- package/fesm2022/tent-lib.mjs +516 -363
- package/fesm2022/tent-lib.mjs.map +1 -1
- package/lib/components/atomic/breadcrump/breadcrump.component.d.ts +15 -0
- package/lib/components/atomic/button/button.component.d.ts +3 -2
- package/lib/components/core/advantages/advantages.component.d.ts +8 -1
- package/lib/components/core/cards-2col/cards-2col.component.d.ts +16 -1
- package/lib/components/core/cards-3col/cards-3col.component.d.ts +12 -1
- package/lib/components/core/destination-info/destination-info.component.d.ts +12 -1
- package/lib/components/core/footer-static/footer-static.component.d.ts +7 -1
- package/lib/components/core/guests-popup/guests-popup.component.d.ts +21 -7
- package/lib/components/core/header/header.component.d.ts +28 -1
- package/lib/components/core/header-mobile/header-mobile.component.d.ts +6 -1
- package/lib/components/core/hotel-services/hotel-services.component.d.ts +16 -1
- package/lib/components/core/hotel-slider/hotel-slider.component.d.ts +20 -1
- package/lib/components/core/modals/menu-modal/menu-modal.component.d.ts +4 -2
- package/lib/components/core/motor/motor.component.d.ts +26 -13
- package/lib/components/core/offer/offer.component.d.ts +16 -1
- package/lib/components/core/offer-banner/offer-banner.component.d.ts +10 -1
- package/lib/components/core/offer-slider/offer-slider.component.d.ts +7 -1
- package/lib/components/core/rooms-slider/rooms-slider.component.d.ts +15 -1
- package/lib/components/core/top-module/top-module.component.d.ts +21 -3
- package/lib/components/core/travelers/travelers.component.d.ts +10 -1
- package/lib/interfaces/atomic/badge.interface.d.ts +3 -0
- package/lib/interfaces/atomic/breadcrump.interface.d.ts +5 -0
- package/lib/interfaces/atomic/button.interface.d.ts +13 -0
- package/lib/interfaces/atomic/dropdown.interface.d.ts +12 -0
- package/lib/interfaces/atomic/input.interface.d.ts +3 -0
- package/lib/interfaces/core/advantages.interface.d.ts +4 -0
- package/lib/interfaces/core/cards2col.interface.d.ts +5 -0
- package/lib/interfaces/core/cards3col.interface.d.ts +4 -0
- package/lib/interfaces/core/destination-info.interface.d.ts +7 -0
- package/lib/interfaces/core/footer-static.interface.d.ts +3 -0
- package/lib/interfaces/core/guests-popup.interface.d.ts +11 -0
- package/lib/interfaces/core/hotel-services.interface.d.ts +4 -0
- package/lib/interfaces/core/hotel-slider.interface.d.ts +6 -0
- package/lib/interfaces/core/offer-banner.interface.d.ts +9 -0
- package/lib/interfaces/core/offer-slider.interface.d.ts +6 -0
- package/lib/interfaces/core/offer.interface.d.ts +11 -0
- package/lib/interfaces/core/rooms-slider.interface.d.ts +4 -0
- package/lib/interfaces/core/top-module.interface.d.ts +6 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -1
- package/esm2022/lib/interfaces/core/card.interface.mjs +0 -2
- package/lib/interfaces/core/card.interface.d.ts +0 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BreadcrumpI } from '../../../interfaces/atomic/breadcrump.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BreadcrumpComponent implements BreadcrumpI {
|
|
5
|
+
breadcrumps: Breadcrump[];
|
|
6
|
+
selected?: Breadcrump;
|
|
7
|
+
breadcrumpClick: EventEmitter<Breadcrump>;
|
|
8
|
+
breadcrumpClicked(breadcrump: Breadcrump, event: Event): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumpComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumpComponent, "tent-breadcrump", never, { "breadcrumps": { "alias": "breadcrumps"; "required": true; }; "selected": { "alias": "selected"; "required": false; }; }, { "breadcrumpClick": "breadcrumpClick"; }, never, never, true, never>;
|
|
11
|
+
}
|
|
12
|
+
export interface Breadcrump {
|
|
13
|
+
label: string;
|
|
14
|
+
url: string;
|
|
15
|
+
}
|
|
@@ -5,6 +5,7 @@ export declare class ButtonComponent {
|
|
|
5
5
|
type: ButtonType;
|
|
6
6
|
label?: string;
|
|
7
7
|
url?: string;
|
|
8
|
+
linkType: 'internal' | 'external';
|
|
8
9
|
icon?: string;
|
|
9
10
|
socialMedia?: 'instagram' | 'tiktok' | 'youtube' | 'facebook' | 'linkedin';
|
|
10
11
|
iconPosition?: 'left' | 'right';
|
|
@@ -19,8 +20,8 @@ export declare class ButtonComponent {
|
|
|
19
20
|
get width(): SafeStyle;
|
|
20
21
|
get linkIconStyle(): SafeStyle;
|
|
21
22
|
ngOnInit(): void;
|
|
22
|
-
btnClicked(): void;
|
|
23
|
+
btnClicked(evnet: Event): void;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "tent-button", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "socialMedia": { "alias": "socialMedia"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "boxWidth": { "alias": "boxWidth"; "required": false; }; "innerContent": { "alias": "innerContent"; "required": false; }; "linkSizeIcon": { "alias": "linkSizeIcon"; "required": false; }; "target": { "alias": "target"; "required": false; }; "closeButton": { "alias": "closeButton"; "required": false; }; }, { "btnClick": "btnClick"; }, never, never, true, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "tent-button", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "linkType": { "alias": "linkType"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "socialMedia": { "alias": "socialMedia"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "boxWidth": { "alias": "boxWidth"; "required": false; }; "innerContent": { "alias": "innerContent"; "required": false; }; "linkSizeIcon": { "alias": "linkSizeIcon"; "required": false; }; "target": { "alias": "target"; "required": false; }; "closeButton": { "alias": "closeButton"; "required": false; }; }, { "btnClick": "btnClick"; }, never, never, true, never>;
|
|
25
26
|
}
|
|
26
27
|
export type ButtonType = 'light-box' | 'dark-box' | 'dark-box-white' | 'dark-box-filled' | 'dark-link' | 'light-circle' | 'dark-circle' | 'dark-circle-filled';
|
|
@@ -2,9 +2,16 @@ import { CarouselComponent, OwlOptions } from 'ngx-owl-carousel-o';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class AdvantagesComponent {
|
|
4
4
|
carousel: CarouselComponent;
|
|
5
|
+
title?: string;
|
|
6
|
+
items?: AdvantageItem[];
|
|
7
|
+
sliderControls: string[];
|
|
5
8
|
sliderOptions: OwlOptions;
|
|
6
9
|
prevClick(): void;
|
|
7
10
|
nextClick(): void;
|
|
8
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdvantagesComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdvantagesComponent, "tent-advantages", never, {}, {}, never, never, true, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvantagesComponent, "tent-advantages", never, { "title": { "alias": "title"; "required": false; }; "items": { "alias": "items"; "required": false; }; "sliderControls": { "alias": "sliderControls"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
14
|
+
export interface AdvantageItem {
|
|
15
|
+
title: string;
|
|
16
|
+
icon: string;
|
|
10
17
|
}
|
|
@@ -1,5 +1,20 @@
|
|
|
1
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class Cards2colComponent {
|
|
4
|
+
itemLeft: Cards2colItem;
|
|
5
|
+
itemRight: Cards2colItem;
|
|
6
|
+
get itemLeftLinkInternal(): string | null;
|
|
7
|
+
get itemRightLinkInternal(): string | null;
|
|
8
|
+
linkClicked(event: Event, link: ButtonI): void;
|
|
3
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<Cards2colComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Cards2colComponent, "tent-cards-2col", never, {}, {}, never, never, true, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Cards2colComponent, "tent-cards-2col", never, { "itemLeft": { "alias": "itemLeft"; "required": false; }; "itemRight": { "alias": "itemRight"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
12
|
+
export interface Cards2colItem {
|
|
13
|
+
title: string;
|
|
14
|
+
titleLight: string;
|
|
15
|
+
description: string;
|
|
16
|
+
image: string;
|
|
17
|
+
imageBackground: string;
|
|
18
|
+
link: ButtonI;
|
|
19
|
+
btn: ButtonI;
|
|
5
20
|
}
|
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
2
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class Cards3colComponent {
|
|
5
|
+
items: Cards3colItem[];
|
|
4
6
|
collapsed: boolean;
|
|
5
7
|
sliderOptions: OwlOptions;
|
|
6
8
|
toggleCollapse(): void;
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<Cards3colComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Cards3colComponent, "tent-cards-3col", never, {}, {}, never, never, true, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Cards3colComponent, "tent-cards-3col", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
12
|
+
export interface Cards3colItem {
|
|
13
|
+
title: string;
|
|
14
|
+
smalltitle: string;
|
|
15
|
+
ndTitle: string;
|
|
16
|
+
icon: string;
|
|
17
|
+
btnCollapsed: ButtonI;
|
|
18
|
+
btn: ButtonI;
|
|
19
|
+
image: string;
|
|
9
20
|
}
|
|
@@ -1,5 +1,16 @@
|
|
|
1
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
2
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
export declare class DestinationInfoComponent {
|
|
5
|
+
private readonly sanitizer;
|
|
6
|
+
image: string;
|
|
7
|
+
title: string;
|
|
8
|
+
bannerTitle: string;
|
|
9
|
+
bannerDescription?: string;
|
|
10
|
+
titleDark: string;
|
|
11
|
+
buttons: ButtonI[];
|
|
12
|
+
get getImage(): SafeStyle;
|
|
13
|
+
constructor(sanitizer: DomSanitizer);
|
|
3
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DestinationInfoComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DestinationInfoComponent, "tent-destination-info", never, {}, {}, never, never, true, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DestinationInfoComponent, "tent-destination-info", never, { "image": { "alias": "image"; "required": false; }; "title": { "alias": "title"; "required": false; }; "bannerTitle": { "alias": "bannerTitle"; "required": false; }; "bannerDescription": { "alias": "bannerDescription"; "required": false; }; "titleDark": { "alias": "titleDark"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, {}, never, never, true, never>;
|
|
5
16
|
}
|
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class FooterStaticComponent {
|
|
4
|
+
footerLinks: ButtonI[];
|
|
5
|
+
title?: string;
|
|
6
|
+
scrollBtn?: ButtonI;
|
|
7
|
+
isInternalLink(link: ButtonI): boolean;
|
|
8
|
+
linkClicked(event: Event, link: ButtonI): void;
|
|
3
9
|
scrollClicked(): void;
|
|
4
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterStaticComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterStaticComponent, "tent-footer-static", never, {}, {}, never, never, true, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterStaticComponent, "tent-footer-static", never, { "footerLinks": { "alias": "footerLinks"; "required": true; }; "title": { "alias": "title"; "required": false; }; "scrollBtn": { "alias": "scrollBtn"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
12
|
}
|
|
@@ -1,21 +1,35 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { DropdownOption } from '../../atomic/dropdown/dropdown.component';
|
|
3
|
+
import { DropdownI } from '../../../interfaces/atomic/dropdown.interface';
|
|
4
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
export declare class GuestsPopupComponent {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
adultsDropdown: DropdownI;
|
|
8
|
+
kidsDropdown: DropdownI;
|
|
9
|
+
ageDropdown: DropdownI;
|
|
10
|
+
babysDropdown: DropdownI;
|
|
11
|
+
title?: string;
|
|
12
|
+
kidLabel?: string;
|
|
13
|
+
btnApply: ButtonI;
|
|
14
|
+
appliedData: EventEmitter<GuestsValue>;
|
|
10
15
|
kids?: number[];
|
|
11
16
|
applied: boolean;
|
|
12
17
|
kidsOption: DropdownOption;
|
|
13
18
|
adultsOption: DropdownOption;
|
|
14
19
|
babysOption: DropdownOption;
|
|
15
|
-
|
|
20
|
+
ages: string[];
|
|
21
|
+
kidsChange(option: DropdownOption): void;
|
|
22
|
+
agesChange(kidIndex: number, option: DropdownOption): void;
|
|
16
23
|
babysChange(option: DropdownOption): void;
|
|
17
24
|
adultsChange(option: DropdownOption): void;
|
|
18
25
|
applyData(): void;
|
|
19
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<GuestsPopupComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GuestsPopupComponent, "tent-guests-popup", never, {}, { "appliedData": "appliedData"; }, never, never, true, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GuestsPopupComponent, "tent-guests-popup", never, { "adultsDropdown": { "alias": "adultsDropdown"; "required": false; }; "kidsDropdown": { "alias": "kidsDropdown"; "required": false; }; "ageDropdown": { "alias": "ageDropdown"; "required": false; }; "babysDropdown": { "alias": "babysDropdown"; "required": false; }; "title": { "alias": "title"; "required": false; }; "kidLabel": { "alias": "kidLabel"; "required": false; }; "btnApply": { "alias": "btnApply"; "required": false; }; }, { "appliedData": "appliedData"; }, never, never, true, never>;
|
|
28
|
+
}
|
|
29
|
+
export interface GuestsValue {
|
|
30
|
+
adults?: number;
|
|
31
|
+
kids?: number;
|
|
32
|
+
babys?: number;
|
|
33
|
+
kidsAges?: string[];
|
|
34
|
+
totalGuests: number;
|
|
21
35
|
}
|
|
@@ -1,16 +1,43 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { ButtonI } from '../../../../public-api';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class HeaderComponent {
|
|
5
6
|
private readonly dialog;
|
|
6
7
|
scrolled?: boolean;
|
|
8
|
+
logo: string;
|
|
9
|
+
navLinks: NavLink[];
|
|
10
|
+
menuIcon: string;
|
|
11
|
+
rightButtons: RightButtons;
|
|
12
|
+
btnBook: ButtonI;
|
|
7
13
|
menuClick: EventEmitter<void>;
|
|
8
14
|
languagesClick: EventEmitter<void>;
|
|
9
15
|
newsletterClick: EventEmitter<void>;
|
|
10
16
|
checkinClick: EventEmitter<void>;
|
|
11
17
|
booksClick: EventEmitter<void>;
|
|
18
|
+
motorClick: EventEmitter<void>;
|
|
12
19
|
constructor(dialog: MatDialog);
|
|
13
20
|
openMotor(): void;
|
|
21
|
+
navLinkClicked(event: Event): void;
|
|
14
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "tent-header", never, { "scrolled": { "alias": "scrolled"; "required": false; }; }, { "menuClick": "menuClick"; "languagesClick": "languagesClick"; "newsletterClick": "newsletterClick"; "checkinClick": "checkinClick"; "booksClick": "booksClick"; }, never, never, true, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "tent-header", never, { "scrolled": { "alias": "scrolled"; "required": false; }; "logo": { "alias": "logo"; "required": true; }; "navLinks": { "alias": "navLinks"; "required": false; }; "menuIcon": { "alias": "menuIcon"; "required": false; }; "rightButtons": { "alias": "rightButtons"; "required": false; }; "btnBook": { "alias": "btnBook"; "required": false; }; }, { "menuClick": "menuClick"; "languagesClick": "languagesClick"; "newsletterClick": "newsletterClick"; "checkinClick": "checkinClick"; "booksClick": "booksClick"; "motorClick": "motorClick"; }, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
export interface NavLink {
|
|
26
|
+
label: string;
|
|
27
|
+
url: string;
|
|
28
|
+
}
|
|
29
|
+
export interface RightButtons {
|
|
30
|
+
phone: RightBtn;
|
|
31
|
+
mail: RightBtn;
|
|
32
|
+
books: RightBtn;
|
|
33
|
+
newsletter: RightBtn;
|
|
34
|
+
menu: RightBtn;
|
|
35
|
+
checkin: RightBtn;
|
|
36
|
+
languages: RightBtn;
|
|
37
|
+
}
|
|
38
|
+
export interface RightBtn {
|
|
39
|
+
icon?: string;
|
|
40
|
+
label: string;
|
|
41
|
+
url?: string;
|
|
42
|
+
comment?: string;
|
|
16
43
|
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { ButtonI, RightBtn } from '../../../../public-api';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class HeaderMobileComponent {
|
|
5
6
|
private readonly dialog;
|
|
7
|
+
checkinLabel?: string;
|
|
8
|
+
btnBook: ButtonI;
|
|
9
|
+
phoneLink?: RightBtn;
|
|
6
10
|
checkinClick: EventEmitter<void>;
|
|
11
|
+
motorClick: EventEmitter<void>;
|
|
7
12
|
constructor(dialog: MatDialog);
|
|
8
13
|
openMotor(): void;
|
|
9
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderMobileComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMobileComponent, "tent-header-mobile", never, {}, { "checkinClick": "checkinClick"; }, never, never, true, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMobileComponent, "tent-header-mobile", never, { "checkinLabel": { "alias": "checkinLabel"; "required": false; }; "btnBook": { "alias": "btnBook"; "required": false; }; "phoneLink": { "alias": "phoneLink"; "required": false; }; }, { "checkinClick": "checkinClick"; "motorClick": "motorClick"; }, never, never, true, never>;
|
|
11
16
|
}
|
|
@@ -1,5 +1,20 @@
|
|
|
1
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
2
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
export declare class HotelServicesComponent {
|
|
5
|
+
private readonly sanitizer;
|
|
6
|
+
title: string;
|
|
7
|
+
titleDark: string;
|
|
8
|
+
items: HotelServicesItem[];
|
|
9
|
+
constructor(sanitizer: DomSanitizer);
|
|
10
|
+
getImage(image: string): SafeStyle;
|
|
3
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<HotelServicesComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HotelServicesComponent, "tent-hotel-services", never, {}, {}, never, never, true, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HotelServicesComponent, "tent-hotel-services", never, { "title": { "alias": "title"; "required": false; }; "titleDark": { "alias": "titleDark"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
14
|
+
export interface HotelServicesItem {
|
|
15
|
+
image: string;
|
|
16
|
+
title: string;
|
|
17
|
+
subtitle: string;
|
|
18
|
+
description: string;
|
|
19
|
+
button: ButtonI;
|
|
5
20
|
}
|
|
@@ -1,7 +1,26 @@
|
|
|
1
1
|
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
2
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
3
|
+
import { BadgeI } from '../../../interfaces/atomic/badge.interface';
|
|
4
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
2
5
|
import * as i0 from "@angular/core";
|
|
3
6
|
export declare class HotelSliderComponent {
|
|
7
|
+
private readonly sanitizer;
|
|
8
|
+
iconControlLeft: string;
|
|
9
|
+
iconControlRight: string;
|
|
10
|
+
title: string;
|
|
11
|
+
titleDark: string;
|
|
12
|
+
items: HotelSliderItem[];
|
|
4
13
|
sliderOptions: OwlOptions;
|
|
14
|
+
constructor(sanitizer: DomSanitizer);
|
|
15
|
+
getImage(image: string): SafeStyle;
|
|
5
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<HotelSliderComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HotelSliderComponent, "tent-hotel-slider", never, {}, {}, never, never, true, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HotelSliderComponent, "tent-hotel-slider", never, { "iconControlLeft": { "alias": "iconControlLeft"; "required": false; }; "iconControlRight": { "alias": "iconControlRight"; "required": false; }; "title": { "alias": "title"; "required": false; }; "titleDark": { "alias": "titleDark"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
export interface HotelSliderItem {
|
|
20
|
+
image: string;
|
|
21
|
+
title: string;
|
|
22
|
+
description: string;
|
|
23
|
+
ndTitle?: string;
|
|
24
|
+
badge: BadgeI;
|
|
25
|
+
buttons: ButtonI[];
|
|
7
26
|
}
|
|
@@ -2,19 +2,21 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { SafeStyle } from '@angular/platform-browser';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class MenuModalComponent {
|
|
5
|
+
checkinClick: EventEmitter<void>;
|
|
6
|
+
newsletterClick: EventEmitter<void>;
|
|
7
|
+
booksClick: EventEmitter<void>;
|
|
5
8
|
items: MenuItem[];
|
|
6
9
|
defaultImage: string;
|
|
7
10
|
elementClick: EventEmitter<MenuItem>;
|
|
8
11
|
private readonly dialogRef;
|
|
9
12
|
private readonly sanitizer;
|
|
10
13
|
itemHover?: MenuItem;
|
|
11
|
-
get mainImage(): SafeStyle | undefined;
|
|
12
14
|
getImage(image?: string): SafeStyle | undefined;
|
|
13
15
|
selectLink(item?: MenuItem): void;
|
|
14
16
|
linkClicked(item: MenuItem, event: Event): void;
|
|
15
17
|
closeModal(): void;
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuModalComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuModalComponent, "tent-menu-modal", never, {}, { "elementClick": "elementClick"; }, never, never, true, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuModalComponent, "tent-menu-modal", never, {}, { "checkinClick": "checkinClick"; "newsletterClick": "newsletterClick"; "booksClick": "booksClick"; "elementClick": "elementClick"; }, never, never, true, never>;
|
|
18
20
|
}
|
|
19
21
|
export interface MenuItem {
|
|
20
22
|
id?: string | number;
|
|
@@ -1,24 +1,28 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import {
|
|
3
|
+
import { GuestsValue } from '../guests-popup/guests-popup.component';
|
|
4
|
+
import { DropdownI } from '../../../interfaces/atomic/dropdown.interface';
|
|
5
|
+
import { InputI } from '../../../interfaces/atomic/input.interface';
|
|
6
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
7
|
+
import { GuestsPopupI } from '../../../interfaces/core/guests-popup.interface';
|
|
4
8
|
import * as i0 from "@angular/core";
|
|
5
9
|
export declare class MotorComponent implements OnInit {
|
|
6
10
|
private readonly formBuilder;
|
|
7
|
-
date:
|
|
8
|
-
value: Date[];
|
|
9
|
-
title: string;
|
|
10
|
-
icon: string;
|
|
11
|
-
};
|
|
11
|
+
date: motorDate;
|
|
12
12
|
modal: boolean;
|
|
13
|
-
title
|
|
14
|
-
subtitle
|
|
15
|
-
|
|
13
|
+
title?: string;
|
|
14
|
+
subtitle?: string;
|
|
15
|
+
dropdown: DropdownI;
|
|
16
|
+
promoInput: InputI;
|
|
17
|
+
guestsInput: InputI;
|
|
18
|
+
btnSubmit: ButtonI;
|
|
19
|
+
guestsPopup: GuestsPopupI;
|
|
20
|
+
submit: EventEmitter<MotorValue>;
|
|
16
21
|
close: EventEmitter<void>;
|
|
17
22
|
motorForm: FormGroup;
|
|
18
23
|
dialogVisible: boolean;
|
|
19
24
|
dialogReady: boolean;
|
|
20
|
-
guestsValue
|
|
21
|
-
options: DropdownOption[];
|
|
25
|
+
guestsValue?: GuestsValue;
|
|
22
26
|
constructor(formBuilder: FormBuilder);
|
|
23
27
|
ngOnInit(): void;
|
|
24
28
|
btnClicked(): void;
|
|
@@ -26,9 +30,9 @@ export declare class MotorComponent implements OnInit {
|
|
|
26
30
|
closeDialog(): void;
|
|
27
31
|
closeModal(): void;
|
|
28
32
|
toggleMotorDialogReady(): void;
|
|
29
|
-
guestsChange(
|
|
33
|
+
guestsChange(guests: GuestsValue): void;
|
|
30
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<MotorComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MotorComponent, "tent-motor", never, { "date": { "alias": "date"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; }, { "submit": "submit"; "close": "close"; }, never, never, true, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MotorComponent, "tent-motor", never, { "date": { "alias": "date"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "dropdown": { "alias": "dropdown"; "required": false; }; "promoInput": { "alias": "promoInput"; "required": false; }; "guestsInput": { "alias": "guestsInput"; "required": false; }; "btnSubmit": { "alias": "btnSubmit"; "required": false; }; "guestsPopup": { "alias": "guestsPopup"; "required": false; }; }, { "submit": "submit"; "close": "close"; }, never, never, true, never>;
|
|
32
36
|
}
|
|
33
37
|
export interface motorInput {
|
|
34
38
|
title: string;
|
|
@@ -36,3 +40,12 @@ export interface motorInput {
|
|
|
36
40
|
placeholder?: string;
|
|
37
41
|
value: string;
|
|
38
42
|
}
|
|
43
|
+
export interface motorDate {
|
|
44
|
+
value: [Date, Date];
|
|
45
|
+
title: string;
|
|
46
|
+
icon: string;
|
|
47
|
+
}
|
|
48
|
+
export interface MotorValue {
|
|
49
|
+
formValue: any;
|
|
50
|
+
guestValue: GuestsValue;
|
|
51
|
+
}
|
|
@@ -1,5 +1,20 @@
|
|
|
1
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
2
|
+
import { BadgeI } from '../../../interfaces/atomic/badge.interface';
|
|
3
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
1
4
|
import * as i0 from "@angular/core";
|
|
2
5
|
export declare class OfferComponent {
|
|
6
|
+
private readonly sanitizer;
|
|
7
|
+
image: string;
|
|
8
|
+
title: string;
|
|
9
|
+
description: string;
|
|
10
|
+
price: string;
|
|
11
|
+
priceLabel: string;
|
|
12
|
+
currency: string;
|
|
13
|
+
badge?: BadgeI;
|
|
14
|
+
badgePrice?: BadgeI;
|
|
15
|
+
buttons?: ButtonI[];
|
|
16
|
+
get getImage(): SafeStyle;
|
|
17
|
+
constructor(sanitizer: DomSanitizer);
|
|
3
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfferComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OfferComponent, "tent-offer", never, {}, {}, never, never, true, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OfferComponent, "tent-offer", never, { "image": { "alias": "image"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "price": { "alias": "price"; "required": false; }; "priceLabel": { "alias": "priceLabel"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "badgePrice": { "alias": "badgePrice"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, {}, never, never, true, never>;
|
|
5
20
|
}
|
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BadgeI } from '../../../interfaces/atomic/badge.interface';
|
|
3
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class OfferBannerComponent {
|
|
6
|
+
badge: BadgeI;
|
|
7
|
+
btnClose: ButtonI;
|
|
8
|
+
mainLabel: string;
|
|
9
|
+
priceLabel: string;
|
|
10
|
+
price: string;
|
|
11
|
+
btnInfo: ButtonI;
|
|
12
|
+
img: string;
|
|
4
13
|
closeClick: EventEmitter<void>;
|
|
5
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfferBannerComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OfferBannerComponent, "tent-offer-banner", never, {}, { "closeClick": "closeClick"; }, never, never, true, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OfferBannerComponent, "tent-offer-banner", never, { "badge": { "alias": "badge"; "required": false; }; "btnClose": { "alias": "btnClose"; "required": false; }; "mainLabel": { "alias": "mainLabel"; "required": false; }; "priceLabel": { "alias": "priceLabel"; "required": false; }; "price": { "alias": "price"; "required": false; }; "btnInfo": { "alias": "btnInfo"; "required": false; }; "img": { "alias": "img"; "required": false; }; }, { "closeClick": "closeClick"; }, never, never, true, never>;
|
|
7
16
|
}
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
2
|
+
import { OfferI } from '../../../interfaces/core/offer.interface';
|
|
3
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class OfferSliderComponent {
|
|
6
|
+
offers: OfferI[];
|
|
7
|
+
title: string;
|
|
8
|
+
titleDark: string;
|
|
9
|
+
link?: ButtonI;
|
|
4
10
|
sliderOptions: OwlOptions;
|
|
5
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfferSliderComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OfferSliderComponent, "tent-offer-slider", never, {}, {}, never, never, true, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OfferSliderComponent, "tent-offer-slider", never, { "offers": { "alias": "offers"; "required": false; }; "title": { "alias": "title"; "required": false; }; "titleDark": { "alias": "titleDark"; "required": false; }; "link": { "alias": "link"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
13
|
}
|
|
@@ -1,7 +1,21 @@
|
|
|
1
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
1
2
|
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
3
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class RoomsSliderComponent {
|
|
6
|
+
private readonly sanitizer;
|
|
7
|
+
iconControlLeft: string;
|
|
8
|
+
iconControlRight: string;
|
|
9
|
+
items: RoomsSliderItem[];
|
|
4
10
|
sliderOptions: OwlOptions;
|
|
11
|
+
constructor(sanitizer: DomSanitizer);
|
|
12
|
+
getImage(image: string): SafeStyle;
|
|
5
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoomsSliderComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoomsSliderComponent, "tent-rooms-slider", never, {}, {}, never, never, true, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RoomsSliderComponent, "tent-rooms-slider", never, { "iconControlLeft": { "alias": "iconControlLeft"; "required": false; }; "iconControlRight": { "alias": "iconControlRight"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
16
|
+
export interface RoomsSliderItem {
|
|
17
|
+
image: string;
|
|
18
|
+
title: string;
|
|
19
|
+
description: string;
|
|
20
|
+
buttons: ButtonI[];
|
|
7
21
|
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
|
|
2
2
|
import { OwlOptions, CarouselComponent } from 'ngx-owl-carousel-o';
|
|
3
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
4
|
+
import { BadgeI } from '../../../interfaces/atomic/badge.interface';
|
|
5
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
3
6
|
import * as i0 from "@angular/core";
|
|
4
7
|
export declare class TopModuleComponent implements AfterViewInit {
|
|
5
8
|
private readonly renderer;
|
|
9
|
+
private readonly sanitizer;
|
|
6
10
|
carousel: CarouselComponent;
|
|
7
11
|
nav: ElementRef;
|
|
8
12
|
module: ElementRef;
|
|
13
|
+
sliderControls: string[];
|
|
14
|
+
btnScroll: ButtonI;
|
|
15
|
+
btnComment: ButtonI;
|
|
16
|
+
items: TopModuleItem[];
|
|
17
|
+
btnCommentClick: EventEmitter<void>;
|
|
9
18
|
sliderOptions: OwlOptions;
|
|
10
|
-
constructor(renderer: Renderer2);
|
|
19
|
+
constructor(renderer: Renderer2, sanitizer: DomSanitizer);
|
|
20
|
+
getImage(image: string): SafeStyle;
|
|
11
21
|
ngAfterViewInit(): void;
|
|
12
22
|
prevClick(): void;
|
|
13
23
|
nextClick(): void;
|
|
14
24
|
scrollClicked(): void;
|
|
15
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopModuleComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TopModuleComponent, "tent-top-module", never, {}, {}, never, never, true, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TopModuleComponent, "tent-top-module", never, { "sliderControls": { "alias": "sliderControls"; "required": false; }; "btnScroll": { "alias": "btnScroll"; "required": false; }; "btnComment": { "alias": "btnComment"; "required": false; }; "items": { "alias": "items"; "required": true; }; }, { "btnCommentClick": "btnCommentClick"; }, never, never, true, never>;
|
|
27
|
+
}
|
|
28
|
+
export interface TopModuleItem {
|
|
29
|
+
mainBadge: BadgeI;
|
|
30
|
+
title: string;
|
|
31
|
+
badgePromo: BadgeI;
|
|
32
|
+
badgeDiscount: BadgeI;
|
|
33
|
+
btn: ButtonI;
|
|
34
|
+
img: string;
|
|
17
35
|
}
|
|
@@ -1,7 +1,16 @@
|
|
|
1
|
+
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
1
2
|
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
3
|
+
import { ButtonI } from '../../../interfaces/atomic/button.interface';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class TravelersComponent {
|
|
6
|
+
private readonly sanitizer;
|
|
7
|
+
images: string[];
|
|
8
|
+
title: string;
|
|
9
|
+
titleDark: string;
|
|
10
|
+
links: ButtonI[];
|
|
4
11
|
sliderOptions: OwlOptions;
|
|
12
|
+
constructor(sanitizer: DomSanitizer);
|
|
13
|
+
getImage(image: string): SafeStyle;
|
|
5
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<TravelersComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TravelersComponent, "tent-travelers", never, {}, {}, never, never, true, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TravelersComponent, "tent-travelers", never, { "images": { "alias": "images"; "required": false; }; "title": { "alias": "title"; "required": false; }; "titleDark": { "alias": "titleDark"; "required": false; }; "links": { "alias": "links"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
16
|
}
|
|
@@ -1,2 +1,15 @@
|
|
|
1
|
+
import { ButtonType } from '../../components/atomic/button/button.component';
|
|
1
2
|
export interface ButtonI {
|
|
3
|
+
type?: ButtonType;
|
|
4
|
+
label?: string;
|
|
5
|
+
url?: string;
|
|
6
|
+
linkType: 'internal' | 'external';
|
|
7
|
+
icon?: string;
|
|
8
|
+
socialMedia?: 'instagram' | 'tiktok' | 'youtube' | 'facebook' | 'linkedin';
|
|
9
|
+
iconPosition?: 'left' | 'right';
|
|
10
|
+
boxWidth?: string;
|
|
11
|
+
innerContent?: string;
|
|
12
|
+
linkSizeIcon?: string;
|
|
13
|
+
target?: string;
|
|
14
|
+
closeButton?: boolean;
|
|
2
15
|
}
|
|
@@ -1,2 +1,14 @@
|
|
|
1
|
+
import { DropdownOption } from '../../components/atomic/dropdown/dropdown.component';
|
|
1
2
|
export interface DropdownI {
|
|
3
|
+
value?: DropdownOption;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
smallTitle?: string;
|
|
7
|
+
options: DropdownOption[];
|
|
8
|
+
name: string;
|
|
9
|
+
iconLeft?: string;
|
|
10
|
+
isDisabled?: boolean;
|
|
11
|
+
light?: boolean;
|
|
12
|
+
lightHeight?: boolean;
|
|
13
|
+
showTitleTop?: boolean;
|
|
2
14
|
}
|