@burh/nuxt-core 1.0.116 → 1.0.118

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.
@@ -1,32 +1,34 @@
1
1
  <template>
2
- <card class="card">
2
+ <card class="card">
3
3
  <h4 class="aria-text">Funcionalidades</h4>
4
- <ul class="list line">
4
+ <ul class="list line-card">
5
5
  <functionality-item
6
6
  class="cursor-pointer"
7
7
  :icone="firstItemIcon"
8
8
  :text="firstItemText"
9
- @functionality-click="$emit('click-first-item')"/>
9
+ @functionality-click="$emit('click-first-item')"
10
+ />
10
11
  <functionality-item
11
12
  class="cursor-pointer border-left padding-border"
12
13
  :icone="secondItemIcon"
13
14
  :text="secondItemText"
14
- @functionality-click="$emit('click-second-item')" />
15
+ @functionality-click="$emit('click-second-item')"
16
+ />
15
17
  </ul>
16
- <hr>
17
- <h6 class="list-title font-weight-bold">{{title}}</h6>
18
+ <hr />
19
+ <h6 class="list-title font-weight-bold">{{ title }}</h6>
18
20
  <ul class="list">
19
21
  <slot></slot>
20
22
  </ul>
21
- <p class="footer-text">{{context}}</p>
22
- </card>
23
+ <p class="footer-text">{{ context }}</p>
24
+ </card>
23
25
  </template>
24
26
  <script>
25
- import FunctionalityItem from './FunctionalityItem'
27
+ import FunctionalityItem from './FunctionalityItem';
26
28
  export default {
27
29
  name: 'performance-card',
28
30
  components: {
29
- FunctionalityItem,
31
+ FunctionalityItem
30
32
  },
31
33
  props: {
32
34
  title: String,
@@ -40,8 +42,8 @@ export default {
40
42
  visualization: Number,
41
43
  skeleton: {
42
44
  type: Boolean,
43
- default: false
44
- },
45
+ default: false
46
+ }
45
47
  }
46
48
  };
47
49
  </script>
@@ -52,7 +54,7 @@ export default {
52
54
  justify-content: space-evenly;
53
55
  }
54
56
 
55
- .line ul:not(:first-child) {
57
+ .line-card ul:not(:first-child) {
56
58
  border: 2px solid #e5e5e5;
57
59
  }
58
60
 
@@ -64,5 +66,4 @@ export default {
64
66
  .padding-border {
65
67
  padding-left: 7.5rem;
66
68
  }
67
-
68
69
  </style>
@@ -14,7 +14,7 @@
14
14
  <h5 class="mb-0 text-wrap" :class="{ 'mt-5': !userData.urlAvatar }">
15
15
  {{ userData.name }} {{ userData.last_name }}
16
16
  </h5>
17
- <p v-if="userData.user_experience.length > 0">
17
+ <p class="pl-2 pr-2" v-if="userData.user_experience.length > 0">
18
18
  {{ userData.user_experience[0].job_title }} em
19
19
  {{ userData.user_experience[0].company }}
20
20
  </p>
@@ -259,7 +259,7 @@ export default {
259
259
 
260
260
  position: absolute;
261
261
  background-color: #adb5bd;
262
- width: 178.14px;
262
+ width: 163px;
263
263
  height: 163px;
264
264
  top: 120;
265
265
  border-radius: 50%;
@@ -16,7 +16,7 @@
16
16
  </p>
17
17
  <span>{{ applied.created_at | convertDate }}</span>
18
18
  </div>
19
- <p v-show="userApplied.length === 0" class="history-text">
19
+ <p v-show="!userApplied" class="history-text">
20
20
  Nenhuma vaga aplicada.
21
21
  </p>
22
22
  </el-tab-pane>
@@ -24,7 +24,7 @@
24
24
  <p class="notes-title mb-0">Notas da equipe</p>
25
25
  <div class="line mb-3"></div>
26
26
 
27
- <p v-if="userNotes.notes.length === 0" class="notes-text mt-3">
27
+ <p v-if="!userNotes.notes.length" class="notes-text mt-3">
28
28
  Nenhuma nota criada.
29
29
  </p>
30
30
  <div v-for="(note, index) in userNotes.notes" :key="index">
@@ -79,11 +79,6 @@ export default {
79
79
  userNotes: Object,
80
80
  userApplied: Array
81
81
  },
82
- watch: {
83
- addNewNote(newValue) {
84
- this.userNotes.notes.push(newValue);
85
- }
86
- },
87
82
  data() {
88
83
  return {
89
84
  activeName: 'history',
@@ -115,6 +110,13 @@ export default {
115
110
  }
116
111
  }
117
112
 
113
+ .el-dialog {
114
+ overflow: hidden;
115
+ border-radius: 10px;
116
+ padding-bottom: 50px;
117
+ max-width: 1500px;
118
+ }
119
+
118
120
  .content-right {
119
121
  width: 25%;
120
122
  }
@@ -126,6 +126,7 @@ export default {
126
126
  img {
127
127
  width: 100%;
128
128
  height: 150px;
129
+ object-fit: cover;
129
130
  }
130
131
 
131
132
  .no-cover-photo {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.116",
3
+ "version": "1.0.118",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {