searchsmartly-ui 0.0.182 → 0.0.183

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
@@ -215,6 +215,7 @@ type PropertyCardType<T extends PropertyItemType> = Omit<BoxProps, 'property'> &
215
215
  id?: string;
216
216
  currency?: string;
217
217
  isPopover?: boolean;
218
+ isMapPopover?: boolean;
218
219
  loading?: boolean;
219
220
  disableCarousel?: boolean;
220
221
  tagColor?: ChipProps['color'];
@@ -223,7 +224,7 @@ type PropertyCardType<T extends PropertyItemType> = Omit<BoxProps, 'property'> &
223
224
  header?: ReactElement;
224
225
  onClick?: () => void;
225
226
  };
226
- declare const PropertyCard: <T extends PropertyItemType>({ property, loading, currency, id, disableCarousel, isPopover, children, header, tagColor, sx, onClick, }: PropertyCardType<T>) => react_jsx_runtime.JSX.Element;
227
+ declare const PropertyCard: <T extends PropertyItemType>({ property, loading, currency, id, disableCarousel, isPopover, isMapPopover, children, header, tagColor, sx, onClick, }: PropertyCardType<T>) => react_jsx_runtime.JSX.Element;
227
228
 
228
229
  type ListHeaderProps = {
229
230
  title: string;
@@ -829,11 +830,12 @@ declare const pluralize: (count: number, noun: string, suffix?: string) => strin
829
830
  declare const currencyFormatterProperty: (price: number, currency?: string) => string;
830
831
 
831
832
  declare const renderPlural: (word: string, number: number) => string;
832
- declare const getBedroomsText: ({ bedrooms, isShared, disablePlural, isShort }: {
833
+ declare const getBedroomsText: ({ bedrooms, isShared, disablePlural, isShort, disableText, }: {
833
834
  bedrooms?: number | undefined;
834
835
  isShared?: boolean | undefined;
835
836
  disablePlural?: boolean | undefined;
836
837
  isShort?: boolean | undefined;
838
+ disableText?: boolean | undefined;
837
839
  }) => string;
838
840
 
839
841
  declare const titleCase: (string: string) => string;