aplayer-react
Advanced tools
Comparing version 1.0.0-alpha.10 to 1.0.0-alpha.11
@@ -461,3 +461,4 @@ "use strict"; | ||
), | ||
() => audioElementRef.current?.volume | ||
() => audioElementRef.current?.volume, | ||
() => void 0 | ||
); | ||
@@ -480,3 +481,4 @@ const muted = (0, import_shim.useSyncExternalStore)( | ||
), | ||
() => audioElementRef.current?.muted | ||
() => audioElementRef.current?.muted, | ||
() => void 0 | ||
); | ||
@@ -496,3 +498,4 @@ const currentTime = (0, import_shim.useSyncExternalStore)( | ||
), | ||
() => audioElementRef.current?.currentTime | ||
() => audioElementRef.current?.currentTime, | ||
() => void 0 | ||
); | ||
@@ -515,3 +518,4 @@ const duration = (0, import_shim.useSyncExternalStore)( | ||
), | ||
() => audioElementRef.current?.duration | ||
() => audioElementRef.current?.duration, | ||
() => void 0 | ||
); | ||
@@ -539,3 +543,4 @@ const bufferedSeconds = (0, import_shim.useSyncExternalStore)( | ||
return 0; | ||
} | ||
}, | ||
() => void 0 | ||
); | ||
@@ -557,3 +562,4 @@ const isPlaying = (0, import_shim.useSyncExternalStore)( | ||
return audio ? !audio.paused : false; | ||
} | ||
}, | ||
() => void 0 | ||
); | ||
@@ -583,3 +589,4 @@ const isLoading = (0, import_shim.useSyncExternalStore)( | ||
return audio.networkState === audio.NETWORK_LOADING; | ||
} | ||
}, | ||
() => void 0 | ||
); | ||
@@ -586,0 +593,0 @@ return { |
{ | ||
"name": "aplayer-react", | ||
"version": "1.0.0-alpha.10", | ||
"version": "1.0.0-alpha.11", | ||
"description": "The missing APlayer for React applications", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
72306
1817