@tripian/react 9.0.15 → 9.0.21

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.
@@ -10,6 +10,7 @@ interface Itwindow {
10
10
  cityBounds?: google.maps.LatLngBounds | null;
11
11
  meMarker?: google.maps.Marker;
12
12
  config?: any;
13
+ langCode?: string;
13
14
  }
14
15
  declare global {
15
16
  interface Window {
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { RSelectOption } from '../base/RSelect/RSelect';
3
3
  interface IPoiSearchAutoComplete {
4
- inputValue?: string;
4
+ inputValue: string;
5
5
  options: RSelectOption[];
6
6
  selectedOptionValues: string[];
7
7
  onSelectedOptionChange: (selectedOptions: RSelectOption[]) => void;
@@ -13,6 +13,7 @@ interface IButton {
13
13
  iconPosition?: string;
14
14
  iconSize?: string;
15
15
  iconViewBox?: string;
16
+ iconFill?: string;
16
17
  disabled?: boolean;
17
18
  onFocus?: () => void;
18
19
  onBlur?: () => void;
@@ -12,6 +12,7 @@ interface IDropdown {
12
12
  onFocus?: () => void;
13
13
  onBlur?: () => void;
14
14
  skippable?: boolean;
15
+ disabled?: boolean;
15
16
  }
16
17
  declare const Dropdown: React.FC<IDropdown>;
17
18
  export default Dropdown;
@@ -4,6 +4,7 @@ interface INumberCounter {
4
4
  minValue: number;
5
5
  maxValue: number;
6
6
  onchange: (num: number) => void;
7
+ iconFill?: string;
7
8
  }
8
9
  declare const NumberCounter: React.FC<INumberCounter>;
9
10
  export default NumberCounter;