mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 10:14:52 +00:00
6992c3a650
- 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.
25 lines
628 B
JSON
25 lines
628 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"smtpSuccess": "#28a745",
|
|
"smtpError": "#dc3545",
|
|
"smtpWarning": "#ffc107",
|
|
"smtpInfo": "#17a2b8",
|
|
"smtpSecure": "#28a745",
|
|
"smtpInsecure": "#dc3545",
|
|
"smtpCardBorder": "#dee2e6",
|
|
"smtpFormBackground": "#f8f9fa"
|
|
},
|
|
"spacing": {
|
|
"smtpFormGap": "16px",
|
|
"smtpSectionGap": "24px",
|
|
"smtpCardPadding": "24px",
|
|
"smtpFieldMargin": "12px"
|
|
},
|
|
"shadows": {
|
|
"smtpCard": "0 2px 8px rgba(0, 0, 0, 0.1)",
|
|
"smtpTestPanel": "0 1px 4px rgba(0, 0, 0, 0.08)"
|
|
}
|
|
}
|