@aortl/admin-react 0.19.1 → 0.20.1
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/CHANGELOG.md +15 -1
- package/dist/Select.d.ts.map +1 -1
- package/dist/Timeline.d.ts +3 -1
- package/dist/Timeline.d.ts.map +1 -1
- package/dist/Tooltip.d.ts.map +1 -1
- package/dist/admin.scoped.css +40 -0
- package/dist/index.cjs +8 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +8 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1269,6 +1269,7 @@ function SelectPopup({ className, sideOffset = 4, children, ...rest }) {
|
|
|
1269
1269
|
return /* @__PURE__ */ jsx(Select$1.Portal, {
|
|
1270
1270
|
container: portalContainer ?? void 0,
|
|
1271
1271
|
children: /* @__PURE__ */ jsx(Select$1.Positioner, {
|
|
1272
|
+
className: cn("popup-layer", void 0),
|
|
1272
1273
|
sideOffset,
|
|
1273
1274
|
alignItemWithTrigger: false,
|
|
1274
1275
|
children: /* @__PURE__ */ jsx(Select$1.Popup, {
|
|
@@ -1522,9 +1523,13 @@ function StatCard({ variant = "default", label, value, detail, trend, icon, comp
|
|
|
1522
1523
|
}
|
|
1523
1524
|
//#endregion
|
|
1524
1525
|
//#region src/Timeline.tsx
|
|
1525
|
-
function TimelineRoot({ numbered, className, ...rest }) {
|
|
1526
|
+
function TimelineRoot({ numbered, horizontal, className, ...rest }) {
|
|
1526
1527
|
return /* @__PURE__ */ jsx("ol", {
|
|
1527
|
-
className: cn([
|
|
1528
|
+
className: cn([
|
|
1529
|
+
"timeline",
|
|
1530
|
+
numbered && "timeline-numbered",
|
|
1531
|
+
horizontal && "timeline-horizontal"
|
|
1532
|
+
], className),
|
|
1528
1533
|
...rest
|
|
1529
1534
|
});
|
|
1530
1535
|
}
|
|
@@ -2471,6 +2476,7 @@ function TooltipPopup({ size = "md", side = "top", align = "center", sideOffset
|
|
|
2471
2476
|
return /* @__PURE__ */ jsx(Tooltip$1.Portal, {
|
|
2472
2477
|
container: portalContainer ?? void 0,
|
|
2473
2478
|
children: /* @__PURE__ */ jsx(Tooltip$1.Positioner, {
|
|
2479
|
+
className: cn("popup-layer", void 0),
|
|
2474
2480
|
sideOffset,
|
|
2475
2481
|
side,
|
|
2476
2482
|
align,
|