react-animate-z 2.0.0 → 2.2.0
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/README.md +99 -79
- package/build/AnimBox/AnimateTyping.d.ts +15 -15
- package/build/AnimBox/StyledElement.d.ts +4 -5
- package/build/AnimBox/WrapperAnimate.d.ts +3 -4
- package/build/AnimBox/durations.d.ts +1 -1
- package/build/AnimBox/frames/attention.d.ts +7 -7
- package/build/AnimBox/frames/blur.d.ts +12 -12
- package/build/AnimBox/frames/bounce.d.ts +18 -9
- package/build/AnimBox/frames/fade.d.ts +34 -24
- package/build/AnimBox/frames/flash.d.ts +12 -7
- package/build/AnimBox/frames/flip.d.ts +23 -23
- package/build/AnimBox/frames/float.d.ts +12 -7
- package/build/AnimBox/frames/fold.d.ts +14 -6
- package/build/AnimBox/frames/funMap.d.ts +10 -10
- package/build/AnimBox/frames/glowing.d.ts +7 -7
- package/build/AnimBox/frames/hangOn.d.ts +12 -12
- package/build/AnimBox/frames/{_index.d.ts → index.d.ts} +339 -208
- package/build/AnimBox/frames/jelly.d.ts +7 -7
- package/build/AnimBox/frames/motion.d.ts +16 -16
- package/build/AnimBox/frames/pop.d.ts +16 -16
- package/build/AnimBox/frames/pulse.d.ts +7 -7
- package/build/AnimBox/frames/rotate.d.ts +15 -15
- package/build/AnimBox/frames/slide.d.ts +18 -18
- package/build/AnimBox/frames/squeezeShake.d.ts +22 -12
- package/build/AnimBox/frames/textEffects.d.ts +9 -9
- package/build/AnimBox/frames/zoom.d.ts +20 -12
- package/build/AnimBox/index.d.ts +4 -4
- package/build/AnimBox/types.d.ts +26 -27
- package/build/index.d.ts +9 -5
- package/build/index.esm.js +1076 -1
- package/build/index.js +1076 -1
- package/package.json +27 -9
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ yarn add react-animate-z
|
|
|
44
44
|
```tsx
|
|
45
45
|
import React from "react";
|
|
46
46
|
import Animate from "react-animate-z";
|
|
47
|
+
import { animGroups, animNames } from "react-animate-z";
|
|
47
48
|
|
|
48
49
|
export default function App() {
|
|
49
50
|
return (
|
|
@@ -54,26 +55,86 @@ export default function App() {
|
|
|
54
55
|
}
|
|
55
56
|
```
|
|
56
57
|
|
|
58
|
+
```tsx
|
|
59
|
+
// 1. Get all animation names
|
|
60
|
+
import { animGroups, animNames } from "react-animate-z";
|
|
61
|
+
|
|
62
|
+
// 2. Get animation groups
|
|
63
|
+
console.log(animNames);
|
|
64
|
+
console.log(animGroups);
|
|
65
|
+
```
|
|
66
|
+
|
|
57
67
|
## 🔧 Props
|
|
58
68
|
|
|
59
69
|
Prop Type Default Description
|
|
60
70
|
|
|
61
|
-
| Prop | Type | Default
|
|
62
|
-
| ----------- | ---------------------- |
|
|
63
|
-
| `type` | `AnimateType` | `'blurIn'`
|
|
64
|
-
| `duration` | `string \| number` | `'
|
|
65
|
-
| `timing` | `TimingKey` | `'ease'`
|
|
66
|
-
| `delay` | `string \| number` | `'0s'`
|
|
67
|
-
| `iteration` | `number \| "infinite"` | `1`
|
|
68
|
-
| `direction` | `string` | `'normal'`
|
|
69
|
-
| `fillMode` | `string` | `'forwards'`
|
|
70
|
-
| `tagName` | `string` | `'div'`
|
|
71
|
+
| Prop | Type | Default | Description |
|
|
72
|
+
| ----------- | ---------------------- | -----------------------------| ---------------------------------------------------------------------------------------- |
|
|
73
|
+
| `type` | `AnimateType` | `'blurIn'` | Animation name (ví dụ: `'blurIn'`, `'bounce'`, `'fadeOut'`, ...) |
|
|
74
|
+
| `duration` | `string \| number` | `'defaultDurationMap'` | Duration of the animation (can be in seconds `'1s'` or milliseconds `1000`) |
|
|
75
|
+
| `timing` | `TimingKey` | `'ease'` | Timing function (e.g., `'ease'`, `'linear'`, `'ease-in'`, `'ease-out'`) |
|
|
76
|
+
| `delay` | `string \| number` | `'0s'` | Delay before the animation starts |
|
|
77
|
+
| `iteration` | `number \| "infinite"` | `1` | Repeat count of the animation |
|
|
78
|
+
| `direction` | `string` | `'normal'` | Animation direction (`'normal'`, `'alternate'`, `'reverse'`, etc.) |
|
|
79
|
+
| `fillMode` | `string` | `'forwards'` | How styles are applied after animation (`'forwards'`, `'backwards'`, `'both'`, `'none'`) |
|
|
80
|
+
| `tagName` | `string` | `'div'` | Custom HTML tag to render |
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
#### Chain Animation
|
|
85
|
+
|
|
86
|
+
An string-arry of animation names is used to wrap the animations you want to chain.
|
|
87
|
+
|
|
88
|
+
```js
|
|
89
|
+
import React, { useState } from "react";
|
|
90
|
+
import { AnimateTyping } from "react-animate-z";
|
|
91
|
+
|
|
92
|
+
const AnimationsForChaining = [
|
|
93
|
+
"swing",
|
|
94
|
+
"flipSlowDown",
|
|
95
|
+
"fadeOutToBottom",
|
|
96
|
+
"jelly",
|
|
97
|
+
];
|
|
98
|
+
|
|
99
|
+
const AnimationChain: React.FC = () => {
|
|
100
|
+
// const [animationIndex, setAnimationIndex] = useState(0);
|
|
101
|
+
// const [animationType, setAnimationType] = useState(AnimationsForChaining[0]);
|
|
102
|
+
|
|
103
|
+
// const handleChainAnimation = () => {
|
|
104
|
+
// const nextIndex = (animationIndex + 1) % AnimationsForChaining.length;
|
|
105
|
+
// setAnimationIndex(nextIndex);
|
|
106
|
+
// setAnimationType(AnimationsForChaining[nextIndex]);
|
|
107
|
+
// };
|
|
108
|
+
|
|
109
|
+
return (
|
|
110
|
+
<>
|
|
111
|
+
<AnimateTyping
|
|
112
|
+
heading="Hello,"
|
|
113
|
+
dataText={["I am Delpi", "I build animations", "I love coding!"]}
|
|
114
|
+
cursorColor="red"
|
|
115
|
+
/>
|
|
116
|
+
|
|
117
|
+
<AnimateTyping dataText="Only once" />
|
|
118
|
+
|
|
119
|
+
<AnimateTyping
|
|
120
|
+
heading="Fast typing:"
|
|
121
|
+
dataText={["speed x2", "super fast!"]}
|
|
122
|
+
typingSpeed={50}
|
|
123
|
+
deletingSpeed={20}
|
|
124
|
+
pauseTime={1000}
|
|
125
|
+
/>
|
|
126
|
+
</>
|
|
127
|
+
);
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
export default AnimationChain;
|
|
131
|
+
```
|
|
71
132
|
|
|
72
133
|
---
|
|
73
134
|
|
|
74
135
|
## 🎨 Available Animations
|
|
75
136
|
|
|
76
|
-
|
|
137
|
+
#### 🎾 Bounce
|
|
77
138
|
|
|
78
139
|
- bounce
|
|
79
140
|
- bounceIn
|
|
@@ -83,7 +144,7 @@ Prop Type Default Description
|
|
|
83
144
|
- bounceRotate
|
|
84
145
|
- bounceJelly
|
|
85
146
|
|
|
86
|
-
|
|
147
|
+
#### ✨ Text / Glow Effects
|
|
87
148
|
|
|
88
149
|
- effect3D
|
|
89
150
|
- neonGlow
|
|
@@ -93,7 +154,7 @@ Prop Type Default Description
|
|
|
93
154
|
- iceGlow
|
|
94
155
|
- shine
|
|
95
156
|
|
|
96
|
-
|
|
157
|
+
#### 🌫 Blur
|
|
97
158
|
|
|
98
159
|
- blurIn
|
|
99
160
|
- blurInZoom
|
|
@@ -106,7 +167,7 @@ Prop Type Default Description
|
|
|
106
167
|
- blurOutDown
|
|
107
168
|
- blurOutRotate
|
|
108
169
|
|
|
109
|
-
|
|
170
|
+
#### ⚡ Flash
|
|
110
171
|
|
|
111
172
|
- flash
|
|
112
173
|
- flashIrregular
|
|
@@ -114,7 +175,7 @@ Prop Type Default Description
|
|
|
114
175
|
- flashSlow
|
|
115
176
|
- flashPulse
|
|
116
177
|
|
|
117
|
-
|
|
178
|
+
#### 🎈 Float
|
|
118
179
|
|
|
119
180
|
- float
|
|
120
181
|
- floatSway
|
|
@@ -122,7 +183,7 @@ Prop Type Default Description
|
|
|
122
183
|
- floatCircular
|
|
123
184
|
- floatWiggle
|
|
124
185
|
|
|
125
|
-
|
|
186
|
+
#### 💡 Glow
|
|
126
187
|
|
|
127
188
|
- glow
|
|
128
189
|
- glowTextFlicker
|
|
@@ -130,7 +191,7 @@ Prop Type Default Description
|
|
|
130
191
|
- glowBreathing
|
|
131
192
|
- glowGlitch
|
|
132
193
|
|
|
133
|
-
|
|
194
|
+
#### 🍮 Jelly
|
|
134
195
|
|
|
135
196
|
- jelly
|
|
136
197
|
- jellyX
|
|
@@ -138,7 +199,7 @@ Prop Type Default Description
|
|
|
138
199
|
- jellyIn
|
|
139
200
|
- jellyOut
|
|
140
201
|
|
|
141
|
-
|
|
202
|
+
#### 🌑 Shadow / Spin / Swing / Orbit
|
|
142
203
|
|
|
143
204
|
- shadow
|
|
144
205
|
- shadowText
|
|
@@ -155,7 +216,7 @@ Prop Type Default Description
|
|
|
155
216
|
- orbit
|
|
156
217
|
- orbitEllipse
|
|
157
218
|
|
|
158
|
-
|
|
219
|
+
#### 💓 Pulse
|
|
159
220
|
|
|
160
221
|
- pulse
|
|
161
222
|
- pulseInOut
|
|
@@ -163,7 +224,7 @@ Prop Type Default Description
|
|
|
163
224
|
- pulseFast
|
|
164
225
|
- pulseColor
|
|
165
226
|
|
|
166
|
-
|
|
227
|
+
#### 🌫 Fade
|
|
167
228
|
|
|
168
229
|
- fadeIn
|
|
169
230
|
- fadeOut
|
|
@@ -188,20 +249,30 @@ Prop Type Default Description
|
|
|
188
249
|
- fadeInPerspective
|
|
189
250
|
- fadeOutPerspective
|
|
190
251
|
|
|
191
|
-
|
|
252
|
+
#### 🤯 Squeeze / Shake
|
|
192
253
|
|
|
193
254
|
- squeezeMix
|
|
194
255
|
- squeezeHorizontal
|
|
195
256
|
- squeezeVertical
|
|
196
257
|
- squeezeDiagonal
|
|
197
258
|
- squeezePulse
|
|
259
|
+
- squeezeBounce
|
|
260
|
+
- squeezeElastic
|
|
261
|
+
- squeezeFlash
|
|
198
262
|
- shakeMix
|
|
199
263
|
- shakeHorizontal
|
|
200
264
|
- shakeVertical
|
|
201
265
|
- shakeDiagonal
|
|
202
266
|
- shakeQuick
|
|
267
|
+
- shakeRotate
|
|
268
|
+
- shakeSkew
|
|
269
|
+
- shakeBounce
|
|
270
|
+
- shakeCrazy
|
|
271
|
+
- squeezeThenShakeX
|
|
272
|
+
- shakeYThenSqueeze
|
|
273
|
+
- squeezeShakeCrazy
|
|
203
274
|
|
|
204
|
-
|
|
275
|
+
#### 📥 Slide
|
|
205
276
|
|
|
206
277
|
- slideInFromLeft
|
|
207
278
|
- slideInFromRight
|
|
@@ -220,7 +291,7 @@ Prop Type Default Description
|
|
|
220
291
|
- slideOutToTopOvershoot
|
|
221
292
|
- slideOutToBottomOvershoot
|
|
222
293
|
|
|
223
|
-
|
|
294
|
+
#### 🔄 Flip
|
|
224
295
|
|
|
225
296
|
- flip
|
|
226
297
|
- flipIn
|
|
@@ -244,14 +315,14 @@ Prop Type Default Description
|
|
|
244
315
|
- flipFromLeftToCenterRich
|
|
245
316
|
- flipFromRightToCenterRich
|
|
246
317
|
|
|
247
|
-
|
|
318
|
+
#### 📂 Fold / Unfold
|
|
248
319
|
|
|
249
320
|
- fold
|
|
250
321
|
- foldDeep
|
|
251
322
|
- unfold
|
|
252
323
|
- unfoldDeep
|
|
253
324
|
|
|
254
|
-
|
|
325
|
+
#### 🪝 Hang On
|
|
255
326
|
|
|
256
327
|
- hangOnLeft
|
|
257
328
|
- hangOnRight
|
|
@@ -264,7 +335,7 @@ Prop Type Default Description
|
|
|
264
335
|
- hangOnOscillate
|
|
265
336
|
- hangOnDrop
|
|
266
337
|
|
|
267
|
-
|
|
338
|
+
#### 🔍 Zoom
|
|
268
339
|
|
|
269
340
|
- zoomIn
|
|
270
341
|
- zoomOut
|
|
@@ -277,7 +348,7 @@ Prop Type Default Description
|
|
|
277
348
|
- zoomOutToTop
|
|
278
349
|
- zoomOutToBottom
|
|
279
350
|
|
|
280
|
-
|
|
351
|
+
#### 🌀 Rotate
|
|
281
352
|
|
|
282
353
|
- rotateCW
|
|
283
354
|
- rotateACW
|
|
@@ -293,7 +364,7 @@ Prop Type Default Description
|
|
|
293
364
|
- rotateToTop
|
|
294
365
|
- rotateToBottom
|
|
295
366
|
|
|
296
|
-
|
|
367
|
+
#### 🎉 Fun / Attention
|
|
297
368
|
|
|
298
369
|
- heartBeat
|
|
299
370
|
- tada
|
|
@@ -320,57 +391,6 @@ Prop Type Default Description
|
|
|
320
391
|
- rollIn
|
|
321
392
|
- jackInTheBox
|
|
322
393
|
|
|
323
|
-
---
|
|
324
|
-
|
|
325
|
-
#### Chain Animation
|
|
326
|
-
|
|
327
|
-
An string-arry of animation names is used to wrap the animations you want to chain.
|
|
328
|
-
|
|
329
|
-
```js
|
|
330
|
-
import React, { useState } from "react";
|
|
331
|
-
import { AnimateTyping } from "react-animate-z";
|
|
332
|
-
|
|
333
|
-
const AnimationsForChaining = [
|
|
334
|
-
"swing",
|
|
335
|
-
"flipSlowDown",
|
|
336
|
-
"fadeOutToBottom",
|
|
337
|
-
"jelly",
|
|
338
|
-
];
|
|
339
|
-
|
|
340
|
-
const AnimationChain: React.FC = () => {
|
|
341
|
-
// const [animationIndex, setAnimationIndex] = useState(0);
|
|
342
|
-
// const [animationType, setAnimationType] = useState(AnimationsForChaining[0]);
|
|
343
|
-
|
|
344
|
-
// const handleChainAnimation = () => {
|
|
345
|
-
// const nextIndex = (animationIndex + 1) % AnimationsForChaining.length;
|
|
346
|
-
// setAnimationIndex(nextIndex);
|
|
347
|
-
// setAnimationType(AnimationsForChaining[nextIndex]);
|
|
348
|
-
// };
|
|
349
|
-
|
|
350
|
-
return (
|
|
351
|
-
<>
|
|
352
|
-
<AnimateTyping
|
|
353
|
-
heading="Hello,"
|
|
354
|
-
dataText={["I am Delpi", "I build animations", "I love coding!"]}
|
|
355
|
-
cursorColor="red"
|
|
356
|
-
/>
|
|
357
|
-
|
|
358
|
-
<AnimateTyping dataText="Only once" />
|
|
359
|
-
|
|
360
|
-
<AnimateTyping
|
|
361
|
-
heading="Fast typing:"
|
|
362
|
-
dataText={["speed x2", "super fast!"]}
|
|
363
|
-
typingSpeed={50}
|
|
364
|
-
deletingSpeed={20}
|
|
365
|
-
pauseTime={1000}
|
|
366
|
-
/>
|
|
367
|
-
</>
|
|
368
|
-
);
|
|
369
|
-
};
|
|
370
|
-
|
|
371
|
-
export default AnimationChain;
|
|
372
|
-
```
|
|
373
|
-
|
|
374
394
|
## 📜 License
|
|
375
395
|
|
|
376
396
|
MIT © Delpi
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
interface
|
|
3
|
-
readonly cursorColor?: string | null;
|
|
4
|
-
}
|
|
5
|
-
export interface
|
|
6
|
-
readonly heading?: string;
|
|
7
|
-
readonly className?: string;
|
|
8
|
-
readonly dataText?: string[] | string;
|
|
9
|
-
readonly children?: React.ReactNode | string[] | string;
|
|
10
|
-
readonly typingSpeed?: number;
|
|
11
|
-
readonly deletingSpeed?: number;
|
|
12
|
-
readonly pauseTime?: number;
|
|
13
|
-
}
|
|
14
|
-
declare const AnimateTyping: React.FC<
|
|
15
|
-
export default AnimateTyping;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IFCursorProps {
|
|
3
|
+
readonly cursorColor?: string | null;
|
|
4
|
+
}
|
|
5
|
+
export interface IFAnimateTypingProps extends IFCursorProps {
|
|
6
|
+
readonly heading?: string;
|
|
7
|
+
readonly className?: string;
|
|
8
|
+
readonly dataText?: string[] | string;
|
|
9
|
+
readonly children?: React.ReactNode | string[] | string;
|
|
10
|
+
readonly typingSpeed?: number;
|
|
11
|
+
readonly deletingSpeed?: number;
|
|
12
|
+
readonly pauseTime?: number;
|
|
13
|
+
}
|
|
14
|
+
declare const AnimateTyping: React.FC<IFAnimateTypingProps>;
|
|
15
|
+
export default AnimateTyping;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}, IBaseStyledElementProps>> & string;
|
|
1
|
+
import { type IFBaseStyledElementProps } from './types';
|
|
2
|
+
export declare const StyledElement: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof import("react").HTMLAttributes<HTMLDivElement>> & {
|
|
3
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
|
+
}, IFBaseStyledElementProps>> & string;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import type {
|
|
3
|
-
export declare const WrapperAnimate: React.FC<
|
|
4
|
-
export default WrapperAnimate;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { IFAnimateProps } from './types';
|
|
3
|
+
export declare const WrapperAnimate: React.FC<IFAnimateProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const defaultDurationMap: Record<string, string>;
|
|
1
|
+
export declare const defaultDurationMap: Record<string, string>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export declare const attentionMap: {
|
|
2
|
-
rubberBand: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
jello: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
-
wobble: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
-
rollIn: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
jackInTheBox: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
};
|
|
1
|
+
export declare const attentionMap: {
|
|
2
|
+
rubberBand: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
jello: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
wobble: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
rollIn: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
jackInTheBox: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export declare const blurMap: {
|
|
2
|
-
blurIn: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
blurInZoom: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
-
blurInScale: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
-
blurInUp: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
blurInRotate: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
blurOut: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
-
blurOutZoom: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
-
blurOutScale: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
-
blurOutDown: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
-
blurOutRotate: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
-
};
|
|
1
|
+
export declare const blurMap: {
|
|
2
|
+
blurIn: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
blurInZoom: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
blurInScale: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
blurInUp: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
blurInRotate: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
blurOut: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
blurOutZoom: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
blurOutScale: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
blurOutDown: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
+
blurOutRotate: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
+
};
|
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
export declare const bounceMap: {
|
|
2
|
-
bounce: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
bounceIn: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
-
bounceOut: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
-
bounceElastic: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
bounceSmall: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
bounceRotate: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
-
bounceJelly: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
-
|
|
1
|
+
export declare const bounceMap: {
|
|
2
|
+
bounce: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
bounceIn: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
bounceOut: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
bounceElastic: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
bounceSmall: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
bounceRotate: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
bounceJelly: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
bounceSide: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
bounceDiagonal: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
+
bounceFlip: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
+
bounceFade: import("styled-components/dist/models/Keyframes").default;
|
|
13
|
+
bounceCrazy: import("styled-components/dist/models/Keyframes").default;
|
|
14
|
+
bounceGlow: import("styled-components/dist/models/Keyframes").default;
|
|
15
|
+
bounceFadeScale: import("styled-components/dist/models/Keyframes").default;
|
|
16
|
+
bounceSparkle: import("styled-components/dist/models/Keyframes").default;
|
|
17
|
+
bounceRainbow: import("styled-components/dist/models/Keyframes").default;
|
|
18
|
+
};
|
|
@@ -1,24 +1,34 @@
|
|
|
1
|
-
export declare const fadeMap: {
|
|
2
|
-
fadeIn: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
fadeOut: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
-
fadeInFromLeft: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
-
fadeInFromRight: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
fadeInFromTop: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
fadeInFromBottom: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
-
fadeOutToLeft: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
-
fadeOutToRight: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
-
fadeOutToTop: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
-
fadeOutToBottom: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
-
fadeInZoom: import("styled-components/dist/models/Keyframes").default;
|
|
13
|
-
fadeOutZoom: import("styled-components/dist/models/Keyframes").default;
|
|
14
|
-
fadeInRotate: import("styled-components/dist/models/Keyframes").default;
|
|
15
|
-
fadeOutRotate: import("styled-components/dist/models/Keyframes").default;
|
|
16
|
-
fadeInSkew: import("styled-components/dist/models/Keyframes").default;
|
|
17
|
-
fadeOutSkew: import("styled-components/dist/models/Keyframes").default;
|
|
18
|
-
fadeInFlipX: import("styled-components/dist/models/Keyframes").default;
|
|
19
|
-
fadeOutFlipX: import("styled-components/dist/models/Keyframes").default;
|
|
20
|
-
fadeInFlipY: import("styled-components/dist/models/Keyframes").default;
|
|
21
|
-
fadeOutFlipY: import("styled-components/dist/models/Keyframes").default;
|
|
22
|
-
fadeInPerspective: import("styled-components/dist/models/Keyframes").default;
|
|
23
|
-
fadeOutPerspective: import("styled-components/dist/models/Keyframes").default;
|
|
24
|
-
|
|
1
|
+
export declare const fadeMap: {
|
|
2
|
+
fadeIn: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
fadeOut: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
fadeInFromLeft: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
fadeInFromRight: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
fadeInFromTop: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
fadeInFromBottom: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
fadeOutToLeft: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
fadeOutToRight: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
fadeOutToTop: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
+
fadeOutToBottom: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
+
fadeInZoom: import("styled-components/dist/models/Keyframes").default;
|
|
13
|
+
fadeOutZoom: import("styled-components/dist/models/Keyframes").default;
|
|
14
|
+
fadeInRotate: import("styled-components/dist/models/Keyframes").default;
|
|
15
|
+
fadeOutRotate: import("styled-components/dist/models/Keyframes").default;
|
|
16
|
+
fadeInSkew: import("styled-components/dist/models/Keyframes").default;
|
|
17
|
+
fadeOutSkew: import("styled-components/dist/models/Keyframes").default;
|
|
18
|
+
fadeInFlipX: import("styled-components/dist/models/Keyframes").default;
|
|
19
|
+
fadeOutFlipX: import("styled-components/dist/models/Keyframes").default;
|
|
20
|
+
fadeInFlipY: import("styled-components/dist/models/Keyframes").default;
|
|
21
|
+
fadeOutFlipY: import("styled-components/dist/models/Keyframes").default;
|
|
22
|
+
fadeInPerspective: import("styled-components/dist/models/Keyframes").default;
|
|
23
|
+
fadeOutPerspective: import("styled-components/dist/models/Keyframes").default;
|
|
24
|
+
fadeInBlur: import("styled-components/dist/models/Keyframes").default;
|
|
25
|
+
fadeOutBlur: import("styled-components/dist/models/Keyframes").default;
|
|
26
|
+
fadeInColor: import("styled-components/dist/models/Keyframes").default;
|
|
27
|
+
fadeOutColor: import("styled-components/dist/models/Keyframes").default;
|
|
28
|
+
fadePulse: import("styled-components/dist/models/Keyframes").default;
|
|
29
|
+
fadeBounce: import("styled-components/dist/models/Keyframes").default;
|
|
30
|
+
fadeSwing: import("styled-components/dist/models/Keyframes").default;
|
|
31
|
+
fadeZoomRotate: import("styled-components/dist/models/Keyframes").default;
|
|
32
|
+
fadeElastic: import("styled-components/dist/models/Keyframes").default;
|
|
33
|
+
fadeShine: import("styled-components/dist/models/Keyframes").default;
|
|
34
|
+
};
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
export declare const flashMap: {
|
|
2
|
-
flash: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
flashIrregular: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
-
flashFast: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
-
flashSlow: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
flashPulse: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
|
|
1
|
+
export declare const flashMap: {
|
|
2
|
+
flash: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
flashIrregular: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
flashFast: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
flashSlow: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
flashPulse: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
flashGlow: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
flashColor: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
flashStrobe: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
flashSoft: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
+
flashReversePulse: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
+
};
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
export declare const flipMap: {
|
|
2
|
-
flip: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
flipIn: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
-
flipOut: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
-
flipSlowDown: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
flipToLeft: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
flipToRight: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
-
flipFromTop: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
-
flipToTop: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
-
flipToBottom: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
-
flipFromBottom: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
-
flipFromLeftToCenter: import("styled-components/dist/models/Keyframes").default;
|
|
13
|
-
flipFromRightToCenter: import("styled-components/dist/models/Keyframes").default;
|
|
14
|
-
flipRich: import("styled-components/dist/models/Keyframes").default;
|
|
15
|
-
flipToTopRich: import("styled-components/dist/models/Keyframes").default;
|
|
16
|
-
flipToBottomRich: import("styled-components/dist/models/Keyframes").default;
|
|
17
|
-
flipToTopLeftRich: import("styled-components/dist/models/Keyframes").default;
|
|
18
|
-
flipToRightRich: import("styled-components/dist/models/Keyframes").default;
|
|
19
|
-
flipFromTopRich: import("styled-components/dist/models/Keyframes").default;
|
|
20
|
-
flipFromBottomRich: import("styled-components/dist/models/Keyframes").default;
|
|
21
|
-
flipFromLeftToCenterRich: import("styled-components/dist/models/Keyframes").default;
|
|
22
|
-
flipFromRightToCenterRich: import("styled-components/dist/models/Keyframes").default;
|
|
23
|
-
};
|
|
1
|
+
export declare const flipMap: {
|
|
2
|
+
flip: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
flipIn: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
flipOut: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
flipSlowDown: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
flipToLeft: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
flipToRight: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
flipFromTop: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
flipToTop: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
flipToBottom: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
+
flipFromBottom: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
+
flipFromLeftToCenter: import("styled-components/dist/models/Keyframes").default;
|
|
13
|
+
flipFromRightToCenter: import("styled-components/dist/models/Keyframes").default;
|
|
14
|
+
flipRich: import("styled-components/dist/models/Keyframes").default;
|
|
15
|
+
flipToTopRich: import("styled-components/dist/models/Keyframes").default;
|
|
16
|
+
flipToBottomRich: import("styled-components/dist/models/Keyframes").default;
|
|
17
|
+
flipToTopLeftRich: import("styled-components/dist/models/Keyframes").default;
|
|
18
|
+
flipToRightRich: import("styled-components/dist/models/Keyframes").default;
|
|
19
|
+
flipFromTopRich: import("styled-components/dist/models/Keyframes").default;
|
|
20
|
+
flipFromBottomRich: import("styled-components/dist/models/Keyframes").default;
|
|
21
|
+
flipFromLeftToCenterRich: import("styled-components/dist/models/Keyframes").default;
|
|
22
|
+
flipFromRightToCenterRich: import("styled-components/dist/models/Keyframes").default;
|
|
23
|
+
};
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
export declare const floatMap: {
|
|
2
|
-
float: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
floatSway: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
-
floatHorizontal: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
-
floatCircular: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
floatWiggle: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
|
|
1
|
+
export declare const floatMap: {
|
|
2
|
+
float: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
floatSway: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
floatHorizontal: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
floatCircular: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
floatWiggle: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
floatPulse: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
floatDiagonal: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
floatSwing: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
floatWave: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
+
floatDrift: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
+
};
|
|
@@ -1,6 +1,14 @@
|
|
|
1
|
-
export declare const foldMap: {
|
|
2
|
-
fold: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
unfoldDeep: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
|
|
1
|
+
export declare const foldMap: {
|
|
2
|
+
fold: import("styled-components/dist/models/Keyframes").default;
|
|
3
|
+
unfold: import("styled-components/dist/models/Keyframes").default;
|
|
4
|
+
foldDeep: import("styled-components/dist/models/Keyframes").default;
|
|
5
|
+
unfoldDeep: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
foldLeft: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
unfoldLeft: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
foldRight: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
unfoldRight: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
foldUp: import("styled-components/dist/models/Keyframes").default;
|
|
11
|
+
unfoldUp: import("styled-components/dist/models/Keyframes").default;
|
|
12
|
+
foldDown: import("styled-components/dist/models/Keyframes").default;
|
|
13
|
+
unfoldDown: import("styled-components/dist/models/Keyframes").default;
|
|
14
|
+
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
/** ===========================================================
|
|
2
|
-
* Fun / Attention Map
|
|
3
|
-
=========================================================== */
|
|
4
|
-
export declare const funMap: {
|
|
5
|
-
heartBeat: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
-
tada: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
-
hinge: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
-
lightSpeedInLeft: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
-
lightSpeedOutRight: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
-
};
|
|
1
|
+
/** ===========================================================
|
|
2
|
+
* Fun / Attention Map
|
|
3
|
+
=========================================================== */
|
|
4
|
+
export declare const funMap: {
|
|
5
|
+
heartBeat: import("styled-components/dist/models/Keyframes").default;
|
|
6
|
+
tada: import("styled-components/dist/models/Keyframes").default;
|
|
7
|
+
hinge: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
lightSpeedInLeft: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
lightSpeedOutRight: import("styled-components/dist/models/Keyframes").default;
|
|
10
|
+
};
|