@agilemotion/oui-react-js 1.8.31 → 1.8.33
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/ApplicationManager.js +13 -0
- package/dist/DynamicJS.js +1 -0
- package/dist/RestService.js +4 -0
- package/dist/ViewContext.js +1 -1
- package/dist/components/AlertBar.js +1 -1
- package/dist/components/Button.css +3 -0
- package/dist/components/Button.js +2 -1
- package/dist/components/DataGrid.js +25 -29
- package/dist/components/HtmlPanel.js +4 -2
- package/dist/components/Icon.js +7 -0
- package/dist/components/PopupView.js +9 -5
- package/dist/components/SocketManager.js +2 -0
- package/dist/components/StepperTitleBar.js +33 -18
- package/dist/components/TabPanel.js +30 -11
- package/dist/components/Toolbar.js +4 -7
- package/dist/components/customInput/File.js +1 -2
- package/dist/components/form/AutoComplete.js +4 -4
- package/dist/components/form/DatePicker.js +2 -2
- package/dist/components/form/IconField.js +3 -1
- package/dist/components/form/ImageEditor_bck.js +466 -0
- package/dist/components/form/TimePicker.js +4 -4
- package/dist/components/layout/CollapsiblePanel.css +9 -9
- package/dist/components/layout/Layout.js +9 -3
- package/dist/components/layout/View.css +125 -125
- package/dist/components/layout/Window.css +14 -14
- package/dist/components/layout/Window.js +6 -3
- package/dist/components/layout/WindowViewPort.js +5 -18
- package/dist/components/loader.css +36 -36
- package/dist/components/media/ClosablePanel.css +1 -1
- package/dist/components/media/ToolbarButton.js +2 -1
- package/dist/components/media/TrainingRoom.js +9 -1
- package/dist/components/media/VCRoom.js +15 -1
- package/dist/components/media/Video.css +4 -4
- package/dist/components/media/chat/ChatRoom.js +6 -17
- package/dist/components/media/chat/ChatRoomItem.js +8 -8
- package/dist/components/media/chat/ChatRooms.scss +27 -13
- package/dist/components/media/chat/PollContainer.js +27 -22
- package/dist/components/signatures/ResponsiveTable.css +91 -91
- package/dist/components/signatures/widgets.css +126 -126
- package/dist/event/EventType.js +1 -0
- package/dist/event/Observable.js +4 -4
- package/dist/event/RouteActionHandler.js +8 -8
- package/dist/js/ProcurementMeetings.js +15 -6
- package/dist/view/Dashboard.bck.js +562 -0
- package/package.json +14 -12
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
|
|
20
20
|
.file-upload {
|
|
21
21
|
position: absolute;
|
|
22
|
-
margin-top: 8px;
|
|
23
|
-
margin-left: -
|
|
22
|
+
margin-top: -8px;
|
|
23
|
+
margin-left: -48px;
|
|
24
24
|
z-index: 1;
|
|
25
|
-
width:
|
|
25
|
+
width: 24px;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.chat-input {
|
|
@@ -33,27 +33,40 @@
|
|
|
33
33
|
overflow: hidden;
|
|
34
34
|
text-overflow: ellipsis;
|
|
35
35
|
white-space: nowrap;
|
|
36
|
-
|
|
36
|
+
top: -8px;
|
|
37
|
+
font-size: 14px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.chat-input span {
|
|
41
|
+
width: 32px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.chat-input button {
|
|
45
|
+
top: 8px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.chat-input label svg {
|
|
49
|
+
height: 24px;
|
|
37
50
|
}
|
|
38
51
|
|
|
39
52
|
.chat-avatar {
|
|
40
53
|
|
|
41
54
|
}
|
|
42
55
|
|
|
43
|
-
.
|
|
56
|
+
.chatroom {
|
|
44
57
|
display: flex;
|
|
45
58
|
flex-direction: column;
|
|
46
59
|
|
|
47
|
-
.
|
|
60
|
+
.chatroom__rooms {
|
|
48
61
|
max-height: 84.7vh;
|
|
49
62
|
overflow: auto;
|
|
50
63
|
}
|
|
51
64
|
|
|
52
|
-
.
|
|
65
|
+
.chatroom__rooms::-webkit-scrollbar {
|
|
53
66
|
display: none;
|
|
54
67
|
}
|
|
55
68
|
|
|
56
|
-
.
|
|
69
|
+
.chatroom__header {
|
|
57
70
|
display: flex;
|
|
58
71
|
flex-direction: row;
|
|
59
72
|
align-items: center;
|
|
@@ -142,7 +155,7 @@
|
|
|
142
155
|
width: 100%;
|
|
143
156
|
height: 100%;
|
|
144
157
|
max-height: 100%;
|
|
145
|
-
padding: 8px;
|
|
158
|
+
padding: 0 8px;
|
|
146
159
|
|
|
147
160
|
.image__text {
|
|
148
161
|
padding: 0 9%;
|
|
@@ -153,13 +166,10 @@
|
|
|
153
166
|
.chatroom__header {
|
|
154
167
|
display: flex;
|
|
155
168
|
flex-direction: row;
|
|
156
|
-
|
|
157
|
-
justify-content: space-around;
|
|
158
|
-
padding: 4px 4px 4px 8px;
|
|
169
|
+
padding: 0 4px 0 8px;
|
|
159
170
|
padding-right: 7%;
|
|
160
171
|
border-bottom: 1px solid #e1e1e1;
|
|
161
172
|
width: 100%;
|
|
162
|
-
margin-bottom: 16px;
|
|
163
173
|
|
|
164
174
|
.chatroom__headerleft {
|
|
165
175
|
display: flex;
|
|
@@ -193,6 +203,10 @@
|
|
|
193
203
|
align-items: center;
|
|
194
204
|
margin: 0 9% 0 3%;
|
|
195
205
|
|
|
206
|
+
.message__imageSelector {
|
|
207
|
+
width: 48px;
|
|
208
|
+
}
|
|
209
|
+
|
|
196
210
|
.message__imageSelector > input {
|
|
197
211
|
display: none;
|
|
198
212
|
}
|
|
@@ -155,66 +155,71 @@ const PollContainer = props => {
|
|
|
155
155
|
}
|
|
156
156
|
}, pollOptions))), !pollClosed ? /*#__PURE__*/_react.default.createElement("div", {
|
|
157
157
|
className: "poll-footer"
|
|
158
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Stack, {
|
|
159
|
+
direction: {
|
|
160
|
+
xs: 'column',
|
|
161
|
+
sm: 'row'
|
|
162
|
+
},
|
|
163
|
+
spacing: 1,
|
|
164
|
+
alignItems: "flex-start"
|
|
158
165
|
}, /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
159
166
|
className: "vote-button",
|
|
160
|
-
variant:
|
|
167
|
+
variant: "outlined",
|
|
161
168
|
onClick: () => {
|
|
162
169
|
const hasVoted = poll.selectedOption;
|
|
163
170
|
poll.selectedOption = currentVote ? currentVote : '';
|
|
164
171
|
props.submitPollVoteHandler(poll);
|
|
165
172
|
if (!hasVoted) {
|
|
166
173
|
_SocketManager.default.emitEvent(_VCEventType.VCEventType.SYSTEM_EVENT, {
|
|
167
|
-
systemEventType:
|
|
174
|
+
systemEventType: 'NEW_POLL_VOTE',
|
|
168
175
|
recipients: props.pollParticipantIDs,
|
|
169
176
|
data: {
|
|
170
177
|
pollId: poll.id
|
|
171
178
|
}
|
|
172
|
-
}).catch(
|
|
179
|
+
}).catch(() => {});
|
|
173
180
|
}
|
|
174
181
|
}
|
|
175
182
|
}, "Submit Vote"), props.currentUser.userId === props.pollCreator.userId && /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
176
183
|
className: "vote-button",
|
|
177
|
-
variant:
|
|
178
|
-
onClick: e =>
|
|
179
|
-
|
|
180
|
-
},
|
|
181
|
-
style: {
|
|
182
|
-
marginLeft: '8px'
|
|
183
|
-
}
|
|
184
|
-
}, "Close Poll"), /*#__PURE__*/_react.default.createElement("span", {
|
|
184
|
+
variant: "outlined",
|
|
185
|
+
onClick: e => props.closePollHandler(e, poll)
|
|
186
|
+
}, "Close Poll")), /*#__PURE__*/_react.default.createElement("div", {
|
|
185
187
|
style: {
|
|
188
|
+
marginTop: "4px",
|
|
186
189
|
marginLeft: '8px',
|
|
187
190
|
color: '#000000'
|
|
188
191
|
},
|
|
189
192
|
className: "time-left"
|
|
190
|
-
}, `${totalVotes} votes out of ${props.numberOfPollParticipants}`), /*#__PURE__*/_react.default.createElement("
|
|
191
|
-
className: "separator"
|
|
192
|
-
}, "\u2022"), /*#__PURE__*/_react.default.createElement("span", {
|
|
193
|
+
}, `${totalVotes} votes out of ${props.numberOfPollParticipants}`), /*#__PURE__*/_react.default.createElement("div", {
|
|
193
194
|
className: "time-left",
|
|
194
195
|
style: {
|
|
195
196
|
marginLeft: '4px',
|
|
197
|
+
marginTop: "4px",
|
|
196
198
|
color: '#000000'
|
|
197
199
|
}
|
|
198
200
|
}, pollRemainingTime(poll.expirationDateTime)), poll.selectedOption && /*#__PURE__*/_react.default.createElement("div", {
|
|
199
|
-
className: "poll-creation-date"
|
|
201
|
+
className: "poll-creation-date",
|
|
202
|
+
style: {
|
|
203
|
+
marginTop: "4px"
|
|
204
|
+
}
|
|
200
205
|
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
201
206
|
style: {
|
|
202
207
|
color: '#945c33'
|
|
203
208
|
}
|
|
204
209
|
}, "You have voted ", props.poll.options.find(o => o.id === poll.selectedOption)?.text))) : /*#__PURE__*/_react.default.createElement("div", {
|
|
205
210
|
className: "poll-footer"
|
|
206
|
-
}, /*#__PURE__*/_react.default.createElement("
|
|
211
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
207
212
|
style: {
|
|
208
|
-
marginLeft: '4px'
|
|
213
|
+
marginLeft: '4px',
|
|
214
|
+
marginTop: "4px"
|
|
209
215
|
},
|
|
210
216
|
className: "time-left"
|
|
211
|
-
}, `${totalVotes} voted out of ${props.numberOfPollParticipants}`), /*#__PURE__*/_react.default.createElement("
|
|
212
|
-
className: "separator"
|
|
213
|
-
}, "\u2022"), /*#__PURE__*/_react.default.createElement("span", {
|
|
217
|
+
}, `${totalVotes} voted out of ${props.numberOfPollParticipants}`), /*#__PURE__*/_react.default.createElement("div", {
|
|
214
218
|
className: "time-left",
|
|
215
219
|
style: {
|
|
216
|
-
marginLeft: '4px'
|
|
220
|
+
marginLeft: '4px',
|
|
221
|
+
marginTop: "4px"
|
|
217
222
|
}
|
|
218
|
-
}, "
|
|
223
|
+
}, "The poll is closed")));
|
|
219
224
|
};
|
|
220
225
|
var _default = exports.default = PollContainer;
|
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
.table thead th {
|
|
2
|
-
}
|
|
3
|
-
|
|
4
|
-
table.responsive-table {
|
|
5
|
-
display: table;
|
|
6
|
-
/* required for table-layout to be used (not normally necessary; included for completeness) */
|
|
7
|
-
table-layout: fixed;
|
|
8
|
-
/* this keeps your columns with fixed with exactly the right width */
|
|
9
|
-
width: 100% !important;
|
|
10
|
-
/* table must have width set for fixed layout to work as expected */
|
|
11
|
-
height: 100%;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
table.responsive-table thead {
|
|
15
|
-
position: fixed;
|
|
16
|
-
top: 50px;
|
|
17
|
-
left: 0;
|
|
18
|
-
right: 0;
|
|
19
|
-
width: 100%;
|
|
20
|
-
min-height: 50px;
|
|
21
|
-
line-height: 3em;
|
|
22
|
-
background: #eee;
|
|
23
|
-
table-layout: fixed;
|
|
24
|
-
display: table;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
table.responsive-table th {
|
|
28
|
-
background: #eee;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
table.responsive-table td {
|
|
32
|
-
line-height: 2em;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
table.responsive-table tr > td,
|
|
36
|
-
table.responsive-table th {
|
|
37
|
-
text-align: left;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.table td, .table th {
|
|
41
|
-
white-space: nowrap;
|
|
42
|
-
overflow: hidden !important;
|
|
43
|
-
text-overflow: ellipsis;
|
|
44
|
-
min-width: 0 !important;
|
|
45
|
-
border-bottom: 1px solid rgba(224, 224, 224, 1) !important;
|
|
46
|
-
border-top: none !important;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.selectCell {
|
|
50
|
-
white-space: normal !important;
|
|
51
|
-
text-overflow: unset !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.selectCell span{
|
|
55
|
-
padding: 0 !important;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.table td {
|
|
59
|
-
padding: 6px 24px 6px 16px;
|
|
60
|
-
border-top: none !important;
|
|
61
|
-
display: table-cell;
|
|
62
|
-
font-size: 0.875rem;
|
|
63
|
-
text-align: left;
|
|
64
|
-
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
|
65
|
-
font-weight: 400;
|
|
66
|
-
line-height: 1.43;
|
|
67
|
-
border-bottom: 1px solid rgba(224, 224, 224, 1);
|
|
68
|
-
letter-spacing: 0.01071em;
|
|
69
|
-
vertical-align: inherit
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.table th {
|
|
73
|
-
color: rgba(0, 0, 0, 0.54);
|
|
74
|
-
font-size: 0.75rem;
|
|
75
|
-
font-weight: 500;
|
|
76
|
-
line-height: 1.3125rem;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.table {
|
|
80
|
-
table-layout: fixed;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.table-scrollbar {
|
|
84
|
-
position: relative;
|
|
85
|
-
overflow: auto;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
@media screen and (max-width: 40em) {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
1
|
+
.table thead th {
|
|
2
|
+
}
|
|
3
|
+
|
|
4
|
+
table.responsive-table {
|
|
5
|
+
display: table;
|
|
6
|
+
/* required for table-layout to be used (not normally necessary; included for completeness) */
|
|
7
|
+
table-layout: fixed;
|
|
8
|
+
/* this keeps your columns with fixed with exactly the right width */
|
|
9
|
+
width: 100% !important;
|
|
10
|
+
/* table must have width set for fixed layout to work as expected */
|
|
11
|
+
height: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
table.responsive-table thead {
|
|
15
|
+
position: fixed;
|
|
16
|
+
top: 50px;
|
|
17
|
+
left: 0;
|
|
18
|
+
right: 0;
|
|
19
|
+
width: 100%;
|
|
20
|
+
min-height: 50px;
|
|
21
|
+
line-height: 3em;
|
|
22
|
+
background: #eee;
|
|
23
|
+
table-layout: fixed;
|
|
24
|
+
display: table;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
table.responsive-table th {
|
|
28
|
+
background: #eee;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
table.responsive-table td {
|
|
32
|
+
line-height: 2em;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
table.responsive-table tr > td,
|
|
36
|
+
table.responsive-table th {
|
|
37
|
+
text-align: left;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.table td, .table th {
|
|
41
|
+
white-space: nowrap;
|
|
42
|
+
overflow: hidden !important;
|
|
43
|
+
text-overflow: ellipsis;
|
|
44
|
+
min-width: 0 !important;
|
|
45
|
+
border-bottom: 1px solid rgba(224, 224, 224, 1) !important;
|
|
46
|
+
border-top: none !important;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.selectCell {
|
|
50
|
+
white-space: normal !important;
|
|
51
|
+
text-overflow: unset !important;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.selectCell span{
|
|
55
|
+
padding: 0 !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.table td {
|
|
59
|
+
padding: 6px 24px 6px 16px;
|
|
60
|
+
border-top: none !important;
|
|
61
|
+
display: table-cell;
|
|
62
|
+
font-size: 0.875rem;
|
|
63
|
+
text-align: left;
|
|
64
|
+
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
|
65
|
+
font-weight: 400;
|
|
66
|
+
line-height: 1.43;
|
|
67
|
+
border-bottom: 1px solid rgba(224, 224, 224, 1);
|
|
68
|
+
letter-spacing: 0.01071em;
|
|
69
|
+
vertical-align: inherit
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.table th {
|
|
73
|
+
color: rgba(0, 0, 0, 0.54);
|
|
74
|
+
font-size: 0.75rem;
|
|
75
|
+
font-weight: 500;
|
|
76
|
+
line-height: 1.3125rem;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.table {
|
|
80
|
+
table-layout: fixed;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.table-scrollbar {
|
|
84
|
+
position: relative;
|
|
85
|
+
overflow: auto;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@media screen and (max-width: 40em) {
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
}
|
|
@@ -1,126 +1,126 @@
|
|
|
1
|
-
@media all and (min-width: 480px) {
|
|
2
|
-
.btn-primary {
|
|
3
|
-
border-color: transparent;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
#menubar-scroll::-webkit-scrollbar-track {
|
|
7
|
-
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
8
|
-
background-color: #F5F5F5;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
#menubar-scroll::-webkit-scrollbar {
|
|
12
|
-
width: 6px !important;
|
|
13
|
-
background-color: #F5F5F5;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
#menubar-scroll::-webkit-scrollbar-thumb {
|
|
17
|
-
background-color: #939393 !important;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.menu-table button {
|
|
21
|
-
height: 96px;
|
|
22
|
-
width: 100%;
|
|
23
|
-
border-radius: 0 !important;
|
|
24
|
-
text-decoration:none;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.menu-table .toolStripButtonSelected {
|
|
28
|
-
text-decoration: none;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.menu-table .btn-primary:focus {
|
|
32
|
-
box-shadow: none;
|
|
33
|
-
text-decoration: none;
|
|
34
|
-
}
|
|
35
|
-
.footer {
|
|
36
|
-
font-size: 14px;
|
|
37
|
-
text-align: center;
|
|
38
|
-
color: white;
|
|
39
|
-
height: 10vh;
|
|
40
|
-
padding-top: 8px;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.react-pdf__Page__canvas{
|
|
44
|
-
width: 100% !important;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.header {
|
|
48
|
-
background-clip:border-box;
|
|
49
|
-
border-bottom: 1px solid #e1e1e1;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.header shadow {
|
|
53
|
-
/**box-shadow: 0 0.15rem 1.75rem 0 rgba(40, 41, 55, 0.15) !important;**/
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.header span {
|
|
57
|
-
/**color: #fff;**/
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.header .form-inline .form-control {
|
|
61
|
-
border-top-right-radius: 0;
|
|
62
|
-
border-bottom-right-radius: 0;
|
|
63
|
-
position: relative;
|
|
64
|
-
flex: 1 1 auto;
|
|
65
|
-
width: 1%;
|
|
66
|
-
margin-bottom: 0;
|
|
67
|
-
display: inline-block;
|
|
68
|
-
width: auto;
|
|
69
|
-
vertical-align: middle;
|
|
70
|
-
background-color: #f8f9fc !important;
|
|
71
|
-
border: 0 !important;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.btn-primary, .btn, .btn-primary:hover, .btn:hover, .btn-primary:focus, .btn:focus {
|
|
75
|
-
outline: none !important;
|
|
76
|
-
outline-offset: unset !important;
|
|
77
|
-
border-color: transparent !important;
|
|
78
|
-
box-shadow: none !important;
|
|
79
|
-
text-decoration: none;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.header .btn-primary {
|
|
83
|
-
display: block;
|
|
84
|
-
color: #fff;
|
|
85
|
-
border-radius: 0px;
|
|
86
|
-
/*box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.2);*/
|
|
87
|
-
//background-color: #114084;
|
|
88
|
-
border-top: 1px solid rgba(255,255,255,0.5) !important;
|
|
89
|
-
margin-top: -5px;
|
|
90
|
-
text-decoration: none;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.header .btn {
|
|
94
|
-
font-weight: 400;
|
|
95
|
-
text-align: center;
|
|
96
|
-
vertical-align: middle;
|
|
97
|
-
-ms-user-select: none;
|
|
98
|
-
user-select: none;
|
|
99
|
-
border: 1px solid transparent;
|
|
100
|
-
padding: 0.375rem 0.75rem;
|
|
101
|
-
font-size: 1rem;
|
|
102
|
-
line-height: 2;
|
|
103
|
-
width: 100%;
|
|
104
|
-
text-align:left;
|
|
105
|
-
text-decoration:none;
|
|
106
|
-
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
107
|
-
}
|
|
108
|
-
.border {
|
|
109
|
-
border: 0px solid #dee2e6 !important;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.header .dropdown-toggle::after {
|
|
113
|
-
display: inline-block;
|
|
114
|
-
margin-left: .255em;
|
|
115
|
-
vertical-align: .255em;
|
|
116
|
-
content: none !important;
|
|
117
|
-
border-top: .3em solid;
|
|
118
|
-
border-right: .3em solid transparent;
|
|
119
|
-
border-bottom: 0;
|
|
120
|
-
border-left: .3em solid transparent;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.search .card-body{
|
|
124
|
-
height: 60vh !important;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
1
|
+
@media all and (min-width: 480px) {
|
|
2
|
+
.btn-primary {
|
|
3
|
+
border-color: transparent;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#menubar-scroll::-webkit-scrollbar-track {
|
|
7
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
8
|
+
background-color: #F5F5F5;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
#menubar-scroll::-webkit-scrollbar {
|
|
12
|
+
width: 6px !important;
|
|
13
|
+
background-color: #F5F5F5;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#menubar-scroll::-webkit-scrollbar-thumb {
|
|
17
|
+
background-color: #939393 !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.menu-table button {
|
|
21
|
+
height: 96px;
|
|
22
|
+
width: 100%;
|
|
23
|
+
border-radius: 0 !important;
|
|
24
|
+
text-decoration:none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.menu-table .toolStripButtonSelected {
|
|
28
|
+
text-decoration: none;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.menu-table .btn-primary:focus {
|
|
32
|
+
box-shadow: none;
|
|
33
|
+
text-decoration: none;
|
|
34
|
+
}
|
|
35
|
+
.footer {
|
|
36
|
+
font-size: 14px;
|
|
37
|
+
text-align: center;
|
|
38
|
+
color: white;
|
|
39
|
+
height: 10vh;
|
|
40
|
+
padding-top: 8px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.react-pdf__Page__canvas{
|
|
44
|
+
width: 100% !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.header {
|
|
48
|
+
background-clip:border-box;
|
|
49
|
+
border-bottom: 1px solid #e1e1e1;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.header shadow {
|
|
53
|
+
/**box-shadow: 0 0.15rem 1.75rem 0 rgba(40, 41, 55, 0.15) !important;**/
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.header span {
|
|
57
|
+
/**color: #fff;**/
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.header .form-inline .form-control {
|
|
61
|
+
border-top-right-radius: 0;
|
|
62
|
+
border-bottom-right-radius: 0;
|
|
63
|
+
position: relative;
|
|
64
|
+
flex: 1 1 auto;
|
|
65
|
+
width: 1%;
|
|
66
|
+
margin-bottom: 0;
|
|
67
|
+
display: inline-block;
|
|
68
|
+
width: auto;
|
|
69
|
+
vertical-align: middle;
|
|
70
|
+
background-color: #f8f9fc !important;
|
|
71
|
+
border: 0 !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.btn-primary, .btn, .btn-primary:hover, .btn:hover, .btn-primary:focus, .btn:focus {
|
|
75
|
+
outline: none !important;
|
|
76
|
+
outline-offset: unset !important;
|
|
77
|
+
border-color: transparent !important;
|
|
78
|
+
box-shadow: none !important;
|
|
79
|
+
text-decoration: none;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.header .btn-primary {
|
|
83
|
+
display: block;
|
|
84
|
+
color: #fff;
|
|
85
|
+
border-radius: 0px;
|
|
86
|
+
/*box-shadow: 0px 4px 6px 2px rgba(0,0,0,0.2);*/
|
|
87
|
+
//background-color: #114084;
|
|
88
|
+
border-top: 1px solid rgba(255,255,255,0.5) !important;
|
|
89
|
+
margin-top: -5px;
|
|
90
|
+
text-decoration: none;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.header .btn {
|
|
94
|
+
font-weight: 400;
|
|
95
|
+
text-align: center;
|
|
96
|
+
vertical-align: middle;
|
|
97
|
+
-ms-user-select: none;
|
|
98
|
+
user-select: none;
|
|
99
|
+
border: 1px solid transparent;
|
|
100
|
+
padding: 0.375rem 0.75rem;
|
|
101
|
+
font-size: 1rem;
|
|
102
|
+
line-height: 2;
|
|
103
|
+
width: 100%;
|
|
104
|
+
text-align:left;
|
|
105
|
+
text-decoration:none;
|
|
106
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
107
|
+
}
|
|
108
|
+
.border {
|
|
109
|
+
border: 0px solid #dee2e6 !important;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.header .dropdown-toggle::after {
|
|
113
|
+
display: inline-block;
|
|
114
|
+
margin-left: .255em;
|
|
115
|
+
vertical-align: .255em;
|
|
116
|
+
content: none !important;
|
|
117
|
+
border-top: .3em solid;
|
|
118
|
+
border-right: .3em solid transparent;
|
|
119
|
+
border-bottom: 0;
|
|
120
|
+
border-left: .3em solid transparent;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.search .card-body{
|
|
124
|
+
height: 60vh !important;
|
|
125
|
+
}
|
|
126
|
+
}
|
package/dist/event/EventType.js
CHANGED
package/dist/event/Observable.js
CHANGED
|
@@ -52,8 +52,7 @@ class Observable {
|
|
|
52
52
|
if (!_Utils.default.isNull(eventHandlingConfig)) {
|
|
53
53
|
let subscriptions = eventHandlingConfig.subscriptions;
|
|
54
54
|
for (const subscription of subscriptions) {
|
|
55
|
-
|
|
56
|
-
this.addSubscription(new _EventListener.default(componentHandle, domain, !_Utils.default.isNull(subscription.publisher) ? subscription.publisher : componentHandle.api.id, subscription.eventType, subscription.actions));
|
|
55
|
+
this.addSubscription(new _EventListener.default(componentHandle, viewId, !_Utils.default.isNull(subscription.publisher) ? subscription.publisher : componentHandle.api.id, subscription.eventType, subscription.actions));
|
|
57
56
|
}
|
|
58
57
|
}
|
|
59
58
|
};
|
|
@@ -130,14 +129,15 @@ class Observable {
|
|
|
130
129
|
let viewId = be.viewId;
|
|
131
130
|
if (!_Utils.default.isNull(sourceId)) {
|
|
132
131
|
for (const subscription of this.subscriptions) {
|
|
132
|
+
let domain = subscription.publisherDomain ? subscription.publisherDomain : viewId;
|
|
133
133
|
if (log === true) {
|
|
134
|
-
console.log("VIEW CHECK: " + (
|
|
134
|
+
console.log("VIEW CHECK: " + domain + " ==? " + viewId + " - " + (domain === viewId || _ApplicationManager.SYSTEM_EVENT === viewId));
|
|
135
135
|
console.log("PUBLISHER CHECK: " + subscription.getPublisher() + " : " + sourceId);
|
|
136
136
|
console.log("EVENT TYPE CHECK: " + subscription.getEventType() + " : " + eventType);
|
|
137
137
|
console.log("FULL CHECK: " + ((subscription.getViewId() === viewId || _ApplicationManager.SYSTEM_EVENT === viewId) && subscription.getPublisher() === sourceId && subscription.getEventType() === eventType));
|
|
138
138
|
console.log("\n");
|
|
139
139
|
}
|
|
140
|
-
if ((
|
|
140
|
+
if ((domain === viewId || _ApplicationManager.SYSTEM_EVENT === viewId) && subscription.getPublisher() === sourceId && subscription.getEventType() === eventType) {
|
|
141
141
|
if (!_Utils.default.isNull(subscription.getActions())) {
|
|
142
142
|
for (let j = 0; j < subscription.getActions().length; j++) {
|
|
143
143
|
let action = subscription.getActions()[j];
|