ctt-puro 0.6.2 → 0.7.1
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/puro-info-banner/index.mjs +2 -1
- package/esm2022/lib/components/puro-info-banner/puro-info-banner.component.mjs +11 -5
- package/esm2022/lib/components/puro-info-banner/puro-info-banner.interface.mjs +2 -0
- package/esm2022/lib/components/puro-schedule/index.mjs +2 -1
- package/esm2022/lib/components/puro-schedule/puro-schedule.component.mjs +10 -5
- package/esm2022/lib/components/puro-schedule/puro-schedule.interface.mjs +2 -0
- package/esm2022/lib/components/puro-top-slider/index.mjs +2 -1
- package/esm2022/lib/components/puro-top-slider/puro-top-slider.component.mjs +15 -3
- package/esm2022/lib/components/puro-top-slider/puro-top-slider.interface.mjs +2 -0
- package/fesm2022/ctt-puro.mjs +28 -8
- package/fesm2022/ctt-puro.mjs.map +1 -1
- package/lib/components/puro-info-banner/index.d.ts +1 -0
- package/lib/components/puro-info-banner/puro-info-banner.component.d.ts +10 -1
- package/lib/components/puro-info-banner/puro-info-banner.interface.d.ts +5 -0
- package/lib/components/puro-schedule/index.d.ts +1 -0
- package/lib/components/puro-schedule/puro-schedule.component.d.ts +8 -1
- package/lib/components/puro-schedule/puro-schedule.interface.d.ts +5 -0
- package/lib/components/puro-top-slider/index.d.ts +1 -0
- package/lib/components/puro-top-slider/puro-top-slider.component.d.ts +8 -1
- package/lib/components/puro-top-slider/puro-top-slider.interface.d.ts +11 -0
- package/package.json +1 -1
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export * from './puro-info-banner.component';
|
|
2
|
-
|
|
2
|
+
export * from './puro-info-banner.interface';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wdXJvL3NyYy9saWIvY29tcG9uZW50cy9wdXJvLWluZm8tYmFubmVyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw4QkFBOEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVyby1pbmZvLWJhbm5lci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3B1cm8taW5mby1iYW5uZXIuaW50ZXJmYWNlJztcclxuIl19
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
3
|
+
import { PuroLinkTypeDirective } from '../../directives';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export class PuroInfoBannerComponent {
|
|
4
6
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroInfoBannerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
7
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroInfoBannerComponent, isStandalone: true, selector: "lib-puro-info-banner", inputs: { items: "items", title: "title" }, ngImport: i0, template: "<section\n class=\"largeImage js-active-slider\"\n data-slides_infinite=\"true\"\n data-slider_name=\"js-largeImage-slider\"\n data-slider_showbtns=\"true\"\n data-slider_showdots=\"false\"\n data-slider_fade=\"true\"\n data-slider_autoplay=\"false\"\n data-slides_pc=\"1\"\n>\n @if (title) {\n <span class=\"largeImage__title\">{{ title }}</span>\n }\n <div class=\"largeImage__inner relative\">\n <div class=\"js-largeImage-slider js-slider_fix-arrows\">\n @for (item of items || []; track $index) {\n <div>\n <div class=\"largeImage__box\">\n <div\n class=\"largeImage__graphic js-slider_fix-arrows-zone desktop\"\n >\n @if (item.img) {\n <img\n [src]=\"item.img.src\"\n width=\"1670\"\n height=\"704\"\n class=\"largeImage__graphic--img\"\n [alt]=\"item.img.alt\"\n />\n }\n </div>\n <div class=\"largeImage__content\">\n @if (item.title) {\n <h2\n class=\"largeImage__heading js-slider_fix-arrows-zone mobile\"\n >\n {{ item.title }}\n </h2>\n }\n @if (item.description) {\n <div class=\"largeImage__paragraph\">\n <p>\n {{ item.description }}\n </p>\n </div>\n }\n <div class=\"btn__group\">\n @if (item.button) {\n <a\n [linkType]=\"item.button.linkType\"\n [href]=\"item.button.url\"\n class=\"btn btn__primary--outline\"\n ><span>{{ item.button.label }}</span></a\n >\n }\n </div>\n </div>\n </div>\n </div>\n }\n </div>\n <div class=\"js-slider-arrows\"></div>\n </div>\n</section>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: PuroLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6
8
|
}
|
|
7
9
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroInfoBannerComponent, decorators: [{
|
|
8
10
|
type: Component,
|
|
9
|
-
args: [{ selector: 'lib-puro-info-banner', standalone: true, imports: [], template: "<
|
|
10
|
-
}]
|
|
11
|
-
|
|
11
|
+
args: [{ selector: 'lib-puro-info-banner', standalone: true, imports: [CommonModule, PuroLinkTypeDirective], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section\n class=\"largeImage js-active-slider\"\n data-slides_infinite=\"true\"\n data-slider_name=\"js-largeImage-slider\"\n data-slider_showbtns=\"true\"\n data-slider_showdots=\"false\"\n data-slider_fade=\"true\"\n data-slider_autoplay=\"false\"\n data-slides_pc=\"1\"\n>\n @if (title) {\n <span class=\"largeImage__title\">{{ title }}</span>\n }\n <div class=\"largeImage__inner relative\">\n <div class=\"js-largeImage-slider js-slider_fix-arrows\">\n @for (item of items || []; track $index) {\n <div>\n <div class=\"largeImage__box\">\n <div\n class=\"largeImage__graphic js-slider_fix-arrows-zone desktop\"\n >\n @if (item.img) {\n <img\n [src]=\"item.img.src\"\n width=\"1670\"\n height=\"704\"\n class=\"largeImage__graphic--img\"\n [alt]=\"item.img.alt\"\n />\n }\n </div>\n <div class=\"largeImage__content\">\n @if (item.title) {\n <h2\n class=\"largeImage__heading js-slider_fix-arrows-zone mobile\"\n >\n {{ item.title }}\n </h2>\n }\n @if (item.description) {\n <div class=\"largeImage__paragraph\">\n <p>\n {{ item.description }}\n </p>\n </div>\n }\n <div class=\"btn__group\">\n @if (item.button) {\n <a\n [linkType]=\"item.button.linkType\"\n [href]=\"item.button.url\"\n class=\"btn btn__primary--outline\"\n ><span>{{ item.button.label }}</span></a\n >\n }\n </div>\n </div>\n </div>\n </div>\n }\n </div>\n <div class=\"js-slider-arrows\"></div>\n </div>\n</section>\n" }]
|
|
12
|
+
}], propDecorators: { items: [{
|
|
13
|
+
type: Input
|
|
14
|
+
}], title: [{
|
|
15
|
+
type: Input
|
|
16
|
+
}] } });
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyby1pbmZvLWJhbm5lci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wdXJvL3NyYy9saWIvY29tcG9uZW50cy9wdXJvLWluZm8tYmFubmVyL3B1cm8taW5mby1iYW5uZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHVyby9zcmMvbGliL2NvbXBvbmVudHMvcHVyby1pbmZvLWJhbm5lci9wdXJvLWluZm8tYmFubmVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFXekQsTUFBTSxPQUFPLHVCQUF1QjsrR0FBdkIsdUJBQXVCO21HQUF2Qix1QkFBdUIsNEhDYnBDLDhzRkFnRUEseUREeERjLFlBQVksK0JBQUUscUJBQXFCOzs0RkFLcEMsdUJBQXVCO2tCQVJuQyxTQUFTOytCQUNJLHNCQUFzQixjQUNwQixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUscUJBQXFCLENBQUMsbUJBRzdCLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFB1cm9MaW5rVHlwZURpcmVjdGl2ZSB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgUHVyb0J1dHRvbkksIFB1cm9JbWFnZUkgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2VzJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdsaWItcHVyby1pbmZvLWJhbm5lcicsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBQdXJvTGlua1R5cGVEaXJlY3RpdmVdLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9wdXJvLWluZm8tYmFubmVyLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybDogJy4vcHVyby1pbmZvLWJhbm5lci5jb21wb25lbnQuc2NzcycsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFB1cm9JbmZvQmFubmVyQ29tcG9uZW50IHtcbiAgICBASW5wdXQoKSBpdGVtcz86IFB1cm9JbmZvQmFubmVySXRlbVtdO1xuICAgIEBJbnB1dCgpIHRpdGxlPzogc3RyaW5nO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFB1cm9JbmZvQmFubmVySXRlbSB7XG4gICAgdGl0bGU/OiBzdHJpbmc7XG4gICAgaW1nPzogUHVyb0ltYWdlSTtcbiAgICBkZXNjcmlwdGlvbj86IHN0cmluZztcbiAgICBidXR0b24/OiBQdXJvQnV0dG9uSTtcbn1cbiIsIjxzZWN0aW9uXG4gICAgY2xhc3M9XCJsYXJnZUltYWdlIGpzLWFjdGl2ZS1zbGlkZXJcIlxuICAgIGRhdGEtc2xpZGVzX2luZmluaXRlPVwidHJ1ZVwiXG4gICAgZGF0YS1zbGlkZXJfbmFtZT1cImpzLWxhcmdlSW1hZ2Utc2xpZGVyXCJcbiAgICBkYXRhLXNsaWRlcl9zaG93YnRucz1cInRydWVcIlxuICAgIGRhdGEtc2xpZGVyX3Nob3dkb3RzPVwiZmFsc2VcIlxuICAgIGRhdGEtc2xpZGVyX2ZhZGU9XCJ0cnVlXCJcbiAgICBkYXRhLXNsaWRlcl9hdXRvcGxheT1cImZhbHNlXCJcbiAgICBkYXRhLXNsaWRlc19wYz1cIjFcIlxuPlxuICAgIEBpZiAodGl0bGUpIHtcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJsYXJnZUltYWdlX190aXRsZVwiPnt7IHRpdGxlIH19PC9zcGFuPlxuICAgIH1cbiAgICA8ZGl2IGNsYXNzPVwibGFyZ2VJbWFnZV9faW5uZXIgcmVsYXRpdmVcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImpzLWxhcmdlSW1hZ2Utc2xpZGVyIGpzLXNsaWRlcl9maXgtYXJyb3dzXCI+XG4gICAgICAgICAgICBAZm9yIChpdGVtIG9mIGl0ZW1zIHx8IFtdOyB0cmFjayAkaW5kZXgpIHtcbiAgICAgICAgICAgICAgICA8ZGl2PlxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwibGFyZ2VJbWFnZV9fYm94XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJsYXJnZUltYWdlX19ncmFwaGljIGpzLXNsaWRlcl9maXgtYXJyb3dzLXpvbmUgZGVza3RvcFwiXG4gICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChpdGVtLmltZykge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW1nXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc3JjXT1cIml0ZW0uaW1nLnNyY1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB3aWR0aD1cIjE2NzBcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaGVpZ2h0PVwiNzA0XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwibGFyZ2VJbWFnZV9fZ3JhcGhpYy0taW1nXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFthbHRdPVwiaXRlbS5pbWcuYWx0XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJsYXJnZUltYWdlX19jb250ZW50XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChpdGVtLnRpdGxlKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJsYXJnZUltYWdlX19oZWFkaW5nIGpzLXNsaWRlcl9maXgtYXJyb3dzLXpvbmUgbW9iaWxlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3sgaXRlbS50aXRsZSB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2gyPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYgKGl0ZW0uZGVzY3JpcHRpb24pIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImxhcmdlSW1hZ2VfX3BhcmFncmFwaFwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3sgaXRlbS5kZXNjcmlwdGlvbiB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9wPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJ0bl9fZ3JvdXBcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChpdGVtLmJ1dHRvbikge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbGlua1R5cGVdPVwiaXRlbS5idXR0b24ubGlua1R5cGVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtocmVmXT1cIml0ZW0uYnV0dG9uLnVybFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJidG4gYnRuX19wcmltYXJ5LS1vdXRsaW5lXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+PHNwYW4+e3sgaXRlbS5idXR0b24ubGFiZWwgfX08L3NwYW4+PC9hXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIH1cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJqcy1zbGlkZXItYXJyb3dzXCI+PC9kaXY+XG4gICAgPC9kaXY+XG48L3NlY3Rpb24+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyby1pbmZvLWJhbm5lci5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wdXJvL3NyYy9saWIvY29tcG9uZW50cy9wdXJvLWluZm8tYmFubmVyL3B1cm8taW5mby1iYW5uZXIuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQdXJvSW5mb0Jhbm5lckl0ZW0gfSBmcm9tICcuL3B1cm8taW5mby1iYW5uZXIuY29tcG9uZW50JztcclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgUHVyb0luZm9CYW5uZXJJIHtcclxuICAgIGl0ZW1zPzogUHVyb0luZm9CYW5uZXJJdGVtW107XHJcbiAgICB0aXRsZT86IHN0cmluZztcclxufVxyXG4iXX0=
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export * from './puro-schedule.component';
|
|
2
|
-
|
|
2
|
+
export * from './puro-schedule.interface';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wdXJvL3NyYy9saWIvY29tcG9uZW50cy9wdXJvLXNjaGVkdWxlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYywyQkFBMkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVyby1zY2hlZHVsZS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3B1cm8tc2NoZWR1bGUuaW50ZXJmYWNlJztcclxuIl19
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export class PuroScheduleComponent {
|
|
4
5
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroScheduleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroScheduleComponent, isStandalone: true, selector: "lib-puro-schedule", inputs: { items: "items", title: "title" }, ngImport: i0, template: "<section class=\"schedule\">\n @if (title) {\n <span class=\"schedule__title\">{{ title }}</span>\n }\n <div class=\"schedule__list\">\n @for (item of items || []; track $index) {\n <div class=\"schedule__box\">\n @if (item.title) {\n <p class=\"schedule__name\">{{ item.title }}</p>\n }\n @if (item.icon) {\n <span><i class=\"{{ item.icon }}\"></i></span>\n }\n @if (item.description) {\n <p class=\"schedule__time\">\n <span>{{ item.description }}</span>\n </p>\n }\n </div>\n }\n </div>\n</section>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6
7
|
}
|
|
7
8
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroScheduleComponent, decorators: [{
|
|
8
9
|
type: Component,
|
|
9
|
-
args: [{ selector: 'lib-puro-schedule', standalone: true, imports: [], template: "<p>
|
|
10
|
-
}]
|
|
11
|
-
|
|
10
|
+
args: [{ selector: 'lib-puro-schedule', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section class=\"schedule\">\n @if (title) {\n <span class=\"schedule__title\">{{ title }}</span>\n }\n <div class=\"schedule__list\">\n @for (item of items || []; track $index) {\n <div class=\"schedule__box\">\n @if (item.title) {\n <p class=\"schedule__name\">{{ item.title }}</p>\n }\n @if (item.icon) {\n <span><i class=\"{{ item.icon }}\"></i></span>\n }\n @if (item.description) {\n <p class=\"schedule__time\">\n <span>{{ item.description }}</span>\n </p>\n }\n </div>\n }\n </div>\n</section>\n" }]
|
|
11
|
+
}], propDecorators: { items: [{
|
|
12
|
+
type: Input
|
|
13
|
+
}], title: [{
|
|
14
|
+
type: Input
|
|
15
|
+
}] } });
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyby1zY2hlZHVsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wdXJvL3NyYy9saWIvY29tcG9uZW50cy9wdXJvLXNjaGVkdWxlL3B1cm8tc2NoZWR1bGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHVyby9zcmMvbGliL2NvbXBvbmVudHMvcHVyby1zY2hlZHVsZS9wdXJvLXNjaGVkdWxlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFVMUUsTUFBTSxPQUFPLHFCQUFxQjsrR0FBckIscUJBQXFCO21HQUFyQixxQkFBcUIseUhDWGxDLDZ1QkFzQkEseUREaEJjLFlBQVk7OzRGQUtiLHFCQUFxQjtrQkFSakMsU0FBUzsrQkFDSSxtQkFBbUIsY0FDakIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDLG1CQUdOLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdsaWItcHVyby1zY2hlZHVsZScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgICB0ZW1wbGF0ZVVybDogJy4vcHVyby1zY2hlZHVsZS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmw6ICcuL3B1cm8tc2NoZWR1bGUuY29tcG9uZW50LnNjc3MnLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBQdXJvU2NoZWR1bGVDb21wb25lbnQge1xuICAgIEBJbnB1dCgpIGl0ZW1zPzogUHVyb1NjaGVkdWxlSXRlbVtdO1xuICAgIEBJbnB1dCgpIHRpdGxlPzogc3RyaW5nO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFB1cm9TY2hlZHVsZUl0ZW0ge1xuICAgIHRpdGxlPzogc3RyaW5nO1xuICAgIGljb24/OiBzdHJpbmc7XG4gICAgZGVzY3JpcHRpb24/OiBzdHJpbmc7XG59XG4iLCI8c2VjdGlvbiBjbGFzcz1cInNjaGVkdWxlXCI+XG4gICAgQGlmICh0aXRsZSkge1xuICAgICAgICA8c3BhbiBjbGFzcz1cInNjaGVkdWxlX190aXRsZVwiPnt7IHRpdGxlIH19PC9zcGFuPlxuICAgIH1cbiAgICA8ZGl2IGNsYXNzPVwic2NoZWR1bGVfX2xpc3RcIj5cbiAgICAgICAgQGZvciAoaXRlbSBvZiBpdGVtcyB8fCBbXTsgdHJhY2sgJGluZGV4KSB7XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwic2NoZWR1bGVfX2JveFwiPlxuICAgICAgICAgICAgICAgIEBpZiAoaXRlbS50aXRsZSkge1xuICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInNjaGVkdWxlX19uYW1lXCI+e3sgaXRlbS50aXRsZSB9fTwvcD5cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgQGlmIChpdGVtLmljb24pIHtcbiAgICAgICAgICAgICAgICAgICAgPHNwYW4+PGkgY2xhc3M9XCJ7eyBpdGVtLmljb24gfX1cIj48L2k+PC9zcGFuPlxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICBAaWYgKGl0ZW0uZGVzY3JpcHRpb24pIHtcbiAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJzY2hlZHVsZV9fdGltZVwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+e3sgaXRlbS5kZXNjcmlwdGlvbiB9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgPC9wPlxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICB9XG4gICAgPC9kaXY+XG48L3NlY3Rpb24+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyby1zY2hlZHVsZS5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wdXJvL3NyYy9saWIvY29tcG9uZW50cy9wdXJvLXNjaGVkdWxlL3B1cm8tc2NoZWR1bGUuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQdXJvU2NoZWR1bGVJdGVtIH0gZnJvbSAnLi9wdXJvLXNjaGVkdWxlLmNvbXBvbmVudCc7XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFB1cm9TY2hlZHVsZUkge1xyXG4gICAgaXRlbXM/OiBQdXJvU2NoZWR1bGVJdGVtW107XHJcbiAgICB0aXRsZT86IHN0cmluZztcclxufVxyXG4iXX0=
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export * from './puro-top-slider.component';
|
|
2
|
-
|
|
2
|
+
export * from './puro-top-slider.interface';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wdXJvL3NyYy9saWIvY29tcG9uZW50cy9wdXJvLXRvcC1zbGlkZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDZCQUE2QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdXJvLXRvcC1zbGlkZXIuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9wdXJvLXRvcC1zbGlkZXIuaW50ZXJmYWNlJztcclxuIl19
|
|
@@ -4,12 +4,24 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
import * as i1 from "@angular/common";
|
|
5
5
|
export class PuroTopSliderComponent {
|
|
6
6
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroTopSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroTopSliderComponent, isStandalone: true, selector: "lib-puro-top-slider", inputs: { engine: "engine" }, ngImport: i0, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n <div class=\"banner__item\">\r\n
|
|
7
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroTopSliderComponent, isStandalone: true, selector: "lib-puro-top-slider", inputs: { engine: "engine", title: "title", mainTitle: "mainTitle", pretitle: "pretitle", subtitle: "subtitle", images: "images", video: "video" }, ngImport: i0, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n @for (image of images; track $index) {\r\n <div class=\"banner__item\">\r\n <img\r\n [src]=\"image.src\"\r\n [alt]=\"image.alt\"\r\n class=\"banner__image\"\r\n width=\"1920\"\r\n height=\"980\"\r\n />\r\n </div>\r\n }\r\n </div>\r\n <!-- if banner image-->\r\n <!-- if banner video -->\r\n @if (video) {\r\n <div class=\"banner__video\">\r\n <div class=\"banner__video--inner\">\r\n <iframe\r\n id=\"YouTubeVideoPlayer\"\r\n width=\"1920\"\r\n height=\"1080\"\r\n allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\r\n src=\"{{\r\n video\r\n }}?enablejsapi=1&controls=0&showinfo=0&autoplay=1&modestbranding=1&loop=1&autohide=1&playsinline=1&widgetid=1\"\r\n frameborder=\"0\"\r\n allowfullscreen\r\n ></iframe>\r\n </div>\r\n </div>\r\n }\r\n <!-- if banner video -->\r\n <div class=\"banner__logo\">\r\n <a href=\"index.html\">\r\n <svg\r\n aria-hidden=\"true\"\r\n width=\"177\"\r\n height=\"68\"\r\n focusable=\"false\"\r\n class=\"banner__logo--img\"\r\n >\r\n <use href=\"#saulo-logo\"></use>\r\n </svg>\r\n </a>\r\n </div>\r\n @if (mainTitle) {\r\n <h1 class=\"banner__title\">\r\n <span>{{ mainTitle }}</span>\r\n </h1>\r\n }\r\n <div class=\"banner__content\">\r\n @if (pretitle) {\r\n <p class=\"banner__text\">{{ pretitle }}</p>\r\n }\r\n @if (title) {\r\n <h2 class=\"banner__heading\">{{ title }}</h2>\r\n }\r\n @if (subtitle) {\r\n <p class=\"banner__text\">{{ subtitle }}</p>\r\n }\r\n </div>\r\n <div class=\"banner__actions\">\r\n <div class=\"banner__newsletter\">\r\n <a\r\n href=\"/hotels/puro/newsletter.html\"\r\n class=\"banner__newsletter--inner\"\r\n >\r\n <span class=\"icon-63\"></span>\r\n <strong>Newsletter</strong>\r\n </a>\r\n </div>\r\n <div class=\"banner__language\">\r\n <div\r\n class=\"banner__language--inner js-active-modal\"\r\n data-modal_name=\"language\"\r\n role=\"button\"\r\n >\r\n <span class=\"banner__language--icon\">ES</span>\r\n <strong>Idiomas</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__spotify\">\r\n <div class=\"banner__spotify--inner\" role=\"button\">\r\n <span class=\"icon-82\"></span>\r\n <strong>Listen to Puro Music</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__fidelityClub\">\r\n <div class=\"banner__fidelityClub--inner\" role=\"button\">\r\n <span class=\"icon-60\"></span>\r\n <strong>Fidelity Club</strong>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n @if (engine) {\r\n <ng-container [ngTemplateOutlet]=\"engine\"></ng-container>\r\n }\r\n\r\n <span\r\n class=\"banner__offers--tigger js-active-modal\"\r\n data-modal_name=\"t-offers\"\r\n role=\"button\"\r\n >SEE OFFERS</span\r\n >\r\n</section>\r\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
8
|
}
|
|
9
9
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroTopSliderComponent, decorators: [{
|
|
10
10
|
type: Component,
|
|
11
|
-
args: [{ selector: 'lib-puro-top-slider', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n <div class=\"banner__item\">\r\n
|
|
11
|
+
args: [{ selector: 'lib-puro-top-slider', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n @for (image of images; track $index) {\r\n <div class=\"banner__item\">\r\n <img\r\n [src]=\"image.src\"\r\n [alt]=\"image.alt\"\r\n class=\"banner__image\"\r\n width=\"1920\"\r\n height=\"980\"\r\n />\r\n </div>\r\n }\r\n </div>\r\n <!-- if banner image-->\r\n <!-- if banner video -->\r\n @if (video) {\r\n <div class=\"banner__video\">\r\n <div class=\"banner__video--inner\">\r\n <iframe\r\n id=\"YouTubeVideoPlayer\"\r\n width=\"1920\"\r\n height=\"1080\"\r\n allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\r\n src=\"{{\r\n video\r\n }}?enablejsapi=1&controls=0&showinfo=0&autoplay=1&modestbranding=1&loop=1&autohide=1&playsinline=1&widgetid=1\"\r\n frameborder=\"0\"\r\n allowfullscreen\r\n ></iframe>\r\n </div>\r\n </div>\r\n }\r\n <!-- if banner video -->\r\n <div class=\"banner__logo\">\r\n <a href=\"index.html\">\r\n <svg\r\n aria-hidden=\"true\"\r\n width=\"177\"\r\n height=\"68\"\r\n focusable=\"false\"\r\n class=\"banner__logo--img\"\r\n >\r\n <use href=\"#saulo-logo\"></use>\r\n </svg>\r\n </a>\r\n </div>\r\n @if (mainTitle) {\r\n <h1 class=\"banner__title\">\r\n <span>{{ mainTitle }}</span>\r\n </h1>\r\n }\r\n <div class=\"banner__content\">\r\n @if (pretitle) {\r\n <p class=\"banner__text\">{{ pretitle }}</p>\r\n }\r\n @if (title) {\r\n <h2 class=\"banner__heading\">{{ title }}</h2>\r\n }\r\n @if (subtitle) {\r\n <p class=\"banner__text\">{{ subtitle }}</p>\r\n }\r\n </div>\r\n <div class=\"banner__actions\">\r\n <div class=\"banner__newsletter\">\r\n <a\r\n href=\"/hotels/puro/newsletter.html\"\r\n class=\"banner__newsletter--inner\"\r\n >\r\n <span class=\"icon-63\"></span>\r\n <strong>Newsletter</strong>\r\n </a>\r\n </div>\r\n <div class=\"banner__language\">\r\n <div\r\n class=\"banner__language--inner js-active-modal\"\r\n data-modal_name=\"language\"\r\n role=\"button\"\r\n >\r\n <span class=\"banner__language--icon\">ES</span>\r\n <strong>Idiomas</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__spotify\">\r\n <div class=\"banner__spotify--inner\" role=\"button\">\r\n <span class=\"icon-82\"></span>\r\n <strong>Listen to Puro Music</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__fidelityClub\">\r\n <div class=\"banner__fidelityClub--inner\" role=\"button\">\r\n <span class=\"icon-60\"></span>\r\n <strong>Fidelity Club</strong>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n @if (engine) {\r\n <ng-container [ngTemplateOutlet]=\"engine\"></ng-container>\r\n }\r\n\r\n <span\r\n class=\"banner__offers--tigger js-active-modal\"\r\n data-modal_name=\"t-offers\"\r\n role=\"button\"\r\n >SEE OFFERS</span\r\n >\r\n</section>\r\n" }]
|
|
12
12
|
}], propDecorators: { engine: [{
|
|
13
13
|
type: Input
|
|
14
|
+
}], title: [{
|
|
15
|
+
type: Input
|
|
16
|
+
}], mainTitle: [{
|
|
17
|
+
type: Input
|
|
18
|
+
}], pretitle: [{
|
|
19
|
+
type: Input
|
|
20
|
+
}], subtitle: [{
|
|
21
|
+
type: Input
|
|
22
|
+
}], images: [{
|
|
23
|
+
type: Input
|
|
24
|
+
}], video: [{
|
|
25
|
+
type: Input
|
|
14
26
|
}] } });
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyby10b3Atc2xpZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3B1cm8vc3JjL2xpYi9jb21wb25lbnRzL3B1cm8tdG9wLXNsaWRlci9wdXJvLXRvcC1zbGlkZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHVyby9zcmMvbGliL2NvbXBvbmVudHMvcHVyby10b3Atc2xpZGVyL3B1cm8tdG9wLXNsaWRlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUNILHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsS0FBSyxHQUVSLE1BQU0sZUFBZSxDQUFDOzs7QUFXdkIsTUFBTSxPQUFPLHNCQUFzQjsrR0FBdEIsc0JBQXNCO21HQUF0QixzQkFBc0IsbU9DakJuQyxvaklBc0hBLHlERDFHYyxZQUFZOzs0RkFLYixzQkFBc0I7a0JBUmxDLFNBQVM7K0JBQ0kscUJBQXFCLGNBQ25CLElBQUksV0FDUCxDQUFDLFlBQVksQ0FBQyxtQkFHTix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQge1xyXG4gICAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXHJcbiAgICBDb21wb25lbnQsXHJcbiAgICBJbnB1dCxcclxuICAgIFRlbXBsYXRlUmVmLFxyXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBQdXJvSW1hZ2VJIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcyc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICAgIHNlbGVjdG9yOiAnbGliLXB1cm8tdG9wLXNsaWRlcicsXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXHJcbiAgICB0ZW1wbGF0ZVVybDogJy4vcHVyby10b3Atc2xpZGVyLmNvbXBvbmVudC5odG1sJyxcclxuICAgIHN0eWxlVXJsOiAnLi9wdXJvLXRvcC1zbGlkZXIuY29tcG9uZW50LnNjc3MnLFxyXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBQdXJvVG9wU2xpZGVyQ29tcG9uZW50IHtcclxuICAgIEBJbnB1dCgpIGVuZ2luZSE6IFRlbXBsYXRlUmVmPGFueT47XHJcbiAgICBASW5wdXQoKSB0aXRsZT86IHN0cmluZztcclxuICAgIEBJbnB1dCgpIG1haW5UaXRsZT86IHN0cmluZztcclxuICAgIEBJbnB1dCgpIHByZXRpdGxlPzogc3RyaW5nO1xyXG4gICAgQElucHV0KCkgc3VidGl0bGU/OiBzdHJpbmc7XHJcbiAgICBASW5wdXQoKSBpbWFnZXM/OiBQdXJvSW1hZ2VJW107XHJcbiAgICBASW5wdXQoKSB2aWRlbz86IHN0cmluZztcclxufVxyXG4iLCI8c2VjdGlvblxyXG4gICAgY2xhc3M9XCJiYW5uZXIganMtYWN0aXZlLXNsaWRlclwiXHJcbiAgICBkYXRhLXNsaWRlc19pbmZpbml0ZT1cInRydWVcIlxyXG4gICAgZGF0YS1zbGlkZXJfbmFtZT1cImpzLWJhbm5lci1zbGlkZXJcIlxyXG4gICAgZGF0YS1zbGlkZXJfc2hvd2J0bnM9XCJmYWxzZVwiXHJcbiAgICBkYXRhLXNsaWRlcl9zaG93ZG90cz1cImZhbHNlXCJcclxuICAgIGRhdGEtc2xpZGVyX2ZhZGU9XCJ0cnVlXCJcclxuICAgIGRhdGEtc2xpZGVyX2F1dG9wbGF5PVwidHJ1ZVwiXHJcbiAgICBkYXRhLXNsaWRlc19wYz1cIjFcIlxyXG4+XHJcbiAgICA8IS0tIGlmIGJhbm5lciBpbWFnZS0tPlxyXG4gICAgPGRpdiBjbGFzcz1cImpzLWJhbm5lci1zbGlkZXJcIj5cclxuICAgICAgICBAZm9yIChpbWFnZSBvZiBpbWFnZXM7IHRyYWNrICRpbmRleCkge1xyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYmFubmVyX19pdGVtXCI+XHJcbiAgICAgICAgICAgICAgICA8aW1nXHJcbiAgICAgICAgICAgICAgICAgICAgW3NyY109XCJpbWFnZS5zcmNcIlxyXG4gICAgICAgICAgICAgICAgICAgIFthbHRdPVwiaW1hZ2UuYWx0XCJcclxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImJhbm5lcl9faW1hZ2VcIlxyXG4gICAgICAgICAgICAgICAgICAgIHdpZHRoPVwiMTkyMFwiXHJcbiAgICAgICAgICAgICAgICAgICAgaGVpZ2h0PVwiOTgwXCJcclxuICAgICAgICAgICAgICAgIC8+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIH1cclxuICAgIDwvZGl2PlxyXG4gICAgPCEtLSBpZiBiYW5uZXIgaW1hZ2UtLT5cclxuICAgIDwhLS0gaWYgYmFubmVyIHZpZGVvIC0tPlxyXG4gICAgQGlmICh2aWRlbykge1xyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJiYW5uZXJfX3ZpZGVvXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJiYW5uZXJfX3ZpZGVvLS1pbm5lclwiPlxyXG4gICAgICAgICAgICAgICAgPGlmcmFtZVxyXG4gICAgICAgICAgICAgICAgICAgIGlkPVwiWW91VHViZVZpZGVvUGxheWVyXCJcclxuICAgICAgICAgICAgICAgICAgICB3aWR0aD1cIjE5MjBcIlxyXG4gICAgICAgICAgICAgICAgICAgIGhlaWdodD1cIjEwODBcIlxyXG4gICAgICAgICAgICAgICAgICAgIGFsbG93PVwiYWNjZWxlcm9tZXRlcjsgYXV0b3BsYXk7IGNsaXBib2FyZC13cml0ZTsgZW5jcnlwdGVkLW1lZGlhOyBneXJvc2NvcGU7IHBpY3R1cmUtaW4tcGljdHVyZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgc3JjPVwie3tcclxuICAgICAgICAgICAgICAgICAgICAgICAgdmlkZW9cclxuICAgICAgICAgICAgICAgICAgICB9fT9lbmFibGVqc2FwaT0xJmFtcDtjb250cm9scz0wJmFtcDtzaG93aW5mbz0wJmFtcDthdXRvcGxheT0xJmFtcDttb2Rlc3RicmFuZGluZz0xJmFtcDtsb29wPTEmYW1wO2F1dG9oaWRlPTEmYW1wO3BsYXlzaW5saW5lPTEmYW1wO3dpZGdldGlkPTFcIlxyXG4gICAgICAgICAgICAgICAgICAgIGZyYW1lYm9yZGVyPVwiMFwiXHJcbiAgICAgICAgICAgICAgICAgICAgYWxsb3dmdWxsc2NyZWVuXHJcbiAgICAgICAgICAgICAgICA+PC9pZnJhbWU+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgfVxyXG4gICAgPCEtLSBpZiBiYW5uZXIgdmlkZW8gLS0+XHJcbiAgICA8ZGl2IGNsYXNzPVwiYmFubmVyX19sb2dvXCI+XHJcbiAgICAgICAgPGEgaHJlZj1cImluZGV4Lmh0bWxcIj5cclxuICAgICAgICAgICAgPHN2Z1xyXG4gICAgICAgICAgICAgICAgYXJpYS1oaWRkZW49XCJ0cnVlXCJcclxuICAgICAgICAgICAgICAgIHdpZHRoPVwiMTc3XCJcclxuICAgICAgICAgICAgICAgIGhlaWdodD1cIjY4XCJcclxuICAgICAgICAgICAgICAgIGZvY3VzYWJsZT1cImZhbHNlXCJcclxuICAgICAgICAgICAgICAgIGNsYXNzPVwiYmFubmVyX19sb2dvLS1pbWdcIlxyXG4gICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgICA8dXNlIGhyZWY9XCIjc2F1bG8tbG9nb1wiPjwvdXNlPlxyXG4gICAgICAgICAgICA8L3N2Zz5cclxuICAgICAgICA8L2E+XHJcbiAgICA8L2Rpdj5cclxuICAgIEBpZiAobWFpblRpdGxlKSB7XHJcbiAgICAgICAgPGgxIGNsYXNzPVwiYmFubmVyX190aXRsZVwiPlxyXG4gICAgICAgICAgICA8c3Bhbj57eyBtYWluVGl0bGUgfX08L3NwYW4+XHJcbiAgICAgICAgPC9oMT5cclxuICAgIH1cclxuICAgIDxkaXYgY2xhc3M9XCJiYW5uZXJfX2NvbnRlbnRcIj5cclxuICAgICAgICBAaWYgKHByZXRpdGxlKSB7XHJcbiAgICAgICAgICAgIDxwIGNsYXNzPVwiYmFubmVyX190ZXh0XCI+e3sgcHJldGl0bGUgfX08L3A+XHJcbiAgICAgICAgfVxyXG4gICAgICAgIEBpZiAodGl0bGUpIHtcclxuICAgICAgICAgICAgPGgyIGNsYXNzPVwiYmFubmVyX19oZWFkaW5nXCI+e3sgdGl0bGUgfX08L2gyPlxyXG4gICAgICAgIH1cclxuICAgICAgICBAaWYgKHN1YnRpdGxlKSB7XHJcbiAgICAgICAgICAgIDxwIGNsYXNzPVwiYmFubmVyX190ZXh0XCI+e3sgc3VidGl0bGUgfX08L3A+XHJcbiAgICAgICAgfVxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwiYmFubmVyX19hY3Rpb25zXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImJhbm5lcl9fbmV3c2xldHRlclwiPlxyXG4gICAgICAgICAgICA8YVxyXG4gICAgICAgICAgICAgICAgaHJlZj1cIi9ob3RlbHMvcHVyby9uZXdzbGV0dGVyLmh0bWxcIlxyXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJiYW5uZXJfX25ld3NsZXR0ZXItLWlubmVyXCJcclxuICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJpY29uLTYzXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgPHN0cm9uZz5OZXdzbGV0dGVyPC9zdHJvbmc+XHJcbiAgICAgICAgICAgIDwvYT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiYmFubmVyX19sYW5ndWFnZVwiPlxyXG4gICAgICAgICAgICA8ZGl2XHJcbiAgICAgICAgICAgICAgICBjbGFzcz1cImJhbm5lcl9fbGFuZ3VhZ2UtLWlubmVyIGpzLWFjdGl2ZS1tb2RhbFwiXHJcbiAgICAgICAgICAgICAgICBkYXRhLW1vZGFsX25hbWU9XCJsYW5ndWFnZVwiXHJcbiAgICAgICAgICAgICAgICByb2xlPVwiYnV0dG9uXCJcclxuICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYW5uZXJfX2xhbmd1YWdlLS1pY29uXCI+RVM8L3NwYW4+XHJcbiAgICAgICAgICAgICAgICA8c3Ryb25nPklkaW9tYXM8L3N0cm9uZz5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImJhbm5lcl9fc3BvdGlmeVwiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYmFubmVyX19zcG90aWZ5LS1pbm5lclwiIHJvbGU9XCJidXR0b25cIj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiaWNvbi04MlwiPjwvc3Bhbj5cclxuICAgICAgICAgICAgICAgIDxzdHJvbmc+TGlzdGVuIHRvIFB1cm8gTXVzaWM8L3N0cm9uZz5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImJhbm5lcl9fZmlkZWxpdHlDbHViXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJiYW5uZXJfX2ZpZGVsaXR5Q2x1Yi0taW5uZXJcIiByb2xlPVwiYnV0dG9uXCI+XHJcbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImljb24tNjBcIj48L3NwYW4+XHJcbiAgICAgICAgICAgICAgICA8c3Ryb25nPkZpZGVsaXR5IENsdWI8L3N0cm9uZz5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuXHJcbiAgICBAaWYgKGVuZ2luZSkge1xyXG4gICAgICAgIDxuZy1jb250YWluZXIgW25nVGVtcGxhdGVPdXRsZXRdPVwiZW5naW5lXCI+PC9uZy1jb250YWluZXI+XHJcbiAgICB9XHJcblxyXG4gICAgPHNwYW5cclxuICAgICAgICBjbGFzcz1cImJhbm5lcl9fb2ZmZXJzLS10aWdnZXIganMtYWN0aXZlLW1vZGFsXCJcclxuICAgICAgICBkYXRhLW1vZGFsX25hbWU9XCJ0LW9mZmVyc1wiXHJcbiAgICAgICAgcm9sZT1cImJ1dHRvblwiXHJcbiAgICAgICAgPlNFRSBPRkZFUlM8L3NwYW5cclxuICAgID5cclxuPC9zZWN0aW9uPlxyXG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyby10b3Atc2xpZGVyLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3B1cm8vc3JjL2xpYi9jb21wb25lbnRzL3B1cm8tdG9wLXNsaWRlci9wdXJvLXRvcC1zbGlkZXIuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBQdXJvSW1hZ2VJIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcyc7XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFB1cm9Ub3BTbGlkZXJJIHtcclxuICAgIGVuZ2luZTogVGVtcGxhdGVSZWY8YW55PjtcclxuICAgIHRpdGxlPzogc3RyaW5nO1xyXG4gICAgbWFpblRpdGxlPzogc3RyaW5nO1xyXG4gICAgcHJldGl0bGU/OiBzdHJpbmc7XHJcbiAgICBzdWJ0aXRsZT86IHN0cmluZztcclxuICAgIGltYWdlcz86IFB1cm9JbWFnZUlbXTtcclxuICAgIHZpZGVvPzogc3RyaW5nO1xyXG59XHJcbiJdfQ==
|
package/fesm2022/ctt-puro.mjs
CHANGED
|
@@ -1073,12 +1073,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1073
1073
|
|
|
1074
1074
|
class PuroInfoBannerComponent {
|
|
1075
1075
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroInfoBannerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1076
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1076
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroInfoBannerComponent, isStandalone: true, selector: "lib-puro-info-banner", inputs: { items: "items", title: "title" }, ngImport: i0, template: "<section\n class=\"largeImage js-active-slider\"\n data-slides_infinite=\"true\"\n data-slider_name=\"js-largeImage-slider\"\n data-slider_showbtns=\"true\"\n data-slider_showdots=\"false\"\n data-slider_fade=\"true\"\n data-slider_autoplay=\"false\"\n data-slides_pc=\"1\"\n>\n @if (title) {\n <span class=\"largeImage__title\">{{ title }}</span>\n }\n <div class=\"largeImage__inner relative\">\n <div class=\"js-largeImage-slider js-slider_fix-arrows\">\n @for (item of items || []; track $index) {\n <div>\n <div class=\"largeImage__box\">\n <div\n class=\"largeImage__graphic js-slider_fix-arrows-zone desktop\"\n >\n @if (item.img) {\n <img\n [src]=\"item.img.src\"\n width=\"1670\"\n height=\"704\"\n class=\"largeImage__graphic--img\"\n [alt]=\"item.img.alt\"\n />\n }\n </div>\n <div class=\"largeImage__content\">\n @if (item.title) {\n <h2\n class=\"largeImage__heading js-slider_fix-arrows-zone mobile\"\n >\n {{ item.title }}\n </h2>\n }\n @if (item.description) {\n <div class=\"largeImage__paragraph\">\n <p>\n {{ item.description }}\n </p>\n </div>\n }\n <div class=\"btn__group\">\n @if (item.button) {\n <a\n [linkType]=\"item.button.linkType\"\n [href]=\"item.button.url\"\n class=\"btn btn__primary--outline\"\n ><span>{{ item.button.label }}</span></a\n >\n }\n </div>\n </div>\n </div>\n </div>\n }\n </div>\n <div class=\"js-slider-arrows\"></div>\n </div>\n</section>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: PuroLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1077
1077
|
}
|
|
1078
1078
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroInfoBannerComponent, decorators: [{
|
|
1079
1079
|
type: Component,
|
|
1080
|
-
args: [{ selector: 'lib-puro-info-banner', standalone: true, imports: [], template: "<
|
|
1081
|
-
}]
|
|
1080
|
+
args: [{ selector: 'lib-puro-info-banner', standalone: true, imports: [CommonModule, PuroLinkTypeDirective], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section\n class=\"largeImage js-active-slider\"\n data-slides_infinite=\"true\"\n data-slider_name=\"js-largeImage-slider\"\n data-slider_showbtns=\"true\"\n data-slider_showdots=\"false\"\n data-slider_fade=\"true\"\n data-slider_autoplay=\"false\"\n data-slides_pc=\"1\"\n>\n @if (title) {\n <span class=\"largeImage__title\">{{ title }}</span>\n }\n <div class=\"largeImage__inner relative\">\n <div class=\"js-largeImage-slider js-slider_fix-arrows\">\n @for (item of items || []; track $index) {\n <div>\n <div class=\"largeImage__box\">\n <div\n class=\"largeImage__graphic js-slider_fix-arrows-zone desktop\"\n >\n @if (item.img) {\n <img\n [src]=\"item.img.src\"\n width=\"1670\"\n height=\"704\"\n class=\"largeImage__graphic--img\"\n [alt]=\"item.img.alt\"\n />\n }\n </div>\n <div class=\"largeImage__content\">\n @if (item.title) {\n <h2\n class=\"largeImage__heading js-slider_fix-arrows-zone mobile\"\n >\n {{ item.title }}\n </h2>\n }\n @if (item.description) {\n <div class=\"largeImage__paragraph\">\n <p>\n {{ item.description }}\n </p>\n </div>\n }\n <div class=\"btn__group\">\n @if (item.button) {\n <a\n [linkType]=\"item.button.linkType\"\n [href]=\"item.button.url\"\n class=\"btn btn__primary--outline\"\n ><span>{{ item.button.label }}</span></a\n >\n }\n </div>\n </div>\n </div>\n </div>\n }\n </div>\n <div class=\"js-slider-arrows\"></div>\n </div>\n</section>\n" }]
|
|
1081
|
+
}], propDecorators: { items: [{
|
|
1082
|
+
type: Input
|
|
1083
|
+
}], title: [{
|
|
1084
|
+
type: Input
|
|
1085
|
+
}] } });
|
|
1082
1086
|
|
|
1083
1087
|
class PuroInfoBigComponent {
|
|
1084
1088
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroInfoBigComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -1320,12 +1324,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1320
1324
|
|
|
1321
1325
|
class PuroScheduleComponent {
|
|
1322
1326
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroScheduleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1323
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1327
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroScheduleComponent, isStandalone: true, selector: "lib-puro-schedule", inputs: { items: "items", title: "title" }, ngImport: i0, template: "<section class=\"schedule\">\n @if (title) {\n <span class=\"schedule__title\">{{ title }}</span>\n }\n <div class=\"schedule__list\">\n @for (item of items || []; track $index) {\n <div class=\"schedule__box\">\n @if (item.title) {\n <p class=\"schedule__name\">{{ item.title }}</p>\n }\n @if (item.icon) {\n <span><i class=\"{{ item.icon }}\"></i></span>\n }\n @if (item.description) {\n <p class=\"schedule__time\">\n <span>{{ item.description }}</span>\n </p>\n }\n </div>\n }\n </div>\n</section>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1324
1328
|
}
|
|
1325
1329
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroScheduleComponent, decorators: [{
|
|
1326
1330
|
type: Component,
|
|
1327
|
-
args: [{ selector: 'lib-puro-schedule', standalone: true, imports: [], template: "<p>
|
|
1328
|
-
}]
|
|
1331
|
+
args: [{ selector: 'lib-puro-schedule', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section class=\"schedule\">\n @if (title) {\n <span class=\"schedule__title\">{{ title }}</span>\n }\n <div class=\"schedule__list\">\n @for (item of items || []; track $index) {\n <div class=\"schedule__box\">\n @if (item.title) {\n <p class=\"schedule__name\">{{ item.title }}</p>\n }\n @if (item.icon) {\n <span><i class=\"{{ item.icon }}\"></i></span>\n }\n @if (item.description) {\n <p class=\"schedule__time\">\n <span>{{ item.description }}</span>\n </p>\n }\n </div>\n }\n </div>\n</section>\n" }]
|
|
1332
|
+
}], propDecorators: { items: [{
|
|
1333
|
+
type: Input
|
|
1334
|
+
}], title: [{
|
|
1335
|
+
type: Input
|
|
1336
|
+
}] } });
|
|
1329
1337
|
|
|
1330
1338
|
class PuroSlider1colComponent {
|
|
1331
1339
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroSlider1colComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -1391,13 +1399,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1391
1399
|
|
|
1392
1400
|
class PuroTopSliderComponent {
|
|
1393
1401
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroTopSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1394
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroTopSliderComponent, isStandalone: true, selector: "lib-puro-top-slider", inputs: { engine: "engine" }, ngImport: i0, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n <div class=\"banner__item\">\r\n
|
|
1402
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: PuroTopSliderComponent, isStandalone: true, selector: "lib-puro-top-slider", inputs: { engine: "engine", title: "title", mainTitle: "mainTitle", pretitle: "pretitle", subtitle: "subtitle", images: "images", video: "video" }, ngImport: i0, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n @for (image of images; track $index) {\r\n <div class=\"banner__item\">\r\n <img\r\n [src]=\"image.src\"\r\n [alt]=\"image.alt\"\r\n class=\"banner__image\"\r\n width=\"1920\"\r\n height=\"980\"\r\n />\r\n </div>\r\n }\r\n </div>\r\n <!-- if banner image-->\r\n <!-- if banner video -->\r\n @if (video) {\r\n <div class=\"banner__video\">\r\n <div class=\"banner__video--inner\">\r\n <iframe\r\n id=\"YouTubeVideoPlayer\"\r\n width=\"1920\"\r\n height=\"1080\"\r\n allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\r\n src=\"{{\r\n video\r\n }}?enablejsapi=1&controls=0&showinfo=0&autoplay=1&modestbranding=1&loop=1&autohide=1&playsinline=1&widgetid=1\"\r\n frameborder=\"0\"\r\n allowfullscreen\r\n ></iframe>\r\n </div>\r\n </div>\r\n }\r\n <!-- if banner video -->\r\n <div class=\"banner__logo\">\r\n <a href=\"index.html\">\r\n <svg\r\n aria-hidden=\"true\"\r\n width=\"177\"\r\n height=\"68\"\r\n focusable=\"false\"\r\n class=\"banner__logo--img\"\r\n >\r\n <use href=\"#saulo-logo\"></use>\r\n </svg>\r\n </a>\r\n </div>\r\n @if (mainTitle) {\r\n <h1 class=\"banner__title\">\r\n <span>{{ mainTitle }}</span>\r\n </h1>\r\n }\r\n <div class=\"banner__content\">\r\n @if (pretitle) {\r\n <p class=\"banner__text\">{{ pretitle }}</p>\r\n }\r\n @if (title) {\r\n <h2 class=\"banner__heading\">{{ title }}</h2>\r\n }\r\n @if (subtitle) {\r\n <p class=\"banner__text\">{{ subtitle }}</p>\r\n }\r\n </div>\r\n <div class=\"banner__actions\">\r\n <div class=\"banner__newsletter\">\r\n <a\r\n href=\"/hotels/puro/newsletter.html\"\r\n class=\"banner__newsletter--inner\"\r\n >\r\n <span class=\"icon-63\"></span>\r\n <strong>Newsletter</strong>\r\n </a>\r\n </div>\r\n <div class=\"banner__language\">\r\n <div\r\n class=\"banner__language--inner js-active-modal\"\r\n data-modal_name=\"language\"\r\n role=\"button\"\r\n >\r\n <span class=\"banner__language--icon\">ES</span>\r\n <strong>Idiomas</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__spotify\">\r\n <div class=\"banner__spotify--inner\" role=\"button\">\r\n <span class=\"icon-82\"></span>\r\n <strong>Listen to Puro Music</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__fidelityClub\">\r\n <div class=\"banner__fidelityClub--inner\" role=\"button\">\r\n <span class=\"icon-60\"></span>\r\n <strong>Fidelity Club</strong>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n @if (engine) {\r\n <ng-container [ngTemplateOutlet]=\"engine\"></ng-container>\r\n }\r\n\r\n <span\r\n class=\"banner__offers--tigger js-active-modal\"\r\n data-modal_name=\"t-offers\"\r\n role=\"button\"\r\n >SEE OFFERS</span\r\n >\r\n</section>\r\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1395
1403
|
}
|
|
1396
1404
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PuroTopSliderComponent, decorators: [{
|
|
1397
1405
|
type: Component,
|
|
1398
|
-
args: [{ selector: 'lib-puro-top-slider', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n <div class=\"banner__item\">\r\n
|
|
1406
|
+
args: [{ selector: 'lib-puro-top-slider', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section\r\n class=\"banner js-active-slider\"\r\n data-slides_infinite=\"true\"\r\n data-slider_name=\"js-banner-slider\"\r\n data-slider_showbtns=\"false\"\r\n data-slider_showdots=\"false\"\r\n data-slider_fade=\"true\"\r\n data-slider_autoplay=\"true\"\r\n data-slides_pc=\"1\"\r\n>\r\n <!-- if banner image-->\r\n <div class=\"js-banner-slider\">\r\n @for (image of images; track $index) {\r\n <div class=\"banner__item\">\r\n <img\r\n [src]=\"image.src\"\r\n [alt]=\"image.alt\"\r\n class=\"banner__image\"\r\n width=\"1920\"\r\n height=\"980\"\r\n />\r\n </div>\r\n }\r\n </div>\r\n <!-- if banner image-->\r\n <!-- if banner video -->\r\n @if (video) {\r\n <div class=\"banner__video\">\r\n <div class=\"banner__video--inner\">\r\n <iframe\r\n id=\"YouTubeVideoPlayer\"\r\n width=\"1920\"\r\n height=\"1080\"\r\n allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\r\n src=\"{{\r\n video\r\n }}?enablejsapi=1&controls=0&showinfo=0&autoplay=1&modestbranding=1&loop=1&autohide=1&playsinline=1&widgetid=1\"\r\n frameborder=\"0\"\r\n allowfullscreen\r\n ></iframe>\r\n </div>\r\n </div>\r\n }\r\n <!-- if banner video -->\r\n <div class=\"banner__logo\">\r\n <a href=\"index.html\">\r\n <svg\r\n aria-hidden=\"true\"\r\n width=\"177\"\r\n height=\"68\"\r\n focusable=\"false\"\r\n class=\"banner__logo--img\"\r\n >\r\n <use href=\"#saulo-logo\"></use>\r\n </svg>\r\n </a>\r\n </div>\r\n @if (mainTitle) {\r\n <h1 class=\"banner__title\">\r\n <span>{{ mainTitle }}</span>\r\n </h1>\r\n }\r\n <div class=\"banner__content\">\r\n @if (pretitle) {\r\n <p class=\"banner__text\">{{ pretitle }}</p>\r\n }\r\n @if (title) {\r\n <h2 class=\"banner__heading\">{{ title }}</h2>\r\n }\r\n @if (subtitle) {\r\n <p class=\"banner__text\">{{ subtitle }}</p>\r\n }\r\n </div>\r\n <div class=\"banner__actions\">\r\n <div class=\"banner__newsletter\">\r\n <a\r\n href=\"/hotels/puro/newsletter.html\"\r\n class=\"banner__newsletter--inner\"\r\n >\r\n <span class=\"icon-63\"></span>\r\n <strong>Newsletter</strong>\r\n </a>\r\n </div>\r\n <div class=\"banner__language\">\r\n <div\r\n class=\"banner__language--inner js-active-modal\"\r\n data-modal_name=\"language\"\r\n role=\"button\"\r\n >\r\n <span class=\"banner__language--icon\">ES</span>\r\n <strong>Idiomas</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__spotify\">\r\n <div class=\"banner__spotify--inner\" role=\"button\">\r\n <span class=\"icon-82\"></span>\r\n <strong>Listen to Puro Music</strong>\r\n </div>\r\n </div>\r\n <div class=\"banner__fidelityClub\">\r\n <div class=\"banner__fidelityClub--inner\" role=\"button\">\r\n <span class=\"icon-60\"></span>\r\n <strong>Fidelity Club</strong>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n @if (engine) {\r\n <ng-container [ngTemplateOutlet]=\"engine\"></ng-container>\r\n }\r\n\r\n <span\r\n class=\"banner__offers--tigger js-active-modal\"\r\n data-modal_name=\"t-offers\"\r\n role=\"button\"\r\n >SEE OFFERS</span\r\n >\r\n</section>\r\n" }]
|
|
1399
1407
|
}], propDecorators: { engine: [{
|
|
1400
1408
|
type: Input
|
|
1409
|
+
}], title: [{
|
|
1410
|
+
type: Input
|
|
1411
|
+
}], mainTitle: [{
|
|
1412
|
+
type: Input
|
|
1413
|
+
}], pretitle: [{
|
|
1414
|
+
type: Input
|
|
1415
|
+
}], subtitle: [{
|
|
1416
|
+
type: Input
|
|
1417
|
+
}], images: [{
|
|
1418
|
+
type: Input
|
|
1419
|
+
}], video: [{
|
|
1420
|
+
type: Input
|
|
1401
1421
|
}] } });
|
|
1402
1422
|
|
|
1403
1423
|
class PuroVerticalInfoComponent {
|