@aortl/admin-react 0.19.1 → 0.20.0

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/index.mjs CHANGED
@@ -1522,9 +1522,13 @@ function StatCard({ variant = "default", label, value, detail, trend, icon, comp
1522
1522
  }
1523
1523
  //#endregion
1524
1524
  //#region src/Timeline.tsx
1525
- function TimelineRoot({ numbered, className, ...rest }) {
1525
+ function TimelineRoot({ numbered, horizontal, className, ...rest }) {
1526
1526
  return /* @__PURE__ */ jsx("ol", {
1527
- className: cn(["timeline", numbered && "timeline-numbered"], className),
1527
+ className: cn([
1528
+ "timeline",
1529
+ numbered && "timeline-numbered",
1530
+ horizontal && "timeline-horizontal"
1531
+ ], className),
1528
1532
  ...rest
1529
1533
  });
1530
1534
  }