@konfuzio/document-validation-ui 0.1.10-dev.9 → 0.1.11-dev.0
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/css/app.css +1 -1
- package/dist/index.html +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/app.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/scss/document_edit.scss +2 -0
- package/src/assets/scss/document_name.scss +0 -2
- package/src/assets/scss/document_top_bar.scss +22 -0
- package/src/assets/scss/new_annotation.scss +3 -0
- package/src/assets/scss/theme.scss +533 -523
- package/src/components/App.vue +23 -8
- package/src/components/DocumentAnnotations/AnnotationContent.vue +33 -18
- package/src/components/DocumentAnnotations/AnnotationRow.vue +21 -60
- package/src/components/DocumentAnnotations/ChooseLabelSetModal.vue +3 -2
- package/src/components/DocumentAnnotations/EmptyAnnotation.vue +1 -5
- package/src/components/DocumentAnnotations/MultiAnnotationTableOverlay.vue +1 -1
- package/src/components/DocumentDashboard.vue +8 -0
- package/src/components/DocumentEdit/DocumentEdit.vue +20 -11
- package/src/components/DocumentEdit/EditConfirmationModal.vue +1 -0
- package/src/components/DocumentEdit/EditPageThumbnail.vue +1 -3
- package/src/components/DocumentEdit/EditSidebar.vue +8 -3
- package/src/components/DocumentPage/DocumentPage.vue +0 -18
- package/src/components/DocumentPage/DocumentToolbar.vue +1 -0
- package/src/components/DocumentPage/MultiAnnSelection.vue +4 -26
- package/src/components/DocumentPage/NewAnnotation.vue +4 -22
- package/src/components/DocumentTopBar/DocumentName.vue +3 -1
- package/src/components/DocumentTopBar/DocumentTopBar.vue +81 -2
- package/src/components/DocumentsList/DocumentsList.vue +1 -6
- package/src/locales/de.json +3 -2
- package/src/locales/en.json +2 -1
- package/src/locales/es.json +2 -1
- package/src/store/category.js +19 -35
- package/src/store/display.js +7 -0
- package/src/store/document.js +29 -5
- package/src/store/edit.js +27 -15
- package/src/store/project.js +31 -1
- package/src/utils/utils.js +18 -1
- package/src/components/DocumentPage/MultiAnnotationTablePopup.vue +0 -226
package/package.json
CHANGED
|
@@ -32,6 +32,28 @@
|
|
|
32
32
|
flex: 1;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
+
.center-bar-components {
|
|
36
|
+
display: flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
gap: 38px;
|
|
39
|
+
|
|
40
|
+
&.single-component {
|
|
41
|
+
flex: 1;
|
|
42
|
+
align-items: center;
|
|
43
|
+
justify-content: center;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.navigation-arrow {
|
|
47
|
+
&:hover {
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&.navigation-disabled {
|
|
52
|
+
display: none;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
35
57
|
.right-bar-components {
|
|
36
58
|
align-items: center;
|
|
37
59
|
justify-content: flex-end;
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
box-shadow: none !important;
|
|
69
69
|
color: $white !important;
|
|
70
70
|
background-color: transparent !important;
|
|
71
|
+
text-decoration: none;
|
|
71
72
|
}
|
|
72
73
|
}
|
|
73
74
|
|
|
@@ -79,6 +80,7 @@
|
|
|
79
80
|
|
|
80
81
|
.button.is-text {
|
|
81
82
|
color: $white !important;
|
|
83
|
+
text-decoration: none;
|
|
82
84
|
}
|
|
83
85
|
|
|
84
86
|
.cancel-button {
|
|
@@ -86,6 +88,7 @@
|
|
|
86
88
|
|
|
87
89
|
&:hover {
|
|
88
90
|
border: 1px solid $grey-low-opacity;
|
|
91
|
+
background: transparent;
|
|
89
92
|
}
|
|
90
93
|
}
|
|
91
94
|
|