@tripian/react 9.1.91 → 9.1.93
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/DateRangePicker/DateRangePicker.d.ts +3 -0
- package/components/DestinationSelect/DestinationSelect.d.ts +1 -0
- package/components/FormTemplate/FormTemplateRegister/FormTemplateRegister.d.ts +9 -0
- package/components/GoogleMaps/GPlacesAutocomplete2/GPlacesAutocomplete2.d.ts +1 -0
- package/index.js +1399 -1359
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +2 -2
|
@@ -11,6 +11,9 @@ interface IDateRangePickerTemplate {
|
|
|
11
11
|
onchanged: (startDate: moment.Moment, endDate: moment.Moment) => void;
|
|
12
12
|
onFocus?: (start: boolean) => void;
|
|
13
13
|
onBlur?: () => void;
|
|
14
|
+
showIcon?: boolean;
|
|
15
|
+
startDatePlaceholder?: string;
|
|
16
|
+
endDatePlaceholder?: string;
|
|
14
17
|
}
|
|
15
18
|
declare const DateRangePicker: React.FC<IDateRangePickerTemplate>;
|
|
16
19
|
export default DateRangePicker;
|
|
@@ -36,6 +36,7 @@ interface IDestinationSelect {
|
|
|
36
36
|
onSelectSuggestedCity?: (cityId: number) => void;
|
|
37
37
|
onClearSuggestions?: () => void;
|
|
38
38
|
t: (value: Model.TranslationKey) => string;
|
|
39
|
+
showSearchIcon?: boolean;
|
|
39
40
|
}
|
|
40
41
|
declare const DestinationSelect: React.FC<IDestinationSelect>;
|
|
41
42
|
export default DestinationSelect;
|
|
@@ -6,6 +6,15 @@ interface IFormTemplateRegister {
|
|
|
6
6
|
reCaptchaSiteKey: string;
|
|
7
7
|
showCaptcha: boolean;
|
|
8
8
|
goBackLogin: () => void;
|
|
9
|
+
socialLoginConfigs: {
|
|
10
|
+
clientId: string;
|
|
11
|
+
domain: string;
|
|
12
|
+
identityProviders: string[];
|
|
13
|
+
region: string;
|
|
14
|
+
baseDomain: string;
|
|
15
|
+
};
|
|
16
|
+
showRegister?: boolean;
|
|
17
|
+
customQuery?: string;
|
|
9
18
|
t: (value: Model.TranslationKey) => string;
|
|
10
19
|
}
|
|
11
20
|
declare const FormTemplateRegister: React.FC<IFormTemplateRegister>;
|