Files
metabuilder/packages/data_table/seed/components.json
2025-12-30 13:34:35 +00:00

44 lines
1.1 KiB
JSON

[
{
"id": "data_grid",
"type": "data_grid",
"name": "Data Grid",
"description": "Advanced data table with sorting, filtering, pagination",
"props": {
"columns": [],
"data": [],
"sortable": true,
"filterable": true,
"pagination": true,
"pageSize": 10,
"selection": false
},
"layout": {
"type": "Box",
"props": { "className": "space-y-4" },
"children": [
{
"type": "Table",
"props": {
"columns": "{{columns}}",
"data": "{{data}}",
"sortable": "{{sortable}}",
"filterable": "{{filterable}}",
"pagination": "{{pagination}}",
"pageSize": "{{pageSize}}",
"selection": "{{selection}}"
}
}
]
},
"scripts": {
"init": "init.initialize",
"sort": "sorting.sortByColumn",
"filter": "filtering.applyFilters",
"paginate": "pagination.changePage",
"export": "export.exportData",
"select": "selection.toggleRow"
}
}
]