-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathresizerOption.interface.ts
49 lines (39 loc) · 1.79 KB
/
resizerOption.interface.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
export interface ResizerOption {
/** Defaults to false, do we want to apply the resized dimentions to the grid container as well? */
applyResizeToContainer?: boolean;
/** Defaults to 'window', which DOM element are we using to calculate the available size for the grid? */
calculateAvailableSizeBy?: 'container' | 'window';
/** bottom padding of the grid in pixels */
bottomPadding?: number;
/**
* Page Container. Either selector (for example '.page-container' or '#page-container'), or an HTMLElement.
* Basically what element in the page will be used to calculate the available space.
*/
container?: string | HTMLElement;
/**
* Grid Container selector, for example '.myGrid' or '#myGrid', this is provided by the lib internally.
*
* Optional but when provided it will be resized with same size as the grid (typically a container holding the grid and extra custom footer/pagination)
* This is useful when you want the footer/pagination to be exactly the same width as the grid (this lib takes care of it internally)
*/
gridContainer?: string | HTMLElement;
/** maximum height (pixels) of the grid */
maxHeight?: number;
/** minimum height (pixels) of the grid */
minHeight?: number;
/** maximum width (pixels) of the grid */
maxWidth?: number;
/** minimum width (pixels) of the grid */
minWidth?: number;
/** padding on the right side of the grid (pixels) */
rightPadding?: number;
/**
* Defaults to 'window', how are resizes detected?
*
* When set to 'container':
* * Requires {@link container} to be set.
* * If you get 'ResizeObserver loop limit exceeded' errors in automated tests take a look
* [here](https://stackoverflow.com/questions/49384120/resizeobserver-loop-limit-exceeded).
*/
resizeDetection?: 'container' | 'window';
}