z-flux-react 1.0.1 → 1.0.3

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
@@ -1,6 +1,21 @@
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
+
6
+ declare function VerticalScroll$1({ scrollingElement, direction, children, style, className, startAnimation, gsapScrollTrigger, scrollSpeed, }: {
7
+ scrollingElement: any;
8
+ direction?: string | undefined;
9
+ children?: react_jsx_runtime.JSX.Element | undefined;
10
+ style: any;
11
+ className: any;
12
+ startAnimation?: string | undefined;
13
+ gsapScrollTrigger: any;
14
+ scrollSpeed?: number | undefined;
15
+ }): react_jsx_runtime.JSX.Element;
16
+
17
+ declare function Z_Text$1(props: any): react_jsx_runtime.JSX.Element;
18
+
4
19
  interface TextEngineTypes$4 {
5
20
  children?: ReactElement<{
6
21
  className?: string;
@@ -118,23 +133,6 @@ declare function TextFade$1(props: TextEngineTypes): react_jsx_runtime.JSX.Eleme
118
133
 
119
134
  declare function TextEngine$1(props: any): react_jsx_runtime.JSX.Element;
120
135
 
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
136
  declare function justSayHello({ name }: {
139
137
  name: string;
140
138
  }): void;
@@ -144,5 +142,8 @@ declare const TextFadeDown: typeof TextFadeDown$1;
144
142
  declare const TextFadeSkew: typeof TextFadeSkew$1;
145
143
  declare const TextFadeSkew_2: typeof TextFadeSkew_2$1;
146
144
  declare const TextFadeOverlay: typeof TextFadeOverlay$1;
145
+ declare const Z_Text: typeof Z_Text$1;
146
+ declare const VerticalScroll: typeof VerticalScroll$1;
147
+ declare const Overlay_Text: typeof Overlay_Text$1;
147
148
 
148
- export { TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll$1 as VerticalScroll, justSayHello };
149
+ export { Overlay_Text, TextEngine, TextFade, TextFadeDown, TextFadeOverlay, TextFadeSkew, TextFadeSkew_2, VerticalScroll, Z_Text, justSayHello };