@minimalstuff/ui 0.0.24 → 0.0.25

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
@@ -223,14 +223,13 @@ declare type ScreenType =
223
223
  | 'large_desktop'
224
224
  | 'xlarge_desktop';
225
225
 
226
- export declare function Selector({ name, label, value, options, onChangeCallback, formatOptionLabel, required, ...props }: SelectorProps): JSX.Element;
226
+ export declare function Selector({ name, label, options, onChangeCallback, formatOptionLabel, required, ...props }: SelectorProps): JSX.Element;
227
227
 
228
228
  declare interface SelectorProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
229
229
  label: string;
230
230
  name: string;
231
231
  errors?: string[];
232
232
  options: OptionsOrGroups<Option_2, GroupBase<Option_2>>;
233
- value: number | string;
234
233
  onChangeCallback?: (value: number | string) => void;
235
234
  formatOptionLabel?: (data: Option_2, formatOptionLabelMeta: FormatOptionLabelMeta<Option_2>) => ReactNode;
236
235
  }