@tenorlab/react-dashboard 1.2.1 → 1.2.2

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.
@@ -39,6 +39,13 @@ export declare const createStaticEntry: <TFrameworkComponentType = any>(key: str
39
39
  * This helps keep the catalog registration clean
40
40
  */
41
41
  export declare const createDynamicEntry: (key: string, loader: TWidgetFactoryBase, metaData: TWidgetMetaInfoBase) => [string, IDynamicWidgetCatalogEntryBase];
42
+ /**
43
+ * Enhanced helper to derive key and title from widget file paths.
44
+ * Handles:
45
+ * - widget-revenue-trends1 -> WidgetRevenueTrends1
46
+ * - widget-with-extraprops -> WidgetWithExtraprops
47
+ * - widget-revenue-trends-async -> WidgetRevenueTrendsAsync
48
+ */
42
49
  export declare const parseKeyAndTitleFromFilePath: (path: string) => {
43
50
  key: TDashboardWidgetKey;
44
51
  title: string;