@enso-ui/users 2.0.12 → 2.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enso-ui/users",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "Basic users package",
5
5
  "main": "bulma/index.js",
6
6
  "scripts": {
@@ -4,7 +4,7 @@
4
4
  <enso-form class="box has-background-light raises-on-hover">
5
5
  <template #group_id="props">
6
6
  <form-field v-bind="props"
7
- @input="pivotParams.userGroups.id = $event"/>
7
+ @update:modelValue="pivotParams.userGroups.id = $event"/>
8
8
  </template>
9
9
  <template #role_id="props">
10
10
  <form-field v-bind="props"
@@ -9,7 +9,7 @@
9
9
  ">
10
10
  <template #group_id="props">
11
11
  <form-field v-bind="props"
12
- @input="pivotParams.userGroups.id = $event"/>
12
+ @update:modelValue="pivotParams.userGroups.id = $event"/>
13
13
  </template>
14
14
  <template #role_id="props">
15
15
  <form-field v-bind="props"
@@ -123,7 +123,7 @@ import { EnsoForm, FormField } from '@enso-ui/forms/bulma';
123
123
  import Accessories from '@enso-ui/accessories/bulma';
124
124
  import { Tab } from '@enso-ui/tabs/bulma';
125
125
  import { mapState } from 'vuex';
126
- import PasswordStrength from '@enso-ui/auth/src/bulma/pages/auth/components/PasswordStrength.vue'; // TODO::FIX IT!
126
+ import { PasswordStrength } from '@enso-ui/auth';
127
127
  import DeleteModal from './components/DeleteModal.vue';
128
128
  import Tokens from './components/Tokens.vue';
129
129
  import Sessions from './components/Sessions.vue';
@@ -62,7 +62,7 @@
62
62
  import { FontAwesomeIcon as Fa } from '@fortawesome/vue-fontawesome';
63
63
  import { library } from '@fortawesome/fontawesome-svg-core';
64
64
  import { faPlus, faSync, faSearch } from '@fortawesome/free-solid-svg-icons';
65
- import Url from '@enso-ui/files/src/bulma/pages/files/components/Url.vue'; // TODO:: refactor to a package
65
+ import { Url } from '@enso-ui/files'; // TODO:: refactor to a package
66
66
  import Token from './Token.vue';
67
67
  import TokenForm from './TokenForm.vue';
68
68
 
@@ -1,6 +1,4 @@
1
- import Vue from 'vue';
2
1
  import App from '@enso-ui/ui/src/core/app';
3
2
  import ProfileController from './components/navbar/ProfileControl.vue';
4
3
 
5
- Vue.component('navbar-profile-controller', ProfileController);
6
- App.registerNavbarItem('navbar-profile-controller', 400);
4
+ App.registerNavbarItem('navbar-profile-controller', ProfileController, 400);