@dilipod/ui 0.4.6 → 0.4.8

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.
package/src/index.ts CHANGED
@@ -274,6 +274,22 @@ export type { Scenario, ScenarioType, ScenarioSuggestion, ScenariosManagerProps
274
274
  export { ImpactMetricsForm } from './components/impact-metrics-form'
275
275
  export type { ImpactMetrics, ImpactMetricsFormProps } from './components/impact-metrics-form'
276
276
 
277
+ // Activity Timeline Components
278
+ export { ActivityTimeline } from './components/activity-timeline'
279
+ export type { Activity, ActivityTimelineProps } from './components/activity-timeline'
280
+
281
+ // Workflow Components
282
+ export { WorkflowFlow } from './components/workflow-flow'
283
+ export type { WorkflowFlowProps, N8nWorkflow as WorkflowFlowN8nWorkflow, N8nNode } from './components/workflow-flow'
284
+
285
+ export { WorkflowViewer } from './components/workflow-viewer'
286
+ export type {
287
+ WorkflowViewerProps,
288
+ N8nWorkflow,
289
+ SimWorkflow,
290
+ WorkflowTemplate
291
+ } from './components/workflow-viewer'
292
+
277
293
  // Utilities
278
294
  export { cn } from './lib/utils'
279
295