mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +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.
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"level3Primary": "oklch(0.65 0.18 35)",
|
|
"level3Accent": "oklch(0.70 0.20 40)",
|
|
"level3Warning": "#f97316",
|
|
"level3WarningDark": "#ea580c",
|
|
"level3Danger": "#dc3545",
|
|
"level3Success": "#28a745",
|
|
"statCardBg": "var(--color-card)",
|
|
"statCardBorder": "var(--color-border)",
|
|
"tableRowHover": "var(--color-muted)",
|
|
"adminNavBg": "var(--color-sidebar)",
|
|
"adminNavBorder": "var(--color-border)"
|
|
},
|
|
"spacing": {
|
|
"unit": "0.25rem",
|
|
"panelPadding": "2rem",
|
|
"panelPaddingSm": "1.5rem",
|
|
"panelPaddingXs": "1rem",
|
|
"statCardPadding": "1.5rem",
|
|
"statsGridGap": "1.5rem",
|
|
"searchInputPaddingLeft": "2.25rem",
|
|
"logoSize": "32px"
|
|
},
|
|
"shadows": {
|
|
"statCard": "0 1px 4px rgba(0, 0, 0, 0.08)",
|
|
"modelBrowser": "0 2px 8px rgba(0, 0, 0, 0.1)",
|
|
"adminPanel": "0 1px 3px rgba(0, 0, 0, 0.1)"
|
|
},
|
|
"typography": {
|
|
"adminTitleWeight": 700,
|
|
"adminTitleSize": "1.875rem",
|
|
"adminTitleSizeMd": "1.875rem"
|
|
},
|
|
"borders": {
|
|
"cardRadius": "0.5rem",
|
|
"logoRadius": "0.5rem",
|
|
"statCardBorderWidth": "1px"
|
|
},
|
|
"transitions": {
|
|
"tableRowHover": "background-color 150ms ease-in-out"
|
|
},
|
|
"breakpoints": {
|
|
"mobile": "768px",
|
|
"desktop": "1024px",
|
|
"maxContent": "1536px"
|
|
},
|
|
"gradients": {
|
|
"adminLogo": "linear-gradient(135deg, #f97316 0%, #ea580c 100%)"
|
|
}
|
|
}
|