UNPKG

684 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { StackEnterTransform } from '../spec';
3export type StackEnterOptions = Omit<StackEnterTransform, 'type'>;
4/**
5 * Group marks by channels into groups and stacking their enterDelay
6 * to make marks show up groups by groups.
7 * It will update enterDelay channel for each mark by its enterDuration and group.
8 * @todo Support orderBy.
9 * @todo Sort among groups(e.g. reverse).
10 * @todo Stack enter in groups rather than between groups?
11 * @todo Auto inter this statistic for scaleInY animation in stacked interval?
12 * @todo All the groups shared the enterDuration?
13 */
14export declare const StackEnter: TC<StackEnterOptions>;