searchsmartly-ui 1.0.30 → 1.0.32

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/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as _emotion_styled from '@emotion/styled';
2
2
  import * as _mui_system from '@mui/system';
3
- import { SxProps as SxProps$1 } from '@mui/system';
3
+ import { SxProps as SxProps$1, Theme as Theme$1 } from '@mui/system';
4
4
  import * as react from 'react';
5
5
  import react__default, { FC, ReactNode, PropsWithChildren, ReactElement, MouseEvent, ComponentType, Component, ErrorInfo, Dispatch, SetStateAction, ChangeEvent, HTMLAttributes, JSX as JSX$1 } from 'react';
6
6
  import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
@@ -12,7 +12,7 @@ import { LazyLoadTypes } from 'react-slick';
12
12
  import { ChipProps } from '@mui/material/Chip/Chip';
13
13
  import { TypographyProps } from '@mui/material/Typography/Typography';
14
14
  import * as react_jsx_runtime from 'react/jsx-runtime';
15
- import { Theme as Theme$1 } from '@mui/material/styles';
15
+ import { Theme as Theme$2 } from '@mui/material/styles';
16
16
  import { TransitionProps } from '@mui/material/transitions';
17
17
  import { ViewState, MapRef } from 'react-map-gl';
18
18
  export { MapRef } from 'react-map-gl';
@@ -144,8 +144,8 @@ interface CarouselInterface {
144
144
  lazyLoad?: LazyLoadTypes;
145
145
  fullSizeImages?: string[];
146
146
  id?: string;
147
- sx?: SxProps$1<Theme>;
148
- imageSX?: SxProps$1<Theme>;
147
+ sx?: SxProps$1<Theme$1>;
148
+ imageSX?: SxProps$1<Theme$1>;
149
149
  onSlideClick?: (index: number) => void;
150
150
  enablePreview?: boolean;
151
151
  }
@@ -258,7 +258,7 @@ declare const ListHeader: FC<ListHeaderProps>;
258
258
  declare const Powered: FC<StackProps>;
259
259
 
260
260
  declare const EmptyDefaultImage: FC<{
261
- sx?: SxProps$1<Theme$1>;
261
+ sx?: SxProps$1<Theme$2>;
262
262
  }>;
263
263
 
264
264
  type BedroomsFormProps = {
@@ -413,7 +413,10 @@ declare const WalkIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime.JS
413
413
 
414
414
  declare const PublicIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime.JSX.Element;
415
415
 
416
- declare const CommuteIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime.JSX.Element;
416
+ type CommuteIconProps = SvgIconProps & {
417
+ fillColor?: string;
418
+ };
419
+ declare const CommuteIcon: ({ sx, fillColor, ...props }: CommuteIconProps) => react_jsx_runtime.JSX.Element;
417
420
 
418
421
  declare const PinIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime.JSX.Element;
419
422