@enso-ui/teams 4.0.2 → 4.0.6

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/teams",
3
- "version": "4.0.2",
3
+ "version": "4.0.6",
4
4
  "description": "Basic teams package",
5
5
  "main": "src/bulma/pages/teams/Index.vue",
6
6
  "scripts": {
@@ -27,6 +27,8 @@
27
27
  "@enso-ui/ui": "^5.0",
28
28
  "@fortawesome/fontawesome-svg-core": "^1.2.2",
29
29
  "@fortawesome/free-solid-svg-icons": "^5.2.0",
30
+ "@fortawesome/vue-fontawesome": "3.0.0-5",
31
+ "animate.css": "^4.0.0",
30
32
  "v-tooltip": "4.0.0-alpha.1",
31
33
  "vue": "^3.0"
32
34
  },
@@ -37,8 +39,8 @@
37
39
  "autoprefixer": "^9.6.1",
38
40
  "babel-eslint": "^10.0.1",
39
41
  "cross-env": "^6.0.0",
40
- "eslint": "^7.0",
42
+ "eslint": "^7.0.0",
41
43
  "eslint-import-resolver-alias": "^1.1.2",
42
- "eslint-plugin-vue": "^7.0.0-beta.4"
44
+ "eslint-plugin-vue": "^8.0.0"
43
45
  }
44
46
  }
@@ -60,6 +60,7 @@
60
60
  </template>
61
61
 
62
62
  <script>
63
+ import { FontAwesomeIcon as Fa } from '@fortawesome/vue-fontawesome';
63
64
  import { library } from '@fortawesome/fontawesome-svg-core';
64
65
  import { faPlus, faSearch, faSpinner } from '@fortawesome/free-solid-svg-icons';
65
66
  import Team from './components/Team.vue';
@@ -71,7 +72,7 @@ export default {
71
72
 
72
73
  inject: ['errorHandler', 'i18n', 'route'],
73
74
 
74
- components: { Team },
75
+ components: { Fa, Team },
75
76
 
76
77
  data: () => ({
77
78
  loading: false,
@@ -23,7 +23,7 @@
23
23
  </div>
24
24
  <div class="level-right">
25
25
  <div class="level-item has-text-right">
26
- <a class="button is-naked animated fadeIn"
26
+ <a class="button is-naked animate__animated animate__fadeIn"
27
27
  v-if="!team.edit"
28
28
  @click="team.edit = true">
29
29
  <span class="icon">
@@ -31,7 +31,7 @@
31
31
  size="sm"/>
32
32
  </span>
33
33
  </a>
34
- <span class="animated fadeIn"
34
+ <span class="animate__animated animate__fadeIn"
35
35
  v-else>
36
36
  <a class="button is-naked is-outlined"
37
37
  @click="$emit('cancel');team.edit = false">
@@ -82,6 +82,8 @@
82
82
  </template>
83
83
 
84
84
  <script>
85
+ import 'animate.css';
86
+ import { FontAwesomeIcon as Fa } from '@fortawesome/vue-fontawesome';
85
87
  import { library } from '@fortawesome/fontawesome-svg-core';
86
88
  import {
87
89
  faBan, faPencilAlt, faTrash, faCheck,
@@ -100,7 +102,7 @@ export default {
100
102
 
101
103
  directives: { focus },
102
104
 
103
- components: { Fade, EnsoSelect, AvatarList },
105
+ components: { AvatarList, EnsoSelect, Fa, Fade },
104
106
 
105
107
  props: {
106
108
  team: {