mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04: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.
28 lines
686 B
JSON
28 lines
686 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"stepBorder": "#dee2e6",
|
|
"stepBackground": "rgba(255, 255, 255, 0.6)",
|
|
"stepNumberBg": "#e3f2fd",
|
|
"stepNumberText": "#1976d2",
|
|
"mediaPreviewBg": "#1a1a1a",
|
|
"mediaPlaceholderBg": "#f5f5f5"
|
|
},
|
|
"spacing": {
|
|
"stepGap": "16px",
|
|
"stepPadding": "16px",
|
|
"mediaPreviewPadding": "12px",
|
|
"sectionSpacing": "24px"
|
|
},
|
|
"shadows": {
|
|
"stepCard": "0 1px 4px rgba(0, 0, 0, 0.08)",
|
|
"mediaPreview": "0 2px 8px rgba(0, 0, 0, 0.15)"
|
|
},
|
|
"borderRadius": {
|
|
"stepCard": "8px",
|
|
"mediaPreview": "8px",
|
|
"badge": "4px"
|
|
}
|
|
}
|