mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 08:14:57 +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.
20 lines
493 B
JSON
20 lines
493 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/package-styles.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"colors": {
|
|
"notificationInfo": "#3b82f6",
|
|
"notificationSuccess": "#10b981",
|
|
"notificationWarning": "#f59e0b",
|
|
"notificationError": "#ef4444",
|
|
"notificationUnread": "#6366f1",
|
|
"notificationRead": "#9ca3af"
|
|
},
|
|
"spacing": {
|
|
"toastPadding": "12px 16px",
|
|
"notificationItem": "12px"
|
|
},
|
|
"shadows": {
|
|
"toast": "0 4px 12px rgba(0, 0, 0, 0.15)"
|
|
}
|
|
}
|