searchsmartly-ui 0.0.50 → 0.0.51

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;