You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
623 B
15 lines
623 B
/**
|
|
* <zh/> 内置的动画元素。
|
|
* <en/> Built-in animations.
|
|
*/
|
|
export { executor } from './executor';
|
|
export const Fade = [{ fields: ['opacity'] }];
|
|
export const Translate = [{ fields: ['x', 'y'] }];
|
|
export const NodeCollapse = [{ fields: ['x', 'y'] }];
|
|
export const NodeExpand = NodeCollapse;
|
|
export const PathIn = [{ fields: ['sourceNode', 'targetNode'] }];
|
|
export const PathOut = PathIn;
|
|
export const ComboCollapse = [{ fields: ['childrenNode', 'x', 'y'] }];
|
|
export const ComboExpand = ComboCollapse;
|
|
export const ComboCollapseExpand = [{ fields: ['childrenNode', 'x', 'y'] }];
|
|
//# sourceMappingURL=index.js.map
|