mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +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.
44 lines
881 B
JSON
44 lines
881 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"introEyebrow": "primary.main",
|
|
"introTitle": "text.primary",
|
|
"introDescription": "text.secondary",
|
|
"introMediaBg": "grey.100"
|
|
},
|
|
"spacing": {
|
|
"introSection": "64px",
|
|
"introSectionCompact": "32px",
|
|
"introContent": "32px",
|
|
"introCta": "16px"
|
|
},
|
|
"shadows": {
|
|
"introMedia": "0 4px 12px rgba(0, 0, 0, 0.1)"
|
|
},
|
|
"typography": {
|
|
"eyebrow": {
|
|
"fontWeight": 600,
|
|
"letterSpacing": "2px"
|
|
},
|
|
"title": {
|
|
"fontWeight": 700,
|
|
"lineHeight": 1.2
|
|
},
|
|
"description": {
|
|
"lineHeight": 1.6
|
|
}
|
|
},
|
|
"breakpoints": {
|
|
"titleSize": {
|
|
"xs": "2.5rem",
|
|
"md": "3.5rem",
|
|
"lg": "4rem"
|
|
},
|
|
"descriptionSize": {
|
|
"xs": "1rem",
|
|
"md": "1.25rem"
|
|
}
|
|
}
|
|
}
|