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 | import { TimelineCursorType } from '../../enums/timelineCursorType';
import { TimelineKeyframeStyle } from '../styles/timelineKeyframeStyle';
/**
* Timeline group style.
*/
export interface TimelineGroupStyle {
/**
* Keyframes style height in pixels.
* 'auto' to automatically calculate.
*/
height?: number | string;
/**
* Group stroke color.
*/
strokeColor?: string;
/**
* Group stroke thickness.
*/
strokeThickness?: number | null;
/**
* Group border radius. See canvas roundRect official documentation.
*/
radii?: number | DOMPointInit | Iterable<number | DOMPointInit>;
/**
* Group fill color.
*/
fillColor?: string;
/**
* Group mouse over cursor style.
*/
cursor?: TimelineCursorType;
/**
* Margin top in px or 'auto' to center element.
*/
marginTop?: number | string;
/**
* Style for all the keyframes in the current group.
*/
keyframesStyle?: TimelineKeyframeStyle;
}
|