@trops/dash-core 0.1.19 → 0.1.21
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/electron/index.js +854 -700
- package/dist/electron/index.js.map +1 -1
- package/dist/index.esm.js +14 -12
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +14 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -13941,18 +13941,20 @@ var LayoutGridContainer = /*#__PURE__*/memo(function (_ref3) {
|
|
|
13941
13941
|
onCancel: function onCancel() {
|
|
13942
13942
|
return setSelectedCellsForMerge([]);
|
|
13943
13943
|
}
|
|
13944
|
-
}), renderColumnGutter(), scrollable ? /*#__PURE__*/
|
|
13945
|
-
className: "
|
|
13946
|
-
children:
|
|
13947
|
-
|
|
13948
|
-
|
|
13949
|
-
|
|
13950
|
-
|
|
13951
|
-
|
|
13952
|
-
|
|
13953
|
-
|
|
13954
|
-
|
|
13955
|
-
|
|
13944
|
+
}), renderColumnGutter(), scrollable ? /*#__PURE__*/jsx("div", {
|
|
13945
|
+
className: "relative flex-1 min-h-0",
|
|
13946
|
+
children: /*#__PURE__*/jsxs("div", {
|
|
13947
|
+
className: "absolute inset-0 flex flex-row overflow-y-auto items-start",
|
|
13948
|
+
children: [renderRowGutter(), /*#__PURE__*/jsx("div", {
|
|
13949
|
+
id: "grid-container-".concat(id),
|
|
13950
|
+
className: "grid flex-1 min-h-24 p-4 gap-5",
|
|
13951
|
+
style: {
|
|
13952
|
+
gridTemplateRows: getRowTemplate(item.grid),
|
|
13953
|
+
gridTemplateColumns: "repeat(".concat(item.grid.cols, ", 1fr)")
|
|
13954
|
+
},
|
|
13955
|
+
children: renderGridCells()
|
|
13956
|
+
})]
|
|
13957
|
+
})
|
|
13956
13958
|
}) : /*#__PURE__*/jsx("div", {
|
|
13957
13959
|
className: "relative flex-1 min-h-0",
|
|
13958
13960
|
children: /*#__PURE__*/jsxs("div", {
|