Skip to content

Commit

Permalink
Merge pull request #159 from abusix/pla-1423-creation-date-should-be-…
Browse files Browse the repository at this point in the history
…handled-as-a-date-in-conditions

fix(TextInput): support date as type
  • Loading branch information
pallendes authored Oct 9, 2024
2 parents c177173 + b1ee3cd commit 4614ea3
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";
type?: "text" | "password" | "email" | "date";
autoSelect?: boolean;
ariaDescribedBy?: string;
LeftIcon?: React.ElementType;
Expand Down

0 comments on commit 4614ea3

Please sign in to comment.