@qite/tide-booking-component 1.4.40 → 1.4.41
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/build/build-cjs/content/image-card-grid/index.d.ts +4 -0
- package/build/build-cjs/content/image-card-grid/types.d.ts +12 -0
- package/build/build-cjs/index.d.ts +2 -1
- package/build/build-cjs/index.js +2087 -422
- package/build/build-cjs/shared/components/icon.d.ts +10 -0
- package/build/build-esm/content/image-card-grid/index.d.ts +4 -0
- package/build/build-esm/content/image-card-grid/types.d.ts +12 -0
- package/build/build-esm/index.d.ts +2 -1
- package/build/build-esm/index.js +1971 -451
- package/build/build-esm/shared/components/icon.d.ts +10 -0
- package/package.json +1 -1
- package/src/content/image-card-grid/index.tsx +34 -0
- package/src/content/image-card-grid/types.ts +13 -0
- package/src/index.ts +2 -1
- package/src/shared/components/flyin.tsx +321 -33
- package/src/shared/components/icon.tsx +826 -0
- package/styles/components/_flyin.scss +117 -126
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface ImageCardGridProps {
|
|
2
|
+
title: string;
|
|
3
|
+
cards: ImageCard[];
|
|
4
|
+
columns: number;
|
|
5
|
+
}
|
|
6
|
+
export interface ImageCard {
|
|
7
|
+
image: string;
|
|
8
|
+
title: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
buttonText?: string;
|
|
11
|
+
onButtonClick: (card: ImageCard) => void;
|
|
12
|
+
}
|
|
@@ -5,4 +5,5 @@ import Navbar from './content/navbar';
|
|
|
5
5
|
import Footer from './content/footer';
|
|
6
6
|
import QSM from './qsm';
|
|
7
7
|
import SearchResults from './search-results';
|
|
8
|
-
|
|
8
|
+
import ImageCardGrid from './content/image-card-grid';
|
|
9
|
+
export { BookingProduct, BookingWizard, QSM, SearchResults, Navbar, Header, Footer, ImageCardGrid };
|