simple-table-core 3.0.6 → 3.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.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MAX HEIGHT SCROLLING TESTS
|
|
3
|
+
*
|
|
4
|
+
* Regression test for v2.6.5 fix: when maxHeight is set and total content
|
|
5
|
+
* height exceeds maxHeight, the table body must scroll even when row count
|
|
6
|
+
* is below VIRTUALIZATION_THRESHOLD (20).
|
|
7
|
+
*/
|
|
8
|
+
import type { Meta } from "@storybook/html";
|
|
9
|
+
declare const meta: Meta;
|
|
10
|
+
export default meta;
|
|
11
|
+
export declare const MaxHeightScrollsWithFewRows: {
|
|
12
|
+
tags: string[];
|
|
13
|
+
render: () => HTMLDivElement & {
|
|
14
|
+
_table?: import("../../src/index").SimpleTableVanilla | undefined;
|
|
15
|
+
};
|
|
16
|
+
play: ({ canvasElement }: {
|
|
17
|
+
canvasElement: any;
|
|
18
|
+
}) => Promise<void>;
|
|
19
|
+
};
|
|
20
|
+
export declare const MaxHeightNoScrollWhenContentFits: {
|
|
21
|
+
tags: string[];
|
|
22
|
+
render: () => HTMLDivElement & {
|
|
23
|
+
_table?: import("../../src/index").SimpleTableVanilla | undefined;
|
|
24
|
+
};
|
|
25
|
+
play: ({ canvasElement }: {
|
|
26
|
+
canvasElement: any;
|
|
27
|
+
}) => Promise<void>;
|
|
28
|
+
};
|