@tripian/react 9.1.27 → 9.1.29
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/components/EventCard/EventCard.d.ts +13 -0
- package/components/EventList/EventList.d.ts +8 -0
- package/components/PlaceDetailsModal/PlaceDetailsModal.d.ts +10 -0
- package/components/PoiRefCard/PoiRefCard.d.ts +1 -0
- package/components/StepAlternativeCard/StepAlternativeCard.d.ts +1 -0
- package/components/StepCard/StepCard.d.ts +1 -0
- package/components/StepCardUserReaction/StepCardUserReaction.d.ts +1 -0
- package/components/base/Svg/Icons/ArrowLeft.d.ts +8 -0
- package/components/base/Svg/Icons/Calendar2.d.ts +8 -0
- package/components/base/Svg/Icons/Check2.d.ts +9 -0
- package/components/base/Svg/Icons/ChevronLeft.d.ts +4 -0
- package/components/base/Svg/Icons/ChevronRight.d.ts +4 -0
- package/components/base/Svg/Icons/Clock2.d.ts +8 -0
- package/components/base/Svg/Icons/Euro.d.ts +9 -0
- package/components/base/Svg/Icons/Icons.d.ts +22 -0
- package/components/base/Svg/Icons/Info3.d.ts +8 -0
- package/components/base/Svg/Icons/Link2.d.ts +8 -0
- package/components/base/Svg/Icons/MapPin.d.ts +9 -0
- package/components/base/Svg/Icons/Music.d.ts +8 -0
- package/components/base/Svg/Icons/Phone2.d.ts +8 -0
- package/components/base/Svg/Icons/Power.d.ts +8 -0
- package/components/base/Svg/Icons/Star.d.ts +8 -0
- package/components/base/Svg/Icons/Tags.d.ts +9 -0
- package/components/base/Svg/Icons/Thermometer.d.ts +8 -0
- package/components/base/Svg/Icons/Ticket2.d.ts +8 -0
- package/components/base/Svg/Icons/Users.d.ts +8 -0
- package/components/base/Svg/Icons/Wifi.d.ts +8 -0
- package/components/base/Svg/Icons/X.d.ts +9 -0
- package/components/base/Svg/Icons/index.d.ts +25 -3
- package/img/2e3447c1d52bcead08d48dbef0bea31e.webp +0 -0
- package/index.d.ts +9 -1
- package/index.js +3546 -2699
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +2 -2
- package/providers/toristy/ToristyProductCard/ToristyProductCard.d.ts +9 -0
- package/providers/toristy/ToristyProductCard/ToristyProductCardImage/ToristyProductCardImage.d.ts +7 -0
- package/providers/toristy/ToristyProductCard/ToristyProductCardText/ToristyProductCardText.d.ts +12 -0
- package/providers/toristy/ToristyTourInfo/ToristyTourInfoImage/ToristyTourInfoImage.d.ts +9 -0
- package/providers/toristy/ToristyTourInfo/ToristyTourInfoText/ToristyTourInfoText.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tripian/react",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.29",
|
|
4
4
|
"description": "Tripian Inc React Components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@react-google-maps/api": "^2.12.0",
|
|
9
|
-
"@tripian/model": "9.1.
|
|
9
|
+
"@tripian/model": "9.1.29",
|
|
10
10
|
"external-svg-loader": "^1.6.1",
|
|
11
11
|
"moment": "^2.24.0",
|
|
12
12
|
"react": "^18.1.0",
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Model, { Providers } from '@tripian/model';
|
|
3
|
+
interface IToristyProductCard {
|
|
4
|
+
product: Providers.Toristy.Product;
|
|
5
|
+
bodyClicked: (product: Providers.Toristy.Product) => void;
|
|
6
|
+
t: (value: Model.TranslationKey) => string;
|
|
7
|
+
}
|
|
8
|
+
declare const ToristyProductCard: React.FC<IToristyProductCard>;
|
|
9
|
+
export default ToristyProductCard;
|
package/providers/toristy/ToristyProductCard/ToristyProductCardImage/ToristyProductCardImage.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Providers } from '@tripian/model';
|
|
3
|
+
interface IToristyProductCardImage {
|
|
4
|
+
image: Providers.Toristy.Image;
|
|
5
|
+
}
|
|
6
|
+
declare const ToristyProductCardImage: React.FC<IToristyProductCardImage>;
|
|
7
|
+
export default ToristyProductCardImage;
|
package/providers/toristy/ToristyProductCard/ToristyProductCardText/ToristyProductCardText.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Model, { Providers } from '@tripian/model';
|
|
3
|
+
interface IToristyProductCardText {
|
|
4
|
+
product: Providers.Toristy.Product & {
|
|
5
|
+
categories: {
|
|
6
|
+
categoryname: string;
|
|
7
|
+
}[];
|
|
8
|
+
};
|
|
9
|
+
t: (value: Model.TranslationKey) => string;
|
|
10
|
+
}
|
|
11
|
+
declare const ToristyProductCardText: React.FC<IToristyProductCardText>;
|
|
12
|
+
export default ToristyProductCardText;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Providers } from '@tripian/model';
|
|
3
|
+
import 'slick-carousel/slick/slick.css';
|
|
4
|
+
import 'slick-carousel/slick/slick-theme.css';
|
|
5
|
+
interface IGygTourInfoImage {
|
|
6
|
+
tourImages: Providers.Toristy.Image[];
|
|
7
|
+
}
|
|
8
|
+
declare const GygTourInfoImage: React.FC<IGygTourInfoImage>;
|
|
9
|
+
export default GygTourInfoImage;
|