docs: add documentation for DataTable (#11095)

* docs: add documentation for DataTable

* update package versions
This commit is contained in:
Shahed Nasser
2025-01-27 11:04:46 +02:00
committed by GitHub
parent 956a50e934
commit c8fc5edadd
55 changed files with 3453 additions and 1549 deletions
@@ -83,15 +83,75 @@ export const ExampleRegistry: Record<string, ExampleType> = {
file: "src/examples/badge-large.tsx",
},
"badge-rounded-full": {
name: "badge-rounded",
name: "badge-rounded-full",
component: React.lazy(async () => import("@/examples/badge-rounded-full")),
file: "src/examples/badge-rounded-full.tsx",
},
"badge-rounded-base": {
name: "badge-rounded",
name: "badge-rounded-base",
component: React.lazy(async () => import("@/examples/badge-rounded-base")),
file: "src/examples/badge-rounded-base.tsx",
},
"data-table-demo": {
name: "data-table-demo",
component: React.lazy(async () => import("@/examples/data-table-demo")),
file: "src/examples/data-table-demo.tsx",
},
"data-table-custom-cell": {
name: "data-table-custom-cell",
component: React.lazy(
async () => import("@/examples/data-table-custom-cell")
),
file: "src/examples/data-table-custom-cell.tsx",
},
"data-table-search": {
name: "data-table-search",
component: React.lazy(async () => import("@/examples/data-table-search")),
file: "src/examples/data-table-search.tsx",
},
"data-table-pagination": {
name: "data-table-pagination",
component: React.lazy(
async () => import("@/examples/data-table-pagination")
),
file: "src/examples/data-table-pagination.tsx",
},
"data-table-filters": {
name: "data-table-filters",
component: React.lazy(async () => import("@/examples/data-table-filters")),
file: "src/examples/data-table-filters.tsx",
},
"data-table-filters-date": {
name: "data-table-filters-date",
component: React.lazy(
async () => import("@/examples/data-table-filters-date")
),
file: "src/examples/data-table-filters-date.tsx",
},
"data-table-filters-initial": {
name: "data-table-filters-initial",
component: React.lazy(
async () => import("@/examples/data-table-filters-initial")
),
file: "src/examples/data-table-filters-initial.tsx",
},
"data-table-sorting": {
name: "data-table-sorting",
component: React.lazy(async () => import("@/examples/data-table-sorting")),
file: "src/examples/data-table-sorting.tsx",
},
"data-table-sorting-initial": {
name: "data-table-sorting-initial",
component: React.lazy(
async () => import("@/examples/data-table-sorting-initial")
),
file: "src/examples/data-table-sorting-initial.tsx",
},
"data-table-commands": {
name: "data-table-commands",
component: React.lazy(async () => import("@/examples/data-table-commands")),
file: "src/examples/data-table-commands.tsx",
},
"icon-badge-demo": {
name: "icon-badge-demo",
component: React.lazy(async () => import("@/examples/icon-badge-demo")),