@popmenu/admin-ui 0.49.0 → 0.50.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 +54 -33
- package/build/index.es.js.map +1 -1
- package/build/index.js +54 -33
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -228,19 +228,19 @@ function __rest(s, e) {
|
|
|
228
228
|
return t;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
-
var _path$
|
|
231
|
+
var _path$E;
|
|
232
232
|
|
|
233
|
-
function _extends$
|
|
233
|
+
function _extends$1w() { _extends$1w = 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$1w.apply(this, arguments); }
|
|
234
234
|
|
|
235
235
|
function SvgUser(props) {
|
|
236
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
236
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$1w({
|
|
237
237
|
viewBox: "0 0 16 16",
|
|
238
238
|
fill: "none",
|
|
239
239
|
strokeLinecap: "round",
|
|
240
240
|
strokeLinejoin: "round",
|
|
241
241
|
width: "1em",
|
|
242
242
|
height: "1em"
|
|
243
|
-
}, props), _path$
|
|
243
|
+
}, props), _path$E || (_path$E = /*#__PURE__*/React__namespace.createElement("path", {
|
|
244
244
|
d: "M13.333 14v-1.333A2.667 2.667 0 0010.667 10H5.333a2.667 2.667 0 00-2.666 2.667V14M8 7.333A2.667 2.667 0 108 2a2.667 2.667 0 000 5.333z",
|
|
245
245
|
stroke: "currentColor"
|
|
246
246
|
})));
|
|
@@ -441,6 +441,27 @@ Avatar.defaultProps = {
|
|
|
441
441
|
};
|
|
442
442
|
Avatar.displayName = 'Avatar';
|
|
443
443
|
|
|
444
|
+
styles.makeStyles(function (theme) { return ({
|
|
445
|
+
circle: {
|
|
446
|
+
backgroundColor: theme.palette.grey[300],
|
|
447
|
+
borderRadius: '50%',
|
|
448
|
+
height: theme.spacing(0.65),
|
|
449
|
+
width: theme.spacing(0.65),
|
|
450
|
+
margin: theme.spacing(1) + "px 0 " + theme.spacing(1) + "px " + theme.spacing(1) + "px",
|
|
451
|
+
},
|
|
452
|
+
container: {
|
|
453
|
+
border: "1px solid " + theme.palette.secondary.light,
|
|
454
|
+
borderRadius: theme.spacing(0.5),
|
|
455
|
+
flexGrow: 1,
|
|
456
|
+
},
|
|
457
|
+
titleBar: {
|
|
458
|
+
display: 'flex',
|
|
459
|
+
flexDirection: 'row',
|
|
460
|
+
borderBottom: "1px solid " + theme.palette.secondary.light,
|
|
461
|
+
width: '100%',
|
|
462
|
+
},
|
|
463
|
+
}); });
|
|
464
|
+
|
|
444
465
|
var useButtonStyles$1 = styles.makeStyles(function () { return ({
|
|
445
466
|
root: {
|
|
446
467
|
minWidth: 'unset',
|
|
@@ -886,26 +907,26 @@ core.makeStyles(function (theme) { return ({
|
|
|
886
907
|
},
|
|
887
908
|
}); });
|
|
888
909
|
|
|
889
|
-
var _g$
|
|
910
|
+
var _g$1e, _defs$J;
|
|
890
911
|
|
|
891
|
-
function _extends$
|
|
912
|
+
function _extends$29() { _extends$29 = 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$29.apply(this, arguments); }
|
|
892
913
|
|
|
893
914
|
function SvgCheckCircle(props) {
|
|
894
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
915
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$29({
|
|
895
916
|
viewBox: "0 0 16 16",
|
|
896
917
|
fill: "none",
|
|
897
918
|
strokeLinecap: "round",
|
|
898
919
|
strokeLinejoin: "round",
|
|
899
920
|
width: "1em",
|
|
900
921
|
height: "1em"
|
|
901
|
-
}, props), _g$
|
|
922
|
+
}, props), _g$1e || (_g$1e = /*#__PURE__*/React__namespace.createElement("g", {
|
|
902
923
|
clipPath: "url(#check-circle_svg__clip0_8_5831)",
|
|
903
924
|
stroke: "currentColor"
|
|
904
925
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
905
926
|
d: "M14.667 7.387V8a6.667 6.667 0 11-3.954-6.093"
|
|
906
927
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
907
928
|
d: "M14.667 2.667L8 9.34l-2-2"
|
|
908
|
-
}))), _defs$
|
|
929
|
+
}))), _defs$J || (_defs$J = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
909
930
|
id: "check-circle_svg__clip0_8_5831"
|
|
910
931
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
911
932
|
fill: "currentColor",
|
|
@@ -915,10 +936,10 @@ function SvgCheckCircle(props) {
|
|
|
915
936
|
|
|
916
937
|
var _path$V;
|
|
917
938
|
|
|
918
|
-
function _extends$
|
|
939
|
+
function _extends$27() { _extends$27 = 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$27.apply(this, arguments); }
|
|
919
940
|
|
|
920
941
|
function SvgX(props) {
|
|
921
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
942
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$27({
|
|
922
943
|
viewBox: "0 0 16 16",
|
|
923
944
|
fill: "none",
|
|
924
945
|
strokeLinecap: "round",
|
|
@@ -931,26 +952,26 @@ function SvgX(props) {
|
|
|
931
952
|
})));
|
|
932
953
|
}
|
|
933
954
|
|
|
934
|
-
var _g$
|
|
955
|
+
var _g$16, _defs$C;
|
|
935
956
|
|
|
936
|
-
function _extends$
|
|
957
|
+
function _extends$1Z() { _extends$1Z = 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$1Z.apply(this, arguments); }
|
|
937
958
|
|
|
938
959
|
function SvgHelp(props) {
|
|
939
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
960
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$1Z({
|
|
940
961
|
viewBox: "0 0 16 16",
|
|
941
962
|
fill: "none",
|
|
942
963
|
strokeLinecap: "round",
|
|
943
964
|
strokeLinejoin: "round",
|
|
944
965
|
width: "1em",
|
|
945
966
|
height: "1em"
|
|
946
|
-
}, props), _g$
|
|
967
|
+
}, props), _g$16 || (_g$16 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
947
968
|
clipPath: "url(#help_svg__clip0_8_5446)",
|
|
948
969
|
stroke: "currentColor"
|
|
949
970
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
950
971
|
d: "M8 14.667A6.667 6.667 0 108 1.334a6.667 6.667 0 000 13.333z"
|
|
951
972
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
952
973
|
d: "M6.06 6a2 2 0 013.887.667c0 1.333-2 2-2 2M8 11.334h.007"
|
|
953
|
-
}))), _defs$
|
|
974
|
+
}))), _defs$C || (_defs$C = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
954
975
|
id: "help_svg__clip0_8_5446"
|
|
955
976
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
956
977
|
fill: "currentColor",
|
|
@@ -958,24 +979,24 @@ function SvgHelp(props) {
|
|
|
958
979
|
})))));
|
|
959
980
|
}
|
|
960
981
|
|
|
961
|
-
var _g$
|
|
982
|
+
var _g$14, _defs$B;
|
|
962
983
|
|
|
963
|
-
function _extends$
|
|
984
|
+
function _extends$1X() { _extends$1X = 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$1X.apply(this, arguments); }
|
|
964
985
|
|
|
965
986
|
function SvgInfo(props) {
|
|
966
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
987
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$1X({
|
|
967
988
|
viewBox: "0 0 16 16",
|
|
968
989
|
fill: "none",
|
|
969
990
|
strokeLinecap: "round",
|
|
970
991
|
strokeLinejoin: "round",
|
|
971
992
|
width: "1em",
|
|
972
993
|
height: "1em"
|
|
973
|
-
}, props), _g$
|
|
994
|
+
}, props), _g$14 || (_g$14 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
974
995
|
clipPath: "url(#info_svg__clip0_8_5377)",
|
|
975
996
|
stroke: "currentColor"
|
|
976
997
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
977
998
|
d: "M8 14.667A6.667 6.667 0 108 1.334a6.667 6.667 0 000 13.333zm0-4V8m0-2.667h.007"
|
|
978
|
-
}))), _defs$
|
|
999
|
+
}))), _defs$B || (_defs$B = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
979
1000
|
id: "info_svg__clip0_8_5377"
|
|
980
1001
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
981
1002
|
fill: "currentColor",
|
|
@@ -983,24 +1004,24 @@ function SvgInfo(props) {
|
|
|
983
1004
|
})))));
|
|
984
1005
|
}
|
|
985
1006
|
|
|
986
|
-
var _g$
|
|
1007
|
+
var _g$R, _defs$s;
|
|
987
1008
|
|
|
988
|
-
function _extends$
|
|
1009
|
+
function _extends$1s() { _extends$1s = 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$1s.apply(this, arguments); }
|
|
989
1010
|
|
|
990
1011
|
function SvgError(props) {
|
|
991
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
1012
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$1s({
|
|
992
1013
|
viewBox: "0 0 16 16",
|
|
993
1014
|
fill: "none",
|
|
994
1015
|
strokeLinecap: "round",
|
|
995
1016
|
strokeLinejoin: "round",
|
|
996
1017
|
width: "1em",
|
|
997
1018
|
height: "1em"
|
|
998
|
-
}, props), _g$
|
|
1019
|
+
}, props), _g$R || (_g$R = /*#__PURE__*/React__namespace.createElement("g", {
|
|
999
1020
|
clipPath: "url(#error_svg__clip0_8_5411)",
|
|
1000
1021
|
stroke: "currentColor"
|
|
1001
1022
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1002
1023
|
d: "M5.24 1.333h5.52l3.907 3.907v5.52l-3.907 3.907H5.24L1.333 10.76V5.24L5.24 1.333zm2.76 4V8m0 2.666h.008"
|
|
1003
|
-
}))), _defs$
|
|
1024
|
+
}))), _defs$s || (_defs$s = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
1004
1025
|
id: "error_svg__clip0_8_5411"
|
|
1005
1026
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1006
1027
|
fill: "currentColor",
|
|
@@ -1010,10 +1031,10 @@ function SvgError(props) {
|
|
|
1010
1031
|
|
|
1011
1032
|
var _path$B;
|
|
1012
1033
|
|
|
1013
|
-
function _extends$
|
|
1034
|
+
function _extends$1r() { _extends$1r = 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$1r.apply(this, arguments); }
|
|
1014
1035
|
|
|
1015
1036
|
function SvgWarning(props) {
|
|
1016
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
1037
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$1r({
|
|
1017
1038
|
viewBox: "0 0 16 16",
|
|
1018
1039
|
fill: "none",
|
|
1019
1040
|
strokeLinecap: "round",
|
|
@@ -1026,24 +1047,24 @@ function SvgWarning(props) {
|
|
|
1026
1047
|
})));
|
|
1027
1048
|
}
|
|
1028
1049
|
|
|
1029
|
-
var _g$
|
|
1050
|
+
var _g$v, _defs$k;
|
|
1030
1051
|
|
|
1031
|
-
function _extends$
|
|
1052
|
+
function _extends$J() { _extends$J = 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$J.apply(this, arguments); }
|
|
1032
1053
|
|
|
1033
1054
|
function SvgCircle(props) {
|
|
1034
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$
|
|
1055
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends$J({
|
|
1035
1056
|
viewBox: "0 0 16 16",
|
|
1036
1057
|
fill: "none",
|
|
1037
1058
|
strokeLinecap: "round",
|
|
1038
1059
|
strokeLinejoin: "round",
|
|
1039
1060
|
width: "1em",
|
|
1040
1061
|
height: "1em"
|
|
1041
|
-
}, props), _g$
|
|
1062
|
+
}, props), _g$v || (_g$v = /*#__PURE__*/React__namespace.createElement("g", {
|
|
1042
1063
|
clipPath: "url(#circle_svg__clip0_8_2293)"
|
|
1043
1064
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1044
1065
|
d: "M8 14.667A6.667 6.667 0 108 1.334a6.667 6.667 0 000 13.333z",
|
|
1045
1066
|
stroke: "currentColor"
|
|
1046
|
-
}))), _defs$
|
|
1067
|
+
}))), _defs$k || (_defs$k = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
1047
1068
|
id: "circle_svg__clip0_8_2293"
|
|
1048
1069
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1049
1070
|
fill: "currentColor",
|