@mastra/playground-ui 30.0.1-alpha.0 → 30.0.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/dist/index.css CHANGED
@@ -790,6 +790,14 @@
790
790
  z-index: 50;
791
791
  }
792
792
 
793
+ .z-500 {
794
+ z-index: 500;
795
+ }
796
+
797
+ .z-1000 {
798
+ z-index: 1000;
799
+ }
800
+
793
801
  .z-\[1\] {
794
802
  z-index: 1;
795
803
  }
package/dist/index.es.js CHANGED
@@ -6698,7 +6698,7 @@ const itemClass$1 = cn(
6698
6698
  "[&>svg]:w-[1.1em] [&>svg]:h-[1.1em] [&>svg]:opacity-60 [&:hover>svg]:opacity-100"
6699
6699
  );
6700
6700
  const popupClass$1 = cn(
6701
- "bg-surface3 text-neutral4 z-50 min-w-44 max-h-[min(20rem,var(--available-height))] overflow-x-hidden overflow-y-auto rounded-xl border border-border1 p-1 shadow-dialog origin-[var(--transform-origin)] outline-none",
6701
+ "bg-surface3 text-neutral4 z-1000 min-w-44 max-h-[min(20rem,var(--available-height))] overflow-x-hidden overflow-y-auto rounded-xl border border-border1 p-1 shadow-dialog origin-[var(--transform-origin)] outline-none",
6702
6702
  "data-[open]:animate-in data-[closed]:animate-out data-[closed]:fade-out-0 data-[open]:fade-in-0 data-[closed]:zoom-out-95 data-[open]:zoom-in-95",
6703
6703
  "data-[side=bottom]:slide-in-from-top-1 data-[side=left]:slide-in-from-right-1 data-[side=right]:slide-in-from-left-1 data-[side=top]:slide-in-from-bottom-1"
6704
6704
  );
@@ -6711,7 +6711,7 @@ const ContextMenuContent = React.forwardRef(
6711
6711
  alignOffset,
6712
6712
  side,
6713
6713
  sideOffset,
6714
- className: "z-50 outline-none",
6714
+ className: "isolate z-1000 outline-none",
6715
6715
  children: /* @__PURE__ */ jsx(
6716
6716
  ContextMenu$1.Popup,
6717
6717
  {
@@ -6832,7 +6832,7 @@ const ContextMenuSubContent = React.forwardRef(
6832
6832
  alignOffset,
6833
6833
  side,
6834
6834
  sideOffset,
6835
- className: "z-50 outline-none",
6835
+ className: "isolate z-1000 outline-none",
6836
6836
  children: /* @__PURE__ */ jsx(
6837
6837
  ContextMenu$1.Popup,
6838
6838
  {
@@ -13495,11 +13495,6 @@ const dataListRowStyles = [
13495
13495
  ...dataListRowOuterStyles
13496
13496
  ];
13497
13497
 
13498
- const DataListRow = forwardRef(({ children, className, ...rest }, ref) => {
13499
- return /* @__PURE__ */ jsx("div", { ref, className: cn("grid grid-cols-subgrid gap-0 mx-1", ...dataListRowOuterStyles, className), ...rest, children });
13500
- });
13501
- DataListRow.displayName = "DataListRow";
13502
-
13503
13498
  const DataListRowButton = forwardRef(
13504
13499
  ({ children, className, type = "button", flushLeft, flushRight, colStart, colEnd, featured, style, ...rest }, ref) => {
13505
13500
  const hasColumnOverride = colStart !== void 0 || colEnd !== void 0;
@@ -13582,6 +13577,21 @@ const DataListRowStatic = forwardRef(
13582
13577
  );
13583
13578
  DataListRowStatic.displayName = "DataListRowStatic";
13584
13579
 
13580
+ const DataListRowWrapper = forwardRef(
13581
+ ({ children, className, ...rest }, ref) => {
13582
+ return /* @__PURE__ */ jsx(
13583
+ "div",
13584
+ {
13585
+ ref,
13586
+ className: cn("grid grid-cols-subgrid gap-0 mx-1", ...dataListRowOuterStyles, className),
13587
+ ...rest,
13588
+ children
13589
+ }
13590
+ );
13591
+ }
13592
+ );
13593
+ DataListRowWrapper.displayName = "DataListRowWrapper";
13594
+
13585
13595
  function DataListSpacer({ height }) {
13586
13596
  if (height <= 0) return null;
13587
13597
  return /* @__PURE__ */ jsx("div", { className: "col-span-full", style: { height } });
@@ -13713,7 +13723,7 @@ const DataList = Object.assign(DataListRoot, {
13713
13723
  TopCell: DataListTopCell,
13714
13724
  TopCellWithTooltip: DataListTopCellWithTooltip,
13715
13725
  TopCellSmart: DataListTopCellSmart,
13716
- Row: DataListRow,
13726
+ RowWrapper: DataListRowWrapper,
13717
13727
  RowButton: DataListRowButton,
13718
13728
  RowLink: DataListRowLink,
13719
13729
  RowStatic: DataListRowStatic,
@@ -13922,7 +13932,7 @@ const LogsDataList = Object.assign(DataListRoot, {
13922
13932
  TopCell: DataListTopCell,
13923
13933
  TopCellWithTooltip: DataListTopCellWithTooltip,
13924
13934
  TopCellSmart: DataListTopCellSmart,
13925
- Row: DataListRow,
13935
+ RowWrapper: DataListRowWrapper,
13926
13936
  RowButton: DataListRowButton,
13927
13937
  RowLink: DataListRowLink,
13928
13938
  Spacer: DataListSpacer,