searchsmartly-ui 0.0.52 → 0.0.54
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 +3 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/components/forms/LifestyleForm/LifestyleForm.d.ts +1 -0
- package/dist/src/components/loader/Loader.d.ts +2 -0
- package/dist/src/components/modals/FiltersModal/FiltersModal.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -220,6 +220,7 @@ type OptionType = {
|
|
|
220
220
|
};
|
|
221
221
|
type LifestyleFormProps = Omit<StackProps, 'onChange'> & {
|
|
222
222
|
disableTitle?: boolean;
|
|
223
|
+
isFetched: boolean;
|
|
223
224
|
selected?: (string | undefined)[];
|
|
224
225
|
options?: OptionType[];
|
|
225
226
|
title?: string;
|
|
@@ -267,6 +268,7 @@ type ModalsProps = {
|
|
|
267
268
|
};
|
|
268
269
|
|
|
269
270
|
interface FormProps {
|
|
271
|
+
open?: boolean;
|
|
270
272
|
filters: Record<string, unknown>;
|
|
271
273
|
onSubmit: (val?: Record<string, unknown> | undefined) => void;
|
|
272
274
|
children: (props: {
|
|
@@ -332,6 +334,7 @@ declare const Transition: react.ForwardRefExoticComponent<TransitionProps & {
|
|
|
332
334
|
type LoaderProps = {
|
|
333
335
|
loading?: boolean;
|
|
334
336
|
color?: string;
|
|
337
|
+
sx?: SxProps$1;
|
|
335
338
|
render: () => ReactNode;
|
|
336
339
|
};
|
|
337
340
|
declare const Loader: FC<LoaderProps>;
|