z-flux-react 1.0.1 → 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 -18
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -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;
|
|
@@ -118,23 +148,6 @@ declare function TextFade$1(props: TextEngineTypes): react_jsx_runtime.JSX.Eleme
|
|
|
118
148
|
|
|
119
149
|
declare function TextEngine$1(props: any): react_jsx_runtime.JSX.Element;
|
|
120
150
|
|
|
121
|
-
declare function VerticalScroll({ scrollingElement, direction, children, style, className, startAnimation, gsapScrollTrigger, scrollSpeed, }: {
|
|
122
|
-
scrollingElement: any;
|
|
123
|
-
direction?: string | undefined;
|
|
124
|
-
children?: react_jsx_runtime.JSX.Element | undefined;
|
|
125
|
-
style: any;
|
|
126
|
-
className: any;
|
|
127
|
-
startAnimation?: string | undefined;
|
|
128
|
-
gsapScrollTrigger: any;
|
|
129
|
-
scrollSpeed?: number | undefined;
|
|
130
|
-
}): react_jsx_runtime.JSX.Element;
|
|
131
|
-
|
|
132
|
-
declare namespace VerticalScroll$1 {
|
|
133
|
-
export {
|
|
134
|
-
VerticalScroll as default,
|
|
135
|
-
};
|
|
136
|
-
}
|
|
137
|
-
|
|
138
151
|
declare function justSayHello({ name }: {
|
|
139
152
|
name: string;
|
|
140
153
|
}): void;
|
|
@@ -144,5 +157,7 @@ declare const TextFadeDown: typeof TextFadeDown$1;
|
|
|
144
157
|
declare const TextFadeSkew: typeof TextFadeSkew$1;
|
|
145
158
|
declare const TextFadeSkew_2: typeof TextFadeSkew_2$1;
|
|
146
159
|
declare const TextFadeOverlay: typeof TextFadeOverlay$1;
|
|
160
|
+
declare const Z_Text: typeof Z_Text$1;
|
|
161
|
+
declare const VerticalScroll: typeof VerticalScroll$1;
|
|
147
162
|
|
|
148
|
-
export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll
|
|
163
|
+
export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll, Z_Text, justSayHello };
|