stackEnter.d.ts 684 B

1234567891011121314
  1. import { TransformComponent as TC } from '../runtime';
  2. import { StackEnterTransform } from '../spec';
  3. export 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. */
  14. export declare const StackEnter: TC<StackEnterOptions>;