@burh/nuxt-core 1.0.117 → 1.0.119
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/components/burh-ds/Cards/PerformanceCard.vue +15 -14
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvLeftSide.vue +6 -10
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSide.vue +9 -7
- package/components/burh-ds/Curriculum/UserCurriculum/index.vue +1 -0
- package/package.json +1 -1
|
@@ -1,32 +1,34 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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>
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
|
|
72
72
|
<div class="socials text-center mt-5">
|
|
73
73
|
<a
|
|
74
|
-
:href="baseUrl + '/' + userData.
|
|
74
|
+
:href="baseUrl + '/' + userData.slug.slug"
|
|
75
75
|
class="text-center"
|
|
76
76
|
target="_blank"
|
|
77
77
|
rel="noopener noreferrer"
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
|
|
124
124
|
<div class="burh-code text-center mt-4">
|
|
125
125
|
<vue-qrcode
|
|
126
|
-
:value="baseUrl + '/' + userData.
|
|
126
|
+
:value="baseUrl + '/' + userData.slug.slug"
|
|
127
127
|
:options="{ width: 98, height: 98 }"
|
|
128
128
|
class="border qr-code"
|
|
129
129
|
></vue-qrcode>
|
|
@@ -143,12 +143,8 @@ export default {
|
|
|
143
143
|
VueQrcode
|
|
144
144
|
},
|
|
145
145
|
props: {
|
|
146
|
-
userData: Object
|
|
147
|
-
|
|
148
|
-
data() {
|
|
149
|
-
return {
|
|
150
|
-
baseUrl: process.env.baseAppUrl
|
|
151
|
-
};
|
|
146
|
+
userData: Object,
|
|
147
|
+
baseUrl: String
|
|
152
148
|
},
|
|
153
149
|
methods: {
|
|
154
150
|
getTime(
|
|
@@ -259,7 +255,7 @@ export default {
|
|
|
259
255
|
|
|
260
256
|
position: absolute;
|
|
261
257
|
background-color: #adb5bd;
|
|
262
|
-
width:
|
|
258
|
+
width: 163px;
|
|
263
259
|
height: 163px;
|
|
264
260
|
top: 120;
|
|
265
261
|
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
|
|
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
|
|
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
|
}
|