mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +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.
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"level5Primary": "#7c3aed",
|
|
"level5Secondary": "#a855f7",
|
|
"level5Background": "#0f172a",
|
|
"level5GradientStart": "#581c87",
|
|
"level5GradientMid": "#0f172a",
|
|
"level5GradientEnd": "#312e81",
|
|
"godBadge": "#f59e0b",
|
|
"supergodBadge": "#ef4444",
|
|
"tenantActive": "#22c55e",
|
|
"tenantInactive": "#6b7280",
|
|
"transferPending": "#f59e0b",
|
|
"transferComplete": "#22c55e",
|
|
"transferFailed": "#ef4444"
|
|
},
|
|
"spacing": {
|
|
"panelPadding": "32px",
|
|
"cardGap": "24px",
|
|
"sectionGap": "32px",
|
|
"listItemGap": "12px",
|
|
"formGap": "24px"
|
|
},
|
|
"shadows": {
|
|
"panel": "0 4px 24px rgba(124, 58, 237, 0.15)",
|
|
"card": "0 2px 12px rgba(0, 0, 0, 0.2)",
|
|
"elevated": "0 8px 32px rgba(0, 0, 0, 0.3)"
|
|
},
|
|
"borders": {
|
|
"cardRadius": "12px",
|
|
"panelRadius": "16px",
|
|
"buttonRadius": "8px"
|
|
},
|
|
"typography": {
|
|
"panelTitle": {
|
|
"fontSize": "2rem",
|
|
"fontWeight": "700",
|
|
"lineHeight": "1.2"
|
|
},
|
|
"sectionTitle": {
|
|
"fontSize": "1.25rem",
|
|
"fontWeight": "600",
|
|
"lineHeight": "1.4"
|
|
},
|
|
"levelBadge": {
|
|
"fontSize": "0.75rem",
|
|
"fontWeight": "500",
|
|
"textTransform": "uppercase",
|
|
"letterSpacing": "0.05em"
|
|
}
|
|
}
|
|
}
|