@linzjs/step-ag-grid 29.14.1 → 29.15.0
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/src/components/Grid.d.ts +2 -1
- package/dist/step-ag-grid.cjs +2 -2
- package/dist/step-ag-grid.cjs.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 +22 -25
- package/src/components/Grid.tsx +3 -0
- package/src/stories/grid/GridCopy.stories.tsx +1 -12
package/dist/step-ag-grid.esm.js
CHANGED
|
@@ -3257,7 +3257,7 @@ defaultPostSort = true, rowData, rowHeight = theme === 'ag-theme-step-default' ?
|
|
|
3257
3257
|
// ─── Selection ────────────────────────────────
|
|
3258
3258
|
autoSelectFirstRow, enableRangeSelection = false, externalSelectedIds, externalSelectedItems, selectColumnPinned = 'left', selectable, setExternalSelectedIds, setExternalSelectedItems,
|
|
3259
3259
|
// ─── Editing ──────────────────────────────────
|
|
3260
|
-
singleClickEdit = false,
|
|
3260
|
+
singleClickEdit = false, stopEditingWhenCellsLoseFocus = false,
|
|
3261
3261
|
// ─── Context Menu ─────────────────────────────
|
|
3262
3262
|
contextMenuSelectRow = false, contextMenu,
|
|
3263
3263
|
// ─── Callbacks / Events ───────────────────────
|
|
@@ -3971,7 +3971,7 @@ maxInitialWidth,
|
|
|
3971
3971
|
headerCheckbox: false,
|
|
3972
3972
|
}),
|
|
3973
3973
|
}
|
|
3974
|
-
: undefined, selectionColumnDef: selectionColumnDef, suppressCellFocus: params.suppressCellFocus, suppressClickEdit: true, suppressColumnVirtualisation: suppressColumnVirtualization, suppressStartEditOnTab: true }) })] }));
|
|
3974
|
+
: undefined, stopEditingWhenCellsLoseFocus: stopEditingWhenCellsLoseFocus, selectionColumnDef: selectionColumnDef, suppressCellFocus: params.suppressCellFocus, suppressClickEdit: true, suppressColumnVirtualisation: suppressColumnVirtualization, suppressStartEditOnTab: true }) })] }));
|
|
3975
3975
|
};
|
|
3976
3976
|
const quickFilterParser = (filterStr) => {
|
|
3977
3977
|
// filter is exact matches exactly groups separated by commas
|