@webiny/app-admin-rmwc 5.37.5 → 5.37.6-beta.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/index.js +1 -3
- package/modules/Brand/index.js +1 -3
- package/modules/Dashboard/Welcome.js +1 -3
- package/modules/Dashboard/index.js +1 -3
- package/modules/Layout.js +1 -3
- package/modules/Navigation/Hamburger.js +1 -3
- package/modules/Navigation/Styled.js +1 -3
- package/modules/Navigation/index.js +1 -3
- package/modules/Navigation/renderers/MenuElementRenderer.js +1 -3
- package/modules/Navigation/renderers/MenuGroupRenderer.js +1 -3
- package/modules/Navigation/renderers/MenuLinkRenderer.js +1 -3
- package/modules/Navigation/renderers/MenuSectionItemRenderer.js +1 -3
- package/modules/Navigation/renderers/MenuSectionRenderer.js +1 -3
- package/modules/NotFound/index.js +1 -3
- package/modules/Overlays/Dialog.js +1 -3
- package/modules/Overlays/OmniSearch/Dialog.js +1 -3
- package/modules/Overlays/OmniSearch.js +1 -3
- package/modules/Overlays/Snackbar.js +1 -3
- package/modules/Overlays/index.js +1 -3
- package/modules/Search/index.js +1 -3
- package/modules/UserMenu/index.js +21 -8
- package/modules/UserMenu/index.js.map +1 -1
- package/package.json +12 -12
package/index.js
CHANGED
|
@@ -28,6 +28,4 @@ var RMWCProviderPlugin = (0, _appAdmin.createProviderPlugin)(function (Component
|
|
|
28
28
|
var RMWC = function RMWC() {
|
|
29
29
|
return /*#__PURE__*/_react.default.createElement(_react.Fragment, null, /*#__PURE__*/_react.default.createElement(RMWCProviderPlugin, null), /*#__PURE__*/_react.default.createElement(_Layout.Layout, null), /*#__PURE__*/_react.default.createElement(_Dashboard.Dashboard, null), /*#__PURE__*/_react.default.createElement(_NotFound.NotFound, null), /*#__PURE__*/_react.default.createElement(_Brand.Brand, null), /*#__PURE__*/_react.default.createElement(_Navigation.Navigation, null), /*#__PURE__*/_react.default.createElement(_UserMenu.UserMenu, null), /*#__PURE__*/_react.default.createElement(_Overlays.Overlays, null));
|
|
30
30
|
};
|
|
31
|
-
exports.RMWC = RMWC;
|
|
32
|
-
|
|
33
|
-
//# sourceMappingURL=index.js.map
|
|
31
|
+
exports.RMWC = RMWC;
|
package/modules/Brand/index.js
CHANGED
package/modules/Layout.js
CHANGED
|
@@ -140,6 +140,4 @@ var Navigation = function Navigation() {
|
|
|
140
140
|
with: [_MenuGroupRenderer.MenuGroupRenderer, _MenuSectionItemRenderer.MenuSectionItemRenderer, _MenuSectionRenderer.MenuSectionRenderer, _MenuLinkRenderer.MenuLinkRenderer, _MenuElementRenderer.MenuElementRenderer]
|
|
141
141
|
}));
|
|
142
142
|
};
|
|
143
|
-
exports.Navigation = Navigation;
|
|
144
|
-
|
|
145
|
-
//# sourceMappingURL=index.js.map
|
|
143
|
+
exports.Navigation = Navigation;
|
|
@@ -17,6 +17,4 @@ var MenuElementRenderer = function MenuElementRenderer(PrevMenuItem) {
|
|
|
17
17
|
return menuItem.element;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
-
exports.MenuElementRenderer = MenuElementRenderer;
|
|
21
|
-
|
|
22
|
-
//# sourceMappingURL=MenuElementRenderer.js.map
|
|
20
|
+
exports.MenuElementRenderer = MenuElementRenderer;
|
|
@@ -50,6 +50,4 @@ var MenuLinkRenderer = function MenuLinkRenderer(PrevMenuItem) {
|
|
|
50
50
|
return menuItem.path ? withLink(item) : item;
|
|
51
51
|
};
|
|
52
52
|
};
|
|
53
|
-
exports.MenuLinkRenderer = MenuLinkRenderer;
|
|
54
|
-
|
|
55
|
-
//# sourceMappingURL=MenuLinkRenderer.js.map
|
|
53
|
+
exports.MenuLinkRenderer = MenuLinkRenderer;
|
|
@@ -75,6 +75,4 @@ var MenuSectionItemRenderer = function MenuSectionItemRenderer(PrevMenuItem) {
|
|
|
75
75
|
}, menuItem.label)));
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
-
exports.MenuSectionItemRenderer = MenuSectionItemRenderer;
|
|
79
|
-
|
|
80
|
-
//# sourceMappingURL=MenuSectionItemRenderer.js.map
|
|
78
|
+
exports.MenuSectionItemRenderer = MenuSectionItemRenderer;
|
|
@@ -10,6 +10,4 @@ var Dialog = /*#__PURE__*/(0, _styled.default)("div", {
|
|
|
10
10
|
label: "Dialog",
|
|
11
11
|
target: "eruevcs0"
|
|
12
12
|
})("background-color:rgba(0,0,0,0.32);height:100%;width:100%;position:fixed;z-index:2312321;top:0;.dialog{position:fixed;top:350px;left:50%;transform:translate(-50%,-50%);background-color:white;width:700px;height:500px;z-index:auto;box-shadow:0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12);> ul{overflow-y:scroll;height:444px;margin-bottom:10px;> li{.section-title{bottom-bottom:1px solid var(--mdc-theme-on-background);padding:10px 15px 5px 15px;}ul{li{padding:10px 15px;cursor:pointer;&.focused{background-color:var(--mdc-theme-background);}.section-item-title{margin-bottom:3px;color:var(--mdc-theme-primary);}.section-item-description{color:var(--mdc-theme-text-primary-on-background);}}}}}}");
|
|
13
|
-
exports.Dialog = Dialog;
|
|
14
|
-
|
|
15
|
-
//# sourceMappingURL=Dialog.js.map
|
|
13
|
+
exports.Dialog = Dialog;
|
package/modules/Search/index.js
CHANGED
|
@@ -43,11 +43,26 @@ var UserMenuHandleRendererImpl = function UserMenuHandleRendererImpl() {
|
|
|
43
43
|
if (!identity) {
|
|
44
44
|
return null;
|
|
45
45
|
}
|
|
46
|
-
var
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
var profile = identity.profile;
|
|
47
|
+
if (!profile) {
|
|
48
|
+
return /*#__PURE__*/_react.default.createElement(_Avatar.Avatar, {
|
|
49
|
+
"data-testid": "logged-in-user-menu-avatar",
|
|
50
|
+
src: undefined,
|
|
51
|
+
alt: identity.displayName,
|
|
52
|
+
fallbackText: identity.displayName,
|
|
53
|
+
renderImage: function renderImage(props) {
|
|
54
|
+
return /*#__PURE__*/_react.default.createElement(_components.Image, Object.assign({}, props, {
|
|
55
|
+
transform: {
|
|
56
|
+
width: 100
|
|
57
|
+
}
|
|
58
|
+
}));
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
var firstName = profile.firstName,
|
|
63
|
+
lastName = profile.lastName,
|
|
64
|
+
avatar = profile.avatar,
|
|
65
|
+
gravatar = profile.gravatar;
|
|
51
66
|
var fullName = "".concat(firstName, " ").concat(lastName);
|
|
52
67
|
return /*#__PURE__*/_react.default.createElement(_Avatar.Avatar, {
|
|
53
68
|
"data-testid": "logged-in-user-menu-avatar",
|
|
@@ -107,6 +122,4 @@ var UserMenu = function UserMenu() {
|
|
|
107
122
|
with: UserMenuItemRendererImpl
|
|
108
123
|
}));
|
|
109
124
|
};
|
|
110
|
-
exports.UserMenu = UserMenu;
|
|
111
|
-
|
|
112
|
-
//# sourceMappingURL=index.js.map
|
|
125
|
+
exports.UserMenu = UserMenu;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_emotion","_appAdmin","_Menu","_List","_Icon","_reactRouter","_appSecurity","_Avatar","_components","_TopAppBar","UserMenuRendererImpl","UserMenu","security","useSecurity","_useUserMenu","useUserMenu","menuItems","identity","default","createElement","Menu","anchor","handle","TopAppBarActionItem","icon","UserMenuHandle","List","UserMenuItems","UserMenuHandleRendererImpl","_useSecurity","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_emotion","_appAdmin","_Menu","_List","_Icon","_reactRouter","_appSecurity","_Avatar","_components","_TopAppBar","UserMenuRendererImpl","UserMenu","security","useSecurity","_useUserMenu","useUserMenu","menuItems","identity","default","createElement","Menu","anchor","handle","TopAppBarActionItem","icon","UserMenuHandle","List","UserMenuItems","UserMenuHandleRendererImpl","_useSecurity","profile","Avatar","src","undefined","alt","displayName","fallbackText","renderImage","props","Image","Object","assign","transform","width","firstName","lastName","avatar","gravatar","fullName","concat","linkStyles","css","textDecoration","UserMenuItemRendererImpl","UserMenuItemRenderer","_useUserMenuItem","useUserMenuItem","label","path","onClick","element","Link","to","className","ListItem","ListItemGraphic","Icon","Fragment","Compose","component","UserMenuHandleRendererSpec","with","UserMenuRendererSpec","UserMenuItemRendererSpec","exports"],"sources":["index.tsx"],"sourcesContent":["import React, { Fragment } from \"react\";\nimport { css } from \"emotion\";\nimport {\n Compose,\n UserMenuHandle,\n UserMenuHandleRenderer as UserMenuHandleRendererSpec,\n UserMenuRenderer as UserMenuRendererSpec,\n UserMenuItems,\n UserMenuItemRenderer as UserMenuItemRendererSpec,\n useUserMenuItem,\n useUserMenu\n} from \"@webiny/app-admin\";\nimport { Menu } from \"@webiny/ui/Menu\";\nimport { List, ListItem, ListItemGraphic } from \"@webiny/ui/List\";\nimport { Icon } from \"@webiny/ui/Icon\";\nimport { Link } from \"@webiny/react-router\";\nimport { useSecurity } from \"@webiny/app-security\";\nimport { Avatar } from \"@webiny/ui/Avatar\";\nimport { Image } from \"@webiny/app/components\";\nimport { TopAppBarActionItem } from \"@webiny/ui/TopAppBar\";\n\nconst UserMenuRendererImpl = (): React.FC => {\n return function UserMenu() {\n const security = useSecurity();\n const { menuItems } = useUserMenu();\n\n if (!security || !security.identity) {\n return null;\n }\n\n return (\n <Menu anchor={\"topEnd\"} handle={<TopAppBarActionItem icon={<UserMenuHandle />} />}>\n <List data-testid=\"logged-in-user-menu-list\">\n <UserMenuItems menuItems={menuItems} />\n </List>\n </Menu>\n );\n };\n};\n\nconst UserMenuHandleRendererImpl = (): React.FC => {\n return function UserMenuHandle() {\n const { identity } = useSecurity();\n\n if (!identity) {\n return null;\n }\n\n const profile = identity.profile;\n\n if (!profile) {\n return (\n <Avatar\n data-testid=\"logged-in-user-menu-avatar\"\n src={undefined}\n alt={identity.displayName}\n fallbackText={identity.displayName}\n renderImage={props => <Image {...props} transform={{ width: 100 }} />}\n />\n );\n }\n\n const { firstName, lastName, avatar, gravatar } = profile;\n const fullName = `${firstName} ${lastName}`;\n\n return (\n <Avatar\n data-testid=\"logged-in-user-menu-avatar\"\n src={avatar ? avatar.src : gravatar}\n alt={fullName}\n fallbackText={fullName}\n renderImage={props => <Image {...props} transform={{ width: 100 }} />}\n />\n );\n };\n};\n\nconst linkStyles = css({\n \"&:hover\": {\n textDecoration: \"none\"\n }\n});\n\nconst UserMenuItemRendererImpl = (): React.FC => {\n return function UserMenuItemRenderer() {\n const { label, path, icon, onClick, element } = useUserMenuItem();\n\n if (element) {\n return element;\n }\n\n if (path) {\n return (\n <Link to={path} className={linkStyles}>\n <ListItem>\n <ListItemGraphic>{icon ? <Icon icon={icon} /> : null}</ListItemGraphic>\n {label}\n </ListItem>\n </Link>\n );\n }\n\n return (\n <ListItem onClick={onClick}>\n <ListItemGraphic>{icon ? <Icon icon={icon} /> : null}</ListItemGraphic>\n {label}\n </ListItem>\n );\n };\n};\n\nexport const UserMenu: React.FC = () => {\n return (\n <Fragment>\n <Compose component={UserMenuHandleRendererSpec} with={UserMenuHandleRendererImpl} />\n <Compose component={UserMenuRendererSpec} with={UserMenuRendererImpl} />\n <Compose component={UserMenuItemRendererSpec} with={UserMenuItemRendererImpl} />\n </Fragment>\n );\n};\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-admin-rmwc",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.6-beta.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
"@rmwc/base": "7.0.3",
|
|
16
16
|
"@rmwc/provider": "7.0.3",
|
|
17
17
|
"@types/react": "17.0.39",
|
|
18
|
-
"@webiny/app": "5.37.
|
|
19
|
-
"@webiny/app-admin": "5.37.
|
|
20
|
-
"@webiny/app-plugin-admin-welcome-screen": "5.37.
|
|
21
|
-
"@webiny/app-security": "5.37.
|
|
22
|
-
"@webiny/feature-flags": "5.37.
|
|
23
|
-
"@webiny/plugins": "5.37.
|
|
24
|
-
"@webiny/react-router": "5.37.
|
|
25
|
-
"@webiny/ui": "5.37.
|
|
18
|
+
"@webiny/app": "5.37.6-beta.0",
|
|
19
|
+
"@webiny/app-admin": "5.37.6-beta.0",
|
|
20
|
+
"@webiny/app-plugin-admin-welcome-screen": "5.37.6-beta.0",
|
|
21
|
+
"@webiny/app-security": "5.37.6-beta.0",
|
|
22
|
+
"@webiny/feature-flags": "5.37.6-beta.0",
|
|
23
|
+
"@webiny/plugins": "5.37.6-beta.0",
|
|
24
|
+
"@webiny/react-router": "5.37.6-beta.0",
|
|
25
|
+
"@webiny/ui": "5.37.6-beta.0",
|
|
26
26
|
"classnames": "2.3.2",
|
|
27
27
|
"emotion": "10.0.27",
|
|
28
28
|
"lodash": "4.17.21",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"@babel/preset-react": "7.22.5",
|
|
41
41
|
"@babel/preset-typescript": "7.22.5",
|
|
42
42
|
"@types/react-helmet": "6.1.6",
|
|
43
|
-
"@webiny/cli": "5.37.
|
|
44
|
-
"@webiny/project-utils": "5.37.
|
|
43
|
+
"@webiny/cli": "5.37.6-beta.0",
|
|
44
|
+
"@webiny/project-utils": "5.37.6-beta.0",
|
|
45
45
|
"babel-plugin-emotion": "9.2.11",
|
|
46
46
|
"babel-plugin-named-asset-import": "1.0.0-next.fb6e6f70",
|
|
47
47
|
"rimraf": "3.0.2",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"removeViewBox": false
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "5aec35310842da122e7c78bb47ab4fd4c353d106"
|
|
65
65
|
}
|