@konfuzio/document-validation-ui 0.1.16-dev.4 → 0.1.16-dev.5

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.16-dev.4",
3
+ "version": "0.1.16-dev.5",
4
4
  "repository": "git://github.com:konfuzio-ai/document-validation-ui.git",
5
5
  "main": "dist/app.js",
6
6
  "scripts": {
@@ -173,6 +173,10 @@
173
173
  align-items: center;
174
174
  padding-right: 5px;
175
175
 
176
+ &.clickable-cursor {
177
+ cursor: pointer;
178
+ }
179
+
176
180
  .annotation-row-left {
177
181
  flex: 1;
178
182
  padding-left: 8px;
@@ -7,6 +7,7 @@
7
7
  hoverPendingAnnotationRows && 'hovered-pending-annotations',
8
8
  annotationIsNotFound(annotationSet, label) && 'missing',
9
9
  isAnnotationInEditMode(annotationId()) && 'editing',
10
+ publicView && 'clickable-cursor'
10
11
  ]"
11
12
  @click="onAnnotationClick"
12
13
  @mouseover="hoveredAnnotation = annotationId()"
@@ -148,6 +148,10 @@ export default {
148
148
  },
149
149
  mounted() {
150
150
  this.updateValues();
151
+
152
+ if(this.publicView) {
153
+ this.showAnnotationsGroup = true;
154
+ }
151
155
  },
152
156
  updated() {
153
157
  this.updateValues();