Skip to content

Commit

Permalink
fix(flowbite): type imports v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavPetrik committed Apr 26, 2024
1 parent 2c9a7e6 commit 01368d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/datepicker-field/DatepickerField.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DateFieldProps, useDateFieldProps } from "@form-atoms/field";
import { Datepicker, DatepickerProps } from "flowbite-react";
import { DatepickerRef } from "flowbite-react/lib/esm/components/Datepicker/Datepicker";
import type { DatepickerRef } from "flowbite-react/dist/types/components/Datepicker/Datepicker";
import { useEffect, useRef } from "react";

import { FlowbiteField } from "../field";
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useFieldError.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FlowbiteStateColors } from "flowbite-react/lib/esm/components/Flowbite/FlowbiteTheme";
import type { FlowbiteStateColors } from "flowbite-react";
import { FieldAtom, useFieldState } from "form-atoms";

export type InputColors = (keyof FlowbiteStateColors)[];
Expand Down

0 comments on commit 01368d6

Please sign in to comment.