@popmenu/admin-ui 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/components/Button/Button.d.ts +1 -1
- package/build/index.es.js +41 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +41 -2
- package/build/index.js.map +1 -1
- package/build/theme/adminDarkTheme.d.ts +17 -1
- package/build/theme/adminLightTheme.d.ts +16 -0
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -744,7 +744,7 @@ Link.defaultProps = {
|
|
|
744
744
|
};
|
|
745
745
|
Link.displayName = 'Link';
|
|
746
746
|
|
|
747
|
-
var useStyles$
|
|
747
|
+
var useStyles$4$1 = core.makeStyles(function (_a) {
|
|
748
748
|
var spacing = _a.spacing;
|
|
749
749
|
return ({
|
|
750
750
|
root: {
|
|
@@ -758,7 +758,7 @@ var useStyles$5 = core.makeStyles(function (_a) {
|
|
|
758
758
|
});
|
|
759
759
|
var Paper = React.forwardRef(function (props, ref) {
|
|
760
760
|
var legacyStyles = props.legacyStyles, restProps = __rest(props, ["legacyStyles"]);
|
|
761
|
-
var classes = useStyles$
|
|
761
|
+
var classes = useStyles$4$1(props);
|
|
762
762
|
return React__default['default'].createElement(core.Paper, __assign({}, ref, { classes: __assign({}, (legacyStyles && classes)) }, restProps));
|
|
763
763
|
});
|
|
764
764
|
Paper.displayName = 'Paper';
|
|
@@ -911,6 +911,45 @@ core.makeStyles(function (theme) { return ({
|
|
|
911
911
|
},
|
|
912
912
|
}); });
|
|
913
913
|
|
|
914
|
+
core.makeStyles(function () { return ({
|
|
915
|
+
root: {
|
|
916
|
+
display: 'flex',
|
|
917
|
+
flexDirection: 'column',
|
|
918
|
+
alignItems: 'center',
|
|
919
|
+
gridGap: 16,
|
|
920
|
+
},
|
|
921
|
+
}); });
|
|
922
|
+
|
|
923
|
+
var FollowerAuthenticationDialogContext = React.createContext(null);
|
|
924
|
+
FollowerAuthenticationDialogContext.Provider;
|
|
925
|
+
|
|
926
|
+
core.makeStyles(function () { return ({
|
|
927
|
+
form: {
|
|
928
|
+
display: 'flex',
|
|
929
|
+
flexDirection: 'column',
|
|
930
|
+
alignItems: 'center',
|
|
931
|
+
width: '100%',
|
|
932
|
+
gridGap: 16,
|
|
933
|
+
},
|
|
934
|
+
}); });
|
|
935
|
+
|
|
936
|
+
core.makeStyles(function () { return ({
|
|
937
|
+
main: {
|
|
938
|
+
width: '100%',
|
|
939
|
+
display: 'flex',
|
|
940
|
+
flexDirection: 'column',
|
|
941
|
+
gridGap: 16,
|
|
942
|
+
},
|
|
943
|
+
}); });
|
|
944
|
+
|
|
945
|
+
core.makeStyles(function () { return ({
|
|
946
|
+
root: {
|
|
947
|
+
position: 'absolute',
|
|
948
|
+
top: 0,
|
|
949
|
+
right: 0,
|
|
950
|
+
},
|
|
951
|
+
}); });
|
|
952
|
+
|
|
914
953
|
var _g$2B;
|
|
915
954
|
|
|
916
955
|
function _extends$4J() { _extends$4J = 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$4J.apply(this, arguments); }
|