@tripian/react 8.3.0 → 9.0.0
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/DestinationSelect/DestinationSelect.d.ts +1 -1
- package/components/FormTemplate/FormTemplateTripNext/model.d.ts +2 -2
- package/components/FormTemplate/FormTemplateTripNextWidget/model.d.ts +2 -2
- package/components/PoiInfo/PoiInfoText/PoiInfoTextRow/PoiInfoTextRow.d.ts +1 -1
- package/components/SocialLogin/SocialLogin.d.ts +1 -1
- package/components/SocialLoginEx/SocialLogin.d.ts +1 -1
- package/components/base/CustomPopover/CustomPopover.d.ts +1 -1
- package/components/base/InfoBox/InfoBox.d.ts +1 -1
- package/components/base/RSelect/RSelect.d.ts +1 -1
- package/components/base/Required/Required.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
- package/providers/gyg/components/GygTourInfo/GygTourShoppingForm/timezones.d.ts +1 -1
- package/providers/gyg/components/GygTourInfoEx/GygTourInfoForm/GygTourShoppingForm/timezones.d.ts +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import Model from '@tripian/model';
|
|
2
|
-
|
|
2
|
+
type QuestionAnswerNext = {
|
|
3
3
|
id: number;
|
|
4
4
|
name: string;
|
|
5
5
|
description: string;
|
|
6
6
|
subAnswers: Model.SubAnswer[];
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type QuestionNext = {
|
|
9
9
|
id: number;
|
|
10
10
|
name: string;
|
|
11
11
|
order: number;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import Model from '@tripian/model';
|
|
2
|
-
|
|
2
|
+
type QuestionAnswerNext = {
|
|
3
3
|
id: number;
|
|
4
4
|
name: string;
|
|
5
5
|
description: string;
|
|
6
6
|
subAnswers: Model.SubAnswer[];
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type QuestionNext = {
|
|
9
9
|
id: number;
|
|
10
10
|
name: string;
|
|
11
11
|
order: number;
|
|
@@ -7,6 +7,6 @@ interface ICustomPopover {
|
|
|
7
7
|
content: JSX.Element;
|
|
8
8
|
children: JSX.Element;
|
|
9
9
|
}
|
|
10
|
-
export
|
|
10
|
+
export type Ref = HTMLButtonElement;
|
|
11
11
|
declare const CustomPopover: React.ForwardRefExoticComponent<ICustomPopover & React.RefAttributes<HTMLButtonElement>>;
|
|
12
12
|
export default CustomPopover;
|
package/index.js
CHANGED
|
@@ -22529,7 +22529,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
22529
22529
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
22530
22530
|
function step(op) {
|
|
22531
22531
|
if (f) throw new TypeError("Generator is already executing.");
|
|
22532
|
-
while (_) try {
|
|
22532
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
22533
22533
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
22534
22534
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
22535
22535
|
switch (op[0]) {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tripian/react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
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
|
+
"@tripian/model": "9.0.0",
|
|
10
10
|
"external-svg-loader": "^1.6.1",
|
|
11
11
|
"moment": "^2.24.0",
|
|
12
12
|
"react": "^18.1.0",
|