From ff6f4c6f9a0d1deecb2dcaa79d15586cb3987860 Mon Sep 17 00:00:00 2001 From: VictoriaBeilstenEdmands Date: Tue, 3 Jun 2025 09:54:54 +0100 Subject: [PATCH] Export diamond utils --- src/components/controls/VisitInput.tsx | 2 +- src/index.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/controls/VisitInput.tsx b/src/components/controls/VisitInput.tsx index ea43cd4..ba0997d 100644 --- a/src/components/controls/VisitInput.tsx +++ b/src/components/controls/VisitInput.tsx @@ -114,4 +114,4 @@ const VisitInput: React.FC = ({ }; export { VisitInput, VisitInputText }; -export type { Visit, VisitInputTextProps, VisitInputProps }; +export type { VisitInputTextProps, VisitInputProps }; diff --git a/src/index.ts b/src/index.ts index 9545691..a274147 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,3 +15,6 @@ export * from "./themes/BaseTheme"; export * from "./themes/GenericTheme"; export * from "./themes/DiamondTheme"; export * from "./themes/ThemeProvider"; + +// utils +export * from "./utils/diamond";