@agilemotion/oui-react-js 1.3.9 → 1.4.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/dist/{ApplicationContext.js → ApplicationManager.js} +196 -74
- package/dist/BasicApp.js +66 -63
- package/dist/BasicAppHome.js +85 -118
- package/dist/BusinessPortalAppHome.js +9 -15
- package/dist/DynamicJS.js +7 -3
- package/dist/RestUtils.js +13 -14
- package/dist/Utils.js +15 -9
- package/dist/WithRouter.js +34 -0
- package/dist/assets/scss/black-dashboard-react/custom/_sidebar-and-main-panel.scss +1 -1
- package/dist/components/AlertBar.js +1 -1
- package/dist/components/Button.js +34 -25
- package/dist/components/Calendar.js +9 -45
- package/dist/components/DataGrid.js +49 -18
- package/dist/components/DataGridColumn.js +1 -1
- package/dist/components/DataGridFilter.js +2 -2
- package/dist/components/Dialog.js +1 -1
- package/dist/components/DocumentViewer.js +5 -5
- package/dist/components/FileThumb.js +30 -19
- package/dist/components/Graph.js +10 -2
- package/dist/components/GraphNode.js +1 -1
- package/dist/components/HtmlPanel.js +10 -5
- package/dist/components/Icon.js +8 -0
- package/dist/components/PopupView.js +1 -1
- package/dist/components/Portlet.js +100 -0
- package/dist/components/SignaturePanel.js +1 -1
- package/dist/components/SocketManager.js +2 -2
- package/dist/components/StepperTitleBar.js +4 -4
- package/dist/components/TabPanel.js +11 -3
- package/dist/components/TableCellContent.js +1 -1
- package/dist/components/TemplateDesigner.js +11 -11
- package/dist/components/TitleBar.js +4 -3
- package/dist/components/Toolbar.js +42 -11
- package/dist/components/Tree.js +3 -3
- package/dist/components/dashboard/BasicBusinessAppDashboard.js +9 -7
- package/dist/components/dashboard/components/Header.js +1 -1
- package/dist/components/dashboard/components/blackDashboard/sidebar/Sidebar.css +7 -0
- package/dist/components/dashboard/components/blackDashboard/sidebar/Sidebar.js +74 -72
- package/dist/components/form/AutoComplete.js +31 -30
- package/dist/components/form/BaseField.js +38 -26
- package/dist/components/form/DatePicker.js +5 -2
- package/dist/components/form/FieldSet.js +11 -19
- package/dist/components/form/Form.js +24 -16
- package/dist/components/form/ImageEditor.js +4 -4
- package/dist/components/form/MultiFileUploadField.js +15 -14
- package/dist/components/form/RadioGroup.js +10 -11
- package/dist/components/form/Section.js +10 -0
- package/dist/components/form/TimePicker.js +1 -0
- package/dist/components/form/UploadField.js +115 -108
- package/dist/components/layout/Layout.js +65 -12
- package/dist/components/layout/View.css +1 -0
- package/dist/components/layout/View.js +20 -23
- package/dist/components/layout/ViewContainer.css +3 -0
- package/dist/components/layout/ViewContainer.js +59 -0
- package/dist/components/layout/ViewPort.js +50 -80
- package/dist/components/layout/Window.css +18 -0
- package/dist/components/layout/Window.js +287 -0
- package/dist/components/layout/WindowViewPort.js +71 -0
- package/dist/components/media/MediaSoupHelper.js +1 -1
- package/dist/components/media/Toolbar.css +18 -3
- package/dist/components/media/Toolbar.js +80 -56
- package/dist/components/media/TrainingRoom.js +97 -20
- package/dist/components/media/VCRoom.js +1 -1
- package/dist/components/media/VCRoomParticipant.js +17 -15
- package/dist/components/media/VCRoomRecorder.js +223 -0
- package/dist/components/media/VCRoomWorkspace.js +169 -156
- package/dist/components/media/VideoPlayer.css +10 -0
- package/dist/components/media/VideoPlayer.js +86 -0
- package/dist/components/menu/MenuButton.js +22 -6
- package/dist/components/menu/MenuLink.js +13 -10
- package/dist/components/navbars/HomeNavbar.js +2 -2
- package/dist/components/navbars/PortalNavbar.js +3 -3
- package/dist/components/signatures/AgilitySignaturePanel.js +4 -4
- package/dist/components/signatures/ImageSignatureInput.js +4 -4
- package/dist/components/signatures/SignatureInput.js +4 -4
- package/dist/components/signatures/SignatureTemplateDesigner.js +6 -6
- package/dist/event/ActionHandlers.js +3 -3
- package/dist/event/Observable.js +33 -15
- package/dist/event/RouteActionHandler.js +38 -29
- package/dist/event/ServiceCallActionHandler.js +4 -2
- package/dist/event/SignalGraphActionHandler.js +2 -2
- package/dist/js/Calendar.js +220 -0
- package/dist/js/Media.js +2 -2
- package/dist/view/Dashboard.js +34 -28
- package/dist/view/Views.js +30 -0
- package/dist/view/security/ChangePasswordBasic.js +6 -4
- package/dist/view/security/ForgotPassword.js +4 -4
- package/dist/view/security/ForgotPasswordBasic.js +4 -4
- package/dist/view/security/Login.js +4 -4
- package/dist/view/security/LoginBasic.js +5 -5
- package/dist/view/security/LoginBusinessPortal.js +4 -4
- package/dist/view/security/ResetPassword.js +4 -4
- package/dist/view/security/ResetPasswordBasic.js +6 -4
- package/package.json +6 -16
- package/gulpfile.js +0 -77
|
@@ -21,9 +21,9 @@ var _redux = require("redux");
|
|
|
21
21
|
|
|
22
22
|
var _DashboardStore = require("../../redux/store/DashboardStore");
|
|
23
23
|
|
|
24
|
-
var
|
|
24
|
+
var _WithRouter = _interopRequireDefault(require("../../WithRouter"));
|
|
25
25
|
|
|
26
|
-
var
|
|
26
|
+
var _ApplicationManager = _interopRequireDefault(require("../../ApplicationManager"));
|
|
27
27
|
|
|
28
28
|
var _InputAdornment = _interopRequireDefault(require("@material-ui/core/InputAdornment"));
|
|
29
29
|
|
|
@@ -108,7 +108,7 @@ const ResetPassword = props => {
|
|
|
108
108
|
};
|
|
109
109
|
|
|
110
110
|
_react.default.useEffect(() => {
|
|
111
|
-
|
|
111
|
+
_ApplicationManager.default.clear();
|
|
112
112
|
});
|
|
113
113
|
|
|
114
114
|
return /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_AuthNavbar.default, {
|
|
@@ -225,6 +225,6 @@ const ResetPassword = props => {
|
|
|
225
225
|
})))));
|
|
226
226
|
};
|
|
227
227
|
|
|
228
|
-
var _default = (0,
|
|
228
|
+
var _default = (0, _WithRouter.default)((0, _reactRedux.connect)(dispatch => (0, _redux.bindActionCreators)(_DashboardStore.actionCreators, dispatch))(ResetPassword));
|
|
229
229
|
|
|
230
230
|
exports.default = _default;
|
|
@@ -15,9 +15,9 @@ var _redux = require("redux");
|
|
|
15
15
|
|
|
16
16
|
var _DashboardStore = require("../../redux/store/DashboardStore");
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _WithRouter = _interopRequireDefault(require("../../WithRouter"));
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _ApplicationManager = _interopRequireDefault(require("../../ApplicationManager"));
|
|
21
21
|
|
|
22
22
|
var _InputAdornment = _interopRequireDefault(require("@material-ui/core/InputAdornment"));
|
|
23
23
|
|
|
@@ -41,6 +41,8 @@ var _VisibilityOff = _interopRequireDefault(require("@material-ui/icons/Visibili
|
|
|
41
41
|
|
|
42
42
|
var _IconButton = _interopRequireDefault(require("@material-ui/core/IconButton"));
|
|
43
43
|
|
|
44
|
+
var _reactRouterDom = require("react-router-dom");
|
|
45
|
+
|
|
44
46
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
45
47
|
|
|
46
48
|
const ResetPassword = props => {
|
|
@@ -131,7 +133,7 @@ const ResetPassword = props => {
|
|
|
131
133
|
};
|
|
132
134
|
|
|
133
135
|
_react.default.useEffect(() => {
|
|
134
|
-
|
|
136
|
+
_ApplicationManager.default.clear();
|
|
135
137
|
});
|
|
136
138
|
|
|
137
139
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
@@ -275,6 +277,6 @@ const ResetPassword = props => {
|
|
|
275
277
|
})));
|
|
276
278
|
};
|
|
277
279
|
|
|
278
|
-
var _default = (0,
|
|
280
|
+
var _default = (0, _WithRouter.default)((0, _reactRedux.connect)(dispatch => (0, _redux.bindActionCreators)(_DashboardStore.actionCreators, dispatch))(ResetPassword));
|
|
279
281
|
|
|
280
282
|
exports.default = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agilemotion/oui-react-js",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"babel": {
|
|
5
5
|
"presets": [
|
|
6
6
|
"@babel/preset-env",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"react-bootstrap-switch": "^15.5.3",
|
|
54
54
|
"react-confirm-alert": "^3.0.6",
|
|
55
55
|
"react-dom": "^16.13.1",
|
|
56
|
+
"react-draggable": "^4.4.6",
|
|
56
57
|
"react-feather": "^2.0.10",
|
|
57
58
|
"react-google-autocomplete": "^2.7.3",
|
|
58
59
|
"react-hot-toast": "^2.4.1",
|
|
@@ -61,10 +62,11 @@
|
|
|
61
62
|
"react-loader-spinner": "^3.1.5",
|
|
62
63
|
"react-lottie": "^1.2.4",
|
|
63
64
|
"react-pdf": "^4.1.0",
|
|
65
|
+
"react-player": "^2.16.0",
|
|
64
66
|
"react-promise-tracker": "^2.1.0",
|
|
65
67
|
"react-redux": "^7.2.3",
|
|
66
|
-
"react-router": "^
|
|
67
|
-
"react-router-dom": "^
|
|
68
|
+
"react-router": "^6.3.0",
|
|
69
|
+
"react-router-dom": "^6.3.0",
|
|
68
70
|
"react-router-redux": "^5.0.0-alpha.9",
|
|
69
71
|
"react-scripts": "^3.0.0",
|
|
70
72
|
"react-spring": "^8.0.27",
|
|
@@ -106,17 +108,5 @@
|
|
|
106
108
|
"@types/markerclustererplus": "2.1.33",
|
|
107
109
|
"eslint-plugin-flowtype": "3.13.0",
|
|
108
110
|
"typescript": "3.8.3"
|
|
109
|
-
}
|
|
110
|
-
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
|
|
111
|
-
"main": "gulpfile.js",
|
|
112
|
-
"author": "Amukelani Shandlale",
|
|
113
|
-
"license": "ISC",
|
|
114
|
-
"repository": {
|
|
115
|
-
"type": "git",
|
|
116
|
-
"url": "git+https://ashandla@bitbucket.org/ashandla/oui-react-js.git"
|
|
117
|
-
},
|
|
118
|
-
"bugs": {
|
|
119
|
-
"url": "https://bitbucket.org/ashandla/oui-react-js/issues"
|
|
120
|
-
},
|
|
121
|
-
"homepage": "https://bitbucket.org/ashandla/oui-react-js#readme"
|
|
111
|
+
}
|
|
122
112
|
}
|
package/gulpfile.js
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
const gulp = require("gulp");
|
|
2
|
-
const gap = require("gulp-append-prepend");
|
|
3
|
-
|
|
4
|
-
gulp.task("licenses", async function() {
|
|
5
|
-
// this is to add Creative Tim licenses in the production mode for the minified js
|
|
6
|
-
gulp
|
|
7
|
-
.src("build/static/js/*chunk.js", { base: "./" })
|
|
8
|
-
.pipe(
|
|
9
|
-
gap.prependText(`/*!
|
|
10
|
-
|
|
11
|
-
=========================================================
|
|
12
|
-
* Black Dashboard React - v1.1.0
|
|
13
|
-
=========================================================
|
|
14
|
-
|
|
15
|
-
* Product Page: https://www.creative-tim.com/product/black-dashboard-react
|
|
16
|
-
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
|
|
17
|
-
* Licensed under MIT (https://github.com/creativetimofficial/black-dashboard-react/blob/master/LICENSE.md)
|
|
18
|
-
|
|
19
|
-
* Coded by Creative Tim
|
|
20
|
-
|
|
21
|
-
=========================================================
|
|
22
|
-
|
|
23
|
-
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24
|
-
|
|
25
|
-
*/`)
|
|
26
|
-
)
|
|
27
|
-
.pipe(gulp.dest("./", { overwrite: true }));
|
|
28
|
-
|
|
29
|
-
// this is to add Creative Tim licenses in the production mode for the minified html
|
|
30
|
-
gulp
|
|
31
|
-
.src("build/index.html", { base: "./" })
|
|
32
|
-
.pipe(
|
|
33
|
-
gap.prependText(`<!--
|
|
34
|
-
|
|
35
|
-
=========================================================
|
|
36
|
-
* Black Dashboard React - v1.1.0
|
|
37
|
-
=========================================================
|
|
38
|
-
|
|
39
|
-
* Product Page: https://www.creative-tim.com/product/black-dashboard-react
|
|
40
|
-
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
|
|
41
|
-
* Licensed under MIT (https://github.com/creativetimofficial/black-dashboard-react/blob/master/LICENSE.md)
|
|
42
|
-
|
|
43
|
-
* Coded by Creative Tim
|
|
44
|
-
|
|
45
|
-
=========================================================
|
|
46
|
-
|
|
47
|
-
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
48
|
-
|
|
49
|
-
-->`)
|
|
50
|
-
)
|
|
51
|
-
.pipe(gulp.dest("./", { overwrite: true }));
|
|
52
|
-
|
|
53
|
-
// this is to add Creative Tim licenses in the production mode for the minified css
|
|
54
|
-
gulp
|
|
55
|
-
.src("build/static/css/*chunk.css", { base: "./" })
|
|
56
|
-
.pipe(
|
|
57
|
-
gap.prependText(`/*!
|
|
58
|
-
|
|
59
|
-
=========================================================
|
|
60
|
-
* Black Dashboard React - v1.1.0
|
|
61
|
-
=========================================================
|
|
62
|
-
|
|
63
|
-
* Product Page: https://www.creative-tim.com/product/black-dashboard-react
|
|
64
|
-
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
|
|
65
|
-
* Licensed under MIT (https://github.com/creativetimofficial/black-dashboard-react/blob/master/LICENSE.md)
|
|
66
|
-
|
|
67
|
-
* Coded by Creative Tim
|
|
68
|
-
|
|
69
|
-
=========================================================
|
|
70
|
-
|
|
71
|
-
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
72
|
-
|
|
73
|
-
*/`)
|
|
74
|
-
)
|
|
75
|
-
.pipe(gulp.dest("./", { overwrite: true }));
|
|
76
|
-
return;
|
|
77
|
-
});
|