@enso-ui/how-to 4.0.16 → 4.0.17

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/how-to",
3
- "version": "4.0.16",
3
+ "version": "4.0.17",
4
4
  "description": "Basic how-to package",
5
5
  "main": "src/bulma/pages/howTo/Index.vue",
6
6
  "scripts": {
@@ -27,7 +27,7 @@
27
27
  <fade>
28
28
  <div class="control"
29
29
  v-if="video.name">
30
- <uploader :url="uploadLink"
30
+ <enso-uploader :url="uploadLink"
31
31
  :params="video"
32
32
  :file-size-limit="20000000"
33
33
  file-key="video"
@@ -45,7 +45,7 @@
45
45
  </span>
46
46
  </a>
47
47
  </template>
48
- </uploader>
48
+ </enso-uploader>
49
49
  <a class="button is-outlined is-success"
50
50
  @click="video = video; update()"
51
51
  v-if="editingVideo">
@@ -179,7 +179,7 @@
179
179
  <script>
180
180
  import { focus } from '@enso-ui/directives';
181
181
  import { Fade } from '@enso-ui/transitions';
182
- import { Uploader } from '@enso-ui/uploader/bulma';
182
+ import { EnsoUploader } from '@enso-ui/uploader/bulma';
183
183
  import { library } from '@fortawesome/fontawesome-svg-core';
184
184
  import {
185
185
  faBan,
@@ -200,7 +200,7 @@ export default {
200
200
  directives: { focus },
201
201
 
202
202
  components: {
203
- Fa, Fade, HowToVideo, Uploader,
203
+ Fa, Fade, HowToVideo, EnsoUploader,
204
204
  },
205
205
 
206
206
  inject: ['canAccess', 'errorHandler', 'http', 'i18n', 'route', 'toastr'],