searchsmartly-ui 0.0.99 → 0.0.101
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 +32 -16
- package/dist/index.esm.js +7 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/src/components/buttons/AmenityButton/AmenityButton.d.ts +12 -0
- package/dist/src/components/buttons/AmenityButton/index.d.ts +1 -0
- package/dist/src/components/buttons/index.d.ts +4 -0
- package/dist/src/components/fields/TextField/TextField.d.ts +5 -1
- package/dist/src/components/fields/TextField/styles.d.ts +1 -1
- package/dist/src/components/index.d.ts +1 -3
- package/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- /package/dist/src/components/{Button → buttons/Button}/Button.d.ts +0 -0
- /package/dist/src/components/{Button → buttons/Button}/index.d.ts +0 -0
- /package/dist/src/components/{CopyButton → buttons/CopyButton}/CopyButton.d.ts +0 -0
- /package/dist/src/components/{CopyButton → buttons/CopyButton}/index.d.ts +0 -0
- /package/dist/src/components/{FilterButton → buttons/FilterButton}/FilterButton.d.ts +0 -0
- /package/dist/src/components/{FilterButton → buttons/FilterButton}/index.d.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ import * as _emotion_styled from '@emotion/styled';
|
|
|
3
3
|
import * as _mui_system from '@mui/system';
|
|
4
4
|
import { SxProps as SxProps$1 } from '@mui/system';
|
|
5
5
|
import * as react from 'react';
|
|
6
|
-
import react__default, { FC, PropsWithChildren, ReactElement, MouseEvent,
|
|
6
|
+
import react__default, { FC, ReactNode, PropsWithChildren, ReactElement, MouseEvent, ComponentType, Component, ErrorInfo, ChangeEvent, JSX as JSX$1 } from 'react';
|
|
7
7
|
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
8
8
|
import { OverridableComponent } from '@mui/material/OverridableComponent';
|
|
9
9
|
import * as _mui_material from '@mui/material';
|
|
10
|
-
import { SxProps, Theme, BoxProps, StackProps, SvgIconProps, SvgIconTypeMap,
|
|
10
|
+
import { ButtonProps, SxProps, Theme, BoxProps, StackProps, SvgIconProps, SvgIconTypeMap, SnackbarProps } from '@mui/material';
|
|
11
11
|
import { LazyLoadImageProps } from 'react-lazy-load-image-component';
|
|
12
12
|
import { LazyLoadTypes } from 'react-slick';
|
|
13
13
|
import { ChipProps } from '@mui/material/Chip/Chip';
|
|
@@ -30,6 +30,30 @@ declare const Button: _emotion_styled.StyledComponent<_mui_material.ButtonOwnPro
|
|
|
30
30
|
shape?: "lrect" | "mrect" | "srect" | "square" | undefined;
|
|
31
31
|
}, {}, {}>;
|
|
32
32
|
|
|
33
|
+
type CopyButton = {
|
|
34
|
+
onClick: (val: (text: string) => void) => void;
|
|
35
|
+
};
|
|
36
|
+
declare const CopyButton: FC<CopyButton>;
|
|
37
|
+
|
|
38
|
+
type FilterButtonProps = {
|
|
39
|
+
small?: boolean;
|
|
40
|
+
badgeContent?: ReactNode;
|
|
41
|
+
onClick?: () => void;
|
|
42
|
+
} & ButtonProps;
|
|
43
|
+
declare const FilterButton: FC<FilterButtonProps>;
|
|
44
|
+
|
|
45
|
+
type AmenityButtonProps = {
|
|
46
|
+
isActive?: boolean;
|
|
47
|
+
disabled?: boolean;
|
|
48
|
+
badgeInvisible?: boolean;
|
|
49
|
+
badgeContentFontSize?: number | string;
|
|
50
|
+
onClick: () => void;
|
|
51
|
+
children: ReactNode;
|
|
52
|
+
sx?: Record<string, unknown>;
|
|
53
|
+
badgeSX?: Record<string, unknown>;
|
|
54
|
+
};
|
|
55
|
+
declare const AmenityButton: FC<AmenityButtonProps>;
|
|
56
|
+
|
|
33
57
|
type BaseLayoutProps = {
|
|
34
58
|
hideHeader?: boolean;
|
|
35
59
|
logoLinks: ReactElement[] | ReactElement;
|
|
@@ -334,13 +358,6 @@ declare const CommuteIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime
|
|
|
334
358
|
|
|
335
359
|
declare const PinIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
336
360
|
|
|
337
|
-
type FilterButtonProps = {
|
|
338
|
-
small?: boolean;
|
|
339
|
-
badgeContent?: ReactNode;
|
|
340
|
-
onClick?: () => void;
|
|
341
|
-
} & ButtonProps;
|
|
342
|
-
declare const FilterButton: FC<FilterButtonProps>;
|
|
343
|
-
|
|
344
361
|
type ModalsProps = {
|
|
345
362
|
payload?: Record<any, any> | undefined;
|
|
346
363
|
DialogProps: {
|
|
@@ -554,9 +571,13 @@ declare const TooltipTitle: FC<TypographyProps>;
|
|
|
554
571
|
type FieldProps = {
|
|
555
572
|
minWidth?: string | number;
|
|
556
573
|
defaultValue?: string | number;
|
|
574
|
+
tooltipTitle?: string | number;
|
|
557
575
|
isClearable?: boolean;
|
|
558
576
|
multiline?: boolean;
|
|
559
577
|
fullWidth?: boolean;
|
|
578
|
+
showTooltip?: boolean;
|
|
579
|
+
openTooltip?: boolean;
|
|
580
|
+
closeTooltip?: () => void;
|
|
560
581
|
label?: ReactNode | string | null;
|
|
561
582
|
name?: string | undefined;
|
|
562
583
|
helperText?: string | null | undefined;
|
|
@@ -565,7 +586,7 @@ type FieldProps = {
|
|
|
565
586
|
InputProps?: InputProps;
|
|
566
587
|
wrapperSx?: SxProps$1<Theme>;
|
|
567
588
|
};
|
|
568
|
-
declare const TextField: react.ForwardRefExoticComponent<(Omit<FieldProps & _mui_material.
|
|
589
|
+
declare const TextField: react.ForwardRefExoticComponent<(Omit<FieldProps & _mui_material.OutlinedTextFieldProps, "ref"> | Omit<FieldProps & _mui_material.FilledTextFieldProps, "ref"> | Omit<FieldProps & _mui_material.StandardTextFieldProps, "ref">) & react.RefAttributes<HTMLInputElement>>;
|
|
569
590
|
|
|
570
591
|
declare const HelperText: FC<{
|
|
571
592
|
error: string | null;
|
|
@@ -595,11 +616,6 @@ type PopoverProps = {
|
|
|
595
616
|
};
|
|
596
617
|
declare const Popover: FC<PopoverProps>;
|
|
597
618
|
|
|
598
|
-
type CopyButton = {
|
|
599
|
-
onClick: (val: (text: string) => void) => void;
|
|
600
|
-
};
|
|
601
|
-
declare const CopyButton: FC<CopyButton>;
|
|
602
|
-
|
|
603
619
|
type SmartTableColumn<T> = {
|
|
604
620
|
name: string;
|
|
605
621
|
title?: string | ReactNode;
|
|
@@ -671,4 +687,4 @@ declare const getDestination: (state: Record<string, unknown>, key: string) => {
|
|
|
671
687
|
[key: string]: string;
|
|
672
688
|
};
|
|
673
689
|
|
|
674
|
-
export { type Align, AmenityTags, AreasForm, BaseLayout, BeachesIcon, BedIcon, BedroomsForm, BikeIcon, type Block, BudgetForm, BusIcon, BusTagIcon, Button, COMMUTE_METHODS, CarIcon, CardImage, type Commute, CommuteForm, CommuteIcon, type CommuteLocation, CommuteMethod, type CommutePin, CopyButton, EmptyDefaultImage, ErrorBoundary, type FieldProps, FilterButton, FiltersIcon, FiltersModal, FooterButtons, GymIcon, HelperText, LazyLoadImage, LifestyleForm, type LifestyleFormProps, ListHeader, Loader, type MapProps, MapTags, MapWrapper, type MethodType, ModalBase, ModalContainer, type ModalContainerProps, ModalFooter, ModalHeader, ModalsContext, type ModalsProps, ModalsProvider, Onboarding, OnboardingStepLayout, ParksIcon, type PinFeature, PinIcon, Polygon, Popover, Powered, PropertiesList, PropertyCard, type PropertyCardType, PropertyTag, PropertyTypeForm, type PropertyTypeFormProps, RentBuyForm, type RentBuyFormProps, RestaurantsIcon, SchoolsIcon, SearchsmartlyLogo, ShopIcon, SlickCarousel, SliderChart, type SmartTableColumn, Snackbar, StarIcon, Table, type TableProps, Tag, type TagProps, TextField, ThemeProvider, Tooltip, TooltipTitle, Transition, WalkIcon, amenityTagConfig, currencyFormatterProperty, formatPrice, getAmenityTags, getBedroomsText, getDestination, getFormattedTime, iconsMap, minuteFormatter, pluralize, renderPlural, scrollIntoView, thresholds, titleCase, useClipboardFallback, useModal, useModalProvider, usePrevious, useResponsive, useWindowSize };
|
|
690
|
+
export { type Align, AmenityButton, type AmenityButtonProps, AmenityTags, AreasForm, BaseLayout, BeachesIcon, BedIcon, BedroomsForm, BikeIcon, type Block, BudgetForm, BusIcon, BusTagIcon, Button, COMMUTE_METHODS, CarIcon, CardImage, type Commute, CommuteForm, CommuteIcon, type CommuteLocation, CommuteMethod, type CommutePin, CopyButton, EmptyDefaultImage, ErrorBoundary, type FieldProps, FilterButton, FiltersIcon, FiltersModal, FooterButtons, GymIcon, HelperText, LazyLoadImage, LifestyleForm, type LifestyleFormProps, ListHeader, Loader, type MapProps, MapTags, MapWrapper, type MethodType, ModalBase, ModalContainer, type ModalContainerProps, ModalFooter, ModalHeader, ModalsContext, type ModalsProps, ModalsProvider, Onboarding, OnboardingStepLayout, ParksIcon, type PinFeature, PinIcon, Polygon, Popover, Powered, PropertiesList, PropertyCard, type PropertyCardType, PropertyTag, PropertyTypeForm, type PropertyTypeFormProps, RentBuyForm, type RentBuyFormProps, RestaurantsIcon, SchoolsIcon, SearchsmartlyLogo, ShopIcon, SlickCarousel, SliderChart, type SmartTableColumn, Snackbar, StarIcon, Table, type TableProps, Tag, type TagProps, TextField, ThemeProvider, Tooltip, TooltipTitle, Transition, WalkIcon, amenityTagConfig, currencyFormatterProperty, formatPrice, getAmenityTags, getBedroomsText, getDestination, getFormattedTime, iconsMap, minuteFormatter, pluralize, renderPlural, scrollIntoView, thresholds, titleCase, useClipboardFallback, useModal, useModalProvider, usePrevious, useResponsive, useWindowSize };
|