@burh/nuxt-core 1.0.202 → 1.0.203

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,134 +1,134 @@
1
- <template>
2
- <el-dialog
3
- :visible.sync="isActive"
4
- width="80%"
5
- custom-class="position-relative"
6
- @close="$emit('close')"
7
- class="test-radius"
8
- >
9
- <template>
10
- <div class="row d-flex justify-content-between mx-0 user-pdf">
11
- <img v-show="coverPhoto" :src="coverPhoto" alt="" />
12
- <div v-show="!coverPhoto" class="no-cover-photo"></div>
13
- <slot name="content"></slot>
14
- </div>
15
- <slot></slot>
16
- <!-- <el-tooltip placement="top" :content="!showTools ? 'Exibir Ferramentas' : 'Esconder Ferramentas'">
17
- <span class="tool tool-show--tools">
18
- <font-awesome-icon :icon="['fas', !showTools ? 'expand-alt' : 'compress-alt']" class="h3 text-primary"
19
- @click="showTools = !showTools"/>
20
- </span>
21
- </el-tooltip> -->
22
- <span class="tool tool-close" @click="$emit('close')">
23
- Fechar
24
- <font-awesome-icon
25
- :icon="['fas', 'times']"
26
- class="text-white ml-1"
27
- />
28
- </span>
29
- </template>
30
- </el-dialog>
31
- </template>
32
-
33
- <script>
34
- import { Dialog } from 'element-ui';
35
-
36
- export default {
37
- name: 'user-curriculum',
38
- components: {
39
- [Dialog.name]: Dialog
40
- },
41
- props: {
42
- show: {
43
- type: Boolean,
44
- default: false
45
- },
46
- tools: {
47
- type: Array,
48
- default: () => []
49
- },
50
- cover: String
51
- },
52
- data() {
53
- return {
54
- isActive: this.show,
55
- showTools: false,
56
- coverPhoto: this.cover
57
- };
58
- },
59
- watch: {
60
- show(value) {
61
- this.isActive = value;
62
- },
63
- cover(value) {
64
- this.coverPhoto = value;
65
- }
66
- }
67
- };
68
- </script>
69
-
70
- <style lang="scss" scoped>
71
- @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
72
-
73
- /deep/ .el-dialog__body {
74
- padding: 0;
75
- }
76
-
77
- /deep/ .el-dialog__header {
78
- display: none;
79
- }
80
-
81
- /deep/ .el-dialog {
82
- overflow: hidden;
83
- border-radius: 10px;
84
- padding-bottom: 50px;
85
- max-width: 1360px;
86
- margin-top: 5vh!important;
87
- }
88
-
89
- .test-radius {
90
- border-radius: 10px;
91
- }
92
-
93
- .tool {
94
- position: absolute;
95
- top: 1rem;
96
- z-index: 10;
97
- color: $primary;
98
- cursor: pointer;
99
-
100
- &-show--tools {
101
- right: 1.5rem;
102
- }
103
-
104
- &-close {
105
- position: absolute;
106
- width: 104.93px;
107
- height: 28px;
108
- right: 1.5rem;
109
- display: flex;
110
- justify-content: center;
111
- align-items: center;
112
-
113
- font-weight: 600;
114
- background: rgba(0, 0, 0, 0.2);
115
- border-radius: 17.5px;
116
- color: #fff;
117
- }
118
- }
119
-
120
- .user-pdf {
121
- background-color: #fff;
122
- img {
123
- width: 100%;
124
- height: 150px;
125
- object-fit: cover;
126
- }
127
-
128
- .no-cover-photo {
129
- background: $primary;
130
- width: 100%;
131
- height: 150px;
132
- }
133
- }
134
- </style>
1
+ <template>
2
+ <el-dialog
3
+ :visible.sync="isActive"
4
+ width="80%"
5
+ custom-class="position-relative"
6
+ @close="$emit('close')"
7
+ class="test-radius"
8
+ >
9
+ <template>
10
+ <div class="row d-flex justify-content-between mx-0 user-pdf">
11
+ <img v-show="coverPhoto" :src="coverPhoto" alt="" />
12
+ <div v-show="!coverPhoto" class="no-cover-photo"></div>
13
+ <slot name="content"></slot>
14
+ </div>
15
+ <slot></slot>
16
+ <!-- <el-tooltip placement="top" :content="!showTools ? 'Exibir Ferramentas' : 'Esconder Ferramentas'">
17
+ <span class="tool tool-show--tools">
18
+ <font-awesome-icon :icon="['fas', !showTools ? 'expand-alt' : 'compress-alt']" class="h3 text-primary"
19
+ @click="showTools = !showTools"/>
20
+ </span>
21
+ </el-tooltip> -->
22
+ <span class="tool tool-close" @click="$emit('close')">
23
+ Fechar
24
+ <font-awesome-icon
25
+ :icon="['fas', 'times']"
26
+ class="text-white ml-1"
27
+ />
28
+ </span>
29
+ </template>
30
+ </el-dialog>
31
+ </template>
32
+
33
+ <script>
34
+ import { Dialog } from 'element-ui';
35
+
36
+ export default {
37
+ name: 'user-curriculum',
38
+ components: {
39
+ [Dialog.name]: Dialog
40
+ },
41
+ props: {
42
+ show: {
43
+ type: Boolean,
44
+ default: false
45
+ },
46
+ tools: {
47
+ type: Array,
48
+ default: () => []
49
+ },
50
+ cover: String
51
+ },
52
+ data() {
53
+ return {
54
+ isActive: this.show,
55
+ showTools: false,
56
+ coverPhoto: this.cover
57
+ };
58
+ },
59
+ watch: {
60
+ show(value) {
61
+ this.isActive = value;
62
+ },
63
+ cover(value) {
64
+ this.coverPhoto = value;
65
+ }
66
+ }
67
+ };
68
+ </script>
69
+
70
+ <style lang="scss" scoped>
71
+ @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
72
+
73
+ /deep/ .el-dialog__body {
74
+ padding: 0;
75
+ }
76
+
77
+ /deep/ .el-dialog__header {
78
+ display: none;
79
+ }
80
+
81
+ /deep/ .el-dialog {
82
+ overflow: hidden;
83
+ border-radius: 10px;
84
+ padding-bottom: 50px;
85
+ max-width: 1360px;
86
+ margin-top: 5vh!important;
87
+ }
88
+
89
+ .test-radius {
90
+ border-radius: 10px;
91
+ }
92
+
93
+ .tool {
94
+ position: absolute;
95
+ top: 1rem;
96
+ z-index: 10;
97
+ color: $primary;
98
+ cursor: pointer;
99
+
100
+ &-show--tools {
101
+ right: 1.5rem;
102
+ }
103
+
104
+ &-close {
105
+ position: absolute;
106
+ width: 104.93px;
107
+ height: 28px;
108
+ right: 1.5rem;
109
+ display: flex;
110
+ justify-content: center;
111
+ align-items: center;
112
+
113
+ font-weight: 600;
114
+ background: rgba(0, 0, 0, 0.2);
115
+ border-radius: 17.5px;
116
+ color: #fff;
117
+ }
118
+ }
119
+
120
+ .user-pdf {
121
+ background-color: #fff;
122
+ img {
123
+ width: 100%;
124
+ height: 150px;
125
+ object-fit: cover;
126
+ }
127
+
128
+ .no-cover-photo {
129
+ background: $primary;
130
+ width: 100%;
131
+ height: 150px;
132
+ }
133
+ }
134
+ </style>
@@ -1,72 +1,72 @@
1
- <template>
2
- <base-header class="app-header" :type="'white'">
3
- <div class="row justify-content-center">
4
- <div class="col-6 my-auto">
5
- <h2 class="font-weight-bold display-3">{{name}}</h2>
6
- <span id="credits-amount" v-if="subheader">
7
- {{ subheader }} Créditos
8
- </span>
9
- </div>
10
-
11
- <div class="col-6 d-flex justify-content-end align-items-center">
12
- <el-tooltip v-for="(item, index) in icons" :key="index"
13
- v-show="!item.disabled"
14
- class="item" effect="dark" :content="item.title" placement="top">
15
- <base-button size="md" type="link" class="text-primary px-2 w-auto"
16
- @click="$emit(item.event, item)">
17
- <font-awesome-icon :icon="item.icon" class="mr-2" />
18
- </base-button>
19
- </el-tooltip>
20
-
21
- <slot name="buttons"></slot>
22
- </div>
23
-
24
- <slot/>
25
- </div>
26
- </base-header>
27
- </template>
28
- <script>
29
- export default {
30
- data(){
31
- return{
32
- default: ''
33
- };
34
- },
35
- props:{
36
- icons:{
37
- type: Array,
38
- default: () =>[{ event: 'view', icon: ['fas', 'eye'], disabled: false, title: 'Visualizar' }, { event: 'config', icon: ['fas', 'cog'], disabled: false, title: 'Editar' } ]
39
- },
40
- name: {
41
- type: String,
42
- default: 'Teste de matematica'
43
- },
44
- subheader: {
45
- type: Number,
46
- default: null
47
- }
48
- },
49
- };
50
- </script>
51
- <style lang="scss" scoped>
52
- #credits-amount {
53
- min-width: 8em;
54
- margin: 1rem 1rem 1rem 0;
55
- padding: 0.25em 1em;
56
- font-size: 0.85rem;
57
- line-height: 1.4em;
58
- border-radius: 23rem;
59
- font-weight: 400;
60
- text-align: center;
61
- background-color: rgba(29, 161, 241, 0.1);
62
- color: #1da1f1;
63
- }
64
- </style>
65
- <style lang="scss">
66
-
67
- .app-header {
68
- width: 100%;
69
- padding-top: 1.25rem;
70
- box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
71
- }
72
- </style>
1
+ <template>
2
+ <base-header class="app-header" :type="'white'">
3
+ <div class="row justify-content-center">
4
+ <div class="col-6 my-auto">
5
+ <h2 class="font-weight-bold display-3">{{name}}</h2>
6
+ <span id="credits-amount" v-if="subheader">
7
+ {{ subheader }} Créditos
8
+ </span>
9
+ </div>
10
+
11
+ <div class="col-6 d-flex justify-content-end align-items-center">
12
+ <el-tooltip v-for="(item, index) in icons" :key="index"
13
+ v-show="!item.disabled"
14
+ class="item" effect="dark" :content="item.title" placement="top">
15
+ <base-button size="md" type="link" class="text-primary px-2 w-auto"
16
+ @click="$emit(item.event, item)">
17
+ <font-awesome-icon :icon="item.icon" class="mr-2" />
18
+ </base-button>
19
+ </el-tooltip>
20
+
21
+ <slot name="buttons"></slot>
22
+ </div>
23
+
24
+ <slot/>
25
+ </div>
26
+ </base-header>
27
+ </template>
28
+ <script>
29
+ export default {
30
+ data(){
31
+ return{
32
+ default: ''
33
+ };
34
+ },
35
+ props:{
36
+ icons:{
37
+ type: Array,
38
+ default: () =>[{ event: 'view', icon: ['fas', 'eye'], disabled: false, title: 'Visualizar' }, { event: 'config', icon: ['fas', 'cog'], disabled: false, title: 'Editar' } ]
39
+ },
40
+ name: {
41
+ type: String,
42
+ default: 'Teste de matematica'
43
+ },
44
+ subheader: {
45
+ type: Number,
46
+ default: null
47
+ }
48
+ },
49
+ };
50
+ </script>
51
+ <style lang="scss" scoped>
52
+ #credits-amount {
53
+ min-width: 8em;
54
+ margin: 1rem 1rem 1rem 0;
55
+ padding: 0.25em 1em;
56
+ font-size: 0.85rem;
57
+ line-height: 1.4em;
58
+ border-radius: 23rem;
59
+ font-weight: 400;
60
+ text-align: center;
61
+ background-color: rgba(29, 161, 241, 0.1);
62
+ color: #1da1f1;
63
+ }
64
+ </style>
65
+ <style lang="scss">
66
+
67
+ .app-header {
68
+ width: 100%;
69
+ padding-top: 1.25rem;
70
+ box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
71
+ }
72
+ </style>
@@ -1,61 +1,61 @@
1
- <template>
2
- <client-only>
3
- <text-editor
4
- ref="editor"
5
- v-model="value"
6
- :config="editorConfig"
7
- />
8
- </client-only>
9
- </template>
10
-
11
- <script>
12
- export default {
13
- name: 'html-editor',
14
- components: {
15
- 'text-editor': () => { if (process.client) { return import('@blowstack/ckeditor-nuxt') } }
16
- },
17
- props: {
18
- value: {
19
- type: String,
20
- default: ''
21
- }
22
- },
23
- mounted() {
24
- import('@ckeditor/ckeditor5-build-classic/build/translations/pt-br')
25
- },
26
- data() {
27
- return {
28
- editorConfig: {
29
- language: 'pt-br',
30
- removePlugins: [
31
- 'Title',
32
- 'FontBackgroundColor',
33
- 'FontColor',
34
- 'FontFamily',
35
- 'FontSize',
36
- 'Subscript',
37
- 'Superscript',
38
- 'BlockQuote',
39
- 'PageBreak'
40
- ]
41
- }
42
- }
43
- },
44
- watch: {
45
- value() {
46
- this.$emit("input", this.value)
47
- }
48
- }
49
- };
50
- </script>
51
-
52
- <style lang="scss">
53
- .ck-editor {
54
- margin-bottom: 20px!important;
55
- }
56
- .ck-content {
57
- min-height: 200px;
58
- max-height: 500px;
59
- overflow-y: auto;
60
- }
61
- </style>
1
+ <template>
2
+ <client-only>
3
+ <text-editor
4
+ ref="editor"
5
+ v-model="value"
6
+ :config="editorConfig"
7
+ />
8
+ </client-only>
9
+ </template>
10
+
11
+ <script>
12
+ export default {
13
+ name: 'html-editor',
14
+ components: {
15
+ 'text-editor': () => { if (process.client) { return import('@blowstack/ckeditor-nuxt') } }
16
+ },
17
+ props: {
18
+ value: {
19
+ type: String,
20
+ default: ''
21
+ }
22
+ },
23
+ mounted() {
24
+ import('@ckeditor/ckeditor5-build-classic/build/translations/pt-br')
25
+ },
26
+ data() {
27
+ return {
28
+ editorConfig: {
29
+ language: 'pt-br',
30
+ removePlugins: [
31
+ 'Title',
32
+ 'FontBackgroundColor',
33
+ 'FontColor',
34
+ 'FontFamily',
35
+ 'FontSize',
36
+ 'Subscript',
37
+ 'Superscript',
38
+ 'BlockQuote',
39
+ 'PageBreak'
40
+ ]
41
+ }
42
+ }
43
+ },
44
+ watch: {
45
+ value() {
46
+ this.$emit("input", this.value)
47
+ }
48
+ }
49
+ };
50
+ </script>
51
+
52
+ <style lang="scss">
53
+ .ck-editor {
54
+ margin-bottom: 20px!important;
55
+ }
56
+ .ck-content {
57
+ min-height: 200px;
58
+ max-height: 500px;
59
+ overflow-y: auto;
60
+ }
61
+ </style>
@@ -13,7 +13,7 @@
13
13
  </header>
