@qite/tide-booking-component 1.4.63 → 1.4.64

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.
@@ -44935,7 +44935,7 @@ var ImageWithTextCard = function (_a) {
44935
44935
  cardClassName += ' image-with-text__card--no-card';
44936
44936
  }
44937
44937
  if (fullImage) {
44938
- cardClassName += ' image-with-text__card--full-image';
44938
+ cardClassName += ' image-with-text__card--full-img';
44939
44939
  }
44940
44940
  if (reverse) {
44941
44941
  cardClassName += ' image-with-text__card--reverse';
@@ -48905,3 +48905,4 @@ exports.Login = Login;
48905
48905
  exports.Navbar = Navbar;
48906
48906
  exports.QSM = QSM;
48907
48907
  exports.SearchResults = SearchResults;
48908
+ exports.Slider = Slider;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- interface SliderProps {
2
+ export interface SliderProps {
3
3
  path?: string;
4
4
  images: string[];
5
5
  mode?: 'auto' | 'manual';
@@ -8,6 +8,7 @@ import SearchResults from './search-results';
8
8
  import ImageCardGrid from './content/image-card-grid';
9
9
  import Login from './content/login';
10
10
  import ImageWithTextSection from './content/image-with-text-section';
11
+ import Slider from './content/components/slider';
11
12
  export * from './content/navbar/types';
12
13
  export * from './content/header/types';
13
14
  export * from './content/footer/types';
@@ -17,4 +18,4 @@ export * from './content/image-with-text-section/types';
17
18
  export * from './search-results/types';
18
19
  export * from './qsm/types';
19
20
  export * from './shared/types';
20
- export { BookingProduct, BookingWizard, QSM, SearchResults, Navbar, Header, Footer, ImageCardGrid, Login, ImageWithTextSection };
21
+ export { BookingProduct, BookingWizard, QSM, SearchResults, Navbar, Header, Footer, ImageCardGrid, Login, ImageWithTextSection, Slider };
@@ -44643,7 +44643,7 @@ var ImageWithTextCard = function (_a) {
44643
44643
  cardClassName += ' image-with-text__card--no-card';
44644
44644
  }
44645
44645
  if (fullImage) {
44646
- cardClassName += ' image-with-text__card--full-image';
44646
+ cardClassName += ' image-with-text__card--full-img';
44647
44647
  }
44648
44648
  if (reverse) {
44649
44649
  cardClassName += ' image-with-text__card--reverse';
@@ -48603,4 +48603,4 @@ var signalR = /*#__PURE__*/ _mergeNamespaces(
48603
48603
  [signalR$1]
48604
48604
  );
48605
48605
 
48606
- export { BookingProduct, BookingWizard, DepartureRange, Footer, Header, ImageCardGrid, ImageWithTextSection, Login, Navbar, QSM, SearchResults };
48606
+ export { BookingProduct, BookingWizard, DepartureRange, Footer, Header, ImageCardGrid, ImageWithTextSection, Login, Navbar, QSM, SearchResults, Slider };
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- interface SliderProps {
2
+ export interface SliderProps {
3
3
  path?: string;
4
4
  images: string[];
5
5
  mode?: 'auto' | 'manual';
@@ -8,6 +8,7 @@ import SearchResults from './search-results';
8
8
  import ImageCardGrid from './content/image-card-grid';
9
9
  import Login from './content/login';
10
10
  import ImageWithTextSection from './content/image-with-text-section';
11
+ import Slider from './content/components/slider';
11
12
  export * from './content/navbar/types';
12
13
  export * from './content/header/types';
13
14
  export * from './content/footer/types';
@@ -17,4 +18,4 @@ export * from './content/image-with-text-section/types';
17
18
  export * from './search-results/types';
18
19
  export * from './qsm/types';
19
20
  export * from './shared/types';
20
- export { BookingProduct, BookingWizard, QSM, SearchResults, Navbar, Header, Footer, ImageCardGrid, Login, ImageWithTextSection };
21
+ export { BookingProduct, BookingWizard, QSM, SearchResults, Navbar, Header, Footer, ImageCardGrid, Login, ImageWithTextSection, Slider };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-booking-component",
3
- "version": "1.4.63",
3
+ "version": "1.4.64",
4
4
  "description": "React Booking wizard & Booking product component for Tide",
5
5
  "main": "build/build-cjs/index.js",
6
6
  "types": "build/build-cjs/src/index.d.ts",
@@ -1,7 +1,7 @@
1
1
  import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
2
2
  import Icon from './icon';
3
3
 
4
- interface SliderProps {
4
+ export interface SliderProps {
5
5
  path?: string;
6
6
  images: string[];
7
7
  mode?: 'auto' | 'manual';
@@ -20,7 +20,7 @@ const ImageWithTextCard: React.FC<ImageWithTextCardProps> = ({
20
20
  cardClassName += ' image-with-text__card--no-card';
21
21
  }
22
22
  if (fullImage) {
23
- cardClassName += ' image-with-text__card--full-image';
23
+ cardClassName += ' image-with-text__card--full-img';
24
24
  }
25
25
  if (reverse) {
26
26
  cardClassName += ' image-with-text__card--reverse';
package/src/index.ts CHANGED
@@ -8,6 +8,7 @@ import SearchResults from './search-results';
8
8
  import ImageCardGrid from './content/image-card-grid';
9
9
  import Login from './content/login';
10
10
  import ImageWithTextSection from './content/image-with-text-section';
11
+ import Slider from './content/components/slider';
11
12
 
12
13
  export * from './content/navbar/types';
13
14
  export * from './content/header/types';
@@ -19,4 +20,4 @@ export * from './search-results/types';
19
20
  export * from './qsm/types';
20
21
  export * from './shared/types';
21
22
 
22
- export { BookingProduct, BookingWizard, QSM, SearchResults, Navbar, Header, Footer, ImageCardGrid, Login, ImageWithTextSection };
23
+ export { BookingProduct, BookingWizard, QSM, SearchResults, Navbar, Header, Footer, ImageCardGrid, Login, ImageWithTextSection, Slider };