your-ai-workflow-firebase-os 1.2.22 → 1.2.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,6 +20,8 @@ export interface FirebaseOSProps {
20
20
  /** Component overrides for the hybrid template architecture */
21
21
  /** Custom page components mapped by route (e.g. { "/focus": FocusTimerPage }) */
22
22
  customRoutes?: Record<string, React.ComponentType<any>>;
23
+ /** Auto-discovered microcomponents mapped by parsedTabName (e.g. { timer: TimerContent }) */
24
+ microcomponents?: Record<string, React.ComponentType<any>>;
23
25
  /** Component overrides for the hybrid template architecture */
24
26
  components?: {
25
27
  Home?: React.ComponentType<any>;
@@ -13,6 +13,8 @@ export interface FirebaseOSConfig {
13
13
  onAuthChange?: (user: any) => void;
14
14
  themeConfig?: any;
15
15
  customRoutes?: Record<string, React.ComponentType<any>>;
16
+ /** Auto-discovered microcomponents mapped by parsedTabName (e.g. { timer: TimerContent }) */
17
+ microcomponents?: Record<string, React.ComponentType<any>>;
16
18
  components?: {
17
19
  Home?: React.ComponentType<any>;
18
20
  TemplateBoard?: React.ComponentType<any>;