New Changes with Table Component
This commit is contained in:
@@ -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 | number | false | null | undefined>): string;
|
||||
export type { Column, TableProps } from "../src/types/table/types.js";
|
||||
`;
|
||||
|
||||
fs.writeFileSync(path.join(distDir, "index.js"), indexJs, "utf8");
|
||||
|
||||
Reference in New Issue
Block a user