@linzjs/step-ag-grid 29.14.0 → 29.14.1

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "29.14.0",
5
+ "version": "29.14.1",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -139,7 +139,7 @@ export const Grid = <TData extends GridBaseRow = GridBaseRow>({
139
139
 
140
140
  // ─── Selection ────────────────────────────────
141
141
  autoSelectFirstRow,
142
- enableRangeSelection = true,
142
+ enableRangeSelection = false,
143
143
  externalSelectedIds,
144
144
  externalSelectedItems,
145
145
  selectColumnPinned = 'left',
@@ -141,7 +141,7 @@ const GridCopyTemplate: StoryFn<typeof Grid<ITestRow>> = (props: GridProps<ITest
141
141
  position: random.fromArray(positions),
142
142
  age: 30,
143
143
  height: `${random.next(3) + 3}'${random.next(12)}"`,
144
- bearing: Math.random() * 360,
144
+ bearing: random.next(360000) / 1000,
145
145
  });
146
146
  }
147
147
  return result;