mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-storybook.schema.json",
|
|
"featured": false,
|
|
"title": "Data Table",
|
|
"description": "Advanced data table with sorting, filtering, and pagination",
|
|
"stories": [
|
|
{
|
|
"name": "DataGrid",
|
|
"render": "component",
|
|
"description": "Full-featured data grid",
|
|
"args": {
|
|
"sortable": true,
|
|
"filterable": true,
|
|
"pagination": true,
|
|
"selection": true,
|
|
"exportable": true
|
|
}
|
|
},
|
|
{
|
|
"name": "SimpleTable",
|
|
"render": "component",
|
|
"description": "Basic table without features",
|
|
"args": {
|
|
"sortable": false,
|
|
"filterable": false,
|
|
"pagination": false
|
|
}
|
|
}
|
|
],
|
|
"renders": {
|
|
"component": {
|
|
"description": "Data grid component showcase",
|
|
"featured": true
|
|
}
|
|
},
|
|
"defaultContext": {
|
|
"user": {
|
|
"level": 1
|
|
}
|
|
},
|
|
"scripts": {
|
|
"renderFunctions": ["component"],
|
|
"ignoredScripts": ["tests"]
|
|
},
|
|
"parameters": {
|
|
"layout": "fullscreen"
|
|
}
|
|
}
|