ctt-babylon 0.22.0 → 0.22.2
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/core/babylon-info-zigzag-v5/babylon-info-zigzag-v5.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-lis-c2-img-vid/babylon-lis-c2-img-vid.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-rooms-list-v2/babylon-rooms-list-v2.component.mjs +3 -3
- package/esm2022/lib/services/mapper/mapper.service.mjs +2 -1
- package/fesm2022/ctt-babylon.mjs +7 -6
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-lis-c2-img-vid/babylon-lis-c2-img-vid.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
|
-
import { BabylonTextInfoI } from '../../../interfaces';
|
|
4
|
+
import { BabylonButtonI, BabylonTextInfoI } from '../../../interfaces';
|
|
5
5
|
import { BabylonGalleryFilter, BabylonGalleryItem } from '../babylon-gallery';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class BabylonLisC2ImgVidComponent implements OnInit, OnDestroy {
|
|
@@ -16,8 +16,8 @@ export declare class BabylonLisC2ImgVidComponent implements OnInit, OnDestroy {
|
|
|
16
16
|
get filters(): BabylonGalleryFilter[] | undefined;
|
|
17
17
|
set filters(val: any);
|
|
18
18
|
set images(val: BabylonGalleryItem[]);
|
|
19
|
-
filtersBtn?:
|
|
20
|
-
roomsBtn?:
|
|
19
|
+
filtersBtn?: BabylonButtonI;
|
|
20
|
+
roomsBtn?: BabylonButtonI;
|
|
21
21
|
filterSelected: import("@angular/core").WritableSignal<BabylonGalleryFilter | undefined>;
|
|
22
22
|
destroy$: Subject<boolean>;
|
|
23
23
|
imagesDisplayed: import("@angular/core").Signal<BabylonGalleryItem[]>;
|