@popmenu/dashboard 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
@@ -670,7 +670,7 @@ Link.defaultProps = {
670
670
  };
671
671
  Link.displayName = 'Link';
672
672
 
673
- var useStyles = core.makeStyles(function (_a) {
673
+ var useStyles$4 = core.makeStyles(function (_a) {
674
674
  var spacing = _a.spacing;
675
675
  return ({
676
676
  root: {
@@ -684,7 +684,7 @@ var useStyles = core.makeStyles(function (_a) {
684
684
  });
685
685
  var Paper = React.forwardRef(function (props, ref) {
686
686
  var legacyStyles = props.legacyStyles, restProps = __rest(props, ["legacyStyles"]);
687
- var classes = useStyles(props);
687
+ var classes = useStyles$4(props);
688
688
  return React__default['default'].createElement(core.Paper, __assign({}, ref, { classes: __assign({}, (legacyStyles && classes)) }, restProps));
689
689
  });
690
690
  Paper.displayName = 'Paper';
@@ -837,6 +837,45 @@ core.makeStyles(function (theme) { return ({
837
837
  },
838
838
  }); });
839
839
 
840
+ core.makeStyles(function () { return ({
841
+ root: {
842
+ display: 'flex',
843
+ flexDirection: 'column',
844
+ alignItems: 'center',
845
+ gridGap: 16,
846
+ },
847
+ }); });
848
+
849
+ var FollowerAuthenticationDialogContext = React.createContext(null);
850
+ FollowerAuthenticationDialogContext.Provider;
851
+
852
+ core.makeStyles(function () { return ({
853
+ form: {
854
+ display: 'flex',
855
+ flexDirection: 'column',
856
+ alignItems: 'center',
857
+ width: '100%',
858
+ gridGap: 16,
859
+ },
860
+ }); });
861
+
862
+ core.makeStyles(function () { return ({
863
+ main: {
864
+ width: '100%',
865
+ display: 'flex',
866
+ flexDirection: 'column',
867
+ gridGap: 16,
868
+ },
869
+ }); });
870
+
871
+ core.makeStyles(function () { return ({
872
+ root: {
873
+ position: 'absolute',
874
+ top: 0,
875
+ right: 0,
876
+ },
877
+ }); });
878
+
840
879
  var _path$2p;
841
880
 
842
881
  function _extends$5p() { _extends$5p = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$5p.apply(this, arguments); }