14
14
  <content class="products--info__content">
15
15
  <div class="product__content">
16
- <p class="product__content--title">Soluções</p>
16
+ <p class="product__content--title">Produtos</p>
17
17
  <ul class="product__content--list">
18
18
  <li>Busca Avançada</li>
19
19
  <li>Recrutamento</li>
@@ -28,31 +28,32 @@
28
28
  </ul>
29
29
  </div>
30
30
  <div class="product__content">
31
- <p class="product__content--title">Segurança</p>
31
+ <p class="product__content--title">A Empresa</p>
32
32
  <ul class="product__content--list">
33
- <li>Busca Avançada</li>
34
- <li>Recrutamento</li>
35
- <li>Busca por Universidades</li>
36
- <li>Vídeo Entrevista</li>
33
+ <li>Burh Empresas</li>
34
+ <li>Divulgar Vagas</li>
35
+ <li>Encontre Novas Oportunidades</li>
36
+ <li>Propósito</li>
37
+ <li>Blog</li>
38
+ <li>Trabalhe Conosco</li>
37
39
  </ul>
38
- <p class="product__content--title">Planos e Preços</p>
40
+ <!-- <p class="product__content--title">Planos e Preços</p>
39
41
  <ul class="product__content--list">
40
42
  <li>Busca Avançada</li>
