@konfuzio/document-validation-ui 0.1.56 → 0.1.57
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/js/app.js +1 -1
- package/dist/js/app.js.map +1 -1
- package/package.json +1 -1
- package/src/components/App.vue +7 -0
- package/src/main.js +0 -5
package/package.json
CHANGED
package/src/components/App.vue
CHANGED
|
@@ -361,6 +361,13 @@ export default {
|
|
|
361
361
|
});
|
|
362
362
|
}
|
|
363
363
|
|
|
364
|
+
// Log app version
|
|
365
|
+
console.log(
|
|
366
|
+
`${this.removeBranding ? "" : require("../../package.json").name} ${
|
|
367
|
+
require("../../package.json").version
|
|
368
|
+
}`
|
|
369
|
+
);
|
|
370
|
+
|
|
364
371
|
// locale config
|
|
365
372
|
if (this.locale && this.locale !== "") {
|
|
366
373
|
this.$i18n.locale = this.locale;
|
package/src/main.js
CHANGED
|
@@ -8,11 +8,6 @@ import VueObserveVisibility from "vue-observe-visibility";
|
|
|
8
8
|
import Icons from "./icons";
|
|
9
9
|
import VueSplit from "vue-split-panel";
|
|
10
10
|
|
|
11
|
-
// Log app version
|
|
12
|
-
console.log(
|
|
13
|
-
`${require("../package.json").name} ${require("../package.json").version}`
|
|
14
|
-
);
|
|
15
|
-
|
|
16
11
|
Vue.component("VueFontawesome", Icons);
|
|
17
12
|
Vue.component("App", App);
|
|
18
13
|
Vue.use(VueKonva);
|