mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Created contact-form.json defining the structure and validation for the contact form. - Added package.json for form_builder package with dependencies and exports. - Implemented functions.json for form field handlers and validation functions. - Configured storybook for form_builder with various form field stories. - Established style tokens for form fields including colors and spacing. - Defined validation patterns and functions for form fields in validators.json. feat(notification_center): introduce notification components and event handling - Added ui.json for notification components including summary, toast, and list. - Created schema.json for Notification entity with fields and relations. - Implemented event handlers for notification events in handlers.json. - Established package.json for notification_center with components and scripts. - Developed functions.json for notification management and display functions. - Configured storybook for notification_center with various notification stories. - Defined style tokens for notifications including colors and spacing.
23 lines
531 B
JSON
23 lines
531 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"fieldBorder": "#d1d5db",
|
|
"fieldBorderFocus": "#3b82f6",
|
|
"fieldBorderError": "#ef4444",
|
|
"fieldBackground": "#ffffff",
|
|
"fieldText": "#1f2937",
|
|
"labelText": "#374151",
|
|
"helperText": "#6b7280",
|
|
"errorText": "#ef4444"
|
|
},
|
|
"spacing": {
|
|
"fieldPadding": "8px 12px",
|
|
"labelMargin": "0 0 4px 0",
|
|
"helperMargin": "4px 0 0 0"
|
|
},
|
|
"borderRadius": {
|
|
"field": "6px"
|
|
}
|
|
}
|