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 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>;