@1771technologies/lytenyte-pro 1.0.3 → 1.0.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.
@@ -180,7 +180,7 @@ export function CellSelectionDriver() {
180
180
  grid.state.cellSelections.set([startSelection]);
181
181
  }
182
182
  lastRect = startSelection;
183
- document.addEventListener("pointermove", pointerMove);
183
+ document.addEventListener("mousemove", pointerMove);
184
184
  document.addEventListener("contextmenu", pointerUp);
185
185
  document.addEventListener("pointerup", pointerUp);
186
186
  };
@@ -412,7 +412,7 @@ export function makeLyteNyte(p) {
412
412
  const rowScan = rowScanDistance();
413
413
  const columns = columnMeta().columnsVisible;
414
414
  const rds = rowDataSource();
415
- const { layout, cache } = layoutState$();
415
+ const { layout } = layoutState$();
416
416
  const topCount = rowDataStore.rowTopCount.$();
417
417
  const botCount = rowDataStore.rowBottomCount.$();
418
418
  const rowCount = rowDataStore.rowCount.$();
@@ -441,7 +441,7 @@ export function makeLyteNyte(p) {
441
441
  const focus = internal_focusActive();
442
442
  const view = makeRowLayout({
443
443
  view: n,
444
- viewCache: cache,
444
+ viewCache: new Map(),
445
445
  layout,
446
446
  rds: rowDataStore,
447
447
  columns,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@1771technologies/lytenyte-pro",
3
3
  "description": "Blazingly fast headless React data grid with 100s of features.",
4
- "version": "1.0.3",
4
+ "version": "1.0.5",
5
5
  "type": "module",
6
6
  "license": "COMMERCIAL",
7
7
  "files": [
@@ -49,12 +49,12 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@1771technologies/atom": "^1.0.2",
52
- "@1771technologies/lytenyte-core": "1.0.3",
53
- "@1771technologies/lytenyte-shared": "1.0.3",
54
- "@1771technologies/lytenyte-dom-utils": "1.0.3",
55
- "@1771technologies/lytenyte-js-utils": "1.0.3",
56
- "@1771technologies/lytenyte-dragon": "1.0.3",
57
- "@1771technologies/lytenyte-react-hooks": "1.0.3"
52
+ "@1771technologies/lytenyte-core": "1.0.5",
53
+ "@1771technologies/lytenyte-shared": "1.0.5",
54
+ "@1771technologies/lytenyte-js-utils": "1.0.5",
55
+ "@1771technologies/lytenyte-dragon": "1.0.5",
56
+ "@1771technologies/lytenyte-dom-utils": "1.0.5",
57
+ "@1771technologies/lytenyte-react-hooks": "1.0.5"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "react": "^18.0.0 || ^19.0.0",