@enso-ui/teams 4.0.3 → 4.0.7
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.
|
|
3
|
+
"version": "4.0.7",
|
|
4
4
|
"description": "Basic teams package",
|
|
5
5
|
"main": "src/bulma/pages/teams/Index.vue",
|
|
6
6
|
"scripts": {
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"autoprefixer": "^9.6.1",
|
|
39
39
|
"babel-eslint": "^10.0.1",
|
|
40
40
|
"cross-env": "^6.0.0",
|
|
41
|
-
"eslint": "^7.0",
|
|
41
|
+
"eslint": "^7.0.0",
|
|
42
42
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
43
|
-
"eslint-plugin-vue": "^
|
|
43
|
+
"eslint-plugin-vue": "^8.0.0"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
@@ -23,38 +23,39 @@
|
|
|
23
23
|
</div>
|
|
24
24
|
<div class="level-right">
|
|
25
25
|
<div class="level-item has-text-right">
|
|
26
|
-
<
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
<fa icon="pencil-alt"
|
|
31
|
-
size="sm"/>
|
|
32
|
-
</span>
|
|
33
|
-
</a>
|
|
34
|
-
<span class="animated fadeIn"
|
|
35
|
-
v-else>
|
|
36
|
-
<a class="button is-naked is-outlined"
|
|
37
|
-
@click="$emit('cancel');team.edit = false">
|
|
26
|
+
<fade>
|
|
27
|
+
<a class="button is-naked"
|
|
28
|
+
v-if="!team.edit"
|
|
29
|
+
@click="team.edit = true">
|
|
38
30
|
<span class="icon">
|
|
39
|
-
<fa icon="
|
|
40
|
-
</span>
|
|
41
|
-
</a>
|
|
42
|
-
<a class="button is-naked is-success is-outlined"
|
|
43
|
-
:disabled="!team.name"
|
|
44
|
-
@click="store();">
|
|
45
|
-
<span class="icon">
|
|
46
|
-
<fa icon="check"
|
|
31
|
+
<fa icon="pencil-alt"
|
|
47
32
|
size="sm"/>
|
|
48
33
|
</span>
|
|
49
34
|
</a>
|
|
50
|
-
<
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
35
|
+
<span v-else>
|
|
36
|
+
<a class="button is-naked is-outlined"
|
|
37
|
+
@click="$emit('cancel');team.edit = false">
|
|
38
|
+
<span class="icon">
|
|
39
|
+
<fa icon="ban"/>
|
|
40
|
+
</span>
|
|
41
|
+
</a>
|
|
42
|
+
<a class="button is-naked is-success is-outlined"
|
|
43
|
+
:disabled="!team.name"
|
|
44
|
+
@click="store();">
|
|
45
|
+
<span class="icon">
|
|
46
|
+
<fa icon="check"
|
|
47
|
+
size="sm"/>
|
|
48
|
+
</span>
|
|
49
|
+
</a>
|
|
50
|
+
<a class="button is-naked is-danger is-outlined"
|
|
51
|
+
@click="destroy"
|
|
52
|
+
v-if="team.id !== null">
|
|
53
|
+
<span class="icon">
|
|
54
|
+
<fa icon="trash"/>
|
|
55
|
+
</span>
|
|
56
|
+
</a>
|
|
57
|
+
</span>
|
|
58
|
+
</fade>
|
|
58
59
|
</div>
|
|
59
60
|
</div>
|
|
60
61
|
</div>
|