@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.
- package/build/build-cjs/index.js +2 -1
- package/build/build-cjs/src/content/components/slider.d.ts +1 -1
- package/build/build-cjs/src/index.d.ts +2 -1
- package/build/build-esm/index.js +2 -2
- package/build/build-esm/src/content/components/slider.d.ts +1 -1
- package/build/build-esm/src/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/content/components/slider.tsx +1 -1
- package/src/content/image-with-text-section/card.tsx +1 -1
- package/src/index.ts +2 -1
package/build/build-cjs/index.js
CHANGED
|
@@ -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-
|
|
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;
|
|
@@ -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/build/build-esm/index.js
CHANGED
|
@@ -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-
|
|
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 };
|
|
@@ -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
|
@@ -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-
|
|
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 };
|