@vuu-ui/vuu-utils 0.8.25-debug → 0.8.26-debug

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
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-utils",
3
- "version": "0.8.25-debug",
3
+ "version": "0.8.26-debug",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "devDependencies": {
7
- "@vuu-ui/vuu-data-types": "0.8.25-debug",
8
- "@vuu-ui/vuu-table-types": "0.8.25-debug",
9
- "@vuu-ui/vuu-filter-types": "0.8.25-debug",
10
- "@vuu-ui/vuu-protocol-types": "0.8.25-debug"
7
+ "@vuu-ui/vuu-data-types": "0.8.26-debug",
8
+ "@vuu-ui/vuu-table-types": "0.8.26-debug",
9
+ "@vuu-ui/vuu-filter-types": "0.8.26-debug",
10
+ "@vuu-ui/vuu-protocol-types": "0.8.26-debug"
11
11
  },
12
12
  "peerDependencies": {
13
13
  "react": ">=17.0.2",
@@ -20,6 +20,6 @@ export declare const actualRowPositioning: (rowHeight: number) => RowPositioning
20
20
  * @returns
21
21
  */
22
22
  export declare const virtualRowPositioning: (rowHeight: number, virtualisedExtent: number, pctScrollTop: MutableRefObject<number>) => RowPositioning;
23
- export declare const getRowElementAtIndex: (container: HTMLDivElement, rowIndex: number) => HTMLElement | null;
23
+ export declare const getRowElementAtIndex: (container: HTMLDivElement | EventTarget, rowIndex: number) => HTMLElement | null;
24
24
  export declare const getIndexFromRowElement: (rowElement: HTMLElement) => number;
25
25
  export declare const asDataSourceRowObject: (row: DataSourceRow, columnMap: ColumnMap) => DataSourceRowObject;