@truedat/qx 8.8.4 → 8.8.6
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/package.json +3 -3
- package/src/styles/Expression.less +39 -40
- package/src/styles/scores.less +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/qx",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.6",
|
|
4
4
|
"description": "Truedat Web Quality Experience package",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@testing-library/jest-dom": "^6.6.3",
|
|
57
57
|
"@testing-library/react": "^16.3.0",
|
|
58
58
|
"@testing-library/user-event": "^14.6.1",
|
|
59
|
-
"@truedat/test": "8.8.
|
|
59
|
+
"@truedat/test": "8.8.6",
|
|
60
60
|
"identity-obj-proxy": "^3.0.0",
|
|
61
61
|
"jest": "^29.7.0",
|
|
62
62
|
"redux-saga-test-plan": "^4.0.6"
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"semantic-ui-react": "^3.0.0-beta.2",
|
|
90
90
|
"swr": "^2.3.3"
|
|
91
91
|
},
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "608a876aa3b04799eb2e1bb5b5f071a81e2b509e"
|
|
93
93
|
}
|
|
@@ -58,18 +58,18 @@
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.param-label-header {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: row;
|
|
63
|
+
flex-wrap: wrap;
|
|
64
|
+
align-items: center;
|
|
65
|
+
padding: 4px 0;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.param-label-description {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
font-style: italic;
|
|
70
|
+
color: gray;
|
|
71
|
+
font-size: 13;
|
|
72
|
+
padding-left: 5px;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
ul.function-tree {
|
|
@@ -135,7 +135,7 @@ ul.function-tree {
|
|
|
135
135
|
margin-right: 15px;
|
|
136
136
|
margin-left: 15px;
|
|
137
137
|
padding: 6.5px;
|
|
138
|
-
border: 1px solid rgba(34,36,38, 0.15);
|
|
138
|
+
border: 1px solid rgba(34, 36, 38, 0.15);
|
|
139
139
|
border-radius: 4px;
|
|
140
140
|
min-width: 50px;
|
|
141
141
|
text-align: center;
|
|
@@ -158,39 +158,38 @@ ul.function-tree {
|
|
|
158
158
|
justify-content: flex-end;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
display:inline-flex;
|
|
161
|
+
.join_type {
|
|
162
|
+
display: inline-flex;
|
|
164
163
|
left: 25%;
|
|
165
164
|
}
|
|
166
|
-
.join_type .circle{
|
|
167
|
-
display:flex;
|
|
165
|
+
.join_type .circle {
|
|
166
|
+
display: flex;
|
|
168
167
|
box-sizing: border-box;
|
|
169
|
-
width:20px;
|
|
170
|
-
height:20px;
|
|
171
|
-
border-radius:50%;
|
|
168
|
+
width: 20px;
|
|
169
|
+
height: 20px;
|
|
170
|
+
border-radius: 50%;
|
|
172
171
|
border: 2px solid black;
|
|
173
172
|
z-index: 1;
|
|
174
173
|
}
|
|
175
|
-
.join_type .circle.fill{
|
|
176
|
-
background:orange;
|
|
174
|
+
.join_type .circle.fill {
|
|
175
|
+
background: orange;
|
|
177
176
|
}
|
|
178
177
|
.join_type .circle.fill.white {
|
|
179
|
-
background:white;
|
|
178
|
+
background: white;
|
|
180
179
|
}
|
|
181
|
-
.join_type .circle-left{
|
|
182
|
-
display:block;
|
|
183
|
-
overflow:hidden;
|
|
184
|
-
position:relative;
|
|
180
|
+
.join_type .circle-left {
|
|
181
|
+
display: block;
|
|
182
|
+
overflow: hidden;
|
|
183
|
+
position: relative;
|
|
185
184
|
}
|
|
186
|
-
.join_type .circle-center{
|
|
185
|
+
.join_type .circle-center {
|
|
187
186
|
top: -2px;
|
|
188
187
|
right: calc(-75% + 2px);
|
|
189
|
-
position:absolute;
|
|
188
|
+
position: absolute;
|
|
190
189
|
}
|
|
191
|
-
.join_type .circle-right{
|
|
192
|
-
overflow:hidden;
|
|
193
|
-
position:relative;
|
|
190
|
+
.join_type .circle-right {
|
|
191
|
+
overflow: hidden;
|
|
192
|
+
position: relative;
|
|
194
193
|
right: 25%;
|
|
195
194
|
z-index: 0;
|
|
196
195
|
}
|
|
@@ -198,16 +197,16 @@ ul.function-tree {
|
|
|
198
197
|
.error-popup {
|
|
199
198
|
white-space: normal;
|
|
200
199
|
background: #ffffff !important;
|
|
201
|
-
border: 1px solid #
|
|
202
|
-
color: #
|
|
200
|
+
border: 1px solid #e0b4b4 !important;
|
|
201
|
+
color: #9f3a38 !important;
|
|
203
202
|
padding: 0.5833em 0.833em !important;
|
|
204
203
|
font-size: 0.85714286rem !important;
|
|
205
204
|
font-weight: 700 !important;
|
|
206
205
|
}
|
|
207
206
|
|
|
208
207
|
.select-field-dropdown {
|
|
209
|
-
padding: 0.36em 1em !important;
|
|
210
|
-
|
|
208
|
+
padding: 0.36em 1em !important;
|
|
209
|
+
display: flex !important;
|
|
211
210
|
align-items: center;
|
|
212
211
|
}
|
|
213
212
|
|
|
@@ -242,8 +241,8 @@ ul.function-tree {
|
|
|
242
241
|
width: auto;
|
|
243
242
|
outline: none;
|
|
244
243
|
margin: 0px -1px;
|
|
245
|
-
min-width: calc(100% + 2px
|
|
246
|
-
width: calc(100% + 2px
|
|
244
|
+
min-width: calc(100% + 2px);
|
|
245
|
+
width: calc(100% + 2px);
|
|
247
246
|
border-radius: 0em 0em 0.28571429rem 0.28571429rem;
|
|
248
247
|
box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
|
|
249
248
|
transition: opacity 0.1s ease;
|
|
@@ -328,12 +327,12 @@ ul.function-tree {
|
|
|
328
327
|
gap: 4px;
|
|
329
328
|
}
|
|
330
329
|
|
|
331
|
-
.join-type-selector
|
|
332
|
-
|
|
333
|
-
|
|
330
|
+
.join-type-selector > .divider.text {
|
|
331
|
+
display: flex;
|
|
332
|
+
align-items: center;
|
|
334
333
|
}
|
|
335
334
|
|
|
336
335
|
.ui.dropdown .menu > .item {
|
|
337
336
|
display: flex;
|
|
338
337
|
align-items: center;
|
|
339
|
-
}
|
|
338
|
+
}
|