@konfuzio/document-validation-ui 0.1.3 → 0.1.4
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/README.md +3 -3
- 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/.DS_Store +0 -0
- package/src/assets/scss/document_page.scss +1 -1
- package/src/components/App.vue +4 -1
- package/src/components/DocumentAnnotations/EmptyAnnotation.vue +10 -10
- package/src/components/DocumentCategory.vue +42 -7
- package/src/components/DocumentPage/DocumentPage.vue +1 -1
- package/src/components/DocumentPage/DocumentToolbar.vue +7 -3
- package/src/components/DocumentTopBar/DocumentTopBar.vue +3 -1
- package/src/locales/de.json +3 -3
- package/src/locales/en.json +3 -2
- package/src/locales/es.json +3 -3
- package/src/store/document.js +18 -12
- package/src/store/selection.js +0 -1
- package/src/utils/utils.js +18 -3
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Konfuzio Document Validation UI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The Document Validation UI is a powerful JavaScript-based document library that's part of the Konfuzio SDK. It provides a slick out-of-the-box responsive UI that interacts with the Konfuzio Server to view, annotate and manipulate PDFs that can be embedded into any web project.
|
|
4
|
+
|
|
5
|
+

|
|
4
6
|
|
|
5
7
|
- [Playground](https://codepen.io/konfuzio/pen/QWVpKVE)
|
|
6
8
|
- [Developer Documentation](https://dev.konfuzio.com/dvui/)
|
|
@@ -8,5 +10,3 @@ White-label ready web-interface that lets you preview and interact with document
|
|
|
8
10
|
- [Non-technical overview](https://konfuzio.com/en/document-validation-ui/)
|
|
9
11
|
- [Human-in-the-loop integration](https://konfuzio.com/en/human-in-the-loop/)
|
|
10
12
|
- [Contact](https://konfuzio.com/en/contact/)
|
|
11
|
-
|
|
12
|
-

|