@popmenu/dashboard 0.92.0 → 0.94.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.es.js +46 -7
- package/build/index.es.js.map +1 -1
- package/build/index.js +45 -6
- package/build/index.js.map +1 -1
- package/package.json +2 -2
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,19 +837,58 @@ core.makeStyles(function (theme) { return ({
|
|
|
837
837
|
},
|
|
838
838
|
}); });
|
|
839
839
|
|
|
840
|
-
|
|
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
|
+
|
|
879
|
+
var _path$2p;
|
|
841
880
|
|
|
842
|
-
function _extends$
|
|
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); }
|
|
843
882
|
|
|
844
883
|
function SvgChevronDown(props) {
|
|
845
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
884
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$5p({
|
|
846
885
|
viewBox: "0 0 16 16",
|
|
847
886
|
fill: "none",
|
|
848
887
|
strokeLinecap: "round",
|
|
849
888
|
strokeLinejoin: "round",
|
|
850
889
|
width: "1em",
|
|
851
890
|
height: "1em"
|
|
852
|
-
}, props), _path$
|
|
891
|
+
}, props), _path$2p || (_path$2p = /*#__PURE__*/React__namespace.createElement("path", {
|
|
853
892
|
d: "M4 6l4 4 4-4",
|
|
854
893
|
stroke: "currentColor"
|
|
855
894
|
})));
|