Skip to content

Commit 4d46b71

Browse files
committed
@1.1.3 with cdns
1 parent c7b99b2 commit 4d46b71

File tree

9 files changed

+122
-135
lines changed

9 files changed

+122
-135
lines changed

README.md

Lines changed: 108 additions & 121 deletions
Large diffs are not rendered by default.

dist/cli.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/templates/DanceText.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React from "react";
2-
interface DripTextProps {
2+
interface DanceTextProps {
33
text: string[];
44
speed?: number;
55
direction?: "top" | "bottom";
66
className?: string;
77
}
8-
declare const DripText: React.FC<DripTextProps>;
9-
export default DripText;
8+
declare const DanceText: React.FC<DanceTextProps>;
9+
export default DanceText;

dist/templates/DanceText.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/templates/DanceText.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/templates/DanceText.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
import React, { useEffect, useRef, useState } from "react";
44
import anime from "animejs";
55

6-
interface DripTextProps {
6+
interface DanceTextProps {
77
text: string[];
88
speed?: number;
99
direction?: "top" | "bottom";
1010
className?: string;
1111
}
12-
const DripText: React.FC<DripTextProps> = ({ text, speed = 0.5, direction = "none", className = "" }) => {
12+
const DanceText: React.FC<DanceTextProps> = ({ text, speed = 0.5, direction = "none", className = "" }) => {
1313
const textWrapperRef = useRef<HTMLSpanElement>(null);
1414
const [currentIndex, setCurrentIndex] = useState(0);
1515

@@ -66,7 +66,7 @@ const DripText: React.FC<DripTextProps> = ({ text, speed = 0.5, direction = "non
6666
);
6767
};
6868

69-
export default DripText;
69+
export default DanceText;
7070
/*creator:@ahkamboh(Ali Hamza Kamboh)
7171
Site : https://alihamzakamboh.com
7272
Twitter: https://twitter.com/alihamzakambohh

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "animatio",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "A React component package for creating text effects. Customize your text animation effortlessly with customizable classNames for styling.",
55
"main": "dist/cli.js",
66
"types": "dist/cli.d.ts",

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { program } from 'commander';
55

66
// Define the CLI tool version and description
77
program
8-
.version('1.1.2')
8+
.version('1.1.3')
99
.description('Animatio: A React component package for creating dynamic text effects');
1010

1111
// Command to initialize the animations folder

0 commit comments

Comments
 (0)