@simple-table/vue 3.6.4 → 3.6.6

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.
@@ -4,6 +4,7 @@ import { AbsoluteBodyCell, CellRenderContext } from "./types";
4
4
  export interface CellLiveRef {
5
5
  row: Row;
6
6
  tableRow: TableRow;
7
+ context: CellRenderContext;
7
8
  }
8
9
  export declare const cellLiveRefMap: WeakMap<HTMLElement, CellLiveRef>;
9
10
  export declare const untrackCellByRow: (rowId: string, cellElement: HTMLElement) => void;
@@ -4,7 +4,7 @@ import type { Pinned } from "../../types/Pinned";
4
4
  * Handle resize with autoExpandColumns enabled
5
5
  * Columns to the right (or left for right-pinned) shrink proportionally
6
6
  */
7
- export declare const handleResizeWithAutoExpand: ({ childrenToResize, collapsedHeaders, containerWidth, delta, headers, initialWidthsMap, isParentResize, pinnedBodyViewportWidth, resizedHeader, reverse, rootPinned, sectionHeaders, sectionWidth, startWidth, }: {
7
+ export declare const handleResizeWithAutoExpand: ({ childrenToResize, collapsedHeaders, containerWidth, delta, headers, initialWidthsMap, isParentResize, resizedHeader, reverse, rootPinned, sectionHeaders, sectionWidth, startWidth, }: {
8
8
  childrenToResize?: HeaderObject[] | undefined;
9
9
  collapsedHeaders?: Set<string> | undefined;
10
10
  containerWidth: number;
@@ -12,8 +12,6 @@ export declare const handleResizeWithAutoExpand: ({ childrenToResize, collapsedH
12
12
  headers: HeaderObject[];
13
13
  initialWidthsMap: Map<string, number>;
14
14
  isParentResize?: boolean | undefined;
15
- /** When set, caps pinned growth so column sums do not exceed this scrollport (policy max can be wider). */
16
- pinnedBodyViewportWidth?: number | undefined;
17
15
  resizedHeader: HeaderObject;
18
16
  reverse: boolean;
19
17
  rootPinned: Pinned | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simple-table/vue",
3
- "version": "3.6.4",
3
+ "version": "3.6.6",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/types/vue/src/index.d.ts",
@@ -28,7 +28,7 @@
28
28
  "vue": ">=3.0.0"
29
29
  },
30
30
  "dependencies": {
31
- "simple-table-core": "3.6.4"
31
+ "simple-table-core": "3.6.6"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@rollup/plugin-alias": "4.0.0",