mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
72 lines
1.5 KiB
JSON
72 lines
1.5 KiB
JSON
{
|
|
"packageId": "data_table",
|
|
"name": "Data Table",
|
|
"version": "1.0.0",
|
|
"description": "Data table components",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "ui",
|
|
"dependencies": [],
|
|
"devDependencies": [
|
|
"lua_test"
|
|
],
|
|
"exports": {
|
|
"components": [
|
|
"DataGrid"
|
|
]
|
|
},
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua",
|
|
"tests/components.test.lua",
|
|
"tests/filtering.test.lua",
|
|
"tests/sorting.test.lua",
|
|
"tests/pagination.test.lua",
|
|
"tests/selection.test.lua",
|
|
"tests/export.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/metadata.cases.json",
|
|
"tests/components.cases.json",
|
|
"tests/filtering.cases.json",
|
|
"tests/sorting.cases.json",
|
|
"tests/pagination.cases.json",
|
|
"tests/selection.cases.json",
|
|
"tests/export.cases.json"
|
|
]
|
|
},
|
|
"minLevel": 1,
|
|
"primary": false,
|
|
"permissions": {
|
|
"datatable.export": {
|
|
"minLevel": 2,
|
|
"description": "Export table data"
|
|
},
|
|
"datatable.view": {
|
|
"minLevel": 1,
|
|
"description": "View data tables"
|
|
},
|
|
"datatable.filter": {
|
|
"minLevel": 1,
|
|
"description": "Filter table data",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "DataGrid",
|
|
"render": "component"
|
|
}
|
|
]
|
|
}
|
|
}
|