Skip to content

Commit

Permalink
Merge pull request #169 from abusix/pla-1490-add-datetime-local-type-…
Browse files Browse the repository at this point in the history
…to-formfieldtextinput-components

feat: added type "datetime-local" to TextInput fields
  • Loading branch information
Coderwelsch authored Nov 6, 2024
2 parents ea81b00 + 5e1804e commit 57cb1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/form-field/text-input/text-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const formFieldGroupStyles = classNames(
);

export interface TextInputProps extends React.ComponentPropsWithoutRef<"input"> {
type?: "text" | "password" | "email" | "date";
type?: "text" | "password" | "email" | "date" | "datetime-local";
autoSelect?: boolean;
ariaDescribedBy?: string;
LeftIcon?: React.ElementType;
Expand Down

0 comments on commit 57cb1ad

Please sign in to comment.