mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
- Created package.json for ui_pages with dependencies and exports. - Added roles.json for access permissions related to UI pages. - Implemented functions.json for managing UI pages and routing. - Developed stories.json for Storybook showcasing UI pages components. - Defined styles tokens for UI pages including colors, spacing, and typography. feat(ui_permissions): Introduce UI Permissions package for access control - Created package.json for ui_permissions with permission utilities. - Added roles.json defining permissions for a 6-level access control system. - Implemented functions.json for permission checking and level management. - Developed stories.json for Storybook showcasing permission-related components. - Defined styles tokens for UI permissions including colors and spacing.
40 lines
965 B
JSON
40 lines
965 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/json-script.schema.json",
|
|
"schemaVersion": "2.2.0",
|
|
"package": "ui_intro",
|
|
"description": "Intro section initialization and rendering functions",
|
|
"functions": [
|
|
{
|
|
"id": "intro_init",
|
|
"name": "onInstall",
|
|
"exported": true,
|
|
"description": "Package lifecycle handler for installation",
|
|
"category": "lifecycle",
|
|
"luaScript": "init.lua"
|
|
},
|
|
{
|
|
"id": "intro_render",
|
|
"name": "render",
|
|
"exported": true,
|
|
"description": "Renders intro section component",
|
|
"category": "ui",
|
|
"luaScript": "render.lua"
|
|
},
|
|
{
|
|
"id": "intro_validate_props",
|
|
"name": "validateProps",
|
|
"exported": true,
|
|
"description": "Validates intro section props",
|
|
"category": "validation",
|
|
"luaScript": "render.lua"
|
|
}
|
|
],
|
|
"exports": {
|
|
"functions": [
|
|
"onInstall",
|
|
"render",
|
|
"validateProps"
|
|
]
|
|
}
|
|
}
|