tent-lib 0.0.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.
Files changed (108) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/components/atomic/badge/badge.component.mjs +11 -0
  3. package/esm2022/lib/components/atomic/button/button.component.mjs +12 -0
  4. package/esm2022/lib/components/atomic/datepicker/datepicker.component.mjs +11 -0
  5. package/esm2022/lib/components/atomic/dropdown/dropdown.component.mjs +11 -0
  6. package/esm2022/lib/components/atomic/input/input.component.mjs +11 -0
  7. package/esm2022/lib/components/atomic/text/text.component.mjs +11 -0
  8. package/esm2022/lib/components/core/advantages/advantages.component.mjs +11 -0
  9. package/esm2022/lib/components/core/card/card.component.mjs +11 -0
  10. package/esm2022/lib/components/core/destination-info/destination-info.component.mjs +11 -0
  11. package/esm2022/lib/components/core/footer-a/footer-a.component.mjs +11 -0
  12. package/esm2022/lib/components/core/footer-b/footer-b.component.mjs +11 -0
  13. package/esm2022/lib/components/core/footer-static/footer-static.component.mjs +11 -0
  14. package/esm2022/lib/components/core/header/header.component.mjs +11 -0
  15. package/esm2022/lib/components/core/header-mobile/header-mobile.component.mjs +11 -0
  16. package/esm2022/lib/components/core/hotel-services/hotel-services.component.mjs +11 -0
  17. package/esm2022/lib/components/core/hotel-slider/hotel-slider.component.mjs +11 -0
  18. package/esm2022/lib/components/core/motor/motor.component.mjs +11 -0
  19. package/esm2022/lib/components/core/offer/offer.component.mjs +11 -0
  20. package/esm2022/lib/components/core/offer-banner/offer-banner.component.mjs +11 -0
  21. package/esm2022/lib/components/core/offer-slider/offer-slider.component.mjs +11 -0
  22. package/esm2022/lib/components/core/rooms-slider/rooms-slider.component.mjs +11 -0
  23. package/esm2022/lib/components/core/simple-card/simple-card.component.mjs +11 -0
  24. package/esm2022/lib/components/core/top-module/top-module.component.mjs +11 -0
  25. package/esm2022/lib/interfaces/atomic/badge.interface.mjs +2 -0
  26. package/esm2022/lib/interfaces/atomic/button.interface.mjs +2 -0
  27. package/esm2022/lib/interfaces/atomic/datepicker.interface.mjs +2 -0
  28. package/esm2022/lib/interfaces/atomic/dropdown.interface.mjs +2 -0
  29. package/esm2022/lib/interfaces/atomic/input.interface.mjs +2 -0
  30. package/esm2022/lib/interfaces/core/advantages.interface.mjs +2 -0
  31. package/esm2022/lib/interfaces/core/card.interface.mjs +2 -0
  32. package/esm2022/lib/interfaces/core/destination-info.interface.mjs +2 -0
  33. package/esm2022/lib/interfaces/core/footer-a.interface.mjs +2 -0
  34. package/esm2022/lib/interfaces/core/footer-b.interface.mjs +2 -0
  35. package/esm2022/lib/interfaces/core/footer-static.interface.mjs +2 -0
  36. package/esm2022/lib/interfaces/core/header-mobile.interface.mjs +2 -0
  37. package/esm2022/lib/interfaces/core/header.interface.mjs +2 -0
  38. package/esm2022/lib/interfaces/core/hotel-services.interface.mjs +2 -0
  39. package/esm2022/lib/interfaces/core/hotel-slider.interface.mjs +2 -0
  40. package/esm2022/lib/interfaces/core/motor.interface.mjs +2 -0
  41. package/esm2022/lib/interfaces/core/offer-banner.interface.mjs +2 -0
  42. package/esm2022/lib/interfaces/core/offer-slider.interface.mjs +2 -0
  43. package/esm2022/lib/interfaces/core/offer.interface.mjs +2 -0
  44. package/esm2022/lib/interfaces/core/rooms-slider.interface.mjs +2 -0
  45. package/esm2022/lib/interfaces/core/simple-card.interface.mjs +2 -0
  46. package/esm2022/lib/interfaces/core/top-module.interface.mjs +2 -0
  47. package/esm2022/public-api.mjs +55 -0
  48. package/esm2022/services/index.mjs +2 -0
  49. package/esm2022/services/screen-sizer/index.mjs +4 -0
  50. package/esm2022/services/screen-sizer/screen-sizer.interface.mjs +2 -0
  51. package/esm2022/services/screen-sizer/screen-sizer.service.mjs +118 -0
  52. package/esm2022/services/screen-sizer/screen-sizer.service.token.mjs +3 -0
  53. package/esm2022/tent-lib.mjs +5 -0
  54. package/fesm2022/tent-lib.mjs +339 -0
  55. package/fesm2022/tent-lib.mjs.map +1 -0
  56. package/index.d.ts +5 -0
  57. package/lib/components/atomic/badge/badge.component.d.ts +5 -0
  58. package/lib/components/atomic/button/button.component.d.ts +5 -0
  59. package/lib/components/atomic/datepicker/datepicker.component.d.ts +5 -0
  60. package/lib/components/atomic/dropdown/dropdown.component.d.ts +5 -0
  61. package/lib/components/atomic/input/input.component.d.ts +5 -0
  62. package/lib/components/atomic/text/text.component.d.ts +5 -0
  63. package/lib/components/core/advantages/advantages.component.d.ts +5 -0
  64. package/lib/components/core/card/card.component.d.ts +5 -0
  65. package/lib/components/core/destination-info/destination-info.component.d.ts +5 -0
  66. package/lib/components/core/footer-a/footer-a.component.d.ts +5 -0
  67. package/lib/components/core/footer-b/footer-b.component.d.ts +5 -0
  68. package/lib/components/core/footer-static/footer-static.component.d.ts +5 -0
  69. package/lib/components/core/header/header.component.d.ts +5 -0
  70. package/lib/components/core/header-mobile/header-mobile.component.d.ts +5 -0
  71. package/lib/components/core/hotel-services/hotel-services.component.d.ts +5 -0
  72. package/lib/components/core/hotel-slider/hotel-slider.component.d.ts +5 -0
  73. package/lib/components/core/motor/motor.component.d.ts +5 -0
  74. package/lib/components/core/offer/offer.component.d.ts +5 -0
  75. package/lib/components/core/offer-banner/offer-banner.component.d.ts +5 -0
  76. package/lib/components/core/offer-slider/offer-slider.component.d.ts +5 -0
  77. package/lib/components/core/rooms-slider/rooms-slider.component.d.ts +5 -0
  78. package/lib/components/core/simple-card/simple-card.component.d.ts +5 -0
  79. package/lib/components/core/top-module/top-module.component.d.ts +5 -0
  80. package/lib/interfaces/atomic/badge.interface.d.ts +2 -0
  81. package/lib/interfaces/atomic/button.interface.d.ts +2 -0
  82. package/lib/interfaces/atomic/datepicker.interface.d.ts +2 -0
  83. package/lib/interfaces/atomic/dropdown.interface.d.ts +2 -0
  84. package/lib/interfaces/atomic/input.interface.d.ts +2 -0
  85. package/lib/interfaces/core/advantages.interface.d.ts +2 -0
  86. package/lib/interfaces/core/card.interface.d.ts +2 -0
  87. package/lib/interfaces/core/destination-info.interface.d.ts +2 -0
  88. package/lib/interfaces/core/footer-a.interface.d.ts +2 -0
  89. package/lib/interfaces/core/footer-b.interface.d.ts +2 -0
  90. package/lib/interfaces/core/footer-static.interface.d.ts +2 -0
  91. package/lib/interfaces/core/header-mobile.interface.d.ts +2 -0
  92. package/lib/interfaces/core/header.interface.d.ts +2 -0
  93. package/lib/interfaces/core/hotel-services.interface.d.ts +2 -0
  94. package/lib/interfaces/core/hotel-slider.interface.d.ts +2 -0
  95. package/lib/interfaces/core/motor.interface.d.ts +2 -0
  96. package/lib/interfaces/core/offer-banner.interface.d.ts +2 -0
  97. package/lib/interfaces/core/offer-slider.interface.d.ts +2 -0
  98. package/lib/interfaces/core/offer.interface.d.ts +2 -0
  99. package/lib/interfaces/core/rooms-slider.interface.d.ts +2 -0
  100. package/lib/interfaces/core/simple-card.interface.d.ts +2 -0
  101. package/lib/interfaces/core/top-module.interface.d.ts +2 -0
  102. package/package.json +26 -0
  103. package/public-api.d.ts +46 -0
  104. package/services/index.d.ts +1 -0
  105. package/services/screen-sizer/index.d.ts +3 -0
  106. package/services/screen-sizer/screen-sizer.interface.d.ts +13 -0
  107. package/services/screen-sizer/screen-sizer.service.d.ts +40 -0
  108. package/services/screen-sizer/screen-sizer.service.token.d.ts +3 -0
