mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 17:24: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.
28 lines
737 B
JSON
28 lines
737 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"analyzerPrimary": "#6366f1",
|
|
"analyzerSecondary": "#8b5cf6",
|
|
"uploadZoneBorder": "#d1d5db",
|
|
"uploadZoneHover": "#e5e7eb",
|
|
"resultSuccess": "#22c55e",
|
|
"resultWarning": "#f59e0b",
|
|
"resultError": "#ef4444",
|
|
"infoLabel": "#6b7280",
|
|
"infoValue": "#1f2937"
|
|
},
|
|
"spacing": {
|
|
"containerPadding": "24px",
|
|
"cardPadding": "16px",
|
|
"sectionGap": "16px",
|
|
"buttonGroupGap": "8px",
|
|
"gridGap": "16px"
|
|
},
|
|
"shadows": {
|
|
"card": "0 2px 8px rgba(0, 0, 0, 0.1)",
|
|
"uploadZone": "0 1px 4px rgba(0, 0, 0, 0.05)",
|
|
"imagePreview": "0 4px 12px rgba(0, 0, 0, 0.15)"
|
|
}
|
|
}
|