@konfuzio/document-validation-ui 0.1.13-dev.2 → 0.1.13-dev.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@konfuzio/document-validation-ui",
3
- "version": "0.1.13-dev.2",
3
+ "version": "0.1.13-dev.3",
4
4
  "repository": "git://github.com:konfuzio-ai/document-validation-ui.git",
5
5
  "main": "dist/app.js",
6
6
  "scripts": {
@@ -66,8 +66,11 @@
66
66
  display: flex;
67
67
  flex-direction: row;
68
68
  justify-content: space-between;
69
- border-bottom: 1px solid $low-opacity-white;
70
- padding-bottom: 8px;
69
+
70
+ &:not(.tooltip-in-public-view) {
71
+ border-bottom: 1px solid $low-opacity-white;
72
+ padding-bottom: 8px;
73
+ }
71
74
 
72
75
  .value {
73
76
  color: $green;
@@ -3,7 +3,6 @@
3
3
  :animated="false"
4
4
  :position="fromTable ? 'is-top' : 'is-bottom'"
5
5
  :class="[!fromTable && 'left-aligned', 'annotation-details']"
6
- :active="!publicView"
7
6
  >
8
7
  <div :class="['label-icon', fromTable && 'is-small']">
9
8
  <div v-if="(created(annotation) || edited(annotation)) && !publicView">
@@ -68,7 +67,10 @@
68
67
  <div v-if="description" class="label-description">
69
68
  <span>{{ description }}</span>
70
69
  </div>
71
- <div v-if="confidence(annotation)" class="confidence">
70
+ <div
71
+ v-if="confidence(annotation)"
72
+ :class="['confidence', publicView && 'tooltip-in-public-view']"
73
+ >
72
74
  <span>{{ $t("confidence") }}</span
73
75
  ><span
74
76
  :class="[
@@ -82,7 +84,7 @@
82
84
  >{{ Math.floor(confidence(annotation) * 100) / 100 }}</span
83
85
  >
84
86
  </div>
85
- <div class="revision">
87
+ <div v-if="!publicView" class="revision">
86
88
  <div class="detail-icons">
87
89
  <div v-if="created(annotation) || edited(annotation)">
88
90
  <div