mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-28 07:44:56 +00:00
- Introduced `CodegenStudio`, `TemplateSelector`, and `PackageGenerator` components with detailed props and rendering logic. - Created UI styles and tokens for consistent theming across components. - Implemented permissions for template viewing, creation, and code generation. - Added functions for lifecycle events, blueprint building, and package generation. - Developed storybook stories for visual testing and documentation of components. feat(config_summary): implement configuration summary components and styles - Added `ConfigSummary`, `SummaryRow`, and related components for displaying system stats. - Defined permissions for viewing and exporting configuration summaries. - Created functions for rendering and aggregating summary data. - Established storybook stories for showcasing summary components and their variations. - Introduced styles and tokens for consistent UI presentation across summary components.
37 lines
860 B
JSON
37 lines
860 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"summaryBorder": "#dee2e6",
|
|
"labelText": "#6c757d",
|
|
"valueText": "#212529",
|
|
"headerBackground": "rgba(0, 0, 0, 0.02)",
|
|
"rowHover": "rgba(0, 0, 0, 0.04)",
|
|
"divider": "#e9ecef"
|
|
},
|
|
"spacing": {
|
|
"cardPadding": "16px",
|
|
"headerPadding": "12px 16px",
|
|
"rowPadding": "8px 0",
|
|
"labelWidth": "40%",
|
|
"gridGap": "8px",
|
|
"stackGap": "16px"
|
|
},
|
|
"shadows": {
|
|
"card": "0 1px 3px rgba(0, 0, 0, 0.08)",
|
|
"cardHover": "0 2px 6px rgba(0, 0, 0, 0.12)"
|
|
},
|
|
"typography": {
|
|
"titleSize": "1rem",
|
|
"titleWeight": "600",
|
|
"labelSize": "0.875rem",
|
|
"labelWeight": "500",
|
|
"valueSize": "0.875rem",
|
|
"valueWeight": "600"
|
|
},
|
|
"borderRadius": {
|
|
"card": "8px",
|
|
"row": "4px"
|
|
}
|
|
}
|