tailwind-ux-kit 1.0.41 → 1.0.43

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.
@@ -5,7 +5,7 @@ type Status = "default" | "error" | "warning" | "success";
5
5
  type FloatingLabelStyle = "filled" | "outlined" | "standard";
6
6
  type IconPosition = "start" | "end" | "left" | "right";
7
7
  interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "size"> {
8
- label?: string;
8
+ label?: string | React.ReactNode;
9
9
  id?: string;
10
10
  inputSize?: InputSize;
11
11
  shape?: Shape;
@@ -3,5 +3,5 @@ type ModalActions = {
3
3
  closeModal: (id: string) => void;
4
4
  };
5
5
  export declare const ModalActionContext: import('react').Context<ModalActions | null>;
6
- export declare const useModalActions: () => ModalActions | null;
6
+ export declare const useModalActions: () => ModalActions;
7
7
  export {};