@burh/nuxt-core 1.0.255 → 1.0.257
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/assets/sass/burh-ds/variables/_colors.scss +350 -350
- package/components/argon-core/BaseDropdown.vue +114 -114
- package/components/argon-core/Modal.vue +184 -152
- package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
- package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
- package/components/burh-ds/Cards/RecruitmentCard.vue +196 -196
- package/components/burh-ds/Cards/RecruitmentUserCard.vue +230 -230
- package/components/burh-ds/Carousel/ImageCarousel.vue +106 -106
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvLeftSide.vue +437 -437
- package/components/burh-ds/Curriculum/UserCurriculum/index.vue +245 -245
- package/components/burh-ds/Headings/AppHeader.vue +138 -138
- package/components/burh-ds/Inputs/SearchInput.vue +64 -64
- package/components/burh-ds/Modals/NewUserModal.vue +84 -0
- package/components/burh-ds/Modals/SharedModal.vue +270 -270
- package/components/layouts/burh-ds/footer/ProductsFooter.vue +174 -197
- package/nuxt.config.js +206 -206
- package/package.json +1 -1
|
@@ -1,138 +1,138 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<base-header class="app-header" :type="'white'">
|
|
3
|
-
<div class="row justify-content-center">
|
|
4
|
-
<div
|
|
5
|
-
:class="{ 'images__container': images.length }"
|
|
6
|
-
class="col-6 my-auto header__container"
|
|
7
|
-
>
|
|
8
|
-
<slot name="header-top" />
|
|
9
|
-
|
|
10
|
-
<div class="header__content">
|
|
11
|
-
<h2 class="font-weight-bold display-3">{{name}}</h2>
|
|
12
|
-
<div class="images" v-if="images.length">
|
|
13
|
-
<el-tooltip
|
|
14
|
-
v-for="(image, index) in images"
|
|
15
|
-
:key="index"
|
|
16
|
-
placement="top"
|
|
17
|
-
:content="image.name"
|
|
18
|
-
>
|
|
19
|
-
<img
|
|
20
|
-
:src="image.src"
|
|
21
|
-
:alt="image.name"
|
|
22
|
-
>
|
|
23
|
-
</el-tooltip>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
|
|
27
|
-
<span id="credits-amount" v-if="subheader">
|
|
28
|
-
{{ subheader }} Créditos
|
|
29
|
-
</span>
|
|
30
|
-
|
|
31
|
-
<slot name="header-bottom" />
|
|
32
|
-
</div>
|
|
33
|
-
|
|
34
|
-
<div class="col-6 d-flex justify-content-end align-items-center">
|
|
35
|
-
<el-tooltip v-for="(item, index) in icons" :key="index"
|
|
36
|
-
v-show="!item.disabled"
|
|
37
|
-
class="item" effect="dark" :content="item.title" placement="top">
|
|
38
|
-
<base-button size="md" type="link" class="text-primary px-2 w-auto"
|
|
39
|
-
@click="$emit(item.event, item)">
|
|
40
|
-
<font-awesome-icon :icon="item.icon" class="mr-2" />
|
|
41
|
-
</base-button>
|
|
42
|
-
</el-tooltip>
|
|
43
|
-
|
|
44
|
-
<slot name="buttons" />
|
|
45
|
-
</div>
|
|
46
|
-
|
|
47
|
-
<slot/>
|
|
48
|
-
</div>
|
|
49
|
-
</base-header>
|
|
50
|
-
</template>
|
|
51
|
-
<script>
|
|
52
|
-
export default {
|
|
53
|
-
data(){
|
|
54
|
-
return{
|
|
55
|
-
default: ''
|
|
56
|
-
};
|
|
57
|
-
},
|
|
58
|
-
props:{
|
|
59
|
-
icons:{
|
|
60
|
-
type: Array,
|
|
61
|
-
default: () =>[{ event: 'view', icon: ['fas', 'eye'], disabled: false, title: 'Visualizar' }, { event: 'config', icon: ['fas', 'cog'], disabled: false, title: 'Editar' } ]
|
|
62
|
-
},
|
|
63
|
-
name: {
|
|
64
|
-
type: String,
|
|
65
|
-
default: 'Teste de matematica'
|
|
66
|
-
},
|
|
67
|
-
subheader: {
|
|
68
|
-
type: Number,
|
|
69
|
-
default: null
|
|
70
|
-
},
|
|
71
|
-
images: {
|
|
72
|
-
type: Array,
|
|
73
|
-
default: () => []
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
};
|
|
77
|
-
</script>
|
|
78
|
-
<style lang="scss" scoped>
|
|
79
|
-
#credits-amount {
|
|
80
|
-
margin: 0!important;
|
|
81
|
-
min-width: 8em;
|
|
82
|
-
margin: 1rem 1rem 1rem 0;
|
|
83
|
-
padding: 0.25em 1em;
|
|
84
|
-
font-size: 0.85rem;
|
|
85
|
-
line-height: 1.4em;
|
|
86
|
-
border-radius: 23rem;
|
|
87
|
-
font-weight: 400;
|
|
88
|
-
text-align: center;
|
|
89
|
-
background-color: rgba(29, 161, 241, 0.1);
|
|
90
|
-
color: #1da1f1;
|
|
91
|
-
}
|
|
92
|
-
</style>
|
|
93
|
-
<style lang="scss">
|
|
94
|
-
|
|
95
|
-
.app-header {
|
|
96
|
-
width: 100%;
|
|
97
|
-
padding-top: 1.25rem;
|
|
98
|
-
box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.header__container {
|
|
102
|
-
display: flex;
|
|
103
|
-
flex-direction: column;
|
|
104
|
-
justify-content: center;
|
|
105
|
-
align-items: flex-start;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.images__container {
|
|
109
|
-
display: flex;
|
|
110
|
-
align-items: flex-start;
|
|
111
|
-
justify-content: center;
|
|
112
|
-
.header__content {
|
|
113
|
-
display: flex;
|
|
114
|
-
flex-direction: row;
|
|
115
|
-
h2 {
|
|
116
|
-
margin-bottom: 0;
|
|
117
|
-
}
|
|
118
|
-
.images {
|
|
119
|
-
margin-left: 10px;
|
|
120
|
-
display: flex;
|
|
121
|
-
align-items: center;
|
|
122
|
-
user-select: none;
|
|
123
|
-
img {
|
|
124
|
-
$size: 32px;
|
|
125
|
-
display: block;
|
|
126
|
-
width: $size;
|
|
127
|
-
height: $size;
|
|
128
|
-
object-fit: cover;
|
|
129
|
-
border-radius: 100px;
|
|
130
|
-
border: 2px solid #fff;
|
|
131
|
-
&:not(:first-child) {
|
|
132
|
-
margin-left: -10px;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<base-header class="app-header" :type="'white'">
|
|
3
|
+
<div class="row justify-content-center">
|
|
4
|
+
<div
|
|
5
|
+
:class="{ 'images__container': images.length }"
|
|
6
|
+
class="col-6 my-auto header__container"
|
|
7
|
+
>
|
|
8
|
+
<slot name="header-top" />
|
|
9
|
+
|
|
10
|
+
<div class="header__content">
|
|
11
|
+
<h2 class="font-weight-bold display-3">{{name}}</h2>
|
|
12
|
+
<div class="images" v-if="images.length">
|
|
13
|
+
<el-tooltip
|
|
14
|
+
v-for="(image, index) in images"
|
|
15
|
+
:key="index"
|
|
16
|
+
placement="top"
|
|
17
|
+
:content="image.name"
|
|
18
|
+
>
|
|
19
|
+
<img
|
|
20
|
+
:src="image.src"
|
|
21
|
+
:alt="image.name"
|
|
22
|
+
>
|
|
23
|
+
</el-tooltip>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
<span id="credits-amount" v-if="subheader">
|
|
28
|
+
{{ subheader }} Créditos
|
|
29
|
+
</span>
|
|
30
|
+
|
|
31
|
+
<slot name="header-bottom" />
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
<div class="col-6 d-flex justify-content-end align-items-center">
|
|
35
|
+
<el-tooltip v-for="(item, index) in icons" :key="index"
|
|
36
|
+
v-show="!item.disabled"
|
|
37
|
+
class="item" effect="dark" :content="item.title" placement="top">
|
|
38
|
+
<base-button size="md" type="link" class="text-primary px-2 w-auto"
|
|
39
|
+
@click="$emit(item.event, item)">
|
|
40
|
+
<font-awesome-icon :icon="item.icon" class="mr-2" />
|
|
41
|
+
</base-button>
|
|
42
|
+
</el-tooltip>
|
|
43
|
+
|
|
44
|
+
<slot name="buttons" />
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
<slot/>
|
|
48
|
+
</div>
|
|
49
|
+
</base-header>
|
|
50
|
+
</template>
|
|
51
|
+
<script>
|
|
52
|
+
export default {
|
|
53
|
+
data(){
|
|
54
|
+
return{
|
|
55
|
+
default: ''
|
|
56
|
+
};
|
|
57
|
+
},
|
|
58
|
+
props:{
|
|
59
|
+
icons:{
|
|
60
|
+
type: Array,
|
|
61
|
+
default: () =>[{ event: 'view', icon: ['fas', 'eye'], disabled: false, title: 'Visualizar' }, { event: 'config', icon: ['fas', 'cog'], disabled: false, title: 'Editar' } ]
|
|
62
|
+
},
|
|
63
|
+
name: {
|
|
64
|
+
type: String,
|
|
65
|
+
default: 'Teste de matematica'
|
|
66
|
+
},
|
|
67
|
+
subheader: {
|
|
68
|
+
type: Number,
|
|
69
|
+
default: null
|
|
70
|
+
},
|
|
71
|
+
images: {
|
|
72
|
+
type: Array,
|
|
73
|
+
default: () => []
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
</script>
|
|
78
|
+
<style lang="scss" scoped>
|
|
79
|
+
#credits-amount {
|
|
80
|
+
margin: 0!important;
|
|
81
|
+
min-width: 8em;
|
|
82
|
+
margin: 1rem 1rem 1rem 0;
|
|
83
|
+
padding: 0.25em 1em;
|
|
84
|
+
font-size: 0.85rem;
|
|
85
|
+
line-height: 1.4em;
|
|
86
|
+
border-radius: 23rem;
|
|
87
|
+
font-weight: 400;
|
|
88
|
+
text-align: center;
|
|
89
|
+
background-color: rgba(29, 161, 241, 0.1);
|
|
90
|
+
color: #1da1f1;
|
|
91
|
+
}
|
|
92
|
+
</style>
|
|
93
|
+
<style lang="scss">
|
|
94
|
+
|
|
95
|
+
.app-header {
|
|
96
|
+
width: 100%;
|
|
97
|
+
padding-top: 1.25rem;
|
|
98
|
+
box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.header__container {
|
|
102
|
+
display: flex;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
justify-content: center;
|
|
105
|
+
align-items: flex-start;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.images__container {
|
|
109
|
+
display: flex;
|
|
110
|
+
align-items: flex-start;
|
|
111
|
+
justify-content: center;
|
|
112
|
+
.header__content {
|
|
113
|
+
display: flex;
|
|
114
|
+
flex-direction: row;
|
|
115
|
+
h2 {
|
|
116
|
+
margin-bottom: 0;
|
|
117
|
+
}
|
|
118
|
+
.images {
|
|
119
|
+
margin-left: 10px;
|
|
120
|
+
display: flex;
|
|
121
|
+
align-items: center;
|
|
122
|
+
user-select: none;
|
|
123
|
+
img {
|
|
124
|
+
$size: 32px;
|
|
125
|
+
display: block;
|
|
126
|
+
width: $size;
|
|
127
|
+
height: $size;
|
|
128
|
+
object-fit: cover;
|
|
129
|
+
border-radius: 100px;
|
|
130
|
+
border: 2px solid #fff;
|
|
131
|
+
&:not(:first-child) {
|
|
132
|
+
margin-left: -10px;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
</style>
|
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="input__container__icon">
|
|
3
|
-
<label for="search">
|
|
4
|
-
<i class="fas fa-search"></i>
|
|
5
|
-
</label>
|
|
6
|
-
<input type="text" name="search" id="search" :placeholder="placeholder" v-model="searchModel" @change="$emit('change')">
|
|
7
|
-
</div>
|
|
8
|
-
</template>
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
export default {
|
|
12
|
-
name: 'search-input',
|
|
13
|
-
props: {
|
|
14
|
-
search: String,
|
|
15
|
-
placeholder: {
|
|
16
|
-
type: String,
|
|
17
|
-
default: 'Busque por vaga'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
data() {
|
|
21
|
-
return {
|
|
22
|
-
searchModel: null
|
|
23
|
-
};
|
|
24
|
-
},
|
|
25
|
-
mounted() {
|
|
26
|
-
this.searchModel = this.search;
|
|
27
|
-
},
|
|
28
|
-
watch: {
|
|
29
|
-
search(value) {
|
|
30
|
-
this.searchModel = value;
|
|
31
|
-
},
|
|
32
|
-
searchModel(value) {
|
|
33
|
-
this.$emit('search', value);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
};
|
|
37
|
-
</script>
|
|
38
|
-
|
|
39
|
-
<style lang="scss" scoped>
|
|
40
|
-
.input__container__icon {
|
|
41
|
-
position: relative;
|
|
42
|
-
display: flex;
|
|
43
|
-
align-items: center;
|
|
44
|
-
border-radius: 100px;
|
|
45
|
-
max-width: 270px;
|
|
46
|
-
overflow: hidden;
|
|
47
|
-
border: 1px solid #E9ECEF;
|
|
48
|
-
input {
|
|
49
|
-
background: transparent;
|
|
50
|
-
border: 0;
|
|
51
|
-
outline: none;
|
|
52
|
-
padding: 5px 0;
|
|
53
|
-
width: 100%;
|
|
54
|
-
}
|
|
55
|
-
label {
|
|
56
|
-
margin: 0;
|
|
57
|
-
display: block;
|
|
58
|
-
}
|
|
59
|
-
i {
|
|
60
|
-
padding: 0 10px;
|
|
61
|
-
color: #AEB6BE;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="input__container__icon">
|
|
3
|
+
<label for="search">
|
|
4
|
+
<i class="fas fa-search"></i>
|
|
5
|
+
</label>
|
|
6
|
+
<input type="text" name="search" id="search" :placeholder="placeholder" v-model="searchModel" @change="$emit('change')">
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
export default {
|
|
12
|
+
name: 'search-input',
|
|
13
|
+
props: {
|
|
14
|
+
search: String,
|
|
15
|
+
placeholder: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: 'Busque por vaga'
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
data() {
|
|
21
|
+
return {
|
|
22
|
+
searchModel: null
|
|
23
|
+
};
|
|
24
|
+
},
|
|
25
|
+
mounted() {
|
|
26
|
+
this.searchModel = this.search;
|
|
27
|
+
},
|
|
28
|
+
watch: {
|
|
29
|
+
search(value) {
|
|
30
|
+
this.searchModel = value;
|
|
31
|
+
},
|
|
32
|
+
searchModel(value) {
|
|
33
|
+
this.$emit('search', value);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
</script>
|
|
38
|
+
|
|
39
|
+
<style lang="scss" scoped>
|
|
40
|
+
.input__container__icon {
|
|
41
|
+
position: relative;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
border-radius: 100px;
|
|
45
|
+
max-width: 270px;
|
|
46
|
+
overflow: hidden;
|
|
47
|
+
border: 1px solid #E9ECEF;
|
|
48
|
+
input {
|
|
49
|
+
background: transparent;
|
|
50
|
+
border: 0;
|
|
51
|
+
outline: none;
|
|
52
|
+
padding: 5px 0;
|
|
53
|
+
width: 100%;
|
|
54
|
+
}
|
|
55
|
+
label {
|
|
56
|
+
margin: 0;
|
|
57
|
+
display: block;
|
|
58
|
+
}
|
|
59
|
+
i {
|
|
60
|
+
padding: 0 10px;
|
|
61
|
+
color: #AEB6BE;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<modal
|
|
4
|
+
:show.sync="isModalOpen"
|
|
5
|
+
@close="$emit('close-modal')"
|
|
6
|
+
class="modal modal-new"
|
|
7
|
+
bodyClasses="container-fluid px-4 pt-0 modal-new-fix"
|
|
8
|
+
headerClasses="container-fluid px-4 pb-0"
|
|
9
|
+
>
|
|
10
|
+
<template slot="header">
|
|
11
|
+
<p> </p>
|
|
12
|
+
</template>
|
|
13
|
+
<div class="text-center my-4 mt-0">
|
|
14
|
+
<img src="/img/logotipo_color.svg" class="pb-4" width="124" alt="Burh">
|
|
15
|
+
<h5 class="display-5 text-center">Olá! Sou a Burh! Estamos mudando.</h5>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="mt-2 text-justify">
|
|
18
|
+
<p>
|
|
19
|
+
O Burh foi criado para empresas que buscam os melhores profissionais para compor seu time, mas que para isso não tenham que passar por sistemas burocráticos, ultrapassados e cheios de pegadinhas. Com o único propósito de tornar o mercado profissional em um lugar livre e aberto, chegou a hora de apresentarmos a melhor versão que já criamos, uma plataforma inteligente, rápida, segura e repleta de novas possibilidades.
|
|
20
|
+
<br><br>
|
|
21
|
+
Por isso acreditamos que você vai adorar! A nova plataforma possibilita criar e organizar pastas na nuvem, anexar documentos e notas nos perfis dos profissionais e compartilhar essas informações com toda segurança da LGPD. Tudo isso de forma simples, inovadora e inteligente.
|
|
22
|
+
<br><br>
|
|
23
|
+
Pode-se dizer que estamos amadurecendo, o que é meio chavão para uma marca dizer, mas nós somos gratos pelas pessoas que ficaram ao nosso lado nos últimos quatro anos e estamos empolgados para crescer cada vez mais juntos.
|
|
24
|
+
<br><br>
|
|
25
|
+
Hoje, apresentamos a nova Burh Empresas que será liberada nos próximos dias. Uma solução que reflete aquilo que somos, nossa essência e o que acreditamos. Nossas novas cores representam toda a integração, possibilidade e liberdade de criarmos o novo, de pessoas para pessoas.
|
|
26
|
+
<br><br>
|
|
27
|
+
Com amor,<br>Burh
|
|
28
|
+
</p>
|
|
29
|
+
</div>
|
|
30
|
+
</modal>
|
|
31
|
+
</div>
|
|
32
|
+
</template>
|
|
33
|
+
|
|
34
|
+
<script>
|
|
35
|
+
export default {
|
|
36
|
+
name: 'new-user-modal',
|
|
37
|
+
props: {
|
|
38
|
+
show: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
default: false
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
data() {
|
|
44
|
+
return {
|
|
45
|
+
isModalOpen: this.show
|
|
46
|
+
};
|
|
47
|
+
},
|
|
48
|
+
watch: {
|
|
49
|
+
show(value) {
|
|
50
|
+
this.isModalOpen = value;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
</script>
|
|
55
|
+
<style lang="scss">
|
|
56
|
+
.modal-new {
|
|
57
|
+
overflow-y: auto!important;
|
|
58
|
+
&::-webkit-scrollbar-track {
|
|
59
|
+
border-radius: 10px;
|
|
60
|
+
background-color: rgba(23, 43, 77, 0.7);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&::-webkit-scrollbar {
|
|
64
|
+
width: 8px;
|
|
65
|
+
background-color: rgba(23, 43, 77, 0.7);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&::-webkit-scrollbar-thumb {
|
|
69
|
+
border-radius: 10px;
|
|
70
|
+
background-color: #e9e8e8;
|
|
71
|
+
}
|
|
72
|
+
.modal-dialog {
|
|
73
|
+
min-width: 60rem;
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-direction: columns;
|
|
76
|
+
align-items: center;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
.modal-new-fix {
|
|
80
|
+
padding: 30px 60px!important;
|
|
81
|
+
padding-top: 0!important;
|
|
82
|
+
width: 75%!important;
|
|
83
|
+
}
|
|
84
|
+
</style>
|