@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.
Files changed (38) hide show
  1. package/dist/css/app.css +1 -1
  2. package/dist/index.html +1 -1
  3. package/dist/js/app.js +1 -1
  4. package/dist/js/app.js.map +1 -1
  5. package/package.json +1 -1
  6. package/src/assets/scss/document_edit.scss +2 -0
  7. package/src/assets/scss/document_name.scss +0 -2
  8. package/src/assets/scss/document_top_bar.scss +22 -0
  9. package/src/assets/scss/new_annotation.scss +3 -0
  10. package/src/assets/scss/theme.scss +533 -523
  11. package/src/components/App.vue +23 -8
  12. package/src/components/DocumentAnnotations/AnnotationContent.vue +33 -18
  13. package/src/components/DocumentAnnotations/AnnotationRow.vue +21 -60
  14. package/src/components/DocumentAnnotations/ChooseLabelSetModal.vue +3 -2
  15. package/src/components/DocumentAnnotations/EmptyAnnotation.vue +1 -5
  16. package/src/components/DocumentAnnotations/MultiAnnotationTableOverlay.vue +1 -1
  17. package/src/components/DocumentDashboard.vue +8 -0
  18. package/src/components/DocumentEdit/DocumentEdit.vue +20 -11
  19. package/src/components/DocumentEdit/EditConfirmationModal.vue +1 -0
  20. package/src/components/DocumentEdit/EditPageThumbnail.vue +1 -3
  21. package/src/components/DocumentEdit/EditSidebar.vue +8 -3
  22. package/src/components/DocumentPage/DocumentPage.vue +0 -18
  23. package/src/components/DocumentPage/DocumentToolbar.vue +1 -0
  24. package/src/components/DocumentPage/MultiAnnSelection.vue +4 -26
  25. package/src/components/DocumentPage/NewAnnotation.vue +4 -22
  26. package/src/components/DocumentTopBar/DocumentName.vue +3 -1
  27. package/src/components/DocumentTopBar/DocumentTopBar.vue +81 -2
  28. package/src/components/DocumentsList/DocumentsList.vue +1 -6
  29. package/src/locales/de.json +3 -2
  30. package/src/locales/en.json +2 -1
  31. package/src/locales/es.json +2 -1
  32. package/src/store/category.js +19 -35
  33. package/src/store/display.js +7 -0
  34. package/src/store/document.js +29 -5
  35. package/src/store/edit.js +27 -15
  36. package/src/store/project.js +31 -1
  37. package/src/utils/utils.js +18 -1
  38. package/src/components/DocumentPage/MultiAnnotationTablePopup.vue +0 -226
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@konfuzio/document-validation-ui",
3
- "version": "0.1.10-dev.9",
3
+ "version": "0.1.11-dev.0",
4
4
  "repository": "git://github.com:konfuzio-ai/document-validation-ui.git",
5
5
  "main": "dist/app.js",
6
6
  "scripts": {
@@ -46,6 +46,8 @@
46
46
  display: flex;
47
47
  flex-direction: row;
48
48
  justify-content: space-between;
49
+ height: 100%;
50
+ align-items: center;
49
51
  }
50
52
  .bottom-section {
51
53
  text-align: center;
@@ -1,11 +1,9 @@
1
1
  @import "./imports.scss";
2
2
 
3
3
  .document-name-component {
4
- flex: 1;
5
4
  display: flex;
6
5
  align-items: center;
7
6
  justify-content: center;
8
- width: 100%;
9
7
  gap: 12px;
10
8
  line-height: 20px;
11
9
 
@@ -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