@konfuzio/document-validation-ui 0.1.13-dev.4 → 0.1.13
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/.DS_Store +0 -0
- package/src/assets/scss/document_annotations.scss +199 -183
- package/src/assets/scss/theme.scss +13 -0
- package/src/components/DocumentAnnotations/AnnotationDetails.vue +1 -1
- package/src/components/DocumentAnnotations/DocumentAnnotations.vue +37 -12
- package/src/components/DocumentAnnotations/DocumentLabel.vue +2 -2
- package/src/components/DocumentAnnotations/ExtractingData.vue +15 -3
- package/src/components/DocumentEdit/DocumentEdit.vue +5 -1
- package/src/components/DocumentModals/DocumentErrorModal.vue +1 -1
- package/src/locales/de.json +6 -1
- package/src/locales/en.json +6 -1
- package/src/locales/es.json +6 -1
- package/src/store/edit.js +8 -0
- package/src/utils/utils.js +2 -0
package/src/locales/es.json
CHANGED
|
@@ -135,5 +135,10 @@
|
|
|
135
135
|
"delete_table": "Eliminar tabla",
|
|
136
136
|
"error_downloading_file": "El documento no pudo ser descargado.",
|
|
137
137
|
"original_file": "Documento original",
|
|
138
|
-
"pdf_file": "Documento PDF"
|
|
138
|
+
"pdf_file": "Documento PDF",
|
|
139
|
+
"no_labels_in_set": "Este grupo de anotaciones no tiene etiquetas.",
|
|
140
|
+
"link_to_add_labels": "Para ver cómo agregarlas haga clic <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>aquí</a>.",
|
|
141
|
+
"no_annotations_in_annotation_set": "Este grupo de anotaciones no tiene anotaciones encontradas para sus respectivas etiquetas.",
|
|
142
|
+
"wait_title": "Por favor espere...",
|
|
143
|
+
"redirecting_to_documents_list": "Lo estamos redirigiendo a la lista de documentos, para que pueda continuar la revisión de sus documentos mientras procesamos los cambios realizados."
|
|
139
144
|
}
|
package/src/store/edit.js
CHANGED
|
@@ -16,6 +16,7 @@ const state = {
|
|
|
16
16
|
updatedDocument: [],
|
|
17
17
|
showEditConfirmationModal: false,
|
|
18
18
|
submitEditChanges: false,
|
|
19
|
+
redirectingUser: false,
|
|
19
20
|
};
|
|
20
21
|
|
|
21
22
|
const getters = {
|
|
@@ -260,6 +261,10 @@ const actions = {
|
|
|
260
261
|
setShowEditConfirmationModal: ({ commit }, value) => {
|
|
261
262
|
commit("SET_SHOW_EDIT_CONFIRMATION_MODAL", value);
|
|
262
263
|
},
|
|
264
|
+
|
|
265
|
+
setRedirectingUser: ({ commit }, value) => {
|
|
266
|
+
commit("SET_REDIRECTING_USER", value);
|
|
267
|
+
},
|
|
263
268
|
};
|
|
264
269
|
|
|
265
270
|
const mutations = {
|
|
@@ -290,6 +295,9 @@ const mutations = {
|
|
|
290
295
|
SET_SUBMIT_EDIT_CHANGES: (state, value) => {
|
|
291
296
|
state.submitEditChanges = value;
|
|
292
297
|
},
|
|
298
|
+
SET_REDIRECTING_USER: (state, value) => {
|
|
299
|
+
state.redirectingUser = value;
|
|
300
|
+
},
|
|
293
301
|
};
|
|
294
302
|
|
|
295
303
|
export default {
|
package/src/utils/utils.js
CHANGED