@enso-ui/users 2.0.20 → 2.0.21

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.20",
3
+ "version": "2.0.21",
4
4
  "description": "Basic users package",
5
5
  "main": "bulma/index.js",
6
6
  "scripts": {
@@ -32,7 +32,7 @@
32
32
  </a>
33
33
  </p>
34
34
  <p class="control">
35
- <uploader @upload-successful="setUserAvatar($event.id)"
35
+ <enso-uploader @upload-successful="setUserAvatar($event.id)"
36
36
  :url="route('core.avatars.store')"
37
37
  file-key="avatar"
38
38
  v-if="isSelfVisiting">
@@ -47,7 +47,7 @@
47
47
  </span>
48
48
  </a>
49
49
  </template>
50
- </uploader>
50
+ </enso-uploader>
51
51
  </p>
52
52
  <p class="control"
53
53
  v-if="
@@ -155,7 +155,7 @@ import { library } from '@fortawesome/fontawesome-svg-core';
155
155
  import {
156
156
  faUser, faUserCircle, faSyncAlt, faTrashAlt, faUpload, faSignOutAlt, faPencilAlt,
157
157
  } from '@fortawesome/free-solid-svg-icons';
158
- import { Uploader } from '@enso-ui/uploader/bulma';
158
+ import { EnsoUploader } from '@enso-ui/uploader/bulma';
159
159
  import eventBus from '@enso-ui/ui/src/core/services/eventBus';
160
160
  import Divider from '@enso-ui/divider';
161
161
  import format from '@enso-ui/ui/src/modules/plugins/date-fns/format';
@@ -165,7 +165,7 @@ library.add(faUser, faUserCircle, faSyncAlt, faTrashAlt, faUpload, faSignOutAlt,
165
165
  export default {
166
166
  name: 'UserProfile',
167
167
 
168
- components: { Divider, Fa, Uploader },
168
+ components: { Divider, Fa, EnsoUploader },
169
169
 
170
170
  inject: [
171
171
  'canAccess', 'errorHandler', 'http', 'i18n',