searchsmartly-ui 0.0.25 → 0.0.27
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 +4 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/src/components/forms/BudgetForm/BudgetForm.d.ts +2 -0
- package/dist/src/components/layouts/Onboarding/OnboardingStepLayout.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ type OnboardingStepLayoutProps = {
|
|
|
43
43
|
linkProps?: Record<string, unknown>;
|
|
44
44
|
caption: string;
|
|
45
45
|
disabled?: boolean;
|
|
46
|
+
onClick?: () => void;
|
|
46
47
|
};
|
|
47
48
|
declare const OnboardingStepLayout: FC<PropsWithChildren<OnboardingStepLayoutProps>>;
|
|
48
49
|
|
|
@@ -164,10 +165,12 @@ type BedroomsFormProps = {
|
|
|
164
165
|
declare const BedroomsForm: FC<BedroomsFormProps>;
|
|
165
166
|
|
|
166
167
|
type BudgetFormProps = {
|
|
168
|
+
title?: string;
|
|
167
169
|
minPrice?: number;
|
|
168
170
|
maxPrice?: number;
|
|
169
171
|
onSubmit: (minPrice?: number, maxPrice?: number) => void;
|
|
170
172
|
};
|
|
173
|
+
declare const formatPrice: (price: string | number) => string;
|
|
171
174
|
declare const BudgetForm: FC<BudgetFormProps>;
|
|
172
175
|
|
|
173
176
|
declare const StarIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -198,4 +201,4 @@ declare const useResponsive: () => {
|
|
|
198
201
|
|
|
199
202
|
declare const ThemeProvider: FC<ThemeProviderProps>;
|
|
200
203
|
|
|
201
|
-
export { AmenityTags, BaseLayout, BeachesIcon, BedIcon, BedroomsForm, BudgetForm, BusIcon, Button, CardImage, EmptyDefaultImage, GymIcon, LazyLoadImage, ListHeader, Onboarding, OnboardingStepLayout, ParksIcon, Powered, PropertiesList, PropertyCard, type PropertyCardType, PropertyTag, RestaurantsIcon, SchoolsIcon, SearchsmartlyLogo, ShopIcon, SlickCarousel, StarIcon, Tag, type TagProps, ThemeProvider, amenityTagConfig, getAmenityTags, thresholds, useResponsive };
|
|
204
|
+
export { AmenityTags, BaseLayout, BeachesIcon, BedIcon, BedroomsForm, BudgetForm, BusIcon, Button, CardImage, EmptyDefaultImage, GymIcon, LazyLoadImage, ListHeader, Onboarding, OnboardingStepLayout, ParksIcon, Powered, PropertiesList, PropertyCard, type PropertyCardType, PropertyTag, RestaurantsIcon, SchoolsIcon, SearchsmartlyLogo, ShopIcon, SlickCarousel, StarIcon, Tag, type TagProps, ThemeProvider, amenityTagConfig, formatPrice, getAmenityTags, thresholds, useResponsive };
|