@agilemotion/oui-react-js 1.7.2 → 1.7.4
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.
|
@@ -38,6 +38,7 @@ const InteractionPortalApp = props => {
|
|
|
38
38
|
if (window.location.pathname !== '/reset-password' && window.location.pathname !== '/login' && window.location.pathname !== '/forgot-password' && window.location.pathname !== '/change-password') {
|
|
39
39
|
navigate("/");
|
|
40
40
|
}
|
|
41
|
+
console.log("\n\n\n\nImpl : ", props.implConfig);
|
|
41
42
|
}, []);
|
|
42
43
|
return /*#__PURE__*/_react.default.createElement(_MuiThemeProvider.default, {
|
|
43
44
|
muiTheme: _themeDefault.default
|
|
@@ -65,7 +66,7 @@ const InteractionPortalApp = props => {
|
|
|
65
66
|
footerSplitterColor: props.implConfig.footerSplitterColor,
|
|
66
67
|
title: props.implConfig.loginTitle,
|
|
67
68
|
titleColor: props.implConfig.titleColor,
|
|
68
|
-
logo: props.implConfig.
|
|
69
|
+
logo: props.implConfig.appLogo
|
|
69
70
|
})
|
|
70
71
|
}), /*#__PURE__*/_react.default.createElement(_reactRouterDom.Route, {
|
|
71
72
|
path: "/forgot-password",
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
@import '
|
|
2
|
-
@import '
|
|
3
|
-
@import '
|
|
4
|
-
@import '
|
|
5
|
-
@import '
|
|
6
|
-
@import '
|
|
7
|
-
@import '
|
|
8
|
-
@import '
|
|
9
|
-
@import "
|
|
1
|
+
@import '@syncfusion/ej2-base/styles/material.css';
|
|
2
|
+
@import '@syncfusion/ej2-buttons/styles/material.css';
|
|
3
|
+
@import '@syncfusion/ej2-inputs/styles/material.css';
|
|
4
|
+
@import '@syncfusion/ej2-popups/styles/material.css';
|
|
5
|
+
@import '@syncfusion/ej2-lists/styles/material.css';
|
|
6
|
+
@import '@syncfusion/ej2-navigations/styles/material.css';
|
|
7
|
+
@import '@syncfusion/ej2-splitbuttons/styles/material.css';
|
|
8
|
+
@import '@syncfusion/ej2-dropdowns/styles/material.css';
|
|
9
|
+
@import "@syncfusion/ej2-react-documenteditor/styles/material.css";
|
|
10
10
|
|
|
11
11
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
|
|
12
12
|
}
|
package/dist/components/Tree.js
CHANGED
|
@@ -73,8 +73,8 @@ function TransitionComponent(props) {
|
|
|
73
73
|
}, /*#__PURE__*/_react.default.createElement(_Collapse.default, props));
|
|
74
74
|
}
|
|
75
75
|
TransitionComponent.propTypes = {
|
|
76
|
-
/**
|
|
77
|
-
* Show the component; triggers the enter or exit states
|
|
76
|
+
/**
|
|
77
|
+
* Show the component; triggers the enter or exit states
|
|
78
78
|
*/
|
|
79
79
|
in: _propTypes.default.bool
|
|
80
80
|
};
|
|
@@ -29,14 +29,14 @@ const WordDocumentViewer = props => {
|
|
|
29
29
|
command: 'Italic'
|
|
30
30
|
}, "Separator", "Image", "Table", "Separator", "Header", "Footer", "PageSetup", "PageNumber", "Break", "InsertFootnote", "Separator", "Find", "Separator", "Comments"];
|
|
31
31
|
|
|
32
|
-
/*let items = ['Bold', 'Italic', 'Underline', '|', 'Formats', '|', 'CreateLink', '|',
|
|
33
|
-
{
|
|
34
|
-
template: '' +
|
|
35
|
-
'<button class="e-tbar-btn e-btn" tabindex="-1" id="custom_tbar" style="width:100%"><div class="e-tbar-btn-text" style="font-weight: normal; font-size: inherit;"> Placeholders</div></button>',
|
|
36
|
-
undo: true,
|
|
37
|
-
click: onClick.bind(this),
|
|
38
|
-
tooltipText: 'Insert Placeholders'
|
|
39
|
-
}, '|', 'Undo', 'Redo'
|
|
32
|
+
/*let items = ['Bold', 'Italic', 'Underline', '|', 'Formats', '|', 'CreateLink', '|',
|
|
33
|
+
{
|
|
34
|
+
template: '' +
|
|
35
|
+
'<button class="e-tbar-btn e-btn" tabindex="-1" id="custom_tbar" style="width:100%"><div class="e-tbar-btn-text" style="font-weight: normal; font-size: inherit;"> Placeholders</div></button>',
|
|
36
|
+
undo: true,
|
|
37
|
+
click: onClick.bind(this),
|
|
38
|
+
tooltipText: 'Insert Placeholders'
|
|
39
|
+
}, '|', 'Undo', 'Redo'
|
|
40
40
|
];*/
|
|
41
41
|
|
|
42
42
|
const api = () => {
|