react-modern-audio-player 1.0.0 → 1.0.1
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 +8 -5
- package/package.json +4 -7
package/README.md
CHANGED
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
<h1 align="center">React Modern Audio Player</h1>
|
|
4
4
|
</p>
|
|
5
5
|
|
|
6
|
-
|
|
7
6
|
<p align="center">
|
|
7
|
+
<a href="https://github.com/slash9494/react-modern-audio-player/blob/main/package/LICENSE">
|
|
8
|
+
<img src="https://img.shields.io/npm/l/react-modern-audio-player" alt="License">
|
|
9
|
+
</a>
|
|
8
10
|
<a href="https://www.npmjs.com/package/react-modern-audio-player">
|
|
9
11
|
<img src="https://img.shields.io/npm/v/react-modern-audio-player" alt="Version">
|
|
10
12
|
</a>
|
|
@@ -12,7 +14,7 @@
|
|
|
12
14
|
<img src="https://img.shields.io/npm/dt/react-modern-audio-player" alt="Download">
|
|
13
15
|
</a>
|
|
14
16
|
<a href="https://bundlephobia.com/package/react-modern-audio-player@0.0.3">
|
|
15
|
-
<img src="https://
|
|
17
|
+
<img src="https://img.shields.io/bundlephobia/minzip/react-modern-audio-player" alt="BundleSize">
|
|
16
18
|
</a>
|
|
17
19
|
</p>
|
|
18
20
|
|
|
@@ -226,8 +228,9 @@ const defaultInterfacePlacement = {
|
|
|
226
228
|
### Theme mode ( dark-mode )
|
|
227
229
|
|
|
228
230
|
> it apply dark-mode depending on `system-theme`
|
|
229
|
-
|
|
230
|
-
>
|
|
231
|
+
> </br>
|
|
232
|
+
> you can customize color-theme by `css-variable` of `react-spectrum` `theme-default`
|
|
233
|
+
|
|
231
234
|
|
|
232
235
|
## ID & Classnames
|
|
233
236
|
|
|
@@ -294,4 +297,4 @@ function App() {
|
|
|
294
297
|
</div>
|
|
295
298
|
);
|
|
296
299
|
}
|
|
297
|
-
```
|
|
300
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-modern-audio-player",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"homepage": "https://github.com/slash9494/react-modern-audio-player/",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -9,10 +9,6 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
12
|
"repository": {
|
|
17
13
|
"type": "git",
|
|
18
14
|
"url": "git+https://github.com/slash9494/react-modern-audio-player.git"
|
|
@@ -21,7 +17,7 @@
|
|
|
21
17
|
"dev": "vite --host",
|
|
22
18
|
"build": "rm -rf dist && tsc && vite build",
|
|
23
19
|
"preview": "vite preview",
|
|
24
|
-
"publish": "
|
|
20
|
+
"publish": "npm publish --access public"
|
|
25
21
|
},
|
|
26
22
|
"peerDependencies": {
|
|
27
23
|
"react": ">=16.8.0",
|
|
@@ -48,5 +44,6 @@
|
|
|
48
44
|
"vite": "^2.9.0",
|
|
49
45
|
"vite-plugin-dts": "^1.1.0",
|
|
50
46
|
"vite-plugin-libcss": "^1.0.5"
|
|
51
|
-
}
|
|
47
|
+
},
|
|
48
|
+
"keywords": ["audio", "player", "react", "react-modern-audio-player"]
|
|
52
49
|
}
|