@1771technologies/lytenyte-pro 0.0.57 → 0.0.59

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.
@@ -1079,10 +1079,17 @@ const ColumnManagerPill = forwardRef(function ColumnManagerPill2({ item, ...prop
1079
1079
  children: /* @__PURE__ */ jsx(TriggerIcon, { width: 16, height: 16 })
1080
1080
  }
1081
1081
  ),
1082
- /* @__PURE__ */ jsx(MenuPortal, { children: /* @__PURE__ */ jsxs(MenuPositioner, { onClick: (ev) => ev.stopPropagation(), children: [
1083
- item.isAggregation && /* @__PURE__ */ jsx(AggMenu, { grid, column: item.column }),
1084
- item.isMeasure && /* @__PURE__ */ jsx(MeasureMenu, { grid, column: item.column })
1085
- ] }) })
1082
+ /* @__PURE__ */ jsx(MenuPortal, { children: /* @__PURE__ */ jsxs(
1083
+ MenuPositioner,
1084
+ {
1085
+ onClick: (ev) => ev.stopPropagation(),
1086
+ className: "lng1771-column-manager__agg-menu",
1087
+ children: [
1088
+ item.isAggregation && /* @__PURE__ */ jsx(AggMenu, { grid, column: item.column }),
1089
+ item.isMeasure && /* @__PURE__ */ jsx(MeasureMenu, { grid, column: item.column })
1090
+ ]
1091
+ }
1092
+ ) })
1086
1093
  ] }),
1087
1094
  (item.isRowGroup || item.isColumnPivot || item.isAggregation || item.isMeasure) && /* @__PURE__ */ jsx("button", { className: "lng1771-column-manager__pill-button", onClick: item.onClick, children: /* @__PURE__ */ jsx(CrossIcon, { width: 16, height: 16 }) })
1088
1095
  ] })
@@ -969,6 +969,10 @@ body.lng1771-drag-on .lng1771-pill-manager__pill-outer[data-pill-active="false"]
969
969
  background-color: var(--lng1771-gray-05);
970
970
  }
971
971
  }
972
+
973
+ .lng1771-pill-manager__agg-menu {
974
+ z-index: 100;
975
+ }
972
976
  .lng1771-dialog {
973
977
  position: fixed;
974
978
  z-index: 100;
@@ -1504,6 +1508,10 @@ body.lng1771-drag-on .lng1771-pill-manager__pill-outer[data-pill-active="false"]
1504
1508
  font-weight: 400;
1505
1509
  line-height: 17px;
1506
1510
  }
1511
+
1512
+ .lng1771-column-manager__agg-menu {
1513
+ z-index: 100;
1514
+ }
1507
1515
  .lng1771-toggle {
1508
1516
  position: relative;
1509
1517
  width: 26px;
@@ -357,10 +357,17 @@ const PillManagerPill = forwardRef(function PillManagerPill2({ item, menu, ...pr
357
357
  children: /* @__PURE__ */ jsx(TriggerIcon, { width: 16, height: 16 })
358
358
  }
359
359
  ),
360
- /* @__PURE__ */ jsx(MenuPortal, { children: /* @__PURE__ */ jsxs(MenuPositioner, { onClick: (ev) => ev.stopPropagation(), children: [
361
- item.isAggregation && /* @__PURE__ */ jsx(AggMenu, { grid, column: item.column }),
362
- item.isMeasure && /* @__PURE__ */ jsx(MeasureMenu, { grid, column: item.column })
363
- ] }) })
360
+ /* @__PURE__ */ jsx(MenuPortal, { children: /* @__PURE__ */ jsxs(
361
+ MenuPositioner,
362
+ {
363
+ onClick: (ev) => ev.stopPropagation(),
364
+ className: "lng1771-pill-manager__agg-menu",
365
+ children: [
366
+ item.isAggregation && /* @__PURE__ */ jsx(AggMenu, { grid, column: item.column }),
367
+ item.isMeasure && /* @__PURE__ */ jsx(MeasureMenu, { grid, column: item.column })
368
+ ]
369
+ }
370
+ ) })
364
371
  ] }),
365
372
  menu && /* @__PURE__ */ jsx(
366
373
  "button",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1771technologies/lytenyte-pro",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "license": "COMMERCIAL",
5
5
  "type": "module",
6
6
  "files": [
@@ -70,20 +70,20 @@
70
70
  "react-dom": "^18.0.0 || ^19.0.0"
71
71
  },
72
72
  "dependencies": {
73
- "@1771technologies/grid-client-data-source-pro": "0.0.57",
74
- "@1771technologies/grid-core": "0.0.57",
75
- "@1771technologies/grid-design": "0.0.57",
76
- "@1771technologies/grid-provider": "0.0.57",
77
- "@1771technologies/grid-store-pro": "0.0.57",
78
- "@1771technologies/grid-tree-data-source": "0.0.57",
79
- "@1771technologies/grid-types": "0.0.57",
80
- "@1771technologies/js-utils": "0.0.57",
81
- "@1771technologies/lytenyte-core": "0.0.57",
82
- "@1771technologies/react-cascada": "0.0.57",
83
- "@1771technologies/react-dragon": "0.0.57",
84
- "@1771technologies/react-sizer": "0.0.57",
85
- "@1771technologies/react-split-pane": "0.0.57",
86
- "@1771technologies/react-utils": "0.0.57",
73
+ "@1771technologies/grid-client-data-source-pro": "0.0.59",
74
+ "@1771technologies/grid-core": "0.0.59",
75
+ "@1771technologies/grid-design": "0.0.59",
76
+ "@1771technologies/grid-provider": "0.0.59",
77
+ "@1771technologies/grid-store-pro": "0.0.59",
78
+ "@1771technologies/grid-tree-data-source": "0.0.59",
79
+ "@1771technologies/grid-types": "0.0.59",
80
+ "@1771technologies/js-utils": "0.0.59",
81
+ "@1771technologies/lytenyte-core": "0.0.59",
82
+ "@1771technologies/react-cascada": "0.0.59",
83
+ "@1771technologies/react-dragon": "0.0.59",
84
+ "@1771technologies/react-sizer": "0.0.59",
85
+ "@1771technologies/react-split-pane": "0.0.59",
86
+ "@1771technologies/react-utils": "0.0.59",
87
87
  "@base-ui-components/react": "1.0.0-alpha.7"
88
88
  },
89
89
  "devDependencies": {