@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/dist/components/activity-timeline.d.ts +44 -0
- package/dist/components/activity-timeline.d.ts.map +1 -0
- package/dist/components/workflow-flow.d.ts +27 -0
- package/dist/components/workflow-flow.d.ts.map +1 -0
- package/dist/components/workflow-viewer.d.ts +138 -0
- package/dist/components/workflow-viewer.d.ts.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1018 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1018 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/components/activity-timeline.tsx +208 -0
- package/src/components/impact-metrics-form.tsx +1 -1
- package/src/components/workflow-flow.tsx +277 -0
- package/src/components/workflow-viewer.tsx +1032 -0
- package/src/index.ts +16 -0
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
|
|