@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/step-ag-grid.esm.js
CHANGED
|
@@ -3334,7 +3334,7 @@ var GridFormPopoutMenu = function (_props) {
|
|
|
3334
3334
|
* Popout burger menu
|
|
3335
3335
|
*/
|
|
3336
3336
|
var GridPopoverMenu = function (colDef, custom) {
|
|
3337
|
-
return GridCell(__assign(__assign({ maxWidth:
|
|
3337
|
+
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: {
|
|
3338
3338
|
// Menus open on single click, this parameter is picked up in Grid.tsx
|
|
3339
3339
|
singleClickEdit: true
|
|
3340
3340
|
} }), __assign({ editor: GridFormPopoutMenu }, custom));
|
|
@@ -3535,7 +3535,7 @@ var GridFormMessage = function (_props) {
|
|
|
3535
3535
|
};
|
|
3536
3536
|
|
|
3537
3537
|
var GridPopoverMessage = function (colDef, props) {
|
|
3538
|
-
return GridCell(__assign(__assign({}, colDef), { cellRendererParams: __assign({ singleClickEdit: true }, colDef.cellRendererParams) }), __assign({ editor: GridFormMessage }, props));
|
|
3538
|
+
return GridCell(__assign(__assign({ resizable: false }, colDef), { cellRendererParams: __assign({ singleClickEdit: true }, colDef.cellRendererParams) }), __assign({ editor: GridFormMessage }, props));
|
|
3539
3539
|
};
|
|
3540
3540
|
|
|
3541
3541
|
// Unique ID creation requires a high quality random # generator. In the browser we therefore
|