From a54b878d0e19f72ae79a46e0c1896909b5dc9a4d Mon Sep 17 00:00:00 2001 From: Ajay Ghanwat Date: Mon, 27 Oct 2025 13:08:33 +0530 Subject: [PATCH] New Changes with Table Component --- scripts/make-dist.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/make-dist.mjs b/scripts/make-dist.mjs index f472537..972eacc 100644 --- a/scripts/make-dist.mjs +++ b/scripts/make-dist.mjs @@ -28,9 +28,11 @@ export { default as PasswordField } from "../src/components/PasswordField.astro" export { default as ThemeSwitcher } from "../src/components/ThemeSwitcher.astro"; export { default as TimePicker } from "../src/components/TimePicker.astro"; export { default as Tooltip } from "../src/components/Tooltip.astro"; +export { default as Table } from "../src/components/Table.astro"; export { default as VideoPlayer } from "../src/components/VideoPlayer.astro"; export { default as WebRtcPlayer } from "../src/components/WebRtcPlayer.astro"; export { cn } from "../src/utils/cn.js"; +export type { Column, TableProps } from "../src/types/table/types.js"; `; const indexDts = `/* Auto-generated types (lightweight) */ @@ -56,10 +58,12 @@ export const Panel: any; export const PasswordField: any; export const ThemeSwitcher: any; export const TimePicker: any; +export const Table: any; export const Tooltip: any; export const VideoPlayer: any; export const WebRtcPlayer: any; export function cn(...classes: Array): string; +export type { Column, TableProps } from "../src/types/table/types.js"; `; fs.writeFileSync(path.join(distDir, "index.js"), indexJs, "utf8");