@learningpool/ui 1.5.0 → 1.6.0-beta.10
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/assets/Images.d.ts +9 -0
- package/assets/Images.js +4 -1
- package/components/navigation/MobileNavigation/MobileNavigation.d.ts +39 -0
- package/components/navigation/MobileNavigation/MobileNavigation.js +183 -0
- package/components/navigation/MobileNavigation/MobileNavigationAvatar.d.ts +28 -0
- package/components/navigation/MobileNavigation/MobileNavigationAvatar.js +122 -0
- package/components/navigation/MobileNavigation/MobileNavigationAvatarStyles.d.ts +827 -0
- package/components/navigation/MobileNavigation/MobileNavigationAvatarStyles.js +33 -0
- package/components/navigation/MobileNavigation/MobileNavigationDrawer.d.ts +24 -0
- package/components/navigation/MobileNavigation/MobileNavigationDrawer.js +148 -0
- package/components/navigation/MobileNavigation/MobileNavigationDrawerStyles.d.ts +392 -0
- package/components/navigation/MobileNavigation/MobileNavigationDrawerStyles.js +44 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItem.d.ts +19 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItem.js +91 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenu.d.ts +15 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenu.js +26 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenuStyles.d.ts +112 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenuStyles.js +66 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemStyles.d.ts +126 -0
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemStyles.js +71 -0
- package/components/navigation/MobileNavigation/MobileNavigationMotion.d.ts +141 -0
- package/components/navigation/MobileNavigation/MobileNavigationMotion.js +109 -0
- package/components/navigation/MobileNavigation/MobileNavigationSearch.d.ts +10 -0
- package/components/navigation/MobileNavigation/MobileNavigationSearch.js +52 -0
- package/components/navigation/MobileNavigation/MobileNavigationSearchStyles.d.ts +257 -0
- package/components/navigation/MobileNavigation/MobileNavigationSearchStyles.js +20 -0
- package/components/navigation/MobileNavigation/MobileNavigationStyles.d.ts +405 -0
- package/components/navigation/MobileNavigation/MobileNavigationStyles.js +104 -0
- package/components/navigation/MobileNavigation/MobileNavigationToggleSearchX.d.ts +2 -0
- package/components/navigation/MobileNavigation/MobileNavigationToggleSearchX.js +32 -0
- package/components/navigation/MobileNavigation/MobileNavigationToggleX.d.ts +2 -0
- package/components/navigation/MobileNavigation/MobileNavigationToggleX.js +26 -0
- package/components/navigation/MobileNavigation/MobileNavigationToggleXStyles.d.ts +36 -0
- package/components/navigation/MobileNavigation/MobileNavigationToggleXStyles.js +10 -0
- package/components/navigation/VerticalNavigation/VerticalNavigation.d.ts +25 -10
- package/components/navigation/VerticalNavigation/VerticalNavigation.js +179 -92
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatar.d.ts +4 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatar.js +84 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatarStyles.d.ts +827 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatarStyles.js +31 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItem.d.ts +4 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItem.js +91 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenu.d.ts +15 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenu.js +29 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenuStyles.d.ts +112 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenuStyles.js +69 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemStyles.d.ts +126 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemStyles.js +70 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationMotion.d.ts +141 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationMotion.js +109 -0
- package/components/navigation/VerticalNavigation/VerticalNavigationStyles.d.ts +31 -90
- package/components/navigation/VerticalNavigation/VerticalNavigationStyles.js +73 -259
- package/components/stream/AppSwitcher/AppSwitcher.d.ts +36 -0
- package/components/stream/AppSwitcher/AppSwitcher.js +307 -0
- package/components/stream/AppSwitcher/AppSwitcherItem.d.ts +16 -0
- package/components/stream/AppSwitcher/AppSwitcherItem.js +51 -0
- package/components/stream/AppSwitcher/AppSwitcherStyles.d.ts +17 -0
- package/components/stream/AppSwitcher/AppSwitcherStyles.js +48 -0
- package/components/stream/AppSwitcher/constants.d.ts +34 -0
- package/components/stream/AppSwitcher/constants.js +27 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/lang/en-us.d.ts +6 -0
- package/lang/en-us.js +6 -0
- package/package.json +6 -2
- package/types/components/navigation/VerticalNavigation.d.ts +48 -0
- package/types/components/navigation/VerticalNavigation.js +1 -0
- package/types/components/navigation/VerticalNavigationAvatar.d.ts +22 -0
- package/types/components/navigation/VerticalNavigationAvatar.js +1 -0
- package/types/components/stream/AppSwitcher.d.ts +9 -0
- package/types/components/stream/AppSwitcher.js +1 -0
- package/types/index.d.ts +3 -0
- package/types/index.js +3 -0
- package/utils/constants.d.ts +6 -0
- package/utils/constants.js +6 -0
- package/utils/helpers.d.ts +6 -0
- package/utils/helpers.js +17 -0
- package/utils/hooks.d.ts +1 -0
- package/utils/hooks.js +29 -0
- package/utils/theme.d.ts +4 -0
- package/utils/theme.js +4 -0
|
@@ -1,18 +1,10 @@
|
|
|
1
|
-
var
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
11
4
|
};
|
|
12
|
-
import
|
|
13
|
-
import { Box } from '
|
|
5
|
+
import Drawer from '@mui/material/Drawer';
|
|
6
|
+
import { Box, IconButton } from '../../../index';
|
|
14
7
|
import { styled } from '@mui/material/styles';
|
|
15
|
-
import { motion } from '../../../utils/theme';
|
|
16
8
|
export var DRAWER_WIDTH = {
|
|
17
9
|
Collapsed: 60,
|
|
18
10
|
Expanded: 300
|
|
@@ -21,255 +13,77 @@ var ICON = {
|
|
|
21
13
|
Height: 40,
|
|
22
14
|
Width: 57
|
|
23
15
|
};
|
|
24
|
-
export var
|
|
25
|
-
background: 'transparent none',
|
|
26
|
-
border: 0,
|
|
27
|
-
boxShadow: 'none',
|
|
28
|
-
color: theme.palette.mode === 'dark'
|
|
29
|
-
? theme.palette.primary.contrastText
|
|
30
|
-
: theme.palette.getContrastText(theme.palette.background.paper),
|
|
31
|
-
overflow: 'visible !important',
|
|
32
|
-
transform: 'translateX(0) !important',
|
|
33
|
-
transition: "width 225ms ".concat(motion.easeInOut, " 0ms !important"),
|
|
34
|
-
visibility: 'visible'
|
|
35
|
-
}); };
|
|
36
|
-
export var openedMixin = function () { return ({
|
|
37
|
-
boxShadow: 'none',
|
|
38
|
-
overflowX: 'visible',
|
|
39
|
-
transition: "width 225ms ".concat(motion.easeInOut, " 0ms !important"),
|
|
40
|
-
width: DRAWER_WIDTH.Expanded
|
|
41
|
-
}); };
|
|
42
|
-
export var closedMixin = function (theme) {
|
|
43
|
-
var _a;
|
|
44
|
-
return (_a = {
|
|
45
|
-
boxShadow: theme.shadows[1],
|
|
46
|
-
overflowX: 'visible',
|
|
47
|
-
transition: "width 225ms ".concat(motion.easeInOut, " 0ms !important"),
|
|
48
|
-
width: "calc(".concat(theme.spacing(7), " + 1px)")
|
|
49
|
-
},
|
|
50
|
-
_a[theme.breakpoints.up('sm')] = {
|
|
51
|
-
width: "calc(".concat(theme.spacing(8), " + 1px)")
|
|
52
|
-
},
|
|
53
|
-
_a);
|
|
54
|
-
};
|
|
55
|
-
export var DrawerHeader = styled('div')(function (_a) {
|
|
56
|
-
var _b;
|
|
57
|
-
var theme = _a.theme;
|
|
58
|
-
return (__assign(__assign({ alignItems: 'center', display: 'flex', justifyContent: 'flex-start', overflow: 'hidden', padding: "".concat(theme.spacing(1), " 10px 0") }, theme.mixins.toolbar), (_b = { backgroundColor: theme.palette.mode === 'dark'
|
|
59
|
-
? theme.palette.primary.main
|
|
60
|
-
: theme.palette.background.paper, minHeight: '56px !important' }, _b[theme.breakpoints.up('sm')] = {
|
|
61
|
-
minHeight: '64px !important'
|
|
62
|
-
}, _b)));
|
|
63
|
-
});
|
|
64
|
-
export var ListItem = styled(SSListItem)(function (_a) {
|
|
65
|
-
var theme = _a.theme;
|
|
66
|
-
return ({
|
|
67
|
-
alignItems: 'flex-start',
|
|
68
|
-
color: theme.palette.mode === 'dark'
|
|
69
|
-
? theme.palette.primary.contrastText
|
|
70
|
-
: theme.palette.getContrastText(theme.palette.background.paper),
|
|
71
|
-
overflow: 'hidden',
|
|
72
|
-
minHeight: 48,
|
|
73
|
-
'& .MuiListItemIcon-root': {
|
|
74
|
-
marginTop: theme.spacing(0.5)
|
|
75
|
-
},
|
|
76
|
-
'& .MuiListItemText-root .MuiTypography-root': {
|
|
77
|
-
whiteSpace: 'normal'
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
});
|
|
81
|
-
export var ListItemButton = styled(SSListItemButton, {
|
|
16
|
+
export var DrawerHeader = styled('div', {
|
|
82
17
|
shouldForwardProp: function (prop) { return prop !== 'isDrawerOpen'; }
|
|
83
|
-
})(function (
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
18
|
+
})(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n display: flex;\n flex: 1 auto;\n justify-content: flex-start;\n overflow: hidden;\n min-height: 56px !important;\n padding: ", " 10px 0;\n transition: ", "\n 250ms;\n\n /* Testing secondary nav fix ups */\n width: ", ";\n\n @media (min-width: ", ") {\n min-height: 64px !important;\n width: ", ";\n };\n\n .MuiListItemIcon-root {\n margin: ", " 0 0;\n }\n\n .MuiListItemText-root {\n align-items: center !important;\n color: ", ";\n display: flex;\n min-height: ", "px;\n max-height: ", ";\n text-decoration: none;\n text-dransform: none;\n transition: max-height\n ", "ms\n ", ";\n padding: 0;\n width: 100%;\n\n [theme.breakpoints.up('sm')] {\n max-height: ", ";\n }\n }\n\n .MuiListItemText-root .MuiTypography-root {\n white-space: normal;\n }\n"], ["\n align-items: center;\n background-color: ", ";\n display: flex;\n flex: 1 auto;\n justify-content: flex-start;\n overflow: hidden;\n min-height: 56px !important;\n padding: ", " 10px 0;\n transition: ", "\n 250ms;\n\n /* Testing secondary nav fix ups */\n width: ", ";\n\n @media (min-width: ", ") {\n min-height: 64px !important;\n width: ", ";\n };\n\n .MuiListItemIcon-root {\n margin: ", " 0 0;\n }\n\n .MuiListItemText-root {\n align-items: center !important;\n color: ", ";\n display: flex;\n min-height: ", "px;\n max-height: ", ";\n text-decoration: none;\n text-dransform: none;\n transition: max-height\n ", "ms\n ", ";\n padding: 0;\n width: 100%;\n\n [theme.breakpoints.up('sm')] {\n max-height: ", ";\n }\n }\n\n .MuiListItemText-root .MuiTypography-root {\n white-space: normal;\n }\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
19
|
+
? props.theme.palette.primary.main
|
|
20
|
+
: props.theme.palette.background.paper; }, function (props) { return props.theme.spacing(1); }, function (props) { return props.isDrawerOpen
|
|
21
|
+
? "width\n ".concat(props.theme.transitions.duration.enteringScreen, "ms\n ").concat(props.theme.transitions.easing.easeOut, "\n 0")
|
|
22
|
+
: "width\n ".concat(props.theme.transitions.duration.leavingScreen, "ms\n ").concat(props.theme.transitions.easing.easeIn); }, function (props) { return props.isDrawerOpen ? DRAWER_WIDTH.Expanded : "calc(".concat(props.theme.spacing(7), " + 1px)"); }, function (props) { return props.theme.breakpoints.values.sm; }, function (props) { return props.isDrawerOpen ? DRAWER_WIDTH.Expanded : "calc(".concat(props.theme.spacing(8), " + 1px)"); }, function (props) { return props.theme.spacing(0.5); }, function (props) {
|
|
23
|
+
return props.theme.palette.mode === 'dark'
|
|
24
|
+
? props.theme.palette.primary.contrastText
|
|
25
|
+
: props.theme.palette.getContrastText(props.theme.palette.background.paper);
|
|
26
|
+
}, ICON.Height + 8, function (props) { return props.isDrawerOpen ? '200px' : "".concat(ICON.Height + 8, "px"); }, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; }, function (props) { return props.isDrawerOpen ? '200px' : "".concat(ICON.Height + 8, "px"); });
|
|
27
|
+
export var DrawerToggle = styled(IconButton)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background: transparent;\n height: 44px;\n padding: 0 ", " !important;\n position: absolute;\n transform: translate(22px, calc(50% - 5.5px));\n transition: all\n ", "ms\n ", ";\n width: 44px;\n z-index: 10;\n\n @media (min-width: ", ") {\n padding: 0 ", " !important;\n }\n"], ["\n background: transparent;\n height: 44px;\n padding: 0 ", " !important;\n position: absolute;\n transform: translate(22px, calc(50% - 5.5px));\n transition: all\n ", "ms\n ", ";\n width: 44px;\n z-index: 10;\n\n @media (min-width: ", ") {\n padding: 0 ", " !important;\n }\n"])), function (props) { return props.theme.spacing(2); }, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; }, function (props) { return props.theme.breakpoints.values.sm; }, function (props) { return props.theme.spacing(2.5); });
|
|
28
|
+
export var DrawerToggleHitboxContent = styled('span')(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n background-color: ", ";\n border-radius: 50%;\n box-shadow: 5px 0 15px 0 rgb(0 0 0 / 10%);\n box-sizing: content-box;\n height: 1.75rem;\n padding: ", ";\n width: 1.75rem;\n"], ["\n background-color: ", ";\n border-radius: 50%;\n box-shadow: 5px 0 15px 0 rgb(0 0 0 / 10%);\n box-sizing: content-box;\n height: 1.75rem;\n padding: ", ";\n width: 1.75rem;\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
29
|
+
? props.theme.palette.primary.main
|
|
30
|
+
: props.theme.palette.background.paper; }, function (props) { return props.theme.spacing(0.5); });
|
|
31
|
+
export var StyledAside = styled('aside')(templateObject_4 || (templateObject_4 = __makeTemplateObject([""], [""])));
|
|
32
|
+
export var StyledNav = styled('nav')(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n display: flex;\n flex: 1 auto;\n flex-direction: column;\n justify-content: flex-start;\n margin-top: -1px;\n overflow-x: hidden;\n overflow-y: auto;\n\n // Firefox and future scrollbars\n * & {\n scrollbar-width: thin;\n scrollbar-color: ", ";\n transition: backgroundColor\n ", "ms\n ", ";\n }\n\n * &:hover {\n scrollbar-color: ", ";\n }\n\n // Webkit and fall back scrollbars\n ::-webkit-scrollbar {\n width: 8px;\n }\n\n ::-webkit-scrollbar-track {\n background-color: transparent;\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 55px;\n transition: backgroundColor\n ", "ms\n ", ";\n }\n\n ::-webkit-scrollbar-thumb:hover {\n background-color: ", ";\n }\n"], ["\n background-color: ", ";\n display: flex;\n flex: 1 auto;\n flex-direction: column;\n justify-content: flex-start;\n margin-top: -1px;\n overflow-x: hidden;\n overflow-y: auto;\n\n // Firefox and future scrollbars\n * & {\n scrollbar-width: thin;\n scrollbar-color: ", ";\n transition: backgroundColor\n ", "ms\n ", ";\n }\n\n * &:hover {\n scrollbar-color: ", ";\n }\n\n // Webkit and fall back scrollbars\n ::-webkit-scrollbar {\n width: 8px;\n }\n\n ::-webkit-scrollbar-track {\n background-color: transparent;\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 55px;\n transition: backgroundColor\n ", "ms\n ", ";\n }\n\n ::-webkit-scrollbar-thumb:hover {\n background-color: ", ";\n }\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
33
|
+
? props.theme.palette.primary.main
|
|
34
|
+
: props.theme.palette.background.paper; }, function (props) {
|
|
35
|
+
return props.theme.palette.mode === 'dark'
|
|
36
|
+
? 'rgba(255, 255, 255, 0.12) transparent'
|
|
37
|
+
: 'rgba(0, 0, 0, 0.12) transparent';
|
|
38
|
+
}, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; }, function (props) {
|
|
39
|
+
return props.theme.palette.mode === 'dark'
|
|
40
|
+
? 'rgba(255, 255, 255, 0.24) transparent'
|
|
41
|
+
: 'rgba(0, 0, 0, 0.24) transparent';
|
|
42
|
+
}, function (props) {
|
|
43
|
+
return props.theme.palette.mode === 'dark'
|
|
44
|
+
? 'rgba(255, 255, 255, 0.12)'
|
|
45
|
+
: 'rgba(0, 0, 0, 0.12)';
|
|
46
|
+
}, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; }, function (props) {
|
|
47
|
+
return props.theme.palette.mode === 'dark'
|
|
48
|
+
? 'rgba(255, 255, 255, 0.24)'
|
|
49
|
+
: 'rgba(0, 0, 0, 0.24)';
|
|
104
50
|
});
|
|
105
|
-
export var
|
|
51
|
+
export var StyledNavSecondary = styled('nav')(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n background-color: ", ";\n display: flex;\n flex: 1 auto;\n flex-direction: column;\n justify-content: flex-end;\n margin-top: auto;\n overflow: hidden;\n"], ["\n background-color: ", ";\n display: flex;\n flex: 1 auto;\n flex-direction: column;\n justify-content: flex-end;\n margin-top: auto;\n overflow: hidden;\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
52
|
+
? props.theme.palette.primary.main
|
|
53
|
+
: props.theme.palette.background.paper; });
|
|
54
|
+
export var StyledDivider = styled('div', {
|
|
106
55
|
shouldForwardProp: function (prop) { return prop !== 'isDrawerOpen'; }
|
|
107
|
-
})(function (
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
'& .MuiListItemIcon-root': {
|
|
115
|
-
justifyContent: 'center',
|
|
116
|
-
minWidth: 0,
|
|
117
|
-
margin: 0
|
|
118
|
-
},
|
|
119
|
-
'& .MuiAvatar-root': {
|
|
120
|
-
height: 32,
|
|
121
|
-
width: 32
|
|
122
|
-
}
|
|
123
|
-
});
|
|
124
|
-
});
|
|
125
|
-
export var ListItemIcon = styled(SSListItemIcon)(function (_a) {
|
|
126
|
-
var _b;
|
|
127
|
-
var theme = _a.theme;
|
|
128
|
-
return (_b = {
|
|
129
|
-
alignItems: 'center',
|
|
130
|
-
color: theme.palette.mode === 'dark'
|
|
131
|
-
? theme.palette.primary.contrastText
|
|
132
|
-
: theme.palette.getContrastText(theme.palette.background.paper),
|
|
133
|
-
height: ICON.Height + 8,
|
|
134
|
-
justifyContent: 'center',
|
|
135
|
-
marginTop: '0 !important',
|
|
136
|
-
minWidth: ICON.Width,
|
|
137
|
-
width: ICON.Width
|
|
138
|
-
},
|
|
139
|
-
_b[theme.breakpoints.up('sm')] = {
|
|
140
|
-
minWidth: ICON.Width + 8,
|
|
141
|
-
width: ICON.Width + 8
|
|
142
|
-
},
|
|
143
|
-
_b);
|
|
144
|
-
});
|
|
145
|
-
export var ListItemText = styled(SSListItemText, {
|
|
146
|
-
shouldForwardProp: function (prop) { return prop !== 'isDrawerOpen' && prop !== 'index'; }
|
|
147
|
-
})(function (_a) {
|
|
148
|
-
var isDrawerOpen = _a.isDrawerOpen, index = _a.index;
|
|
149
|
-
return ({
|
|
150
|
-
opacity: isDrawerOpen ? 1 : 0,
|
|
151
|
-
padding: '0.5rem',
|
|
152
|
-
transition: "opacity 225ms ".concat(motion.easeInOut, " ").concat(index !== undefined ? index / 50 : 0.02, "s !important")
|
|
153
|
-
});
|
|
154
|
-
});
|
|
155
|
-
export var DrawerToggle = styled(IconButton)(function (_a) {
|
|
156
|
-
var _b;
|
|
157
|
-
var theme = _a.theme;
|
|
158
|
-
return (_b = {
|
|
159
|
-
background: 'transparent',
|
|
160
|
-
height: '44px',
|
|
161
|
-
paddingLeft: theme.spacing(2),
|
|
162
|
-
paddingRight: theme.spacing(2),
|
|
163
|
-
position: 'fixed',
|
|
164
|
-
top: '80.5px',
|
|
165
|
-
transition: "all 225ms ".concat(motion.easeInOut, " 0ms !important"),
|
|
166
|
-
width: '44px',
|
|
167
|
-
zIndex: theme.zIndex.drawer + 1
|
|
168
|
-
},
|
|
169
|
-
_b[theme.breakpoints.up('sm')] = {
|
|
170
|
-
paddingLeft: theme.spacing(2.5),
|
|
171
|
-
paddingRight: theme.spacing(2.5),
|
|
172
|
-
top: '88.5px'
|
|
173
|
-
},
|
|
174
|
-
_b);
|
|
175
|
-
});
|
|
176
|
-
export var DrawerToggleHitboxContent = styled('span')(function (_a) {
|
|
177
|
-
var theme = _a.theme;
|
|
178
|
-
return ({
|
|
179
|
-
backgroundColor: theme.palette.mode === 'dark'
|
|
180
|
-
? theme.palette.primary.main
|
|
181
|
-
: theme.palette.background.paper,
|
|
182
|
-
borderRadius: '50%',
|
|
183
|
-
boxShadow: '5px 0 15px 0 rgb(0 0 0 / 10%)',
|
|
184
|
-
height: '1.75rem',
|
|
185
|
-
padding: theme.spacing(0.5),
|
|
186
|
-
width: '1.75rem'
|
|
187
|
-
});
|
|
188
|
-
});
|
|
189
|
-
export var StyledAside = styled('aside')(function () { return ({}); });
|
|
190
|
-
export var StyledNav = styled('nav')(function (_a) {
|
|
191
|
-
var theme = _a.theme;
|
|
192
|
-
return ({
|
|
193
|
-
backgroundColor: theme.palette.mode === 'dark'
|
|
194
|
-
? theme.palette.primary.main
|
|
195
|
-
: theme.palette.background.paper,
|
|
196
|
-
display: 'flex',
|
|
197
|
-
flex: '1 auto',
|
|
198
|
-
flexDirection: 'column',
|
|
199
|
-
justifyContent: 'flex-start',
|
|
200
|
-
marginTop: '-1px',
|
|
201
|
-
overflow: 'hidden'
|
|
202
|
-
});
|
|
203
|
-
});
|
|
56
|
+
})(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n\n :before {\n background-color: ", ";\n border-radius: 55px;\n content: '';\n display: block;\n height: 2px;\n margin: auto;\n transition: all\n ", "ms\n ", ";\n width: 66%;\n }\n"], ["\n background-color: ", ";\n\n :before {\n background-color: ", ";\n border-radius: 55px;\n content: '';\n display: block;\n height: 2px;\n margin: auto;\n transition: all\n ", "ms\n ", ";\n width: 66%;\n }\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
57
|
+
? props.theme.palette.primary.main
|
|
58
|
+
: props.theme.palette.background.paper; }, function (props) {
|
|
59
|
+
return props.theme.palette.mode === 'dark'
|
|
60
|
+
? 'rgba(255, 255, 255, 0.075)'
|
|
61
|
+
: 'rgba(0, 0, 0, 0.075)';
|
|
62
|
+
}, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; });
|
|
204
63
|
export var DrawerShadow = styled(Box, {
|
|
205
64
|
shouldForwardProp: function (prop) { return prop !== 'isDrawerOpen'; }
|
|
206
|
-
})(function (
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
return
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
display: 'block',
|
|
213
|
-
filter: 'blur(13px)',
|
|
214
|
-
height: '100%',
|
|
215
|
-
left: isDrawerOpen ? "".concat(DRAWER_WIDTH.Expanded - 38, "px") : "".concat(DRAWER_WIDTH.Collapsed - 41, "px"),
|
|
216
|
-
position: 'fixed',
|
|
217
|
-
top: '0',
|
|
218
|
-
transition: "left 225ms ".concat(motion.easeInOut, " 0ms"),
|
|
219
|
-
visibility: 'visible',
|
|
220
|
-
width: '40px'
|
|
221
|
-
},
|
|
222
|
-
_b[theme.breakpoints.up('sm')] = {
|
|
223
|
-
left: isDrawerOpen ? "".concat(DRAWER_WIDTH.Expanded - 38, "px") : "".concat(DRAWER_WIDTH.Collapsed - 33, "px")
|
|
224
|
-
},
|
|
225
|
-
_b);
|
|
226
|
-
});
|
|
227
|
-
export var NotchContainer = styled(Box)(function (_a) {
|
|
228
|
-
var theme = _a.theme;
|
|
229
|
-
return ({
|
|
230
|
-
display: 'flex',
|
|
231
|
-
justifyContent: 'flex-end',
|
|
232
|
-
height: 'auto',
|
|
233
|
-
marginTop: "-".concat(theme.spacing(0.5)),
|
|
234
|
-
position: 'relative',
|
|
235
|
-
transition: "width 225ms ".concat(motion.easeInOut, " 0ms !important"),
|
|
236
|
-
width: '100%',
|
|
237
|
-
zIndex: '-1'
|
|
238
|
-
});
|
|
239
|
-
});
|
|
240
|
-
export var NotchBackground = styled(Box)(function (_a) {
|
|
241
|
-
var theme = _a.theme;
|
|
242
|
-
return ({
|
|
243
|
-
backgroundColor: theme.palette.mode === 'dark'
|
|
244
|
-
? theme.palette.primary.main
|
|
245
|
-
: theme.palette.background.paper,
|
|
246
|
-
flex: '1',
|
|
247
|
-
height: 'auto',
|
|
248
|
-
width: 'auto'
|
|
249
|
-
});
|
|
250
|
-
});
|
|
251
|
-
export var NotchBackgroundClip = styled(Box)(function (_a) {
|
|
252
|
-
var theme = _a.theme;
|
|
253
|
-
return ({
|
|
254
|
-
backgroundColor: theme.palette.mode === 'dark'
|
|
255
|
-
? theme.palette.primary.main
|
|
256
|
-
: theme.palette.background.paper,
|
|
257
|
-
clipPath: 'url("#notch")',
|
|
258
|
-
display: 'flex',
|
|
259
|
-
height: '85px',
|
|
260
|
-
width: '45px'
|
|
261
|
-
});
|
|
262
|
-
});
|
|
263
|
-
export var NotchSeemMask = styled(Box)(function (_a) {
|
|
264
|
-
var theme = _a.theme;
|
|
265
|
-
return ({
|
|
266
|
-
backgroundColor: theme.palette.mode === 'dark'
|
|
267
|
-
? theme.palette.primary.main
|
|
268
|
-
: theme.palette.background.paper,
|
|
269
|
-
height: '90px',
|
|
270
|
-
position: 'absolute',
|
|
271
|
-
right: '25px',
|
|
272
|
-
top: '-2px',
|
|
273
|
-
width: 'calc(100% - 25px)'
|
|
274
|
-
});
|
|
65
|
+
})(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n background: rgba(0,0,0,0.125);\n content: '';\n display: block;\n filter: blur(13px);\n height: 100%;\n left: ", ";\n position: fixed;\n top: 0;\n transition: left\n ", "ms\n ", ";\n visibility: visible;\n width: 40px;\n\n @media (min-width: ", ") {\n left: ", ";\n }\n"], ["\n background: rgba(0,0,0,0.125);\n content: '';\n display: block;\n filter: blur(13px);\n height: 100%;\n left: ", ";\n position: fixed;\n top: 0;\n transition: left\n ", "ms\n ", ";\n visibility: visible;\n width: 40px;\n\n @media (min-width: ", ") {\n left: ", ";\n }\n"])), function (props) { return props.isDrawerOpen
|
|
66
|
+
? "".concat(DRAWER_WIDTH.Expanded - 38, "px")
|
|
67
|
+
: "".concat(DRAWER_WIDTH.Collapsed - 41, "px"); }, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; }, function (props) { return props.theme.breakpoints.values.sm; }, function (props) {
|
|
68
|
+
return props.isDrawerOpen
|
|
69
|
+
? "".concat(DRAWER_WIDTH.Expanded - 38, "px")
|
|
70
|
+
: "".concat(DRAWER_WIDTH.Collapsed - 33, "px");
|
|
275
71
|
});
|
|
72
|
+
export var NotchContainer = styled(Box)(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n display: flex;\n justify-content: flex-end;\n height: auto;\n margin-top: -", ";\n position: relative;\n transition: width\n ", "ms\n ", ";\n width: 100%;\n z-index: 9;\n"], ["\n display: flex;\n justify-content: flex-end;\n height: auto;\n margin-top: -", ";\n position: relative;\n transition: width\n ", "ms\n ", ";\n width: 100%;\n z-index: 9;\n"])), function (props) { return props.theme.spacing(0.5); }, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; });
|
|
73
|
+
export var NotchBackground = styled(Box)(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: auto;\n width: auto;\n"], ["\n background-color: ", ";\n flex: 1;\n height: auto;\n width: auto;\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
74
|
+
? props.theme.palette.primary.main
|
|
75
|
+
: props.theme.palette.background.paper; });
|
|
76
|
+
export var NotchBackgroundClip = styled(Box)(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n background-color: ", ";\n clip-path: url(\"#notch\");\n display: flex;\n height: 85px;\n width: 45px;\n"], ["\n background-color: ", ";\n clip-path: url(\"#notch\");\n display: flex;\n height: 85px;\n width: 45px;\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
77
|
+
? props.theme.palette.primary.main
|
|
78
|
+
: props.theme.palette.background.paper; });
|
|
79
|
+
export var NotchSeemMask = styled(Box)(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n background-color: ", ";\n height: 90px;\n position: absolute;\n right: 25px;\n top: -2px;\n width: calc(100% - 25px);\n"], ["\n background-color: ", ";\n height: 90px;\n position: absolute;\n right: 25px;\n top: -2px;\n width: calc(100% - 25px);\n"])), function (props) { return props.theme.palette.mode === 'dark'
|
|
80
|
+
? props.theme.palette.primary.main
|
|
81
|
+
: props.theme.palette.background.paper; });
|
|
82
|
+
export var StyledDrawer = styled(Drawer, {
|
|
83
|
+
shouldForwardProp: function (prop) { return prop !== 'open'; }
|
|
84
|
+
})(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n box-shadow: none;\n box-sizing: border-box;\n flexshrink: 0;\n overflow-x: visible;\n white-space: nowrap;\n width: ", ";\n transition: width\n ", "ms\n ", ";\n\n @media (min-width: ", ") {\n width: ", ";\n }\n\n .MuiDrawer-paper {\n background: transparent none;\n border: 0;\n box-shadow: none;\n color: ", ";\n overflow: visible !important;\n overflow-x: visible;\n transform: translateX(0) !important;\n transition: width\n ", "ms\n ", ";\n visibility: visible !important;\n width: ", ";\n [theme.breakpoints.up('sm')] {\n width: ", ";\n }\n }\n"], ["\n box-shadow: none;\n box-sizing: border-box;\n flexshrink: 0;\n overflow-x: visible;\n white-space: nowrap;\n width: ", ";\n transition: width\n ", "ms\n ", ";\n\n @media (min-width: ", ") {\n width: ", ";\n }\n\n .MuiDrawer-paper {\n background: transparent none;\n border: 0;\n box-shadow: none;\n color: ", ";\n overflow: visible !important;\n overflow-x: visible;\n transform: translateX(0) !important;\n transition: width\n ", "ms\n ", ";\n visibility: visible !important;\n width: ", ";\n [theme.breakpoints.up('sm')] {\n width: ", ";\n }\n }\n"])), function (props) { return !props.open ? "calc(".concat(props.theme.spacing(7), " + 1px)") : "".concat(DRAWER_WIDTH.Expanded, "px"); }, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; }, function (props) { return props.theme.breakpoints.values.sm; }, function (props) { return !props.open ? "calc(".concat(props.theme.spacing(8), " + 1px)") : "".concat(DRAWER_WIDTH.Expanded, "px"); }, function (props) {
|
|
85
|
+
return props.theme.palette.mode === 'dark'
|
|
86
|
+
? props.theme.palette.primary.contrastText
|
|
87
|
+
: props.theme.palette.getContrastText(props.theme.palette.background.paper);
|
|
88
|
+
}, function (props) { return props.theme.transitions.duration.enteringScreen; }, function (props) { return props.theme.transitions.easing.easeOut; }, function (props) { return !props.open ? "calc(".concat(props.theme.spacing(7), " + 1px)") : "".concat(DRAWER_WIDTH.Expanded, "px"); }, function (props) { return !props.open ? "calc(".concat(props.theme.spacing(8), " + 1px)") : "".concat(DRAWER_WIDTH.Expanded, "px"); });
|
|
89
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ReactElement } from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { IApplication } from '../../../types';
|
|
4
|
+
interface IProps {
|
|
5
|
+
userId?: string;
|
|
6
|
+
layout?: string;
|
|
7
|
+
token?: string;
|
|
8
|
+
apiKey?: string;
|
|
9
|
+
baseUrl?: string;
|
|
10
|
+
applications?: IApplication[] | null;
|
|
11
|
+
currentApplicationId?: number;
|
|
12
|
+
localization?: any;
|
|
13
|
+
isAppSwitcherOpen?: boolean;
|
|
14
|
+
setIsAppSwitcherOpen?: any;
|
|
15
|
+
isDrawerOpen?: boolean;
|
|
16
|
+
}
|
|
17
|
+
declare const AppSwitcher: {
|
|
18
|
+
(props: IProps): ReactElement | null;
|
|
19
|
+
propTypes: {
|
|
20
|
+
accessToken: PropTypes.Requireable<string>;
|
|
21
|
+
apiKey: PropTypes.Requireable<string>;
|
|
22
|
+
layout: PropTypes.Requireable<string>;
|
|
23
|
+
userId: PropTypes.Requireable<number>;
|
|
24
|
+
baseUrl: PropTypes.Requireable<string>;
|
|
25
|
+
localization: PropTypes.Requireable<object>;
|
|
26
|
+
currentApplicationId: PropTypes.Requireable<number>;
|
|
27
|
+
applications: PropTypes.Requireable<any[]>;
|
|
28
|
+
};
|
|
29
|
+
defaultProps: {
|
|
30
|
+
layout: string;
|
|
31
|
+
baseUrl: string;
|
|
32
|
+
localization: {};
|
|
33
|
+
applications: never[];
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export default AppSwitcher;
|