@prt-ts/fluent-react-table-v2 9.46.7-build.1.0 → 9.46.7-build.2.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/index.esm.js CHANGED
@@ -727,7 +727,6 @@ function parseChrome(line) {
727
727
  // throw out eval line/column and use top-most line/column number
728
728
  loc = submatch[1]; // url
729
729
  }
730
-
731
730
  return {
732
731
  loc: !isNative ? parts[2] : null,
733
732
  name: parts[1] || UNKNOWN_FUNCTION
package/package.json CHANGED
@@ -1,8 +1,6 @@
1
1
  {
2
2
  "name": "@prt-ts/fluent-react-table-v2",
3
- "version": "9.46.7-build.1.0",
4
- "main": "./index.js",
5
- "types": "./index.d.ts",
3
+ "version": "9.46.7-build.2.0",
6
4
  "peerDependencies": {
7
5
  "react": ">=17.0.0",
8
6
  "react-dom": ">=17.0.0",
@@ -24,6 +22,7 @@
24
22
  "url": "https://github.com/prt-ts/fluent-extension-packages.git"
25
23
  },
26
24
  "homepage": "https://github.com/prt-ts/fluent-extension-packages.git#readme",
25
+ "types": "./index.cjs.d.ts",
27
26
  "module": "./index.esm.js",
28
- "type": "module"
27
+ "main": "./index.cjs.js"
29
28
  }
@@ -2,7 +2,7 @@ import { TableState } from "@tanstack/react-table";
2
2
  export type TableView = {
3
3
  id: number;
4
4
  viewName: string;
5
- tableState: TableState;
5
+ tableState: Partial<TableState>;
6
6
  isGlobal?: boolean;
7
7
  isViewOwner?: boolean;
8
8
  };
File without changes