z-flux-react 1.0.0 → 1.0.2
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/dist/index.d.ts +33 -1
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -5
- package/rollup.config.js +0 -50
- package/tsconfig.json +0 -58
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React, { ReactElement } from 'react';
|
|
3
3
|
|
|
4
|
+
declare function VerticalScroll$1({ scrollingElement, direction, children, style, className, startAnimation, gsapScrollTrigger, scrollSpeed, }: {
|
|
5
|
+
scrollingElement: any;
|
|
6
|
+
direction?: string | undefined;
|
|
7
|
+
children?: react_jsx_runtime.JSX.Element | undefined;
|
|
8
|
+
style: any;
|
|
9
|
+
className: any;
|
|
10
|
+
startAnimation?: string | undefined;
|
|
11
|
+
gsapScrollTrigger: any;
|
|
12
|
+
scrollSpeed?: number | undefined;
|
|
13
|
+
}): react_jsx_runtime.JSX.Element;
|
|
14
|
+
|
|
15
|
+
declare function Z_Text$1({ text, scrollingElement, progression, animation, playOnScroll, playInView, controllerRef, style, className, children, delay, timeline, speed, gsapScrollTrigger, extendAnimation, watch }: {
|
|
16
|
+
text: any;
|
|
17
|
+
scrollingElement: any;
|
|
18
|
+
progression?: string | undefined;
|
|
19
|
+
animation?: string | undefined;
|
|
20
|
+
playOnScroll?: boolean | undefined;
|
|
21
|
+
playInView?: boolean | undefined;
|
|
22
|
+
controllerRef?: null | undefined;
|
|
23
|
+
style: any;
|
|
24
|
+
className: any;
|
|
25
|
+
children: any;
|
|
26
|
+
delay?: number | undefined;
|
|
27
|
+
timeline?: undefined;
|
|
28
|
+
speed: any;
|
|
29
|
+
gsapScrollTrigger: any;
|
|
30
|
+
extendAnimation: any;
|
|
31
|
+
watch?: boolean | undefined;
|
|
32
|
+
}): react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
4
34
|
interface TextEngineTypes$4 {
|
|
5
35
|
children?: ReactElement<{
|
|
6
36
|
className?: string;
|
|
@@ -127,5 +157,7 @@ declare const TextFadeDown: typeof TextFadeDown$1;
|
|
|
127
157
|
declare const TextFadeSkew: typeof TextFadeSkew$1;
|
|
128
158
|
declare const TextFadeSkew_2: typeof TextFadeSkew_2$1;
|
|
129
159
|
declare const TextFadeOverlay: typeof TextFadeOverlay$1;
|
|
160
|
+
declare const Z_Text: typeof Z_Text$1;
|
|
161
|
+
declare const VerticalScroll: typeof VerticalScroll$1;
|
|
130
162
|
|
|
131
|
-
export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, justSayHello };
|
|
163
|
+
export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll, Z_Text, justSayHello };
|