mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +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.
32 lines
908 B
JSON
32 lines
908 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"fieldTypePrimary": "#1976d2",
|
|
"fieldTypeSecondary": "#9c27b0",
|
|
"fieldTypeInfo": "#0288d1",
|
|
"constraintPrimaryKey": "#1976d2",
|
|
"constraintForeignKey": "#ed6c02",
|
|
"constraintUnique": "#9c27b0",
|
|
"constraintNullable": "#757575",
|
|
"validationError": "#d32f2f",
|
|
"validationWarning": "#ed6c02",
|
|
"validationSuccess": "#2e7d32",
|
|
"tableBorder": "#e0e0e0",
|
|
"tableHeaderBg": "#f5f5f5",
|
|
"columnSelected": "#e3f2fd"
|
|
},
|
|
"spacing": {
|
|
"editorPadding": "24px",
|
|
"sectionPadding": "16px",
|
|
"tableListWidth": "280px",
|
|
"columnRowGap": "8px",
|
|
"chipGap": "4px"
|
|
},
|
|
"shadows": {
|
|
"editor": "0 2px 8px rgba(0, 0, 0, 0.1)",
|
|
"columnCard": "0 1px 3px rgba(0, 0, 0, 0.08)",
|
|
"dialogOverlay": "0 4px 20px rgba(0, 0, 0, 0.15)"
|
|
}
|
|
}
|