searchsmartly-ui 0.0.158 → 0.0.159
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 -6
- package/dist/index.esm.js +7 -17
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -17
- package/dist/index.js.map +1 -1
- package/dist/src/components/ExpandableSection/styles.d.ts +3 -4
- package/dist/src/components/Map/helpers.d.ts +1 -1
- package/dist/src/components/Map/styles.d.ts +5 -6
- package/dist/src/components/SlickCarousel/styles.d.ts +0 -1
- package/dist/src/components/buttons/Button/Button.d.ts +3 -4
- package/dist/src/components/fields/GoogleAutocomplete/GoogleAutocomplete.d.ts +1 -2
- package/dist/src/hooks/useDimensions.d.ts +0 -1
- package/package.json +47 -47
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
/// <reference types="google.maps" />
|
|
3
1
|
import * as _emotion_styled from '@emotion/styled';
|
|
4
2
|
import * as _mui_system from '@mui/system';
|
|
5
3
|
import { SxProps as SxProps$1 } from '@mui/system';
|
|
@@ -26,11 +24,11 @@ import { GalleryProps } from 'react-photoswipe-gallery/src/types';
|
|
|
26
24
|
import { ThemeProviderProps } from '@mui/material/styles/ThemeProvider';
|
|
27
25
|
|
|
28
26
|
declare const Button: _emotion_styled.StyledComponent<_mui_material.ButtonOwnProps & Omit<_mui_material.ButtonBaseOwnProps, "classes"> & _mui_material_OverridableComponent.CommonProps & Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
29
|
-
ref?: ((instance: HTMLButtonElement | null) => void) | react.RefObject<HTMLButtonElement> | null | undefined;
|
|
27
|
+
ref?: ((instance: HTMLButtonElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLButtonElement> | null | undefined;
|
|
30
28
|
}, "className" | "style" | "classes" | "action" | "centerRipple" | "children" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "color" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "href" | "size" | "startIcon" | "variant"> & _mui_system.MUIStyledCommonProps<_mui_material.Theme> & {
|
|
31
|
-
component?:
|
|
29
|
+
component?: React.ElementType;
|
|
32
30
|
} & {
|
|
33
|
-
shape?: "lrect" | "mrect" | "srect" | "square"
|
|
31
|
+
shape?: "lrect" | "mrect" | "srect" | "square";
|
|
34
32
|
}, {}, {}>;
|
|
35
33
|
|
|
36
34
|
type CopyButton = {
|
|
@@ -704,7 +702,7 @@ interface GooglePlacesAutocompleteProps {
|
|
|
704
702
|
renderInput?: (params: AutocompleteRenderInputParams) => react.ReactNode;
|
|
705
703
|
renderOption?: (props: react.HTMLAttributes<HTMLLIElement>, option: AutocompletePrediction) => react.ReactNode;
|
|
706
704
|
}
|
|
707
|
-
declare const GoogleAutocomplete: react.ForwardRefExoticComponent<
|
|
705
|
+
declare const GoogleAutocomplete: react.ForwardRefExoticComponent<react.RefAttributes<unknown>>;
|
|
708
706
|
|
|
709
707
|
interface Block {
|
|
710
708
|
background: string;
|