@agilemotion/oui-react-js 1.7.7 → 1.7.8
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.
|
@@ -396,7 +396,6 @@ const DocumentTemplateDesignerComponent = props => {
|
|
|
396
396
|
toolbarItems: items,
|
|
397
397
|
toolbarClick: onToolbarClick,
|
|
398
398
|
contentChange: onContentChange,
|
|
399
|
-
enableTrackChanges: false,
|
|
400
399
|
serviceUrl: "https://services.syncfusion.com/react/production/api/documenteditor/",
|
|
401
400
|
enableToolbar: true
|
|
402
401
|
})));
|
|
@@ -32,16 +32,13 @@ class ElementResizeHandler {
|
|
|
32
32
|
this.ghostPane.style.opacity = 0;
|
|
33
33
|
};
|
|
34
34
|
onTouchDown = e => {
|
|
35
|
-
alert(1);
|
|
36
35
|
this.onDown(e.touches[0]);
|
|
37
36
|
e.preventDefault();
|
|
38
37
|
};
|
|
39
38
|
onTouchMove = e => {
|
|
40
|
-
alert(1);
|
|
41
39
|
this.onMove(e.touches[0]);
|
|
42
40
|
};
|
|
43
41
|
onTouchEnd = e => {
|
|
44
|
-
alert(1);
|
|
45
42
|
if (e.touches.length === 0) {
|
|
46
43
|
this.onUp(e.changedTouches[0]);
|
|
47
44
|
}
|
|
@@ -106,7 +106,7 @@ const TrainingRoom = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_react.defau
|
|
|
106
106
|
break;
|
|
107
107
|
case _VCEventType.VCEventType.CONSUMER_TRANSPORT_FAILED:
|
|
108
108
|
hangUp();
|
|
109
|
-
|
|
109
|
+
console.log('Connection error - Please check your network connection and re-join the meeting');
|
|
110
110
|
break;
|
|
111
111
|
}
|
|
112
112
|
}
|
|
@@ -191,7 +191,6 @@ function EnhancedTable(props) {
|
|
|
191
191
|
if (fetchEnabled && !utils.isNull(props.searchParameters) && !(utils.isNull(props.dataUrl) || utils.isNull(props.dataService))) {
|
|
192
192
|
setSearchParameters(props.searchParameters);
|
|
193
193
|
if (!utils.isNull(props.dataService)) {
|
|
194
|
-
alert(props.dataService);
|
|
195
194
|
(0, _RestUtils.invokeRpc)(props.dataService, null, "", result => {
|
|
196
195
|
setRows(result.data.records);
|
|
197
196
|
setTotalNumberOfRows(result.data.totalNumberOfRecords);
|
|
@@ -199,9 +198,7 @@ function EnhancedTable(props) {
|
|
|
199
198
|
props.onDataArrive(result.data);
|
|
200
199
|
}
|
|
201
200
|
updateScrollBarPadding();
|
|
202
|
-
}, e => {
|
|
203
|
-
alert(e.message);
|
|
204
|
-
});
|
|
201
|
+
}, e => {});
|
|
205
202
|
} else {
|
|
206
203
|
utils.invokeUrl(props.dataUrl, JSON.stringify(utils.getRequest(page + 1, rowsPerPage, props.searchParameters, props.paged)), data => {
|
|
207
204
|
var result;
|