@linzjs/step-ag-grid 2.4.6 → 2.4.7
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.js
CHANGED
|
@@ -1759,12 +1759,12 @@ var MenuRadioGroup = react.forwardRef(MenuRadioGroupFr);
|
|
|
1759
1759
|
|
|
1760
1760
|
var GridUpdatingContext = react.createContext({
|
|
1761
1761
|
checkUpdating: function () {
|
|
1762
|
-
console.error("Missing
|
|
1762
|
+
console.error("Missing GridUpdatingContext");
|
|
1763
1763
|
return false;
|
|
1764
1764
|
},
|
|
1765
1765
|
modifyUpdating: function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
1766
1766
|
return __generator(this, function (_a) {
|
|
1767
|
-
console.error("Missing
|
|
1767
|
+
console.error("Missing GridUpdatingContext");
|
|
1768
1768
|
return [2 /*return*/];
|
|
1769
1769
|
});
|
|
1770
1770
|
}); }
|
|
@@ -3340,7 +3340,7 @@ var GridFormPopoverMenu = function (_props) {
|
|
|
3340
3340
|
* Popout burger menu
|
|
3341
3341
|
*/
|
|
3342
3342
|
var GridPopoverMenu = function (colDef, custom) {
|
|
3343
|
-
return GridCell(__assign(__assign({ maxWidth: 40, editable: colDef.editable != null ? colDef.editable : true, cellStyle: {
|
|
3343
|
+
return GridCell(__assign(__assign({ maxWidth: 40, editable: colDef.editable != null ? colDef.editable : true, cellStyle: { justifyContent: "flex-end" }, cellRenderer: GridRenderPopoutMenuCell, cellClass: (custom === null || custom === void 0 ? void 0 : custom.multiEdit) ? GenericMultiEditCellClass : undefined }, colDef), { cellRendererParams: {
|
|
3344
3344
|
// Menus open on single click, this parameter is picked up in Grid.tsx
|
|
3345
3345
|
singleClickEdit: true
|
|
3346
3346
|
} }), __assign({ editor: GridFormPopoverMenu }, custom));
|