z-flux-react 1.0.0 → 1.0.1

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 CHANGED
@@ -118,6 +118,23 @@ declare function TextFade$1(props: TextEngineTypes): react_jsx_runtime.JSX.Eleme
118
118
 
119
119
  declare function TextEngine$1(props: any): react_jsx_runtime.JSX.Element;
120
120
 
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
+
121
138
  declare function justSayHello({ name }: {
122
139
  name: string;
123
140
  }): void;
@@ -128,4 +145,4 @@ declare const TextFadeSkew: typeof TextFadeSkew$1;
128
145
  declare const TextFadeSkew_2: typeof TextFadeSkew_2$1;
129
146
  declare const TextFadeOverlay: typeof TextFadeOverlay$1;
130
147
 
131
- export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, justSayHello };
148
+ export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll$1 as VerticalScroll, justSayHello };