@popmenu/audio-player 0.93.0 → 0.95.0

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/build/index.js CHANGED
@@ -819,7 +819,7 @@ Link.defaultProps = {
819
819
  };
820
820
  Link.displayName = 'Link';
821
821
 
822
- var useStyles = core.makeStyles(function (_a) {
822
+ var useStyles$4 = core.makeStyles(function (_a) {
823
823
  var spacing = _a.spacing;
824
824
  return ({
825
825
  root: {
@@ -833,7 +833,7 @@ var useStyles = core.makeStyles(function (_a) {
833
833
  });
834
834
  var Paper = React.forwardRef(function (props, ref) {
835
835
  var legacyStyles = props.legacyStyles, restProps = __rest(props, ["legacyStyles"]);
836
- var classes = useStyles(props);
836
+ var classes = useStyles$4(props);
837
837
  return React__default['default'].createElement(core.Paper, __assign({}, ref, { classes: __assign({}, (legacyStyles && classes)) }, restProps));
838
838
  });
839
839
  Paper.displayName = 'Paper';
@@ -986,6 +986,45 @@ core.makeStyles(function (theme) { return ({
986
986
  },
987
987
  }); });
988
988
 
989
+ core.makeStyles(function () { return ({
990
+ root: {
991
+ display: 'flex',
992
+ flexDirection: 'column',
993
+ alignItems: 'center',
994
+ gridGap: 16,
995
+ },
996
+ }); });
997
+
998
+ var FollowerAuthenticationDialogContext = React.createContext(null);
999
+ FollowerAuthenticationDialogContext.Provider;
1000
+
1001
+ core.makeStyles(function () { return ({
1002
+ form: {
1003
+ display: 'flex',
1004
+ flexDirection: 'column',
1005
+ alignItems: 'center',
1006
+ width: '100%',
1007
+ gridGap: 16,
1008
+ },
1009
+ }); });
1010
+
1011
+ core.makeStyles(function () { return ({
1012
+ main: {
1013
+ width: '100%',
1014
+ display: 'flex',
1015
+ flexDirection: 'column',
1016
+ gridGap: 16,
1017
+ },
1018
+ }); });
1019
+
1020
+ core.makeStyles(function () { return ({
1021
+ root: {
1022
+ position: 'absolute',
1023
+ top: 0,
1024
+ right: 0,
1025
+ },
1026
+ }); });
1027
+
989
1028
  var AUDIO_PLAYER_EVENT_TYPES;
990
1029
  (function (AUDIO_PLAYER_EVENT_TYPES) {
991
1030
  AUDIO_PLAYER_EVENT_TYPES["TOGGLE_PLAYBACK"] = "TOGGLE_PLAYBACK";