@factorialco/f0-react 1.235.1 → 1.235.2

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
 
@@ -5181,11 +5181,6 @@ declare module "@tiptap/core" {
5181
5181
  }
5182
5182
 
5183
5183
 
5184
- declare namespace Calendar {
5185
- var displayName: string;
5186
- }
5187
-
5188
-
5189
5184
  declare module "@tiptap/core" {
5190
5185
  interface Commands<ReturnType> {
5191
5186
  moodTracker: {
@@ -5193,3 +5188,8 @@ declare module "@tiptap/core" {
5193
5188
  };
5194
5189
  }
5195
5190
  }
5191
+
5192
+
5193
+ declare namespace Calendar {
5194
+ var displayName: string;
5195
+ }