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 +9 -6
- package/dist/index.esm.js +15 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +15 -7
- package/dist/index.js.map +1 -1
- package/dist/src/components/SlickCarousel/SlickCarousel.d.ts +1 -2
- package/dist/src/components/icons/map/CommuteIcon.d.ts +5 -1
- package/package.json +3 -1
- package/dist/src/components/helpers/currencyFormatter.d.ts +0 -1
- package/dist/src/components/helpers/getBedroomsText.d.ts +0 -7
- package/dist/src/components/icons/commutes/commute/PublicIcon.d.ts +0 -2
- package/dist/src/components/modals/FiltersModal/constants.d.ts +0 -13
- package/dist/tsconfig.tsbuildinfo +0 -1
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$
|
|
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$
|
|
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
|
-
|
|
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
|
|