searchsmartly-ui 0.0.50 → 0.0.52

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
@@ -218,13 +218,13 @@ type OptionType = {
218
218
  slug: string;
219
219
  icon: ComponentType<SvgIconProps> | string;
220
220
  };
221
- type LifestyleFormProps = {
221
+ type LifestyleFormProps = Omit<StackProps, 'onChange'> & {
222
222
  disableTitle?: boolean;
223
223
  selected?: (string | undefined)[];
224
224
  options?: OptionType[];
225
225
  title?: string;
226
226
  onChange: (val: (string | undefined)[]) => void;
227
- } & StackProps;
227
+ };
228
228
  declare const LifestyleForm: FC<LifestyleFormProps>;
229
229
 
230
230
  declare const StarIcon: ({ sx, ...props }: SvgIconProps) => react_jsx_runtime.JSX.Element;
@@ -277,6 +277,7 @@ interface FiltersModalProps extends ModalsProps {
277
277
  payload: {
278
278
  Form: FC<FormProps>;
279
279
  filters: Record<string, unknown>;
280
+ [key: string]: unknown;
280
281
  };
281
282
  }
282
283
  declare const FiltersModal: FC<FiltersModalProps>;