diff --git a/scripts/make-dist.mjs b/scripts/make-dist.mjs index f73a176..b5a5ea2 100644 --- a/scripts/make-dist.mjs +++ b/scripts/make-dist.mjs @@ -10,6 +10,8 @@ export { default as Button } from "../src/components/Button.astro"; export { default as Form } from "../src/components/Form.astro"; export { default as Field } from "../src/components/Field.astro"; export { default as MultiSelect } from "../src/components/MultiSelect.astro"; +export { default as ThemeSwitcher } from "../src/components/ThemeSwitcher.astro"; +export { default as ColorSwitcher } from "../src/components/ColorSwitcher.astro"; export { cn } from "../src/utils/cn.js"; `; @@ -19,6 +21,8 @@ export const Button: any; export const Form: any; export const Field: any; export const MultiSelect: any; +export const ThemeSwitcher: any; +export const ColorSwitcher: any; export function cn(...classes: Array): string; `; diff --git a/src/index.ts b/src/index.ts index a791840..3249a75 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,8 @@ export { default as Button } from "./components/Button.astro"; export { default as Form } from "./components/Form.astro"; export { default as Field } from "./components/Field.astro"; export { default as MultiSelect } from "./components/MultiSelect.astro"; +export { default as ThemeSwitcher } from "./components/ThemeSwitcher.astro"; +export { default as ColorSwitcher } from "./components/ColorSwitcher.astro"; // Utils export { cn } from "./utils/cn"; \ No newline at end of file