diff --git a/scripts/make-dist.mjs b/scripts/make-dist.mjs index 972eacc..e68f726 100644 --- a/scripts/make-dist.mjs +++ b/scripts/make-dist.mjs @@ -32,7 +32,7 @@ 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"; +export { Column, TableProps } from "../src/types/table/types.js"; `; const indexDts = `/* Auto-generated types (lightweight) */ diff --git a/src/components/Table.astro b/src/components/Table.astro index 847719d..9240362 100644 --- a/src/components/Table.astro +++ b/src/components/Table.astro @@ -7,6 +7,7 @@ const { selectable = false, search = false, striped = false, + pagignations = true, pageSize = 10, fetchData, columnsRendererKey, @@ -31,7 +32,7 @@ const id = `table-${Math.random().toString(36).slice(2, 9)}`;