@oxygen-cms/ui 1.7.0 → 1.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxygen-cms/ui",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Various utilities for UI-building in Vue.js",
5
5
  "main": "none",
6
6
  "repository": {
@@ -19,7 +19,7 @@
19
19
  "brace": "^0.11.1",
20
20
  "buefy": "^0.9.10",
21
21
  "bulma": "~0.9.3",
22
- "copy-webpack-plugin": "^5.1.1",
22
+ "copy-webpack-plugin": "^11.0.0",
23
23
  "downloadjs": "^1.4.7",
24
24
  "libphonenumber-js": "^1.9.11",
25
25
  "lodash": "^4.17.21",
@@ -44,8 +44,8 @@
44
44
  "eslint-plugin-jest": "^24.4.0",
45
45
  "eslint-plugin-vue": "^7.17.0",
46
46
  "jest": "^26.6.3",
47
- "sass-embedded": "^1.49.9",
48
- "regenerator-runtime": "^0.13.7"
47
+ "regenerator-runtime": "^0.13.7",
48
+ "sass-embedded": "^1.49.9"
49
49
  },
50
50
  "scripts": {
51
51
  "test": "jest",
@@ -58,7 +58,8 @@
58
58
  <script>
59
59
  import UsersApi from "../UsersApi";
60
60
  import {morphToNotification} from "../api";
61
- import {isNavigationFailure, NavigationFailureType} from "vue-router/src/util/errors";
61
+ import VueRouter from 'vue-router';
62
+ const { isNavigationFailure, NavigationFailureType } = VueRouter;
62
63
 
63
64
  export default {
64
65
  name: "AuthenticatedLayout",
@@ -85,7 +85,8 @@
85
85
  import UsersApi from "../UsersApi";
86
86
  import UserJoined from "./UserJoined.vue";
87
87
  import {morphToNotification} from "../api";
88
- import {isNavigationFailure, NavigationFailureType} from "vue-router/src/util/errors";
88
+ import VueRouter from 'vue-router';
89
+ const { isNavigationFailure, NavigationFailureType } = VueRouter;
89
90
  import GenericEditableField from "./GenericEditableField.vue";
90
91
  import GroupsChooser from "./GroupsChooser.vue";
91
92
  import GroupsList from "./GroupsList.vue";