@agilemotion/oui-react-js 1.3.7 → 1.3.9
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/README.TXT +1 -0
- package/dist/ApplicationContext.js +161 -284
- package/dist/BasicApp.js +1 -1
- package/dist/BasicAppHome.js +17 -4
- package/dist/BusinessPortalApp.js +4 -4
- package/dist/BusinessPortalAppHome.js +10 -39
- package/dist/DynamicJS.js +20 -52
- package/dist/RestUtils.js +86 -111
- package/dist/Utils.js +36 -30
- package/dist/assets/jss/components/authNavbarStyle.js +34 -35
- package/dist/assets/jss/components/cardHeaderStyle.js +12 -12
- package/dist/assets/jss/components/customDropdownStyle.js +26 -26
- package/dist/assets/jss/components/customInputStyle.js +2 -8
- package/dist/assets/jss/components/dropdownStyle.js +10 -15
- package/dist/assets/jss/components/footerStyle.js +12 -18
- package/dist/assets/jss/components/headerLinksStyle.js +7 -13
- package/dist/assets/jss/components/headerStyle.js +24 -25
- package/dist/assets/jss/components/navbarLinksStyle.js +7 -13
- package/dist/assets/jss/components/navbarStyle.js +24 -25
- package/dist/assets/jss/components/sidebarStyle.js +41 -43
- package/dist/assets/jss/components/typographyStyle.js +2 -8
- package/dist/assets/jss/rootStyle.js +32 -47
- package/dist/assets/jss/views/layoutStyle.js +6 -11
- package/dist/assets/jss/views/loginStyle.js +4 -10
- package/dist/assets/lotties/call-loading.json +1 -0
- package/dist/assets/lotties/calling-2.json +1 -0
- package/dist/assets/lotties/calling.json +1 -0
- package/dist/assets/lotties/calling2.json +1 -0
- package/dist/assets/lotties/chat.json +1 -0
- package/dist/assets/lotties/join.json +1 -0
- package/dist/assets/lotties/loading.json +1 -0
- package/dist/assets/lotties/msg2.json +1 -0
- package/dist/assets/lotties/recording.json +1 -0
- package/dist/assets/lotties/waiting.json +1 -0
- package/dist/assets/scss/black-dashboard-react/bootstrap/_card.scss +5 -5
- package/dist/assets/scss/black-dashboard-react/bootstrap/_carousel.scss +2 -2
- package/dist/assets/scss/black-dashboard-react/bootstrap/_custom-forms.scss +3 -3
- package/dist/assets/scss/black-dashboard-react/bootstrap/_functions.scss +1 -1
- package/dist/assets/scss/black-dashboard-react/bootstrap/_images.scss +1 -1
- package/dist/assets/scss/black-dashboard-react/bootstrap/_jumbotron.scss +1 -1
- package/dist/assets/scss/black-dashboard-react/bootstrap/_popover.scss +7 -5
- package/dist/assets/scss/black-dashboard-react/bootstrap/_tooltip.scss +4 -4
- package/dist/assets/scss/black-dashboard-react/bootstrap/_variables.scss +5 -5
- package/dist/assets/scss/black-dashboard-react/bootstrap/mixins/_grid-framework.scss +2 -2
- package/dist/assets/scss/black-dashboard-react/bootstrap/mixins/_grid.scss +11 -9
- package/dist/assets/scss/black-dashboard-react/bootstrap/utilities/_embed.scss +6 -4
- package/dist/assets/scss/black-dashboard-react/custom/_variables.scss +1 -1
- package/dist/components/AlertBar.js +39 -80
- package/dist/components/AlertItem.js +4 -26
- package/dist/components/Button.js +24 -36
- package/dist/components/Calendar.js +478 -0
- package/dist/components/Calender.css +244 -0
- package/dist/components/ConfirmationDialog.js +5 -29
- package/dist/components/DataGrid.js +169 -338
- package/dist/components/DataGridColumn.js +5 -28
- package/dist/components/DataGridFilter.js +46 -114
- package/dist/components/DataGridHeading.js +11 -19
- package/dist/components/Dialog.js +27 -121
- package/dist/components/DocumentViewer.js +15 -35
- package/dist/components/DocumentViewerComponent.js +2 -20
- package/dist/components/FileThumb.js +115 -0
- package/dist/components/Graph.js +25 -75
- package/dist/components/GraphNode.js +4 -21
- package/dist/components/HtmlPanel.js +59 -78
- package/dist/components/Icon.js +99 -1
- package/dist/components/LoadingIndicator.js +4 -4
- package/dist/components/LottieIcon.js +134 -0
- package/dist/components/PopupView.js +2 -20
- package/dist/components/RegularButton.js +15 -19
- package/dist/components/SignaturePanel.js +9 -40
- package/dist/components/SocketManager.js +170 -0
- package/dist/components/StepperTitleBar.js +30 -56
- package/dist/components/TabPage.js +6 -9
- package/dist/components/TabPanel.js +41 -98
- package/dist/components/TableCellContent.js +30 -38
- package/dist/components/TemplateDesigner.css +0 -1
- package/dist/components/TemplateDesigner.js +107 -151
- package/dist/components/TemplateItemEventHandler.js +33 -100
- package/dist/components/TemplateTable.js +6 -42
- package/dist/components/TitleBar.js +35 -52
- package/dist/components/Toolbar.js +33 -179
- package/dist/components/Tree.js +27 -64
- package/dist/components/card/Card.js +16 -20
- package/dist/components/card/CardAvatar.js +9 -13
- package/dist/components/card/CardBody.js +13 -17
- package/dist/components/card/CardFooter.js +12 -16
- package/dist/components/card/CardHeader.js +13 -17
- package/dist/components/card/CardIcon.js +6 -10
- package/dist/components/card/CardText.js +6 -10
- package/dist/components/customInput/CustomInput.js +12 -10
- package/dist/components/dashboard/BasicBusinessAppDashboard.js +81 -158
- package/dist/components/dashboard/BusinessPortalAppDashboard.js +33 -79
- package/dist/components/dashboard/components/Header.js +8 -25
- package/dist/components/dashboard/components/LeftDrawer.js +3 -1
- package/dist/components/dashboard/components/blackDashboard/fixedPlugin/FixedPlugin.js +1 -1
- package/dist/components/dashboard/components/blackDashboard/sidebar/Sidebar.js +143 -36
- package/dist/components/footer/Footer.js +6 -18
- package/dist/components/form/AddressSearch.js +32 -66
- package/dist/components/form/AutoComplete.js +160 -0
- package/dist/components/form/BaseField.js +66 -96
- package/dist/components/form/DatePicker.js +3 -21
- package/dist/components/form/FieldSet.js +158 -180
- package/dist/components/form/Form.css +1 -1
- package/dist/components/form/Form.js +137 -471
- package/dist/components/form/GridField.js +46 -146
- package/dist/components/form/IconField.js +35 -0
- package/dist/components/form/ImageEditor.js +19 -57
- package/dist/components/form/LookupField.js +8 -29
- package/dist/components/form/MultiFileUploadField.js +186 -0
- package/dist/components/form/RadioGroup.js +1 -16
- package/dist/components/form/Section.js +31 -92
- package/dist/components/form/SelectItem.js +14 -33
- package/dist/components/form/SignatureTemplateDesignerField.js +4 -2
- package/dist/components/form/Switch.js +53 -0
- package/dist/components/form/TextField.js +10 -17
- package/dist/components/form/TimePicker.js +7 -1
- package/dist/components/form/TransferList.css +2 -2
- package/dist/components/form/TransferList.js +67 -125
- package/dist/components/form/UploadField.js +27 -79
- package/dist/components/form/fieldset.css +8 -0
- package/dist/components/grid/GridContainer.js +5 -9
- package/dist/components/grid/GridItem.js +5 -9
- package/dist/components/layout/CollapsiblePanel.js +11 -33
- package/dist/components/layout/Layout.js +175 -290
- package/dist/components/layout/VC.css +17 -0
- package/dist/components/layout/View.css +17 -1
- package/dist/components/layout/View.js +77 -194
- package/dist/components/loader.css +1 -1
- package/dist/components/media/ClosablePanel.css +37 -0
- package/dist/components/media/ClosablePanel.js +53 -0
- package/dist/components/media/LobbyWaitingList.js +91 -0
- package/dist/components/media/MediaSoupHelper.js +223 -0
- package/dist/components/media/Recorder.js +235 -0
- package/dist/components/media/SideBarContent.css +54 -0
- package/dist/components/media/SideBarContent.js +46 -0
- package/dist/components/media/SocketRequest.js +20 -0
- package/dist/components/media/SocketResponse.js +16 -0
- package/dist/components/media/Timer.css +30 -0
- package/dist/components/media/Timer.js +88 -0
- package/dist/components/media/Toolbar.css +20 -0
- package/dist/components/media/Toolbar.js +470 -0
- package/dist/components/media/Tracks.js +39 -0
- package/dist/components/media/TrainingRoom.js +531 -0
- package/dist/components/media/Transports.js +35 -0
- package/dist/components/media/VCEventManager.js +74 -0
- package/dist/components/media/VCEventType.js +164 -0
- package/dist/components/media/VCParticipantList.css +72 -0
- package/dist/components/media/VCParticipantList.js +56 -0
- package/dist/components/media/VCParticipantListItem.css +73 -0
- package/dist/components/media/VCParticipantListItem.js +319 -0
- package/dist/components/media/VCRoom.css +42 -0
- package/dist/components/media/VCRoom.js +90 -0
- package/dist/components/media/VCRoomParticipant.css +25 -0
- package/dist/components/media/VCRoomParticipant.js +806 -0
- package/dist/components/media/VCRoomWorkspace.css +86 -0
- package/dist/components/media/VCRoomWorkspace.js +653 -0
- package/dist/components/media/Video.css +4 -0
- package/dist/components/media/Video.js +131 -0
- package/dist/components/media/chat/ChatRoom.js +926 -0
- package/dist/components/media/chat/ChatRoomItem.js +83 -0
- package/dist/components/media/chat/ChatRoomList.js +78 -0
- package/dist/components/media/chat/ChatRooms.scss +567 -0
- package/dist/components/menu/CollapsibleMenu.js +2 -19
- package/dist/components/menu/MenuBars.js +6 -33
- package/dist/components/menu/MenuButton.js +7 -35
- package/dist/components/menu/MenuItem.js +3 -20
- package/dist/components/menu/MenuLink.js +18 -12
- package/dist/components/navbars/AuthNavbar.js +5 -18
- package/dist/components/navbars/HomeNavbar.js +3 -5
- package/dist/components/navbars/PortalNavbar.js +4 -22
- package/dist/components/signatures/AgilitySignaturePanel.js +35 -101
- package/dist/components/signatures/AlertItem.js +3 -24
- package/dist/components/signatures/DocumentContainer.js +47 -135
- package/dist/components/signatures/ImageSignatureInput.js +8 -35
- package/dist/components/signatures/MenuButton.js +1 -16
- package/dist/components/signatures/Prompt.js +3 -24
- package/dist/components/signatures/ResponsiveTable.js +75 -96
- package/dist/components/signatures/SearchView.js +14 -50
- package/dist/components/signatures/SignatorySearch.js +83 -98
- package/dist/components/signatures/SignatorySearchForm.js +11 -17
- package/dist/components/signatures/SignatureInput.js +15 -44
- package/dist/components/signatures/SignatureInputProps.js +20 -60
- package/dist/components/signatures/SignatureTemplateDesigner.js +148 -235
- package/dist/components/signatures/Toolbar.js +7 -34
- package/dist/components/signatures/ViewUtils.js +2 -6
- package/dist/components/typography/Danger.js +3 -1
- package/dist/components/typography/Info.js +3 -1
- package/dist/components/typography/Link.js +6 -2
- package/dist/event/ActionHandlers.js +3 -3
- package/dist/event/EventType.js +7 -1
- package/dist/event/LoadDataActionHandler.js +1 -1
- package/dist/event/Observable.js +56 -168
- package/dist/event/RouteActionHandler.js +45 -11
- package/dist/event/ServiceCallActionHandler.js +34 -24
- package/dist/js/Addresses.js +10 -8
- package/dist/js/Media.js +157 -0
- package/dist/redux/store/ConfigureStore.js +3 -9
- package/dist/redux/store/DashboardStore.js +42 -94
- package/dist/redux/store/SecurityStore.js +15 -50
- package/dist/view/Dashboard.js +242 -163
- package/dist/view/security/ChangePasswordBasic.js +23 -76
- package/dist/view/security/ForgotPassword.js +9 -42
- package/dist/view/security/ForgotPasswordBasic.js +8 -41
- package/dist/view/security/Login.js +11 -47
- package/dist/view/security/LoginBasic.js +8 -41
- package/dist/view/security/LoginBusinessPortal.js +8 -41
- package/dist/view/security/ResetPassword.js +9 -47
- package/dist/view/security/ResetPasswordBasic.js +21 -71
- package/dist/view/security/Security.js +1 -0
- package/package.json +29 -13
- package/README.md +0 -1623
- package/dist/components/dashboard/BasicApp.js +0 -140
- package/dist/components/navbars/NavbarLinks.js +0 -212
- package/dist/components/signatures/OLD.js +0 -1138
|
@@ -7,12 +7,6 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _rootStyle = require("../rootStyle");
|
|
9
9
|
|
|
10
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
-
|
|
12
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
13
|
-
|
|
14
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
-
|
|
16
10
|
const headerStyle = () => ({
|
|
17
11
|
appBar: {
|
|
18
12
|
backgroundColor: "transparent",
|
|
@@ -31,13 +25,13 @@ const headerStyle = () => ({
|
|
|
31
25
|
minHeight: "50px",
|
|
32
26
|
display: "block"
|
|
33
27
|
},
|
|
34
|
-
container:
|
|
28
|
+
container: { ..._rootStyle.container,
|
|
35
29
|
minHeight: "50px"
|
|
36
|
-
}
|
|
30
|
+
},
|
|
37
31
|
flex: {
|
|
38
32
|
flex: 1
|
|
39
33
|
},
|
|
40
|
-
title:
|
|
34
|
+
title: { ..._rootStyle.defaultFont,
|
|
41
35
|
letterSpacing: "unset",
|
|
42
36
|
lineHeight: "30px",
|
|
43
37
|
fontSize: "18px",
|
|
@@ -48,30 +42,35 @@ const headerStyle = () => ({
|
|
|
48
42
|
"&:hover,&:focus": {
|
|
49
43
|
background: "transparent"
|
|
50
44
|
}
|
|
51
|
-
}
|
|
45
|
+
},
|
|
52
46
|
appResponsive: {
|
|
53
47
|
top: "8px"
|
|
54
48
|
},
|
|
55
|
-
primary:
|
|
49
|
+
primary: {
|
|
56
50
|
backgroundColor: _rootStyle.primaryColor[0],
|
|
57
|
-
color: _rootStyle.whiteColor
|
|
58
|
-
|
|
59
|
-
|
|
51
|
+
color: _rootStyle.whiteColor,
|
|
52
|
+
..._rootStyle.defaultBoxShadow
|
|
53
|
+
},
|
|
54
|
+
info: {
|
|
60
55
|
backgroundColor: _rootStyle.infoColor[0],
|
|
61
|
-
color: _rootStyle.whiteColor
|
|
62
|
-
|
|
63
|
-
|
|
56
|
+
color: _rootStyle.whiteColor,
|
|
57
|
+
..._rootStyle.defaultBoxShadow
|
|
58
|
+
},
|
|
59
|
+
success: {
|
|
64
60
|
backgroundColor: _rootStyle.successColor[0],
|
|
65
|
-
color: _rootStyle.whiteColor
|
|
66
|
-
|
|
67
|
-
|
|
61
|
+
color: _rootStyle.whiteColor,
|
|
62
|
+
..._rootStyle.defaultBoxShadow
|
|
63
|
+
},
|
|
64
|
+
warning: {
|
|
68
65
|
backgroundColor: _rootStyle.warningColor[0],
|
|
69
|
-
color: _rootStyle.whiteColor
|
|
70
|
-
|
|
71
|
-
|
|
66
|
+
color: _rootStyle.whiteColor,
|
|
67
|
+
..._rootStyle.defaultBoxShadow
|
|
68
|
+
},
|
|
69
|
+
danger: {
|
|
72
70
|
backgroundColor: _rootStyle.dangerColor[0],
|
|
73
|
-
color: _rootStyle.whiteColor
|
|
74
|
-
|
|
71
|
+
color: _rootStyle.whiteColor,
|
|
72
|
+
..._rootStyle.defaultBoxShadow
|
|
73
|
+
}
|
|
75
74
|
});
|
|
76
75
|
|
|
77
76
|
var _default = headerStyle;
|
|
@@ -11,13 +11,7 @@ var _customDropdownStyle = _interopRequireDefault(require("./customDropdownStyle
|
|
|
11
11
|
|
|
12
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
17
|
-
|
|
18
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
19
|
-
|
|
20
|
-
const adminNavbarLinksStyle = theme => _objectSpread(_objectSpread({}, (0, _customDropdownStyle.default)(theme)), {}, {
|
|
14
|
+
const adminNavbarLinksStyle = theme => ({ ...(0, _customDropdownStyle.default)(theme),
|
|
21
15
|
search: {
|
|
22
16
|
margin: "0",
|
|
23
17
|
paddingTop: "7px",
|
|
@@ -42,13 +36,13 @@ const adminNavbarLinksStyle = theme => _objectSpread(_objectSpread({}, (0, _cust
|
|
|
42
36
|
marginLeft: "12px"
|
|
43
37
|
}
|
|
44
38
|
},
|
|
45
|
-
linkText:
|
|
46
|
-
zIndex: "4"
|
|
47
|
-
|
|
39
|
+
linkText: {
|
|
40
|
+
zIndex: "4",
|
|
41
|
+
..._rootStyle.defaultFont,
|
|
48
42
|
fontSize: "14px",
|
|
49
43
|
margin: "0!important",
|
|
50
44
|
textTransform: "none"
|
|
51
|
-
}
|
|
45
|
+
},
|
|
52
46
|
buttonLink: {
|
|
53
47
|
[theme.breakpoints.down("sm")]: {
|
|
54
48
|
display: "flex",
|
|
@@ -116,10 +110,10 @@ const adminNavbarLinksStyle = theme => _objectSpread(_objectSpread({}, (0, _cust
|
|
|
116
110
|
verticalAlign: "middle",
|
|
117
111
|
display: "block"
|
|
118
112
|
},
|
|
119
|
-
[theme.breakpoints.down("sm")]:
|
|
113
|
+
[theme.breakpoints.down("sm")]: { ..._rootStyle.defaultFont,
|
|
120
114
|
fontSize: "14px",
|
|
121
115
|
marginRight: "8px"
|
|
122
|
-
}
|
|
116
|
+
}
|
|
123
117
|
},
|
|
124
118
|
wrapperRTL: {
|
|
125
119
|
[theme.breakpoints.up("md")]: {
|
|
@@ -7,12 +7,6 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _rootStyle = require("../rootStyle");
|
|
9
9
|
|
|
10
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
-
|
|
12
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
13
|
-
|
|
14
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
-
|
|
16
10
|
const headerStyle = () => ({
|
|
17
11
|
appBar: {
|
|
18
12
|
backgroundColor: "transparent",
|
|
@@ -31,13 +25,13 @@ const headerStyle = () => ({
|
|
|
31
25
|
minHeight: "50px",
|
|
32
26
|
display: "block"
|
|
33
27
|
},
|
|
34
|
-
container:
|
|
28
|
+
container: { ..._rootStyle.containerFluid,
|
|
35
29
|
minHeight: "50px"
|
|
36
|
-
}
|
|
30
|
+
},
|
|
37
31
|
flex: {
|
|
38
32
|
flex: 1
|
|
39
33
|
},
|
|
40
|
-
title:
|
|
34
|
+
title: { ..._rootStyle.defaultFont,
|
|
41
35
|
lineHeight: "30px",
|
|
42
36
|
fontSize: "18px",
|
|
43
37
|
borderRadius: "3px",
|
|
@@ -50,27 +44,32 @@ const headerStyle = () => ({
|
|
|
50
44
|
"&:hover,&:focus": {
|
|
51
45
|
background: "transparent"
|
|
52
46
|
}
|
|
53
|
-
}
|
|
54
|
-
primary:
|
|
47
|
+
},
|
|
48
|
+
primary: {
|
|
55
49
|
backgroundColor: _rootStyle.primaryColor[0],
|
|
56
|
-
color: _rootStyle.whiteColor
|
|
57
|
-
|
|
58
|
-
|
|
50
|
+
color: _rootStyle.whiteColor,
|
|
51
|
+
..._rootStyle.defaultBoxShadow
|
|
52
|
+
},
|
|
53
|
+
info: {
|
|
59
54
|
backgroundColor: _rootStyle.infoColor[0],
|
|
60
|
-
color: _rootStyle.whiteColor
|
|
61
|
-
|
|
62
|
-
|
|
55
|
+
color: _rootStyle.whiteColor,
|
|
56
|
+
..._rootStyle.defaultBoxShadow
|
|
57
|
+
},
|
|
58
|
+
success: {
|
|
63
59
|
backgroundColor: _rootStyle.successColor[0],
|
|
64
|
-
color: _rootStyle.whiteColor
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
color: _rootStyle.whiteColor,
|
|
61
|
+
..._rootStyle.defaultBoxShadow
|
|
62
|
+
},
|
|
63
|
+
warning: {
|
|
67
64
|
backgroundColor: _rootStyle.warningColor[0],
|
|
68
|
-
color: _rootStyle.whiteColor
|
|
69
|
-
|
|
70
|
-
|
|
65
|
+
color: _rootStyle.whiteColor,
|
|
66
|
+
..._rootStyle.defaultBoxShadow
|
|
67
|
+
},
|
|
68
|
+
danger: {
|
|
71
69
|
backgroundColor: _rootStyle.dangerColor[0],
|
|
72
|
-
color: _rootStyle.whiteColor
|
|
73
|
-
|
|
70
|
+
color: _rootStyle.whiteColor,
|
|
71
|
+
..._rootStyle.defaultBoxShadow
|
|
72
|
+
},
|
|
74
73
|
sidebarMinimize: {
|
|
75
74
|
float: "left",
|
|
76
75
|
padding: "0 0 0 15px",
|
|
@@ -7,12 +7,6 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _rootStyle = require("../rootStyle");
|
|
9
9
|
|
|
10
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
-
|
|
12
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
13
|
-
|
|
14
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
-
|
|
16
10
|
const sidebarStyle = theme => ({
|
|
17
11
|
drawerPaperRTL: {
|
|
18
12
|
[theme.breakpoints.up("md")]: {
|
|
@@ -24,7 +18,7 @@ const sidebarStyle = theme => ({
|
|
|
24
18
|
right: "auto !important"
|
|
25
19
|
}
|
|
26
20
|
},
|
|
27
|
-
drawerPaper:
|
|
21
|
+
drawerPaper: {
|
|
28
22
|
border: "none",
|
|
29
23
|
position: "fixed",
|
|
30
24
|
top: "0",
|
|
@@ -33,17 +27,18 @@ const sidebarStyle = theme => ({
|
|
|
33
27
|
zIndex: "1032",
|
|
34
28
|
transitionProperty: "top, bottom, width",
|
|
35
29
|
transitionDuration: ".2s, .2s, .35s",
|
|
36
|
-
transitionTimingFunction: "linear, linear, ease"
|
|
37
|
-
|
|
30
|
+
transitionTimingFunction: "linear, linear, ease",
|
|
31
|
+
// overflow: 'auto',
|
|
32
|
+
..._rootStyle.boxShadow,
|
|
38
33
|
width: _rootStyle.drawerWidth,
|
|
39
34
|
[theme.breakpoints.up("md")]: {
|
|
40
35
|
width: _rootStyle.drawerWidth,
|
|
41
36
|
position: "fixed",
|
|
42
37
|
height: "100%"
|
|
43
38
|
},
|
|
44
|
-
[theme.breakpoints.down("sm")]:
|
|
45
|
-
width: _rootStyle.drawerWidth
|
|
46
|
-
|
|
39
|
+
[theme.breakpoints.down("sm")]: {
|
|
40
|
+
width: _rootStyle.drawerWidth,
|
|
41
|
+
..._rootStyle.boxShadow,
|
|
47
42
|
position: "fixed",
|
|
48
43
|
display: "block",
|
|
49
44
|
top: "0",
|
|
@@ -57,8 +52,9 @@ const sidebarStyle = theme => ({
|
|
|
57
52
|
textAlign: "left",
|
|
58
53
|
paddingRight: "0px",
|
|
59
54
|
paddingLeft: "0",
|
|
60
|
-
transform: "translate3d(".concat(_rootStyle.drawerWidth, "px, 0, 0)")
|
|
61
|
-
|
|
55
|
+
transform: "translate3d(".concat(_rootStyle.drawerWidth, "px, 0, 0)"),
|
|
56
|
+
..._rootStyle.transition
|
|
57
|
+
},
|
|
62
58
|
"&:before,&:after": {
|
|
63
59
|
position: "absolute",
|
|
64
60
|
zIndex: "3",
|
|
@@ -68,7 +64,7 @@ const sidebarStyle = theme => ({
|
|
|
68
64
|
display: "block",
|
|
69
65
|
top: "0"
|
|
70
66
|
}
|
|
71
|
-
}
|
|
67
|
+
},
|
|
72
68
|
blackBackground: {
|
|
73
69
|
color: _rootStyle.whiteColor,
|
|
74
70
|
"&:after": {
|
|
@@ -132,7 +128,7 @@ const sidebarStyle = theme => ({
|
|
|
132
128
|
marginRight: "30px",
|
|
133
129
|
marginLeft: "26px"
|
|
134
130
|
},
|
|
135
|
-
logoNormal:
|
|
131
|
+
logoNormal: { ..._rootStyle.defaultFont,
|
|
136
132
|
transition: "all 300ms linear",
|
|
137
133
|
display: "block",
|
|
138
134
|
opacity: "1",
|
|
@@ -147,7 +143,7 @@ const sidebarStyle = theme => ({
|
|
|
147
143
|
"&,&:hover,&:focus": {
|
|
148
144
|
color: "inherit"
|
|
149
145
|
}
|
|
150
|
-
}
|
|
146
|
+
},
|
|
151
147
|
logoNormalRTL: {
|
|
152
148
|
textAlign: "right"
|
|
153
149
|
},
|
|
@@ -204,7 +200,7 @@ const sidebarStyle = theme => ({
|
|
|
204
200
|
paddingBottom: "0px"
|
|
205
201
|
}
|
|
206
202
|
},
|
|
207
|
-
itemLink:
|
|
203
|
+
itemLink: {
|
|
208
204
|
paddingLeft: "10px",
|
|
209
205
|
paddingRight: "10px",
|
|
210
206
|
transition: "all 300ms linear",
|
|
@@ -213,8 +209,8 @@ const sidebarStyle = theme => ({
|
|
|
213
209
|
position: "relative",
|
|
214
210
|
display: "block",
|
|
215
211
|
padding: "10px 15px",
|
|
216
|
-
backgroundColor: "transparent"
|
|
217
|
-
|
|
212
|
+
backgroundColor: "transparent",
|
|
213
|
+
..._rootStyle.defaultFont,
|
|
218
214
|
width: "auto",
|
|
219
215
|
"&:hover": {
|
|
220
216
|
outline: "none",
|
|
@@ -224,7 +220,7 @@ const sidebarStyle = theme => ({
|
|
|
224
220
|
"&,&:hover,&:focus": {
|
|
225
221
|
color: "inherit"
|
|
226
222
|
}
|
|
227
|
-
}
|
|
223
|
+
},
|
|
228
224
|
itemIcon: {
|
|
229
225
|
color: "inherit",
|
|
230
226
|
width: "30px",
|
|
@@ -242,9 +238,9 @@ const sidebarStyle = theme => ({
|
|
|
242
238
|
marginLeft: "15px",
|
|
243
239
|
marginRight: "1px"
|
|
244
240
|
},
|
|
245
|
-
itemText:
|
|
246
|
-
color: "inherit"
|
|
247
|
-
|
|
241
|
+
itemText: {
|
|
242
|
+
color: "inherit",
|
|
243
|
+
..._rootStyle.defaultFont,
|
|
248
244
|
margin: "0",
|
|
249
245
|
lineHeight: "30px",
|
|
250
246
|
fontSize: "14px",
|
|
@@ -256,7 +252,7 @@ const sidebarStyle = theme => ({
|
|
|
256
252
|
height: "auto",
|
|
257
253
|
whiteSpace: "nowrap",
|
|
258
254
|
padding: "0 16px !important"
|
|
259
|
-
}
|
|
255
|
+
},
|
|
260
256
|
userItemText: {
|
|
261
257
|
lineHeight: "22px"
|
|
262
258
|
},
|
|
@@ -289,15 +285,15 @@ const sidebarStyle = theme => ({
|
|
|
289
285
|
backgroundColor: "rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[17]) + ", 0.2)",
|
|
290
286
|
boxShadow: "none"
|
|
291
287
|
},
|
|
292
|
-
collapseItemLink:
|
|
288
|
+
collapseItemLink: {
|
|
293
289
|
transition: "all 300ms linear",
|
|
294
290
|
margin: "0 15px",
|
|
295
291
|
borderRadius: "3px",
|
|
296
292
|
position: "relative",
|
|
297
293
|
display: "block",
|
|
298
294
|
padding: "10px",
|
|
299
|
-
backgroundColor: "transparent"
|
|
300
|
-
|
|
295
|
+
backgroundColor: "transparent",
|
|
296
|
+
..._rootStyle.defaultFont,
|
|
301
297
|
width: "auto",
|
|
302
298
|
"&:hover": {
|
|
303
299
|
outline: "none",
|
|
@@ -307,10 +303,10 @@ const sidebarStyle = theme => ({
|
|
|
307
303
|
"&,&:hover,&:focus": {
|
|
308
304
|
color: "inherit"
|
|
309
305
|
}
|
|
310
|
-
}
|
|
311
|
-
collapseItemMini:
|
|
312
|
-
color: "inherit"
|
|
313
|
-
|
|
306
|
+
},
|
|
307
|
+
collapseItemMini: {
|
|
308
|
+
color: "inherit",
|
|
309
|
+
..._rootStyle.defaultFont,
|
|
314
310
|
textTransform: "uppercase",
|
|
315
311
|
width: "30px",
|
|
316
312
|
marginRight: "15px",
|
|
@@ -321,15 +317,15 @@ const sidebarStyle = theme => ({
|
|
|
321
317
|
display: "inherit",
|
|
322
318
|
transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
|
|
323
319
|
fontSize: "14px"
|
|
324
|
-
}
|
|
320
|
+
},
|
|
325
321
|
collapseItemMiniRTL: {
|
|
326
322
|
float: "right",
|
|
327
323
|
marginLeft: "30px",
|
|
328
324
|
marginRight: "1px"
|
|
329
325
|
},
|
|
330
|
-
collapseItemText:
|
|
331
|
-
color: "inherit"
|
|
332
|
-
|
|
326
|
+
collapseItemText: {
|
|
327
|
+
color: "inherit",
|
|
328
|
+
..._rootStyle.defaultFont,
|
|
333
329
|
margin: "0",
|
|
334
330
|
position: "relative",
|
|
335
331
|
transform: "translateX(0px)",
|
|
@@ -338,7 +334,7 @@ const sidebarStyle = theme => ({
|
|
|
338
334
|
display: "block",
|
|
339
335
|
transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
|
|
340
336
|
fontSize: "14px"
|
|
341
|
-
}
|
|
337
|
+
},
|
|
342
338
|
collapseItemTextRTL: {
|
|
343
339
|
textAlign: "right"
|
|
344
340
|
},
|
|
@@ -374,10 +370,11 @@ const sidebarStyle = theme => ({
|
|
|
374
370
|
transform: "rotate(-360deg)"
|
|
375
371
|
},
|
|
376
372
|
purple: {
|
|
377
|
-
"&,&:hover,&:focus":
|
|
373
|
+
"&,&:hover,&:focus": {
|
|
378
374
|
color: _rootStyle.whiteColor,
|
|
379
|
-
backgroundColor: _rootStyle.primaryColor[0]
|
|
380
|
-
|
|
375
|
+
backgroundColor: _rootStyle.primaryColor[0],
|
|
376
|
+
..._rootStyle.primaryBoxShadow
|
|
377
|
+
}
|
|
381
378
|
},
|
|
382
379
|
blue: {
|
|
383
380
|
"&,&:hover,&:focus": {
|
|
@@ -451,7 +448,7 @@ const sidebarStyle = theme => ({
|
|
|
451
448
|
backgroundColor: "hsla(0,0%,100%,.3)"
|
|
452
449
|
}
|
|
453
450
|
},
|
|
454
|
-
photo:
|
|
451
|
+
photo: {
|
|
455
452
|
transition: "all 300ms linear",
|
|
456
453
|
width: "34px",
|
|
457
454
|
height: "34px",
|
|
@@ -460,8 +457,9 @@ const sidebarStyle = theme => ({
|
|
|
460
457
|
zIndex: "5",
|
|
461
458
|
marginRight: "11px",
|
|
462
459
|
borderRadius: "50%",
|
|
463
|
-
marginLeft: "23px"
|
|
464
|
-
|
|
460
|
+
marginLeft: "23px",
|
|
461
|
+
..._rootStyle.boxShadow
|
|
462
|
+
},
|
|
465
463
|
photoRTL: {
|
|
466
464
|
float: "right",
|
|
467
465
|
marginLeft: "12px",
|
|
@@ -7,16 +7,10 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _rootStyle = require("../rootStyle");
|
|
9
9
|
|
|
10
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
-
|
|
12
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
13
|
-
|
|
14
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
-
|
|
16
10
|
const typographyStyle = {
|
|
17
|
-
defaultFontStyle:
|
|
11
|
+
defaultFontStyle: { ..._rootStyle.defaultFont,
|
|
18
12
|
fontSize: "14px"
|
|
19
|
-
}
|
|
13
|
+
},
|
|
20
14
|
defaultHeaderMargins: {
|
|
21
15
|
marginTop: "20px",
|
|
22
16
|
marginBottom: "10px"
|
|
@@ -5,12 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.cardLink = exports.cardSubtitle = exports.cardTitle = exports.title = exports.tooltip = exports.defaultBoxShadow = exports.cardHeader = exports.cardActions = exports.roseCardHeader = exports.primaryCardHeader = exports.infoCardHeader = exports.dangerCardHeader = exports.successCardHeader = exports.warningCardHeader = exports.roseBoxShadow = exports.dangerBoxShadow = exports.warningBoxShadow = exports.successBoxShadow = exports.infoBoxShadow = exports.primaryBoxShadow = exports.redditColor = exports.dribbbleColor = exports.behanceColor = exports.tumblrColor = exports.youtubeColor = exports.pinterestColor = exports.linkedinColor = exports.googleColor = exports.facebookColor = exports.twitterColor = exports.whiteColor = exports.blackColor = exports.grayColor = exports.agilityColor = exports.roseColor = exports.infoColor = exports.successColor = exports.dangerColor = exports.warningColor = exports.primaryColor = exports.defaultFont = exports.card = exports.boxShadow = exports.containerFluid = exports.container = exports.transition = exports.drawerMiniWidth = exports.drawerWidth = exports.hexToRgb = void 0;
|
|
7
7
|
|
|
8
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
9
|
-
|
|
10
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
11
|
-
|
|
12
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
13
|
-
|
|
14
8
|
const hexToRgb = input => {
|
|
15
9
|
input = input + "";
|
|
16
10
|
input = input.replace("#", "");
|
|
@@ -154,41 +148,35 @@ const roseBoxShadow = {
|
|
|
154
148
|
boxShadow: "0 4px 20px 0 rgba(" + hexToRgb(blackColor) + ",.14), 0 7px 10px -5px rgba(" + hexToRgb(roseColor[0]) + ",.4)"
|
|
155
149
|
};
|
|
156
150
|
exports.roseBoxShadow = roseBoxShadow;
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
}
|
|
161
|
-
|
|
151
|
+
const warningCardHeader = {
|
|
152
|
+
background: "linear-gradient(60deg, " + warningColor[1] + ", " + warningColor[2] + ")",
|
|
153
|
+
...warningBoxShadow
|
|
154
|
+
};
|
|
162
155
|
exports.warningCardHeader = warningCardHeader;
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
|
|
156
|
+
const successCardHeader = {
|
|
157
|
+
background: "linear-gradient(60deg, " + successColor[1] + ", " + successColor[2] + ")",
|
|
158
|
+
...successBoxShadow
|
|
159
|
+
};
|
|
168
160
|
exports.successCardHeader = successCardHeader;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
}
|
|
173
|
-
|
|
161
|
+
const dangerCardHeader = {
|
|
162
|
+
background: "linear-gradient(60deg, " + dangerColor[1] + ", " + dangerColor[2] + ")",
|
|
163
|
+
...dangerBoxShadow
|
|
164
|
+
};
|
|
174
165
|
exports.dangerCardHeader = dangerCardHeader;
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
}
|
|
179
|
-
|
|
166
|
+
const infoCardHeader = {
|
|
167
|
+
background: "linear-gradient(60deg, " + infoColor[1] + ", " + infoColor[2] + ")",
|
|
168
|
+
...infoBoxShadow
|
|
169
|
+
};
|
|
180
170
|
exports.infoCardHeader = infoCardHeader;
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
}
|
|
185
|
-
|
|
171
|
+
const primaryCardHeader = {
|
|
172
|
+
background: "linear-gradient(60deg, " + primaryColor[1] + ", " + primaryColor[2] + ")",
|
|
173
|
+
...primaryBoxShadow
|
|
174
|
+
};
|
|
186
175
|
exports.primaryCardHeader = primaryCardHeader;
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
}
|
|
191
|
-
|
|
176
|
+
const roseCardHeader = {
|
|
177
|
+
background: agilityColor[0],
|
|
178
|
+
...roseBoxShadow
|
|
179
|
+
};
|
|
192
180
|
exports.roseCardHeader = roseCardHeader;
|
|
193
181
|
const card = {
|
|
194
182
|
display: "inline-block",
|
|
@@ -201,14 +189,13 @@ const card = {
|
|
|
201
189
|
background: whiteColor
|
|
202
190
|
};
|
|
203
191
|
exports.card = card;
|
|
204
|
-
|
|
205
|
-
const cardActions = _objectSpread({
|
|
192
|
+
const cardActions = {
|
|
206
193
|
margin: "0 20px 10px",
|
|
207
194
|
paddingTop: "10px",
|
|
208
195
|
borderTop: "1px solid " + grayColor[8],
|
|
209
|
-
height: "auto"
|
|
210
|
-
|
|
211
|
-
|
|
196
|
+
height: "auto",
|
|
197
|
+
...defaultFont
|
|
198
|
+
};
|
|
212
199
|
exports.cardActions = cardActions;
|
|
213
200
|
const cardHeader = {
|
|
214
201
|
margin: "-20px 15px 0",
|
|
@@ -266,18 +253,16 @@ const title = {
|
|
|
266
253
|
}
|
|
267
254
|
};
|
|
268
255
|
exports.title = title;
|
|
269
|
-
|
|
270
|
-
const cardTitle = _objectSpread(_objectSpread({}, title), {}, {
|
|
256
|
+
const cardTitle = { ...title,
|
|
271
257
|
marginTop: "0",
|
|
272
258
|
marginBottom: "3px",
|
|
273
259
|
minHeight: "auto",
|
|
274
|
-
"& a":
|
|
260
|
+
"& a": { ...title,
|
|
275
261
|
marginTop: ".625rem",
|
|
276
262
|
marginBottom: "0.75rem",
|
|
277
263
|
minHeight: "auto"
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
264
|
+
}
|
|
265
|
+
};
|
|
281
266
|
exports.cardTitle = cardTitle;
|
|
282
267
|
const cardSubtitle = {
|
|
283
268
|
marginTop: "-.375rem"
|
|
@@ -7,12 +7,6 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _rootStyle = require("../rootStyle");
|
|
9
9
|
|
|
10
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
-
|
|
12
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
13
|
-
|
|
14
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
-
|
|
16
10
|
const appStyle = theme => ({
|
|
17
11
|
wrapper: {
|
|
18
12
|
position: "relative",
|
|
@@ -24,7 +18,7 @@ const appStyle = theme => ({
|
|
|
24
18
|
content: '" "'
|
|
25
19
|
}
|
|
26
20
|
},
|
|
27
|
-
mainPanel:
|
|
21
|
+
mainPanel: {
|
|
28
22
|
transitionProperty: "top, bottom, width",
|
|
29
23
|
transitionDuration: ".2s, .2s, .35s",
|
|
30
24
|
transitionTimingFunction: "linear, linear, ease",
|
|
@@ -33,18 +27,19 @@ const appStyle = theme => ({
|
|
|
33
27
|
},
|
|
34
28
|
overflow: "auto",
|
|
35
29
|
position: "relative",
|
|
36
|
-
float: "right"
|
|
37
|
-
|
|
30
|
+
float: "right",
|
|
31
|
+
..._rootStyle.transition,
|
|
38
32
|
maxHeight: "100%",
|
|
39
33
|
width: "100%",
|
|
40
34
|
overflowScrolling: "touch"
|
|
41
|
-
}
|
|
35
|
+
},
|
|
42
36
|
content: {
|
|
43
37
|
marginTop: "70px",
|
|
44
38
|
padding: "30px 15px",
|
|
45
39
|
minHeight: "calc(100vh - 123px)"
|
|
46
40
|
},
|
|
47
|
-
container:
|
|
41
|
+
container: { ..._rootStyle.containerFluid
|
|
42
|
+
},
|
|
48
43
|
map: {
|
|
49
44
|
marginTop: "70px"
|
|
50
45
|
},
|
|
@@ -7,28 +7,22 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _rootStyle = require("../rootStyle");
|
|
9
9
|
|
|
10
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
-
|
|
12
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
13
|
-
|
|
14
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
-
|
|
16
10
|
const loginStyle = theme => ({
|
|
17
|
-
container:
|
|
11
|
+
container: { ..._rootStyle.container,
|
|
18
12
|
zIndex: "4",
|
|
19
13
|
[theme.breakpoints.down("sm")]: {
|
|
20
14
|
paddingBottom: "100px"
|
|
21
15
|
}
|
|
22
|
-
}
|
|
16
|
+
},
|
|
23
17
|
right: {
|
|
24
18
|
margin: "0",
|
|
25
19
|
fontSize: "12px",
|
|
26
20
|
float: "right!important",
|
|
27
21
|
color: "#d32f2f"
|
|
28
22
|
},
|
|
29
|
-
cardTitle:
|
|
23
|
+
cardTitle: { ..._rootStyle.cardTitle,
|
|
30
24
|
color: _rootStyle.whiteColor
|
|
31
|
-
}
|
|
25
|
+
},
|
|
32
26
|
loader: {
|
|
33
27
|
width: "100%",
|
|
34
28
|
height: "100",
|