onchain-uikit 6.0.3 → 6.0.7

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.
@@ -20,9 +20,17 @@ interface RefObject {
20
20
  export interface VtOpts {
21
21
  id?: number | string;
22
22
  /**
23
- * @default 5
23
+ * @default 3
24
24
  */
25
25
  overscanRowCount?: number;
26
+ /**
27
+ * @default 0.25
28
+ */
29
+ overscanViewportRatio?: number;
30
+ /**
31
+ * @default 12
32
+ */
33
+ maxOverscanRowCount?: number;
26
34
  /**
27
35
  * this only needs the scroll.y
28
36
  */
@@ -63,6 +71,7 @@ interface VT_CONTEXT extends VtOpts {
63
71
  row_height: number[];
64
72
  row_height_prefix: number[];
65
73
  row_height_prefix_dirty: boolean;
74
+ row_height_uniform: boolean;
66
75
  row_count: number;
67
76
  prev_row_count: number;
68
77
  wrap_inst: React.RefObject<HTMLDivElement>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "onchain-uikit",
3
3
  "private": false,
4
- "version": "6.0.3",
4
+ "version": "6.0.7",
5
5
  "scripts": {
6
6
  "dev": "vite",
7
7
  "build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 vite build",