z-flux-react 1.0.2 → 1.0.4
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 +5 -19
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React, { ReactElement } from 'react';
|
|
3
3
|
|
|
4
|
+
declare function Overlay_Text$1(props: any): react_jsx_runtime.JSX.Element;
|
|
5
|
+
|
|
4
6
|
declare function VerticalScroll$1({ scrollingElement, direction, children, style, className, startAnimation, gsapScrollTrigger, scrollSpeed, }: {
|
|
5
7
|
scrollingElement: any;
|
|
6
8
|
direction?: string | undefined;
|
|
@@ -12,24 +14,7 @@ declare function VerticalScroll$1({ scrollingElement, direction, children, style
|
|
|
12
14
|
scrollSpeed?: number | undefined;
|
|
13
15
|
}): react_jsx_runtime.JSX.Element;
|
|
14
16
|
|
|
15
|
-
declare function Z_Text$1(
|
|
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;
|
|
17
|
+
declare function Z_Text$1(props: any): react_jsx_runtime.JSX.Element;
|
|
33
18
|
|
|
34
19
|
interface TextEngineTypes$4 {
|
|
35
20
|
children?: ReactElement<{
|
|
@@ -159,5 +144,6 @@ declare const TextFadeSkew_2: typeof TextFadeSkew_2$1;
|
|
|
159
144
|
declare const TextFadeOverlay: typeof TextFadeOverlay$1;
|
|
160
145
|
declare const Z_Text: typeof Z_Text$1;
|
|
161
146
|
declare const VerticalScroll: typeof VerticalScroll$1;
|
|
147
|
+
declare const Overlay_Text: typeof Overlay_Text$1;
|
|
162
148
|
|
|
163
|
-
export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll, Z_Text, justSayHello };
|
|
149
|
+
export { Overlay_Text, TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll, Z_Text, justSayHello };
|