@agilemotion/oui-react-js 1.8.52 → 1.8.53
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.
|
@@ -357,7 +357,7 @@ const Layout = props => {
|
|
|
357
357
|
border: 'none',
|
|
358
358
|
minWidth: '128px',
|
|
359
359
|
width: 'auto',
|
|
360
|
-
height: '100%',
|
|
360
|
+
height: _Utils.default.getComponentAttribute(component, 'className', '') === 'scrolling-body' ? null : '100%',
|
|
361
361
|
margin: 0,
|
|
362
362
|
padding: 0
|
|
363
363
|
}, component);
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
.view .scrolling-body {
|
|
43
|
-
block-size: calc(100dvh - var(--header-h) - var(--view-header-h, var(--view-header-min)) - 64px)
|
|
43
|
+
block-size: calc(100dvh - var(--header-h) - var(--view-header-h, var(--view-header-min)) - 64px);
|
|
44
44
|
overflow-y: auto;
|
|
45
45
|
overflow-x: hidden;
|
|
46
46
|
min-block-size: 0;
|
|
47
|
-
padding: 0 0 16px 0
|
|
47
|
+
padding: 0 0 16px 0;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.window-unpinned .view {
|
|
@@ -35,13 +35,12 @@ class ProcurementMeetings {
|
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
37
|
};
|
|
38
|
-
startMeeting = meeting => {
|
|
39
|
-
return this.emitSocketEvent("startMeeting", {
|
|
38
|
+
startMeeting = (viewId, meeting) => {
|
|
39
|
+
return this.emitSocketEvent(viewId, "startMeeting", {
|
|
40
40
|
procurementNumber: meeting.procurementNumber
|
|
41
41
|
}, meeting);
|
|
42
42
|
};
|
|
43
43
|
endMeeting = meeting => {
|
|
44
|
-
console.log("\n\n\n\n\nENDING SESSION : ", meeting);
|
|
45
44
|
let api = _ApplicationManager.default.resolveComponentApi("conclusionLayout");
|
|
46
45
|
api.visible = true;
|
|
47
46
|
api = _ApplicationManager.default.resolveComponentApi("toolbar");
|
package/package.json
CHANGED