@gpichot/spectacle-deck 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/animations/AnimatedCounter.d.ts +18 -0
- package/components/animations/FadeIn.d.ts +14 -0
- package/components/animations/ProgressRing.d.ts +21 -0
- package/components/animations/ScaleIn.d.ts +12 -0
- package/components/animations/Spotlight.d.ts +10 -0
- package/components/animations/StaggerChildren.d.ts +16 -0
- package/components/animations/TypeWriter.d.ts +13 -0
- package/components/animations/index.d.ts +7 -0
- package/components/animations/useInView.d.ts +10 -0
- package/index.cjs +455 -114
- package/index.d.ts +5 -1
- package/index.mjs +450 -106
- package/package.json +1 -1
- package/transitions.d.ts +14 -0
package/package.json
CHANGED
package/transitions.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type SlideTransition } from "spectacle";
|
|
2
|
+
/**
|
|
3
|
+
* Drop transition: slide drops in from above, exits downward.
|
|
4
|
+
*/
|
|
5
|
+
export declare const dropTransition: SlideTransition;
|
|
6
|
+
/**
|
|
7
|
+
* None transition: instant swap with no animation.
|
|
8
|
+
*/
|
|
9
|
+
export declare const noneTransition: SlideTransition;
|
|
10
|
+
/**
|
|
11
|
+
* Resolve a transition name string to a SlideTransition object.
|
|
12
|
+
* Returns undefined if the name is not recognized.
|
|
13
|
+
*/
|
|
14
|
+
export declare function resolveTransition(name: string | undefined): SlideTransition | undefined;
|