@factorialco/f0-react 1.235.1 → 1.235.3

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.
@@ -2695,7 +2695,7 @@ declare const inputFieldStatus: readonly ["default", "warning", "info", "error"]
2695
2695
 
2696
2696
  declare type InputFieldStatusType = (typeof inputFieldStatus)[number];
2697
2697
 
2698
- export declare type InputProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref"> & Pick<InputFieldProps<T>, "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint"> & {
2698
+ export declare type InputProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref"> & Pick<InputFieldProps<T>, "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint"> & {
2699
2699
  type?: Exclude<HTMLInputTypeAttribute, "number">;
2700
2700
  };
2701
2701
 
@@ -4223,7 +4223,7 @@ export declare type SelectProps<T extends string, R = unknown> = {
4223
4223
  mapOptions?: never;
4224
4224
  searchFn?: (option: SelectItemProps<T, unknown>, search?: string) => boolean | undefined;
4225
4225
  options: SelectItemProps<T, unknown>[];
4226
- }) & Pick<InputFieldProps<T>, "loading" | "hideLabel" | "clearable" | "labelIcon" | "size" | "label" | "icon" | "placeholder" | "disabled" | "name" | "error" | "status" | "hint">;
4226
+ }) & Pick<InputFieldProps<T>, "required" | "loading" | "hideLabel" | "clearable" | "labelIcon" | "size" | "label" | "icon" | "placeholder" | "disabled" | "name" | "error" | "status" | "hint">;
4227
4227
 
4228
4228
  export declare const selectSizes: readonly ["sm", "md"];
4229
4229