@linzjs/step-ag-grid 2.4.4 → 2.4.5
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/step-ag-grid.esm.js +2 -2
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +3 -3
- package/src/components/gridPopoverEdit/GridPopoverMenu.tsx +2 -1
- package/src/components/gridPopoverEdit/GridPopoverMessage.ts +1 -0
- package/src/stories/grid/GridReadOnly.stories.tsx +2 -4
package/dist/index.js
CHANGED
|
@@ -3336,7 +3336,7 @@ var GridFormPopoutMenu = function (_props) {
|
|
|
3336
3336
|
* Popout burger menu
|
|
3337
3337
|
*/
|
|
3338
3338
|
var GridPopoverMenu = function (colDef, custom) {
|
|
3339
|
-
return GridCell(__assign(__assign({ maxWidth:
|
|
3339
|
+
return GridCell(__assign(__assign({ maxWidth: 40, editable: colDef.editable != null ? colDef.editable : true, cellStyle: { "justify-content": "flex-end" }, cellRenderer: GridRenderPopoutMenuCell, cellClass: (custom === null || custom === void 0 ? void 0 : custom.multiEdit) ? GenericMultiEditCellClass : undefined }, colDef), { cellRendererParams: {
|
|
3340
3340
|
// Menus open on single click, this parameter is picked up in Grid.tsx
|
|
3341
3341
|
singleClickEdit: true
|
|
3342
3342
|
} }), __assign({ editor: GridFormPopoutMenu }, custom));
|
|
@@ -3537,7 +3537,7 @@ var GridFormMessage = function (_props) {
|
|
|
3537
3537
|
};
|
|
3538
3538
|
|
|
3539
3539
|
var GridPopoverMessage = function (colDef, props) {
|
|
3540
|
-
return GridCell(__assign(__assign({}, colDef), { cellRendererParams: __assign({ singleClickEdit: true }, colDef.cellRendererParams) }), __assign({ editor: GridFormMessage }, props));
|
|
3540
|
+
return GridCell(__assign(__assign({ resizable: false }, colDef), { cellRendererParams: __assign({ singleClickEdit: true }, colDef.cellRendererParams) }), __assign({ editor: GridFormMessage }, props));
|
|
3541
3541
|
};
|
|
3542
3542
|
|
|
3543
3543
|
// Unique ID creation requires a high quality random # generator. In the browser we therefore
|