@konfuzio/document-validation-ui 0.1.11-dev.6 → 0.1.11-dev.7
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
CHANGED
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
right: 0;
|
|
126
126
|
margin: 0 auto;
|
|
127
127
|
padding: 10px;
|
|
128
|
+
z-index: 999;
|
|
128
129
|
|
|
129
130
|
.split-info-bar {
|
|
130
131
|
padding: 5px 13px;
|
|
@@ -218,7 +219,11 @@
|
|
|
218
219
|
}
|
|
219
220
|
|
|
220
221
|
.smart-split {
|
|
221
|
-
.switch {
|
|
222
|
+
.switch-info {
|
|
223
|
+
display: flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
gap: 8px;
|
|
226
|
+
|
|
222
227
|
.control-label {
|
|
223
228
|
.switch-text {
|
|
224
229
|
font-size: 14px;
|
|
@@ -55,14 +55,15 @@
|
|
|
55
55
|
:value="true"
|
|
56
56
|
size="is-small"
|
|
57
57
|
:disabled="!documentHasProposedSplit(selectedDocument)"
|
|
58
|
-
|
|
58
|
+
/>
|
|
59
|
+
<div class="switch-info">
|
|
59
60
|
<span class="switch-text">{{ $t("smart_split") }}</span>
|
|
60
61
|
<span
|
|
61
62
|
v-if="documentHasProposedSplit(selectedDocument)"
|
|
62
63
|
class="new-badge"
|
|
63
64
|
>{{ newText }}</span
|
|
64
65
|
>
|
|
65
|
-
</
|
|
66
|
+
</div>
|
|
66
67
|
</b-field>
|
|
67
68
|
</b-tooltip>
|
|
68
69
|
</div>
|