@@ -0,0 +1,118 @@
1
+ import { Injectable, inject, signal } from '@angular/core';
2
+ import { SCREEN_SIZER_PARAMS_TOKEN } from './screen-sizer.service.token';
3
+ import { debounceTime, distinctUntilChanged, fromEvent, map, startWith, } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export class ScreenSizerService {
6
+ get width() {
7
+ if (window.innerWidth > window.outerWidth) {
8
+ return window.outerWidth;
9
+ }
10
+ return window.innerWidth;
11
+ }
12
+ constructor() {
13
+ this.mobile = signal(false);
14
+ this.smallTablet = signal(false);
15
+ this.mediumTablet = signal(false);
16
+ this.fullTablet = signal(false);
17
+ this.smallDesktop = signal(false);
18
+ this.mediumDesktop = signal(false);
19
+ this.fullDesktop = signal(false);
20
+ this.fullBigDesktop = signal(false);
21
+ this.maxDesktop = signal(false);
22
+ this.minSmallTablet = signal(false);
23
+ this.minMediumTablet = signal(false);
24
+ this.minFullTablet = signal(false);
25
+ this.minSmallDesktop = signal(false);
26
+ this.minMediumDesktop = signal(false);
27
+ this.minFullDesktop = signal(false);
28
+ this.minFullBigDesktop = signal(false);
29
+ this.screenSizerParams = inject(SCREEN_SIZER_PARAMS_TOKEN)
30
+ .pixelBreakpoints;
31
+ fromEvent(window, 'resize')
32
+ .pipe(debounceTime(200), map(() => this.width), distinctUntilChanged(), startWith(this.width))
33
+ .subscribe((size) => {
34
+ if (size) {
35
+ this.mobile.set(size < this.screenSizerParams.smallTablet);
36
+ this.smallTablet.set(size >= this.screenSizerParams.smallTablet &&
37
+ size < this.screenSizerParams.mediumTablet);
38
+ this.mediumTablet.set(size >= this.screenSizerParams.mediumTablet &&
39
+ size < this.screenSizerParams.fullTablet);
40
+ this.fullTablet.set(size >= this.screenSizerParams.fullTablet &&
41
+ size < this.screenSizerParams.smallDesktop);
42
+ this.smallDesktop.set(size >= this.screenSizerParams.smallDesktop &&
43
+ size < this.screenSizerParams.mediumDesktop);
44
+ this.mediumDesktop.set(size >= this.screenSizerParams.mediumDesktop &&
45
+ size < this.screenSizerParams.fullDesktop);
46
+ this.fullDesktop.set(size >= this.screenSizerParams.fullDesktop &&
47
+ size < this.screenSizerParams.fullBigDesktop);
48
+ this.fullBigDesktop.set(size >= this.screenSizerParams.fullBigDesktop &&
49
+ size < this.screenSizerParams.maxDesktop);
50
+ this.maxDesktop.set(size >= this.screenSizerParams.maxDesktop);
51
+ this.minSmallTablet.set(size >= this.screenSizerParams.smallTablet);
52
+ this.minMediumTablet.set(size >= this.screenSizerParams.mediumTablet);
53
+ this.minFullTablet.set(size >= this.screenSizerParams.fullTablet);
54
+ this.minSmallDesktop.set(size >= this.screenSizerParams.smallDesktop);
55
+ this.minMediumDesktop.set(size >= this.screenSizerParams.mediumDesktop);
56
+ this.minFullDesktop.set(size >= this.screenSizerParams.fullDesktop);
57
+ this.minFullBigDesktop.set(size >= this.screenSizerParams.fullBigDesktop);
58
+ }
59
+ });
60
+ }
61
+ isMobileInstant() {
62
+ return this.mobile();
63
+ }
64
+ isSmallTabletInstant() {
65
+ return this.smallTablet();
66
+ }
67
+ isMediumTabletInstant() {
68
+ return this.mediumTablet();
69
+ }
70
+ isFullTabletInstant() {
71
+ return this.fullTablet();
72
+ }
73
+ isSmallDesktopInstant() {
74
+ return this.smallDesktop();
75
+ }
76
+ isMediumDesktopInstant() {
77
+ return this.mediumDesktop();
78
+ }
79
+ isFullDesktopInstant() {
80
+ return this.fullDesktop();
81
+ }
82
+ isFullBigDesktopInstant() {
83
+ return this.fullBigDesktop();
84
+ }
85
+ isMaxDesktopInstant() {
86
+ return this.maxDesktop();
87
+ }
88
+ minSmallTabletInstant() {
89
+ return this.minSmallTablet();
90
+ }
91
+ minMediumTabletInstant() {
92
+ return this.minMediumTablet();
93
+ }
94
+ minFullTabletInstant() {
95
+ return this.minFullTablet();
96
+ }
97
+ minSmallDesktopInstant() {
98
+ return this.minSmallDesktop();
99
+ }
100
+ minMediumDesktopInstant() {
101
+ return this.minMediumDesktop();
102
+ }
103
+ minFullDesktopInstant() {
104
+ return this.minFullDesktop();
105
+ }
106
+ minFullBigDesktopInstant() {
107
+ return this.minFullBigDesktop();
108
+ }
109
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ScreenSizerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
110
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ScreenSizerService, providedIn: 'root' }); }
111
+ }
112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ScreenSizerService, decorators: [{
113
+ type: Injectable,
114
+ args: [{
115
+ providedIn: 'root',
116
+ }]
117
+ }], ctorParameters: () => [] });
118
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NyZWVuLXNpemVyLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90ZW50L3NyYy9zZXJ2aWNlcy9zY3JlZW4tc2l6ZXIvc2NyZWVuLXNpemVyLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNELE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ3pFLE9BQU8sRUFDSCxZQUFZLEVBQ1osb0JBQW9CLEVBQ3BCLFNBQVMsRUFDVCxHQUFHLEVBQ0gsU0FBUyxHQUNaLE1BQU0sTUFBTSxDQUFDOztBQUtkLE1BQU0sT0FBTyxrQkFBa0I7SUFtQjNCLElBQUksS0FBSztRQUNMLElBQUksTUFBTSxDQUFDLFVBQVUsR0FBRyxNQUFNLENBQUMsVUFBVSxFQUFFO1lBQ3ZDLE9BQU8sTUFBTSxDQUFDLFVBQVUsQ0FBQztTQUM1QjtRQUNELE9BQU8sTUFBTSxDQUFDLFVBQVUsQ0FBQztJQUM3QixDQUFDO0lBS0Q7UUE1QlMsV0FBTSxHQUFHLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN2QixnQkFBVyxHQUFHLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUM1QixpQkFBWSxHQUFHLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUM3QixlQUFVLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzNCLGlCQUFZLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzdCLGtCQUFhLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzlCLGdCQUFXLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzVCLG1CQUFjLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQy9CLGVBQVUsR0FBRyxNQUFNLENBQUMs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RUFBRSxDQUFDO0lBQzlCLENBQUM7SUFFRCx1QkFBdUI7UUFDbkIsT0FBTyxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDakMsQ0FBQztJQUVELG1CQUFtQjtRQUNmLE9BQU8sSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO0lBQzdCLENBQUM7SUFFRCxxQkFBcUI7UUFDakIsT0FBTyxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDakMsQ0FBQztJQUVELHNCQUFzQjtRQUNsQixPQUFPLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUNsQyxDQUFDO0lBRUQsb0JBQW9CO1FBQ2hCLE9BQU8sSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQ2hDLENBQUM7SUFFRCxzQkFBc0I7UUFDbEIsT0FBTyxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7SUFDbEMsQ0FBQztJQUVELHVCQUF1QjtRQUNuQixPQUFPLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO0lBQ25DLENBQUM7SUFFRCxxQkFBcUI7UUFDakIsT0FBTyxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDakMsQ0FBQztJQUVELHdCQUF3QjtRQUNwQixPQUFPLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO0lBQ3BDLENBQUM7OEdBN0tRLGtCQUFrQjtrSEFBbEIsa0JBQWtCLGNBRmYsTUFBTTs7MkZBRVQsa0JBQWtCO2tCQUg5QixVQUFVO21CQUFDO29CQUNSLFVBQVUsRUFBRSxNQUFNO2lCQUNyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUsIGluamVjdCwgc2lnbmFsIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTQ1JFRU5fU0laRVJfUEFSQU1TX1RPS0VOIH0gZnJvbSAnLi9zY3JlZW4tc2l6ZXIuc2VydmljZS50b2tlbic7XG5pbXBvcnQge1xuICAgIGRlYm91bmNlVGltZSxcbiAgICBkaXN0aW5jdFVudGlsQ2hhbmdlZCxcbiAgICBmcm9tRXZlbnQsXG4gICAgbWFwLFxuICAgIHN0YXJ0V2l0aCxcbn0gZnJvbSAncnhqcyc7XG5cbkBJbmplY3RhYmxlKHtcbiAgICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIFNjcmVlblNpemVyU2VydmljZSB7XG4gICAgcmVhZG9ubHkgbW9iaWxlID0gc2lnbmFsKGZhbHNlKTtcbiAgICByZWFkb25seSBzbWFsbFRhYmxldCA9IHNpZ25hbChmYWxzZSk7XG4gICAgcmVhZG9ubHkgbWVkaXVtVGFibGV0ID0gc2lnbmFsKGZhbHNlKTtcbiAgICByZWFkb25seSBmdWxsVGFibGV0ID0gc2lnbmFsKGZhbHNlKTtcbiAgICByZWFkb25seSBzbWFsbERlc2t0b3AgPSBzaWduYWwoZmFsc2UpO1xuICAgIHJlYWRvbmx5IG1lZGl1bURlc2t0b3AgPSBzaWduYWwoZmFsc2UpO1xuICAgIHJlYWRvbmx5IGZ1bGxEZXNrdG9wID0gc2lnbmFsKGZhbHNlKTtcbiAgICByZWFkb25seSBmdWxsQmlnRGVza3RvcCA9IHNpZ25hbChmYWxzZSk7XG4gICAgcmVhZG9ubHkgbWF4RGVza3RvcCA9IHNpZ25hbChmYWxzZSk7XG5cbiAgICByZWFkb25seSBtaW5TbWFsbFRhYmxldCA9IHNpZ25hbChmYWxzZSk7XG4gICAgcmVhZG9ubHkgbWluTWVkaXVtVGFibGV0ID0gc2lnbmFsKGZhbHNlKTtcbiAgICByZWFkb25seSBtaW5GdWxsVGFibGV0ID0gc2lnbmFsKGZhbHNlKTtcbiAgICByZWFkb25seSBtaW5TbWFsbERlc2t0b3AgPSBzaWduYWwoZmFsc2UpO1xuICAgIHJlYWRvbmx5IG1pbk1lZGl1bURlc2t0b3AgPSBzaWduYWwoZmFsc2UpO1xuICAgIHJlYWRvbmx5IG1pbkZ1bGxEZXNrdG9wID0gc2lnbmFsKGZhbHNlKTtcbiAgICByZWFkb25seSBtaW5GdWxsQmlnRGVza3RvcCA9IHNpZ25hbChmYWxzZSk7XG5cbiAgICBnZXQgd2lkdGgoKTogbnVtYmVyIHtcbiAgICAgICAgaWYgKHdpbmRvdy5pbm5lcldpZHRoID4gd2luZG93Lm91dGVyV2lkdGgpIHtcbiAgICAgICAgICAgIHJldHVybiB3aW5kb3cub3V0ZXJXaWR0aDtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm4gd2luZG93LmlubmVyV2lkdGg7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSByZWFkb25seSBzY3JlZW5TaXplclBhcmFtcyA9IGluamVjdChTQ1JFRU5fU0laRVJfUEFSQU1TX1RPS0VOKVxuICAgICAgICAucGl4ZWxCcmVha3BvaW50cztcblxuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBmcm9tRXZlbnQod2luZG93LCAncmVzaXplJylcbiAgICAgICAgICAgIC5waXBlKFxuICAgICAgICAgICAgICAgIGRlYm91bmNlVGltZSgyMDApLFxuICAgICAgICAgICAgICAgIG1hcCgoKSA9PiB0aGlzLndpZHRoKSxcbiAgICAgICAgICAgICAgICBkaXN0aW5jdFVudGlsQ2hhbmdlZCgpLFxuICAgICAgICAgICAgICAgIHN0YXJ0V2l0aCh0aGlzLndpZHRoKVxuICAgICAgICAgICAgKVxuICAgICAgICAgICAgLnN1YnNjcmliZSgoc2l6ZSkgPT4ge1xuICAgICAgICAgICAgICAgIGlmIChzaXplKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMubW9iaWxlLnNldChzaXplIDwgdGhpcy5zY3JlZW5TaXplclBhcmFtcy5zbWFsbFRhYmxldCk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5zbWFsbFRhYmxldC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMuc21hbGxUYWJsZXQgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBzaXplIDwgdGhpcy5zY3JlZW5TaXplclBhcmFtcy5tZWRpdW1UYWJsZXRcbiAgICAgICAgICAgICAgICAgICAgKTtcblxuICAgICAgICAgICAgICAgICAgICB0aGlzLm1lZGl1bVRhYmxldC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMubWVkaXVtVGFibGV0ICYmXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZSA8IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMuZnVsbFRhYmxldFxuICAgICAgICAgICAgICAgICAgICApO1xuXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZnVsbFRhYmxldC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMuZnVsbFRhYmxldCAmJlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNpemUgPCB0aGlzLnNjcmVlblNpemVyUGFyYW1zLnNtYWxsRGVza3RvcFxuICAgICAgICAgICAgICAgICAgICApO1xuXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuc21hbGxEZXNrdG9wLnNldChcbiAgICAgICAgICAgICAgICAgICAgICAgIHNpemUgPj0gdGhpcy5zY3JlZW5TaXplclBhcmFtcy5zbWFsbERlc2t0b3AgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBzaXplIDwgdGhpcy5zY3JlZW5TaXplclBhcmFtcy5tZWRpdW1EZXNrdG9wXG4gICAgICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5tZWRpdW1EZXNrdG9wLnNldChcbiAgICAgICAgICAgICAgICAgICAgICAgIHNpemUgPj0gdGhpcy5zY3JlZW5TaXplclBhcmFtcy5tZWRpdW1EZXNrdG9wICYmXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZSA8IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMuZnVsbERlc2t0b3BcbiAgICAgICAgICAgICAgICAgICAgKTtcblxuICAgICAgICAgICAgICAgICAgICB0aGlzLmZ1bGxEZXNrdG9wLnNldChcbiAgICAgICAgICAgICAgICAgICAgICAgIHNpemUgPj0gdGhpcy5zY3JlZW5TaXplclBhcmFtcy5mdWxsRGVza3RvcCAmJlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNpemUgPCB0aGlzLnNjcmVlblNpemVyUGFyYW1zLmZ1bGxCaWdEZXNrdG9wXG4gICAgICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5mdWxsQmlnRGVza3RvcC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMuZnVsbEJpZ0Rlc2t0b3AgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBzaXplIDwgdGhpcy5zY3JlZW5TaXplclBhcmFtcy5tYXhEZXNrdG9wXG4gICAgICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5tYXhEZXNrdG9wLnNldChcbiAgICAgICAgICAgICAgICAgICAgICAgIHNpemUgPj0gdGhpcy5zY3JlZW5TaXplclBhcmFtcy5tYXhEZXNrdG9wXG4gICAgICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5taW5TbWFsbFRhYmxldC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMuc21hbGxUYWJsZXRcbiAgICAgICAgICAgICAgICAgICAgKTtcblxuICAgICAgICAgICAgICAgICAgICB0aGlzLm1pbk1lZGl1bVRhYmxldC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMubWVkaXVtVGFibGV0XG4gICAgICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5taW5GdWxsVGFibGV0LnNldChcbiAgICAgICAgICAgICAgICAgICAgICAgIHNpemUgPj0gdGhpcy5zY3JlZW5TaXplclBhcmFtcy5mdWxsVGFibGV0XG4gICAgICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5taW5TbWFsbERlc2t0b3Auc2V0KFxuICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZSA+PSB0aGlzLnNjcmVlblNpemVyUGFyYW1zLnNtYWxsRGVza3RvcFxuICAgICAgICAgICAgICAgICAgICApO1xuXG4gICAgICAgICAgICAgICAgICAgIHRoaXMubWluTWVkaXVtRGVza3RvcC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMubWVkaXVtRGVza3RvcFxuICAgICAgICAgICAgICAgICAgICApO1xuXG4gICAgICAgICAgICAgICAgICAgIHRoaXMubWluRnVsbERlc2t0b3Auc2V0KFxuICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZSA+PSB0aGlzLnNjcmVlblNpemVyUGFyYW1zLmZ1bGxEZXNrdG9wXG4gICAgICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5taW5GdWxsQmlnRGVza3RvcC5zZXQoXG4gICAgICAgICAgICAgICAgICAgICAgICBzaXplID49IHRoaXMuc2NyZWVuU2l6ZXJQYXJhbXMuZnVsbEJpZ0Rlc2t0b3BcbiAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBpc01vYmlsZUluc3RhbnQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLm1vYmlsZSgpO1xuICAgIH1cblxuICAgIGlzU21hbGxUYWJsZXRJbnN0YW50KCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5zbWFsbFRhYmxldCgpO1xuICAgIH1cblxuICAgIGlzTWVkaXVtVGFibGV0SW5zdGFudCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMubWVkaXVtVGFibGV0KCk7XG4gICAgfVxuXG4gICAgaXNGdWxsVGFibGV0SW5zdGFudCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuZnVsbFRhYmxldCgpO1xuICAgIH1cblxuICAgIGlzU21hbGxEZXNrdG9wSW5zdGFudCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuc21hbGxEZXNrdG9wKCk7XG4gICAgfVxuXG4gICAgaXNNZWRpdW1EZXNrdG9wSW5zdGFudCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMubWVkaXVtRGVza3RvcCgpO1xuICAgIH1cblxuICAgIGlzRnVsbERlc2t0b3BJbnN0YW50KCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5mdWxsRGVza3RvcCgpO1xuICAgIH1cblxuICAgIGlzRnVsbEJpZ0Rlc2t0b3BJbnN0YW50KCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5mdWxsQmlnRGVza3RvcCgpO1xuICAgIH1cblxuICAgIGlzTWF4RGVza3RvcEluc3RhbnQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLm1heERlc2t0b3AoKTtcbiAgICB9XG5cbiAgICBtaW5TbWFsbFRhYmxldEluc3RhbnQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLm1pblNtYWxsVGFibGV0KCk7XG4gICAgfVxuXG4gICAgbWluTWVkaXVtVGFibGV0SW5zdGFudCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMubWluTWVkaXVtVGFibGV0KCk7XG4gICAgfVxuXG4gICAgbWluRnVsbFRhYmxldEluc3RhbnQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLm1pbkZ1bGxUYWJsZXQoKTtcbiAgICB9XG5cbiAgICBtaW5TbWFsbERlc2t0b3BJbnN0YW50KCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5taW5TbWFsbERlc2t0b3AoKTtcbiAgICB9XG5cbiAgICBtaW5NZWRpdW1EZXNrdG9wSW5zdGFudCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMubWluTWVkaXVtRGVza3RvcCgpO1xuICAgIH1cblxuICAgIG1pbkZ1bGxEZXNrdG9wSW5zdGFudCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMubWluRnVsbERlc2t0b3AoKTtcbiAgICB9XG5cbiAgICBtaW5GdWxsQmlnRGVza3RvcEluc3RhbnQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLm1pbkZ1bGxCaWdEZXNrdG9wKCk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export const SCREEN_SIZER_PARAMS_TOKEN = new InjectionToken('ScreenSizerParams');
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NyZWVuLXNpemVyLnNlcnZpY2UudG9rZW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90ZW50L3NyYy9zZXJ2aWNlcy9zY3JlZW4tc2l6ZXIvc2NyZWVuLXNpemVyLnNlcnZpY2UudG9rZW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUcvQyxNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxJQUFJLGNBQWMsQ0FDdkQsbUJBQW1CLENBQ3RCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3Rpb25Ub2tlbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBTY3JlZW5TaXplclBhcmFtcyB9IGZyb20gJy4vc2NyZWVuLXNpemVyLmludGVyZmFjZSc7XHJcblxyXG5leHBvcnQgY29uc3QgU0NSRUVOX1NJWkVSX1BBUkFNU19UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxTY3JlZW5TaXplclBhcmFtcz4oXHJcbiAgICAnU2NyZWVuU2l6ZXJQYXJhbXMnXHJcbik7XHJcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVudC1saWIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy90ZW50L3NyYy90ZW50LWxpYi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,339 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import * as i0 from '@angular/core';
3
+ import { Component, InjectionToken, signal, inject, Injectable } from '@angular/core';
4
+ import { fromEvent, debounceTime, map, distinctUntilChanged, startWith } from 'rxjs';
5
+
6
+ class ButtonComponent {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: ButtonComponent, isStandalone: true, selector: "lib-button", ngImport: i0, template: "<p>button works!</p>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ButtonComponent, decorators: [{
11
+ type: Component,
12
+ args: [{ selector: 'lib-button', standalone: true, imports: [CommonModule], template: "<p>button works!</p>\n" }]
13
+ }] });
14
+
15
+ class TextComponent {
16
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: TextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
17
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: TextComponent, isStandalone: true, selector: "lib-text", ngImport: i0, template: "<p>text works!</p>\n", styles: [""] }); }
18
+ }
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: TextComponent, decorators: [{
20
+ type: Component,
21
+ args: [{ selector: 'lib-text', standalone: true, imports: [], template: "<p>text works!</p>\n" }]
22
+ }] });
23
+
24
+ class DatepickerComponent {
25
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: DatepickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
26
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: DatepickerComponent, isStandalone: true, selector: "lib-datepicker", ngImport: i0, template: "<p>datepicker works!</p>\n", styles: [""] }); }
27
+ }
28
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: DatepickerComponent, decorators: [{
29
+ type: Component,
30
+ args: [{ selector: 'lib-datepicker', standalone: true, imports: [], template: "<p>datepicker works!</p>\n" }]
31
+ }] });
32
+
33
+ class DropdownComponent {
34
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: DropdownComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
35
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: DropdownComponent, isStandalone: true, selector: "lib-dropdown", ngImport: i0, template: "<p>dropdown works!</p>\n", styles: [""] }); }
36
+ }
37
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: DropdownComponent, decorators: [{
38
+ type: Component,
39
+ args: [{ selector: 'lib-dropdown', standalone: true, imports: [], template: "<p>dropdown works!</p>\n" }]
40
+ }] });
41
+
42
+ class InputComponent {
43
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: InputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
44
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: InputComponent, isStandalone: true, selector: "lib-input", ngImport: i0, template: "<p>input works!</p>\n", styles: [""] }); }
45
+ }
46
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: InputComponent, decorators: [{
47
+ type: Component,
48
+ args: [{ selector: 'lib-input', standalone: true, imports: [], template: "<p>input works!</p>\n" }]
49
+ }] });
50
+
51
+ class BadgeComponent {
52
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: BadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
53
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: BadgeComponent, isStandalone: true, selector: "lib-badge", ngImport: i0, template: "<p>badge works!</p>\n", styles: [""] }); }
54
+ }
55
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: BadgeComponent, decorators: [{
56
+ type: Component,
57
+ args: [{ selector: 'lib-badge', standalone: true, imports: [], template: "<p>badge works!</p>\n" }]
58
+ }] });
59
+
60
+ class AdvantagesComponent {
61
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: AdvantagesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
62
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: AdvantagesComponent, isStandalone: true, selector: "lib-advantages", ngImport: i0, template: "<p>advantages works!</p>\n", styles: [""] }); }
63
+ }
64
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: AdvantagesComponent, decorators: [{
65
+ type: Component,
66
+ args: [{ selector: 'lib-advantages', standalone: true, imports: [], template: "<p>advantages works!</p>\n" }]
67
+ }] });
68
+
69
+ class CardComponent {
70
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
71
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: CardComponent, isStandalone: true, selector: "lib-card", ngImport: i0, template: "<p>card works!</p>\n", styles: [""] }); }
72
+ }
73
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: CardComponent, decorators: [{
74
+ type: Component,
75
+ args: [{ selector: 'lib-card', standalone: true, imports: [], template: "<p>card works!</p>\n" }]
76
+ }] });
77
+
78
+ class DestinationInfoComponent {
79
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: DestinationInfoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
80
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: DestinationInfoComponent, isStandalone: true, selector: "lib-destination-info", ngImport: i0, template: "<p>destination-info works!</p>\n", styles: [""] }); }
81
+ }
82
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: DestinationInfoComponent, decorators: [{
83
+ type: Component,
84
+ args: [{ selector: 'lib-destination-info', standalone: true, imports: [], template: "<p>destination-info works!</p>\n" }]
85
+ }] });
86
+
87
+ class FooterAComponent {
88
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: FooterAComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
89
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: FooterAComponent, isStandalone: true, selector: "lib-footer-a", ngImport: i0, template: "<p>footer-a works!</p>\n", styles: [""] }); }
90
+ }
91
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: FooterAComponent, decorators: [{
92
+ type: Component,
93
+ args: [{ selector: 'lib-footer-a', standalone: true, imports: [], template: "<p>footer-a works!</p>\n" }]
94
+ }] });
95
+
96
+ class FooterBComponent {
97
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: FooterBComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
98
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: FooterBComponent, isStandalone: true, selector: "lib-footer-b", ngImport: i0, template: "<p>footer-b works!</p>\n", styles: [""] }); }
99
+ }
100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: FooterBComponent, decorators: [{
101
+ type: Component,
102
+ args: [{ selector: 'lib-footer-b', standalone: true, imports: [], template: "<p>footer-b works!</p>\n" }]
103
+ }] });
104
+
105
+ class FooterStaticComponent {
106
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: FooterStaticComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
107
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: FooterStaticComponent, isStandalone: true, selector: "lib-footer-static", ngImport: i0, template: "<p>footer-static works!</p>\n", styles: [""] }); }
108
+ }
109
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: FooterStaticComponent, decorators: [{
110
+ type: Component,
111
+ args: [{ selector: 'lib-footer-static', standalone: true, imports: [], template: "<p>footer-static works!</p>\n" }]
112
+ }] });
113
+
114
+ class HeaderComponent {
115
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
116
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: HeaderComponent, isStandalone: true, selector: "lib-header", ngImport: i0, template: "<p>header works!</p>\n", styles: [""] }); }
117
+ }
118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HeaderComponent, decorators: [{
119
+ type: Component,
120
+ args: [{ selector: 'lib-header', standalone: true, imports: [], template: "<p>header works!</p>\n" }]
121
+ }] });
122
+
123
+ class HeaderMobileComponent {
124
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HeaderMobileComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
125
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: HeaderMobileComponent, isStandalone: true, selector: "lib-header-mobile", ngImport: i0, template: "<p>header-mobile works!</p>\n", styles: [""] }); }
126
+ }
127
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HeaderMobileComponent, decorators: [{
128
+ type: Component,
129
+ args: [{ selector: 'lib-header-mobile', standalone: true, imports: [], template: "<p>header-mobile works!</p>\n" }]
130
+ }] });
131
+
132
+ class HotelServicesComponent {
133
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HotelServicesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
134
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: HotelServicesComponent, isStandalone: true, selector: "lib-hotel-services", ngImport: i0, template: "<p>hotel-services works!</p>\n", styles: [""] }); }
135
+ }
136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HotelServicesComponent, decorators: [{
137
+ type: Component,
138
+ args: [{ selector: 'lib-hotel-services', standalone: true, imports: [], template: "<p>hotel-services works!</p>\n" }]
139
+ }] });
140
+
141
+ class HotelSliderComponent {
142
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HotelSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
143
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: HotelSliderComponent, isStandalone: true, selector: "lib-hotel-slider", ngImport: i0, template: "<p>hotel-slider works!</p>\n", styles: [""] }); }
144
+ }
145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: HotelSliderComponent, decorators: [{
146
+ type: Component,
147
+ args: [{ selector: 'lib-hotel-slider', standalone: true, imports: [], template: "<p>hotel-slider works!</p>\n" }]
148
+ }] });
149
+
150
+ class MotorComponent {
151
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: MotorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
152
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: MotorComponent, isStandalone: true, selector: "lib-motor", ngImport: i0, template: "<p>motor works!</p>\n", styles: [""] }); }
153
+ }
154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: MotorComponent, decorators: [{
155
+ type: Component,
156
+ args: [{ selector: 'lib-motor', standalone: true, imports: [], template: "<p>motor works!</p>\n" }]
157
+ }] });
158
+
159
+ class OfferComponent {
160
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: OfferComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
161
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: OfferComponent, isStandalone: true, selector: "lib-offer", ngImport: i0, template: "<p>offer works!</p>\n", styles: [""] }); }
162
+ }
163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: OfferComponent, decorators: [{
164
+ type: Component,
165
+ args: [{ selector: 'lib-offer', standalone: true, imports: [], template: "<p>offer works!</p>\n" }]
166
+ }] });
167
+
168
+ class OfferBannerComponent {
169
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: OfferBannerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
170
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: OfferBannerComponent, isStandalone: true, selector: "lib-offer-banner", ngImport: i0, template: "<p>offer-banner works!</p>\n", styles: [""] }); }
171
+ }
172
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: OfferBannerComponent, decorators: [{
173
+ type: Component,
174
+ args: [{ selector: 'lib-offer-banner', standalone: true, imports: [], template: "<p>offer-banner works!</p>\n" }]
175
+ }] });
176
+
177
+ class OfferSliderComponent {
178
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: OfferSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
179
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: OfferSliderComponent, isStandalone: true, selector: "lib-offer-slider", ngImport: i0, template: "<p>offer-slider works!</p>\n", styles: [""] }); }
180
+ }
181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: OfferSliderComponent, decorators: [{
182
+ type: Component,
183
+ args: [{ selector: 'lib-offer-slider', standalone: true, imports: [], template: "<p>offer-slider works!</p>\n" }]
184
+ }] });
185
+
186
+ class RoomsSliderComponent {
187
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: RoomsSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
188
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: RoomsSliderComponent, isStandalone: true, selector: "lib-rooms-slider", ngImport: i0, template: "<p>rooms-slider works!</p>\n", styles: [""] }); }
189
+ }
190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: RoomsSliderComponent, decorators: [{
191
+ type: Component,
192
+ args: [{ selector: 'lib-rooms-slider', standalone: true, imports: [], template: "<p>rooms-slider works!</p>\n" }]
193
+ }] });
194
+
195
+ class SimpleCardComponent {
196
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: SimpleCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
197
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: SimpleCardComponent, isStandalone: true, selector: "lib-simple-card", ngImport: i0, template: "<p>simple-card works!</p>\n", styles: [""] }); }
198
+ }
199
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: SimpleCardComponent, decorators: [{
200
+ type: Component,
201
+ args: [{ selector: 'lib-simple-card', standalone: true, imports: [], template: "<p>simple-card works!</p>\n" }]
202
+ }] });
203
+
204
+ class TopModuleComponent {
205
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: TopModuleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
206
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: TopModuleComponent, isStandalone: true, selector: "lib-top-module", ngImport: i0, template: "<p>top-module works!</p>\n", styles: [""] }); }
207
+ }
208
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: TopModuleComponent, decorators: [{
209
+ type: Component,
210
+ args: [{ selector: 'lib-top-module', standalone: true, imports: [], template: "<p>top-module works!</p>\n" }]
211
+ }] });
212
+
213
+ const SCREEN_SIZER_PARAMS_TOKEN = new InjectionToken('ScreenSizerParams');
214
+
215
+ class ScreenSizerService {
216
+ get width() {
217
+ if (window.innerWidth > window.outerWidth) {
218
+ return window.outerWidth;
219
+ }
220
+ return window.innerWidth;
221
+ }
222
+ constructor() {
223
+ this.mobile = signal(false);
224
+ this.smallTablet = signal(false);
225
+ this.mediumTablet = signal(false);
226
+ this.fullTablet = signal(false);
227
+ this.smallDesktop = signal(false);
228
+ this.mediumDesktop = signal(false);
229
+ this.fullDesktop = signal(false);
230
+ this.fullBigDesktop = signal(false);
231
+ this.maxDesktop = signal(false);
232
+ this.minSmallTablet = signal(false);
233
+ this.minMediumTablet = signal(false);
234
+ this.minFullTablet = signal(false);
235
+ this.minSmallDesktop = signal(false);
236
+ this.minMediumDesktop = signal(false);
237
+ this.minFullDesktop = signal(false);
238
+ this.minFullBigDesktop = signal(false);
239
+ this.screenSizerParams = inject(SCREEN_SIZER_PARAMS_TOKEN)
240
+ .pixelBreakpoints;
241
+ fromEvent(window, 'resize')
242
+ .pipe(debounceTime(200), map(() => this.width), distinctUntilChanged(), startWith(this.width))
243
+ .subscribe((size) => {
244
+ if (size) {
245
+ this.mobile.set(size < this.screenSizerParams.smallTablet);
246
+ this.smallTablet.set(size >= this.screenSizerParams.smallTablet &&
247
+ size < this.screenSizerParams.mediumTablet);
248
+ this.mediumTablet.set(size >= this.screenSizerParams.mediumTablet &&
249
+ size < this.screenSizerParams.fullTablet);
250
+ this.fullTablet.set(size >= this.screenSizerParams.fullTablet &&
251
+ size < this.screenSizerParams.smallDesktop);
252
+ this.smallDesktop.set(size >= this.screenSizerParams.smallDesktop &&
253
+ size < this.screenSizerParams.mediumDesktop);
254
+ this.mediumDesktop.set(size >= this.screenSizerParams.mediumDesktop &&
255
+ size < this.screenSizerParams.fullDesktop);
256
+ this.fullDesktop.set(size >= this.screenSizerParams.fullDesktop &&
257
+ size < this.screenSizerParams.fullBigDesktop);
258
+ this.fullBigDesktop.set(size >= this.screenSizerParams.fullBigDesktop &&
259
+ size < this.screenSizerParams.maxDesktop);
260
+ this.maxDesktop.set(size >= this.screenSizerParams.maxDesktop);
261
+ this.minSmallTablet.set(size >= this.screenSizerParams.smallTablet);
262
+ this.minMediumTablet.set(size >= this.screenSizerParams.mediumTablet);
263
+ this.minFullTablet.set(size >= this.screenSizerParams.fullTablet);
264
+ this.minSmallDesktop.set(size >= this.screenSizerParams.smallDesktop);
265
+ this.minMediumDesktop.set(size >= this.screenSizerParams.mediumDesktop);
266
+ this.minFullDesktop.set(size >= this.screenSizerParams.fullDesktop);
267
+ this.minFullBigDesktop.set(size >= this.screenSizerParams.fullBigDesktop);
268
+ }
269
+ });
270
+ }
271
+ isMobileInstant() {
272
+ return this.mobile();
273
+ }
274
+ isSmallTabletInstant() {
275
+ return this.smallTablet();
276
+ }
277
+ isMediumTabletInstant() {
278
+ return this.mediumTablet();
279
+ }
280
+ isFullTabletInstant() {
281
+ return this.fullTablet();
282
+ }
283
+ isSmallDesktopInstant() {
284
+ return this.smallDesktop();
285
+ }
286
+ isMediumDesktopInstant() {
287
+ return this.mediumDesktop();
288
+ }
289
+ isFullDesktopInstant() {
290
+ return this.fullDesktop();
291
+ }
292
+ isFullBigDesktopInstant() {
293
+ return this.fullBigDesktop();
294
+ }
295
+ isMaxDesktopInstant() {
296
+ return this.maxDesktop();
297
+ }
298
+ minSmallTabletInstant() {
299
+ return this.minSmallTablet();
300
+ }
301
+ minMediumTabletInstant() {
302
+ return this.minMediumTablet();
303
+ }
304
+ minFullTabletInstant() {
305
+ return this.minFullTablet();
306
+ }
307
+ minSmallDesktopInstant() {
308
+ return this.minSmallDesktop();
309
+ }
310
+ minMediumDesktopInstant() {
311
+ return this.minMediumDesktop();
312
+ }
313
+ minFullDesktopInstant() {
314
+ return this.minFullDesktop();
315
+ }
316
+ minFullBigDesktopInstant() {
317
+ return this.minFullBigDesktop();
318
+ }
319
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ScreenSizerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
320
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ScreenSizerService, providedIn: 'root' }); }
321
+ }
322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: ScreenSizerService, decorators: [{
323
+ type: Injectable,
324
+ args: [{
325
+ providedIn: 'root',
326
+ }]
327
+ }], ctorParameters: () => [] });
328
+
329
+ /*
330
+ * Public API Surface of tent
331
+ */
332
+ /* ATOMIC COMPONENTS */
333
+
334
+ /**
335
+ * Generated bundle index. Do not edit.
336
+ */
337
+
338
+ export { AdvantagesComponent, BadgeComponent, ButtonComponent, CardComponent, DatepickerComponent, DestinationInfoComponent, DropdownComponent, FooterAComponent, FooterBComponent, FooterStaticComponent, HeaderComponent, HeaderMobileComponent, HotelServicesComponent, HotelSliderComponent, InputComponent, MotorComponent, OfferBannerComponent, OfferComponent, OfferSliderComponent, RoomsSliderComponent, SCREEN_SIZER_PARAMS_TOKEN, ScreenSizerService, SimpleCardComponent, TextComponent, TopModuleComponent };
339
+ //# sourceMappingURL=tent-lib.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tent-lib.mjs","sources":["../../../projects/tent/src/lib/components/atomic/button/button.component.ts","../../../projects/tent/src/lib/components/atomic/button/button.component.html","../../../projects/tent/src/lib/components/atomic/text/text.component.ts","../../../projects/tent/src/lib/components/atomic/text/text.component.html","../../../projects/tent/src/lib/components/atomic/datepicker/datepicker.component.ts","../../../projects/tent/src/lib/components/atomic/datepicker/datepicker.component.html","../../../projects/tent/src/lib/components/atomic/dropdown/dropdown.component.ts","../../../projects/tent/src/lib/components/atomic/dropdown/dropdown.component.html","../../../projects/tent/src/lib/components/atomic/input/input.component.ts","../../../projects/tent/src/lib/components/atomic/input/input.component.html","../../../projects/tent/src/lib/components/atomic/badge/badge.component.ts","../../../projects/tent/src/lib/components/atomic/badge/badge.component.html","../../../projects/tent/src/lib/components/core/advantages/advantages.component.ts","../../../projects/tent/src/lib/components/core/advantages/advantages.component.html","../../../projects/tent/src/lib/components/core/card/card.component.ts","../../../projects/tent/src/lib/components/core/card/card.component.html","../../../projects/tent/src/lib/components/core/destination-info/destination-info.component.ts","../../../projects/tent/src/lib/components/core/destination-info/destination-info.component.html","../../../projects/tent/src/lib/components/core/footer-a/footer-a.component.ts","../../../projects/tent/src/lib/components/core/footer-a/footer-a.component.html","../../../projects/tent/src/lib/components/core/footer-b/footer-b.component.ts","../../../projects/tent/src/lib/components/core/footer-b/footer-b.component.html","../../../projects/tent/src/lib/components/core/footer-static/footer-static.component.ts","../../../projects/tent/src/lib/components/core/footer-static/footer-static.component.html","../../../projects/tent/src/lib/components/core/header/header.component.ts","../../../projects/tent/src/lib/components/core/header/header.component.html","../../../projects/tent/src/lib/components/core/header-mobile/header-mobile.component.ts","../../../projects/tent/src/lib/components/core/header-mobile/header-mobile.component.html","../../../projects/tent/src/lib/components/core/hotel-services/hotel-services.component.ts","../../../projects/tent/src/lib/components/core/hotel-services/hotel-services.component.html","../../../projects/tent/src/lib/components/core/hotel-slider/hotel-slider.component.ts","../../../projects/tent/src/lib/components/core/hotel-slider/hotel-slider.component.html","../../../projects/tent/src/lib/components/core/motor/motor.component.ts","../../../projects/tent/src/lib/components/core/motor/motor.component.html","../../../projects/tent/src/lib/components/core/offer/offer.component.ts","../../../projects/tent/src/lib/components/core/offer/offer.component.html","../../../projects/tent/src/lib/components/core/offer-banner/offer-banner.component.ts","../../../projects/tent/src/lib/components/core/offer-banner/offer-banner.component.html","../../../projects/tent/src/lib/components/core/offer-slider/offer-slider.component.ts","../../../projects/tent/src/lib/components/core/offer-slider/offer-slider.component.html","../../../projects/tent/src/lib/components/core/rooms-slider/rooms-slider.component.ts","../../../projects/tent/src/lib/components/core/rooms-slider/rooms-slider.component.html","../../../projects/tent/src/lib/components/core/simple-card/simple-card.component.ts","../../../projects/tent/src/lib/components/core/simple-card/simple-card.component.html","../../../projects/tent/src/lib/components/core/top-module/top-module.component.ts","../../../projects/tent/src/lib/components/core/top-module/top-module.component.html","../../../projects/tent/src/services/screen-sizer/screen-sizer.service.token.ts","../../../projects/tent/src/services/screen-sizer/screen-sizer.service.ts","../../../projects/tent/src/public-api.ts","../../../projects/tent/src/tent-lib.ts"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-button',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './button.component.html',\n styleUrl: './button.component.scss',\n})\nexport class ButtonComponent {}\n","<p>button works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-text',\n standalone: true,\n imports: [],\n templateUrl: './text.component.html',\n styleUrl: './text.component.scss'\n})\nexport class TextComponent {\n\n}\n","<p>text works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-datepicker',\n standalone: true,\n imports: [],\n templateUrl: './datepicker.component.html',\n styleUrl: './datepicker.component.scss'\n})\nexport class DatepickerComponent {\n\n}\n","<p>datepicker works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-dropdown',\n standalone: true,\n imports: [],\n templateUrl: './dropdown.component.html',\n styleUrl: './dropdown.component.scss'\n})\nexport class DropdownComponent {\n\n}\n","<p>dropdown works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-input',\n standalone: true,\n imports: [],\n templateUrl: './input.component.html',\n styleUrl: './input.component.scss'\n})\nexport class InputComponent {\n\n}\n","<p>input works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-badge',\n standalone: true,\n imports: [],\n templateUrl: './badge.component.html',\n styleUrl: './badge.component.scss'\n})\nexport class BadgeComponent {\n\n}\n","<p>badge works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-advantages',\n standalone: true,\n imports: [],\n templateUrl: './advantages.component.html',\n styleUrl: './advantages.component.scss'\n})\nexport class AdvantagesComponent {\n\n}\n","<p>advantages works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-card',\n standalone: true,\n imports: [],\n templateUrl: './card.component.html',\n styleUrl: './card.component.scss'\n})\nexport class CardComponent {\n\n}\n","<p>card works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-destination-info',\n standalone: true,\n imports: [],\n templateUrl: './destination-info.component.html',\n styleUrl: './destination-info.component.scss'\n})\nexport class DestinationInfoComponent {\n\n}\n","<p>destination-info works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-footer-a',\n standalone: true,\n imports: [],\n templateUrl: './footer-a.component.html',\n styleUrl: './footer-a.component.scss'\n})\nexport class FooterAComponent {\n\n}\n","<p>footer-a works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-footer-b',\n standalone: true,\n imports: [],\n templateUrl: './footer-b.component.html',\n styleUrl: './footer-b.component.scss'\n})\nexport class FooterBComponent {\n\n}\n","<p>footer-b works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-footer-static',\n standalone: true,\n imports: [],\n templateUrl: './footer-static.component.html',\n styleUrl: './footer-static.component.scss'\n})\nexport class FooterStaticComponent {\n\n}\n","<p>footer-static works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-header',\n standalone: true,\n imports: [],\n templateUrl: './header.component.html',\n styleUrl: './header.component.scss'\n})\nexport class HeaderComponent {\n\n}\n","<p>header works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-header-mobile',\n standalone: true,\n imports: [],\n templateUrl: './header-mobile.component.html',\n styleUrl: './header-mobile.component.scss'\n})\nexport class HeaderMobileComponent {\n\n}\n","<p>header-mobile works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-hotel-services',\n standalone: true,\n imports: [],\n templateUrl: './hotel-services.component.html',\n styleUrl: './hotel-services.component.scss'\n})\nexport class HotelServicesComponent {\n\n}\n","<p>hotel-services works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-hotel-slider',\n standalone: true,\n imports: [],\n templateUrl: './hotel-slider.component.html',\n styleUrl: './hotel-slider.component.scss'\n})\nexport class HotelSliderComponent {\n\n}\n","<p>hotel-slider works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-motor',\n standalone: true,\n imports: [],\n templateUrl: './motor.component.html',\n styleUrl: './motor.component.scss'\n})\nexport class MotorComponent {\n\n}\n","<p>motor works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-offer',\n standalone: true,\n imports: [],\n templateUrl: './offer.component.html',\n styleUrl: './offer.component.scss'\n})\nexport class OfferComponent {\n\n}\n","<p>offer works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-offer-banner',\n standalone: true,\n imports: [],\n templateUrl: './offer-banner.component.html',\n styleUrl: './offer-banner.component.scss'\n})\nexport class OfferBannerComponent {\n\n}\n","<p>offer-banner works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-offer-slider',\n standalone: true,\n imports: [],\n templateUrl: './offer-slider.component.html',\n styleUrl: './offer-slider.component.scss'\n})\nexport class OfferSliderComponent {\n\n}\n","<p>offer-slider works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-rooms-slider',\n standalone: true,\n imports: [],\n templateUrl: './rooms-slider.component.html',\n styleUrl: './rooms-slider.component.scss'\n})\nexport class RoomsSliderComponent {\n\n}\n","<p>rooms-slider works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-simple-card',\n standalone: true,\n imports: [],\n templateUrl: './simple-card.component.html',\n styleUrl: './simple-card.component.scss'\n})\nexport class SimpleCardComponent {\n\n}\n","<p>simple-card works!</p>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-top-module',\n standalone: true,\n imports: [],\n templateUrl: './top-module.component.html',\n styleUrl: './top-module.component.scss'\n})\nexport class TopModuleComponent {\n\n}\n","<p>top-module works!</p>\n","import { InjectionToken } from '@angular/core';\r\nimport { ScreenSizerParams } from './screen-sizer.interface';\r\n\r\nexport const SCREEN_SIZER_PARAMS_TOKEN = new InjectionToken<ScreenSizerParams>(\r\n 'ScreenSizerParams'\r\n);\r\n","import { Injectable, inject, signal } from '@angular/core';\nimport { SCREEN_SIZER_PARAMS_TOKEN } from './screen-sizer.service.token';\nimport {\n debounceTime,\n distinctUntilChanged,\n fromEvent,\n map,\n startWith,\n} from 'rxjs';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ScreenSizerService {\n readonly mobile = signal(false);\n readonly smallTablet = signal(false);\n readonly mediumTablet = signal(false);\n readonly fullTablet = signal(false);\n readonly smallDesktop = signal(false);\n readonly mediumDesktop = signal(false);\n readonly fullDesktop = signal(false);\n readonly fullBigDesktop = signal(false);\n readonly maxDesktop = signal(false);\n\n readonly minSmallTablet = signal(false);\n readonly minMediumTablet = signal(false);\n readonly minFullTablet = signal(false);\n readonly minSmallDesktop = signal(false);\n readonly minMediumDesktop = signal(false);\n readonly minFullDesktop = signal(false);\n readonly minFullBigDesktop = signal(false);\n\n get width(): number {\n if (window.innerWidth > window.outerWidth) {\n return window.outerWidth;\n }\n return window.innerWidth;\n }\n\n private readonly screenSizerParams = inject(SCREEN_SIZER_PARAMS_TOKEN)\n .pixelBreakpoints;\n\n constructor() {\n fromEvent(window, 'resize')\n .pipe(\n debounceTime(200),\n map(() => this.width),\n distinctUntilChanged(),\n startWith(this.width)\n )\n .subscribe((size) => {\n if (size) {\n this.mobile.set(size < this.screenSizerParams.smallTablet);\n\n this.smallTablet.set(\n size >= this.screenSizerParams.smallTablet &&\n size < this.screenSizerParams.mediumTablet\n );\n\n this.mediumTablet.set(\n size >= this.screenSizerParams.mediumTablet &&\n size < this.screenSizerParams.fullTablet\n );\n\n this.fullTablet.set(\n size >= this.screenSizerParams.fullTablet &&\n size < this.screenSizerParams.smallDesktop\n );\n\n this.smallDesktop.set(\n size >= this.screenSizerParams.smallDesktop &&\n size < this.screenSizerParams.mediumDesktop\n );\n\n this.mediumDesktop.set(\n size >= this.screenSizerParams.mediumDesktop &&\n size < this.screenSizerParams.fullDesktop\n );\n\n this.fullDesktop.set(\n size >= this.screenSizerParams.fullDesktop &&\n size < this.screenSizerParams.fullBigDesktop\n );\n\n this.fullBigDesktop.set(\n size >= this.screenSizerParams.fullBigDesktop &&\n size < this.screenSizerParams.maxDesktop\n );\n\n this.maxDesktop.set(\n size >= this.screenSizerParams.maxDesktop\n );\n\n this.minSmallTablet.set(\n size >= this.screenSizerParams.smallTablet\n );\n\n this.minMediumTablet.set(\n size >= this.screenSizerParams.mediumTablet\n );\n\n this.minFullTablet.set(\n size >= this.screenSizerParams.fullTablet\n );\n\n this.minSmallDesktop.set(\n size >= this.screenSizerParams.smallDesktop\n );\n\n this.minMediumDesktop.set(\n size >= this.screenSizerParams.mediumDesktop\n );\n\n this.minFullDesktop.set(\n size >= this.screenSizerParams.fullDesktop\n );\n\n this.minFullBigDesktop.set(\n size >= this.screenSizerParams.fullBigDesktop\n );\n }\n });\n }\n\n isMobileInstant(): boolean {\n return this.mobile();\n }\n\n isSmallTabletInstant(): boolean {\n return this.smallTablet();\n }\n\n isMediumTabletInstant(): boolean {\n return this.mediumTablet();\n }\n\n isFullTabletInstant(): boolean {\n return this.fullTablet();\n }\n\n isSmallDesktopInstant(): boolean {\n return this.smallDesktop();\n }\n\n isMediumDesktopInstant(): boolean {\n return this.mediumDesktop();\n }\n\n isFullDesktopInstant(): boolean {\n return this.fullDesktop();\n }\n\n isFullBigDesktopInstant(): boolean {\n return this.fullBigDesktop();\n }\n\n isMaxDesktopInstant(): boolean {\n return this.maxDesktop();\n }\n\n minSmallTabletInstant(): boolean {\n return this.minSmallTablet();\n }\n\n minMediumTabletInstant(): boolean {\n return this.minMediumTablet();\n }\n\n minFullTabletInstant(): boolean {\n return this.minFullTablet();\n }\n\n minSmallDesktopInstant(): boolean {\n return this.minSmallDesktop();\n }\n\n minMediumDesktopInstant(): boolean {\n return this.minMediumDesktop();\n }\n\n minFullDesktopInstant(): boolean {\n return this.minFullDesktop();\n }\n\n minFullBigDesktopInstant(): boolean {\n return this.minFullBigDesktop();\n }\n}\n","/*\n * Public API Surface of tent\n */\n\n/* ATOMIC COMPONENTS */\nexport * from './lib/components/atomic/button/button.component';\nexport * from './lib/components/atomic/text/text.component';\nexport * from './lib/components/atomic/datepicker/datepicker.component';\nexport * from './lib/components/atomic/dropdown/dropdown.component';\nexport * from './lib/components/atomic/input/input.component';\nexport * from './lib/components/atomic/badge/badge.component';\n\n/* CORE COMPONENTS */\nexport * from './lib/components/core/advantages/advantages.component';\nexport * from './lib/components/core/card/card.component';\nexport * from './lib/components/core/destination-info/destination-info.component';\nexport * from './lib/components/core/footer-a/footer-a.component';\nexport * from './lib/components/core/footer-b/footer-b.component';\nexport * from './lib/components/core/footer-static/footer-static.component';\nexport * from './lib/components/core/header/header.component';\nexport * from './lib/components/core/header-mobile/header-mobile.component';\nexport * from './lib/components/core/hotel-services/hotel-services.component';\nexport * from './lib/components/core/hotel-slider/hotel-slider.component';\nexport * from './lib/components/core/motor/motor.component';\nexport * from './lib/components/core/offer/offer.component';\nexport * from './lib/components/core/offer-banner/offer-banner.component';\nexport * from './lib/components/core/offer-slider/offer-slider.component';\nexport * from './lib/components/core/rooms-slider/rooms-slider.component';\nexport * from './lib/components/core/simple-card/simple-card.component';\nexport * from './lib/components/core/top-module/top-module.component';\n\n/* ATOMIC INTERFACES */\nexport * from './lib/interfaces/atomic/button.interface';\nexport * from './lib/interfaces/atomic/datepicker.interface';\nexport * from './lib/interfaces/atomic/dropdown.interface';\nexport * from './lib/interfaces/atomic/input.interface';\nexport * from './lib/interfaces/atomic/badge.interface';\n\n/* CORE INTERFACES */\nexport * from './lib/interfaces/core/advantages.interface';\nexport * from './lib/interfaces/core/card.interface';\nexport * from './lib/interfaces/core/destination-info.interface';\nexport * from './lib/interfaces/core/footer-a.interface';\nexport * from './lib/interfaces/core/footer-b.interface';\nexport * from './lib/interfaces/core/footer-static.interface';\nexport * from './lib/interfaces/core/header.interface';\nexport * from './lib/interfaces/core/header-mobile.interface';\nexport * from './lib/interfaces/core/hotel-services.interface';\nexport * from './lib/interfaces/core/hotel-slider.interface';\nexport * from './lib/interfaces/core/motor.interface';\nexport * from './lib/interfaces/core/offer.interface';\nexport * from './lib/interfaces/core/offer-banner.interface';\nexport * from './lib/interfaces/core/offer-slider.interface';\nexport * from './lib/interfaces/core/rooms-slider.interface';\nexport * from './lib/interfaces/core/simple-card.interface';\nexport * from './lib/interfaces/core/top-module.interface';\n\n/* SERVICES */\nexport * from './services';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="tent-lib" />
5
+ export * from './public-api';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BadgeComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "lib-badge", never, {}, {}, never, never, true, never>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ButtonComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, {}, {}, never, never, true, never>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DatepickerComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "lib-datepicker", never, {}, {}, never, never, true, never>;
5
+ }