41
43
  <li>Recrutamento</li>
42
44
  <li>Busca por Universidades</li>
43
45
  <li>Vídeo Entrevista</li>
44
- </ul>
46
+ </ul> -->
45
47
  </div>
46
48
  <div class="product__content">
47
- <p class="product__content--title">Recursos</p>
49
+ <p class="product__content--title">Ajuda</p>
48
50
  <ul class="product__content--list">
49
- <li>Busca Avançada</li>
50
- <li>Recrutamento</li>
51
- <li>Busca por Universidades</li>
52
- <li>Vídeo Entrevista</li>
51
+ <li>Central de Ajuda</li>
52
+ <li>Perguntas Frequentes</li>
53
+ <li>Avalie sua Experiência</li>
53
54
  </ul>
54
55
  </div>
55
- <div class="product__content">
56
+ <!-- <div class="product__content">
56
57
  <p class="product__content--title">Página de Carreiras</p>
57
58
  <ul class="product__content--list">
58
59
  <li>Busca Avançada</li>
@@ -66,21 +67,14 @@
66
67
  <li>Buffer</li>
67
68
  <li>Envio de SMS</li>
68
69
  </ul>
69
- </div>
70
+ </div> -->
70
71
  <div class="product__content">
71
- <p class="product__content--title">Suporte</p>
72
+ <p class="product__content--title">Burh</p>
72
73
  <ul class="product__content--list">
