@konfuzio/document-validation-ui 0.1.11 → 0.1.12-dev.1
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 +12 -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/package.json +1 -1
- package/src/assets/scss/document_annotations.scss +1 -1
- package/src/assets/scss/document_edit.scss +6 -1
- package/src/components/DocumentAnnotations/AnnotationContent.vue +9 -7
- package/src/components/DocumentAnnotations/AnnotationRow.vue +5 -8
- package/src/components/DocumentAnnotations/DocumentAnnotations.vue +57 -55
- package/src/components/DocumentAnnotations/DocumentLabel.vue +31 -6
- package/src/components/DocumentAnnotations/EmptyAnnotation.vue +2 -1
- package/src/components/DocumentEdit/EditSidebar.vue +3 -2
- package/src/components/DocumentPage/NewAnnotation.vue +2 -2
- package/src/store/document.js +9 -11
package/README.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Konfuzio Document Validation UI
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<a href="https://www.npmjs.com/package/@konfuzio/document-validation-ui"><img alt="npm" src="https://img.shields.io/npm/v/%40konfuzio%2Fdocument-validation-ui" />
|
|
5
|
+
</a>
|
|
6
|
+
<a href="https://github.com/konfuzio-ai/document-validation-ui/releases"><img alt="GitHub release (with filter)" src="https://img.shields.io/github/v/release/konfuzio-ai/document-validation-ui?label=Github"/>
|
|
7
|
+
</a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/@konfuzio/document-validation-ui">
|
|
9
|
+
<img alt="npm" src="https://img.shields.io/npm/dm/%40konfuzio%2Fdocument-validation-ui"/>
|
|
10
|
+
</a>
|
|
11
|
+
<a href="https://github.com/konfuzio-ai/document-validation-ui"><img alt="License" src="https://img.shields.io/github/license/konfuzio-ai/document-validation-ui" />
|
|
12
|
+
</a>
|
|
13
|
+
</p>
|
|
14
|
+
|
|
3
15
|
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
16
|
|
|
5
17
|

|