Skip to content

Commit a73fd78

Browse files
chore(release): 1.0.0 [skip ci]
1 parent 07a3643 commit a73fd78

File tree

6 files changed

+191
-1
lines changed

6 files changed

+191
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 1.0.0 (2024-01-17)
2+
3+
4+
### Features
5+
6+
* added Waves component and unit tests ([e066b05](https://github.com/agrawal-rohit/react-animated-waves/commit/e066b05329219d1124e9e38f4a93992979c4983d))

dist/index.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from "react";
2+
type WavesProps = React.DetailedHTMLProps<React.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement> & {
3+
/** The colors for the waveform */
4+
colors?: string[];
5+
/** The amplitude of the waveform */
6+
amplitude?: number;
7+
};
8+
declare const _default: React.NamedExoticComponent<WavesProps>;
9+
export default _default;
10+
//# sourceMappingURL=index.d.ts.map

dist/index.es.js

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

dist/index.js

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

dist/index.min.js

Lines changed: 2 additions & 0 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": "react-animated-waves",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "A React component for creating beautiful audio visualizations or UI loading states using animated waves",
55
"main": "dist/index.min.js",
66
"module": "dist/index.es.js",

0 commit comments

Comments
 (0)