@konfuzio/document-validation-ui 0.1.51-dev.0 → 0.1.51-dev.2
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/LICENSE +661 -21
- package/README.md +9 -0
- 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/dist/js/chunk-vendors.js +8 -6
- package/dist/js/chunk-vendors.js.map +1 -1
- package/package.json +2 -1
- package/src/assets/scss/annotation_action_buttons.scss +82 -0
- package/src/assets/scss/document_annotations.scss +331 -419
- package/src/assets/scss/document_dashboard.scss +0 -7
- package/src/assets/scss/document_edit.scss +3 -1
- package/src/assets/scss/document_top_bar.scss +72 -68
- package/src/assets/scss/theme.scss +89 -70
- package/src/components/DocumentAnnotations/AnnotationActionButtons.vue +153 -106
- package/src/components/DocumentAnnotations/AnnotationRow.vue +72 -19
- package/src/components/DocumentAnnotations/AnnotationSetActionButtons.vue +4 -4
- package/src/components/DocumentAnnotations/DocumentAnnotations.vue +7 -3
- package/src/components/DocumentAnnotations/DocumentLabel.vue +42 -59
- package/src/components/DocumentAnnotations/ExtractingData.vue +1 -7
- package/src/components/DocumentCategory.vue +0 -5
- package/src/components/DocumentDashboard.vue +12 -3
- package/src/components/DocumentEdit/EditSidebar.vue +1 -1
- package/src/components/DocumentPage/DocumentPage.vue +2 -1
- package/src/components/DocumentPage/EditAnnotation.vue +21 -15
- package/src/components/DocumentPage/ScrollingDocument.vue +1 -13
- package/src/components/DocumentTopBar/DocumentTopBar.vue +42 -40
- package/src/icons.js +6 -0
- package/src/locales/de.json +3 -2
- package/src/locales/en.json +3 -2
- package/src/locales/es.json +3 -2
- package/src/main.js +2 -0
- package/src/store/display.js +12 -10
- package/src/store/document.js +3 -0
- package/src/components/DocumentPage/ActionBar.vue +0 -48
package/README.md
CHANGED
|
@@ -22,3 +22,12 @@ The Document Validation UI is a powerful JavaScript-based document library that'
|
|
|
22
22
|
- [Non-technical overview](https://konfuzio.com/en/document-validation-ui/)
|
|
23
23
|
- [Human-in-the-loop integration](https://konfuzio.com/en/human-in-the-loop/)
|
|
24
24
|
- [Contact](https://konfuzio.com/en/contact/)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## License
|
|
28
|
+
|
|
29
|
+
Konfuzio Document Validation UI is dual licensed under GNU AGPL v3 and commercial license.
|
|
30
|
+
|
|
31
|
+
The GNU AGPL v3 is designed for developers who are building open source applications in compliance with the GNU AGPL v3 license and are able to support themselves. It is fully featured. If you distribute, host or create derivative works of the Konfuzio Document Validation UI software over the network, the GNU AGPL v3 license requires that you also distribute the complete, corresponding source code of the combined work under the same GNU AGPL v3 license. This requirement applies whether or not you modified Konfuzio Document Validation UI.
|
|
32
|
+
|
|
33
|
+
A commercial license is available. Please [contact our team](https://konfuzio.com/kontakt/).
|