Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | /**
* Internal components consts.
* Still can be changed thru private property _consts but this is discouraged.
*/
export interface TimelineConsts {
/**
* Auto pan speed.
*/
autoPanSpeed: number;
/**
* scroll speed when mouse drag is used (from 0 to 1)
*/
scrollByDragSpeed: number;
/**
* Determine whether item was clicked.
*/
clickDetectionMs: number;
/**
* Timeout to detect double click.
*/
doubleClickTimeoutMs: number;
/**
* Time in ms used to refresh scrollbars when pan is finished.
*/
scrollFinishedTimeoutMs: number;
/**
* Auto pan padding
*/
autoPanByScrollPadding: number;
/**
* Click threshold
*/
clickThreshold: number;
/**
* Click min radius for the elements detection.
*/
clickDetectionMinRadius: number;
/**
* Default auto size for the group. It's percents.
*/
autoPanSpeedLimit: number;
/**
* Default auto size for the group. It's percents.
*/
defaultGroupHeight: number;
}
|