Skip to content

Commit 29437b7

Browse files
committed
chore(Rotate): update .api.md
1 parent b390132 commit 29437b7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

packages/react-components/react-motion-components-preview/library/etc/react-motion-components-preview.api.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,17 @@
66

77
import { PresenceComponent } from '@fluentui/react-motion';
88

9+
// @public (undocumented)
10+
export type Axis3D = 'x' | 'y' | 'z';
11+
912
// @public
1013
export const Blur: PresenceComponent<BlurParams>;
1114

15+
// @public (undocumented)
16+
export type BlurParams = PresenceDuration & PresenceEasing & AnimateOpacity & {
17+
fromRadius?: string;
18+
};
19+
1220
// @public
1321
export const Collapse: PresenceComponent<CollapseParams>;
1422

@@ -33,6 +41,13 @@ export const FadeSnappy: PresenceComponent<FadeParams>;
3341
// @public (undocumented)
3442
export const Rotate: PresenceComponent<RotateParams>;
3543

44+
// @public (undocumented)
45+
export type RotateParams = PresenceDuration & PresenceEasing & AnimateOpacity & {
46+
axis?: Axis3D;
47+
angle?: number;
48+
exitAngle?: number;
49+
};
50+
3651
// @public
3752
export const Scale: PresenceComponent<ScaleParams>;
3853

0 commit comments

Comments
 (0)