@manas-dev/sound-lab 1.0.2 → 1.0.4
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.
Potentially problematic release.
This version of @manas-dev/sound-lab might be problematic. Click here for more details.
- package/README.md +7 -0
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -79,6 +79,13 @@ const App = () => {
|
|
|
79
79
|
| `primaryColor` | `string` | `'#3b82f6'` | Hex color for active states (buttons, sliders, selected items). |
|
|
80
80
|
| `className` | `string` | `''` | CSS class for the wrapper element. |
|
|
81
81
|
|
|
82
|
+
## Attribution
|
|
83
|
+
|
|
84
|
+
If you use this package in your project, please cite the author or repository:
|
|
85
|
+
|
|
86
|
+
> **Sound Lab** by Manas Barman (@manas-dev)
|
|
87
|
+
> Repository: [github.com/ManasBarman229/sound-lab](https://github.com/ManasBarman229/sound-lab)
|
|
88
|
+
|
|
82
89
|
## License
|
|
83
90
|
|
|
84
91
|
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manas-dev/sound-lab",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "A sleek sound control panel for modern web experiences.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"sound-ui",
|
|
8
|
+
"volume-control",
|
|
9
|
+
"audio-settings",
|
|
10
|
+
"ui-component",
|
|
11
|
+
"tailwind",
|
|
12
|
+
"accessibility"
|
|
13
|
+
],
|
|
5
14
|
"main": "dist/index.cjs.js",
|
|
6
15
|
"module": "dist/index.esm.js",
|
|
7
16
|
"types": "dist/index.d.ts",
|
|
@@ -9,8 +18,8 @@
|
|
|
9
18
|
"build": "rollup -c"
|
|
10
19
|
},
|
|
11
20
|
"peerDependencies": {
|
|
12
|
-
"react": "^18.0.0",
|
|
13
|
-
"react-dom": "^18.0.0"
|
|
21
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
22
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
14
23
|
},
|
|
15
24
|
"dependencies": {
|
|
16
25
|
"@manas-dev/global-themes": "file:../global-themes",
|