73
- <li>Busca Avançada</li>
74
- <li>Recrutamento</li>
75
- <li>Busca por Universidades</li>
76
- <li>Vídeo Entrevista</li>
77
- </ul>
78
- <p class="product__content--title">Mais sobre o Burh</p>
79
- <ul class="product__content--list">
80
- <li>Busca Avançada</li>
81
- <li>Recrutamento</li>
82
- <li>Busca por Universidades</li>
83
- <li>Vídeo Entrevista</li>
74
+ <li>Burh Serviços de Informação na Internet LTDA. CNPJ 26.356.119/0001-95</li>
75
+ <li>ola@burh.com.br</li>
76
+ <li>(11) 4003-4341</li>
77
+ <li>Av. Juscelino Kubitschek de Oliveira, 660, 12º andar, Vila Marina Dias, Sorocaba/SP</li>
84
78
  </ul>
85
79
  </div>
86
80
  </content>
@@ -146,7 +140,7 @@ $primaryColor: #1da1f1;
146
140
  }
147
141
  &__content {
148
142
  display: grid;
149
- grid-template-columns: repeat(5, 1fr);
143
+ grid-template-columns: repeat(4, 1fr);
150
144
  gap: 20px;
151
145
  align-items: flex-start;
152
146
  @media (max-width: 1200px) {
@@ -183,18 +177,19 @@ $primaryColor: #1da1f1;
183
177
  margin-top: 25px;
184
178
  li {
185
179
  margin: 10px 0;
186
- font-size: 0.75rem;
180
+ font-size: 0.875rem;
187
181
  }
188
182
  }
189
183
  }
190
184
  }
191
185
  &__footer {
192
- margin-top: 80px;
186
+ margin-top: 20px;
193
187
  border-top: 1px solid #eee;
194
188
  padding: 30px 0;
195
189
  display: flex;
196
190
  align-items: center;
197
191
  justify-content: space-between;
192
+ font-size: 0.875rem;
198
193
  @media (max-width: 960px) {
199
194
  & {
200
195
  flex-direction: column;
@@ -208,6 +203,7 @@ $primaryColor: #1da1f1;
208
203
  display: flex;
209
204
  align-items: center;
210
205
  justify-content: flex-start;
206
+ font-size: 0.875rem;
211
207
  .burh__logo {
212
208
  width: 120px;
213
209
  img {