@burh/nuxt-core 1.0.291 → 1.0.292

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.
Files changed (31) hide show
  1. package/assets/sass/burh-ds/atoms/_buttons.scss +219 -219
  2. package/assets/sass/burh-ds/content/_interface-spa.scss +306 -306
  3. package/assets/sass/burh-ds/content/_main-content.scss +25 -25
  4. package/assets/sass/burh-ds/variables/_colors.scss +350 -350
  5. package/components/argon-core/BaseDropdown.vue +114 -114
  6. package/components/argon-core/BaseProgress.vue +121 -121
  7. package/components/argon-core/Modal.vue +184 -184
  8. package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
  9. package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
  10. package/components/burh-ds/Cards/RecruitmentCard.vue +214 -214
  11. package/components/burh-ds/Collapse/DefaultCollapse.vue +70 -70
  12. package/components/burh-ds/Curriculum/UserCurriculum/UserCvMiddle.vue +497 -496
  13. package/components/burh-ds/Curriculum/UserCurriculum/index.vue +245 -245
  14. package/components/burh-ds/Dropdown/JobStatusDropdown.vue +145 -145
  15. package/components/burh-ds/Headings/AppHeader.vue +162 -162
  16. package/components/burh-ds/Inputs/SearchInput.vue +64 -64
  17. package/components/burh-ds/Lists/VagasSimple.vue +404 -404
  18. package/components/burh-ds/Loadings/LoadingFullPage.vue +68 -68
  19. package/components/burh-ds/Loads/LoadingBar.vue +83 -83
  20. package/components/burh-ds/Modals/MobileModal.vue +65 -65
  21. package/components/burh-ds/Modals/NewUserModal.vue +87 -87
  22. package/components/burh-ds/Modals/SharedModal.vue +270 -270
  23. package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
  24. package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
  25. package/components/burh-ds/Skeleton/Cards.vue +86 -86
  26. package/components/burh-ds/Skeleton/Home.vue +100 -100
  27. package/components/burh-ds/Skeleton/RecruitmentCard.vue +169 -169
  28. package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
  29. package/components/layouts/burh-ds/footer/ProductsFooter.vue +330 -330
  30. package/nuxt.config.js +206 -206
  31. package/package.json +1 -1
@@ -1,270 +1,270 @@
1
- <template>
2
- <el-dialog
3
- :visible.sync="isActive"
4
- width="54%"
5
- custom-class="position-relative"
6
- @close="$emit('close')"
7
- >
8
- <template>
9
- <h2 class="display-4 mt-5 ml-5">Compartilhar</h2>
10
- <div class="d-flex justify-content-center align-items-center">
11
- <ul class="col-12 list-inline mb-4 mt-3 ml-5">
12
- <li
13
- class="p list-inline-item ml-2 cursor-pointer"
14
- @click="$emit('whatsapp-modal')"
15
- >
16
- <base-button
17
- icon
18
- type="whatsapp"
19
- class="btn--rounded mr-2"
20
- >
21
- <span class="btn-inner--icon"
22
- ><i class="fab fa-whatsapp"></i
23
- ></span>
24
- </base-button>
25
- <span class="btn-inner--text">Whatsapp</span>
26
- </li>
27
- <a
28
- v-if="slug"
29
- :href="`https://www.facebook.com/sharer/sharer.php?u=${baseUrl}/${slug}`"
30
- target="_blank"
31
- rel="noopener noreferrer"
32
- class="social social-link"
33
- >
34
- <li class="p list-inline-item ml-2 cursor-pointer">
35
- <base-button
36
- icon
37
- class="btn-facebook btn--rounded mr-2"
38
- >
39
- <span class="btn-inner--icon"
40
- ><i class="fab fa-facebook-f"></i
41
- ></span>
42
- </base-button>
43
- <span class="btn-inner--text">Facebook</span>
44
- </li>
45
- </a>
46
- <a
47
- v-if="slug"
48
- :href="`https://twitter.com/intent/tweet?text=${baseUrl}/${slug}`"
49
- target="_blank"
50
- rel="noopener noreferrer"
51
- class="social social-link"
52
- >
53
- <li class="p list-inline-item ml-2 cursor-pointer">
54
- <base-button
55
- icon
56
- class="btn-twitter btn--rounded mr-2"
57
- >
58
- <span class="btn-inner--icon"
59
- ><i class="fab fa-twitter"></i
60
- ></span>
61
- </base-button>
62
- <span class="btn-inner--text">Twitter</span>
63
- </li>
64
- </a>
65
- <a
66
- v-if="slug"
67
- :href="`https://www.linkedin.com/sharing/share-offsite/?url=${baseUrl}/${slug}`"
68
- target="_blank"
69
- rel="noopener noreferrer"
70
- class="social social-link"
71
- >
72
- <li class="p list-inline-item ml-2 cursor-pointer">
73
- <base-button
74
- icon
75
- class="btn-linkedin btn--rounded mr-2"
76
- >
77
- <span class="btn-inner--icon"
78
- ><i class="fab fa-linkedin-in"></i
79
- ></span>
80
- </base-button>
81
- <span class="btn-inner--text">Linkedin</span>
82
- </li>
83
- </a>
84
- </ul>
85
- </div>
86
-
87
- <div class="row">
88
- <div class="col-6" @click="copyToClipboard">
89
- <label class="ml-5 social social-label" for="linkShareModal"
90
- >Link compartilhável</label
91
- >
92
- <input
93
- v-if="slug"
94
- id="linkShareModal"
95
- :value="`${baseUrl}/${slug}`"
96
- type="text"
97
- class="ml-5 form-control social social-input"
98
- readonly
99
- />
100
- </div>
101
-
102
- <div class="col-6 text-center pt-1">
103
- <base-button
104
- size="sm"
105
- type="outline-primary"
106
- class="mt-4 ml-3"
107
- @click="$emit('close-modal')"
108
- >
109
- Voltar
110
- </base-button>
111
-
112
- <base-button
113
- id="btnCopyLinkShare"
114
- size="sm"
115
- type="outline-primary"
116
- class="mt-4"
117
- @click="copyToClipboard"
118
- >
119
- Copiar
120
- </base-button>
121
- </div>
122
- </div>
123
-
124
- <span class="tool tool-close" @click="$emit('close-modal')">
125
- Fechar
126
- <font-awesome-icon
127
- :icon="['fas', 'times']"
128
- class="text-white ml-1"
129
- />
130
- </span>
131
- </template>
132
- </el-dialog>
133
- </template>
134
-
135
- <script>
136
- import { Dialog } from 'element-ui';
137
-
138
- export default {
139
- name: 'shared-modal',
140
- components: {
141
- [Dialog.name]: Dialog
142
- },
143
- props: {
144
- isActive: Boolean,
145
- userData: Object,
146
- baseUrl: String
147
- },
148
- data() {
149
- return {
150
- slug: null
151
- };
152
- },
153
- methods: {
154
- copyToClipboard() {
155
- let text = document.getElementById('linkShareModal');
156
- let btnCopy = document.getElementById('btnCopyLinkShare');
157
- text.select();
158
- document.execCommand('copy');
159
-
160
- btnCopy.innerText = 'Copiado';
161
- btnCopy.classList.remove('btn-outline-primary');
162
- btnCopy.classList.add('btn-primary');
163
-
164
- setTimeout(() => {
165
- btnCopy.innerText = 'Copiar';
166
- btnCopy.classList.remove('btn-primary');
167
- btnCopy.classList.add('btn-outline-primary');
168
- }, 3000);
169
- }
170
- },
171
- watch: {
172
- isActive(newValue) {
173
- !newValue && this.$emit('close-modal');
174
- },
175
- userData(userData) {
176
- if (userData.slug) {
177
- this.slug = userData.slug.slug || null;
178
- }
179
- }
180
- }
181
- };
182
- </script>
183
-
184
- <style lang="scss" scoped>
185
- @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
186
-
187
- /deep/ .el-dialog__body {
188
- padding: 0;
189
- }
190
-
191
- /deep/ .el-dialog__header {
192
- display: none;
193
- }
194
-
195
- /deep/ .el-dialog {
196
- overflow: hidden;
197
- border-radius: 10px;
198
- padding-bottom: 50px;
199
- max-width: 725px;
200
- min-width: 725px;
201
- }
202
-
203
- .social {
204
- &-label {
205
- color: #8898aa;
206
- text-transform: uppercase;
207
- }
208
-
209
- &-input {
210
- /* width: 300px; */
211
- border: none;
212
- border-radius: 5px;
213
- background: #e9ecef;
214
- color: #32325d;
215
- padding-left: 15px;
216
- outline: 0;
217
- cursor: pointer;
218
- }
219
-
220
- &-link {
221
- color: #606266;
222
- }
223
- }
224
-
225
- .tool {
226
- position: absolute;
227
- top: 1rem;
228
- z-index: 10;
229
- color: $primary;
230
- cursor: pointer;
231
-
232
- &-close {
233
- position: absolute;
234
- width: 88px;
235
- height: 27px;
236
- right: 7px;
237
- top: 7px;
238
- display: flex;
239
- justify-content: center;
240
- align-items: center;
241
-
242
- font-size: 11px;
243
-
244
- font-weight: 500;
245
- background: rgba(0, 0, 0, 0.2);
246
- border-radius: 17.5px;
247
- color: #fff;
248
- }
249
- }
250
-
251
- .btn-whatsapp:hover {
252
- color: white;
253
- }
254
-
255
- .btn-email {
256
- color: white;
257
- background-color: $primary !important;
258
- border-color: $primary !important;
259
- }
260
-
261
- .btn--rounded {
262
- font-size: 1.5rem;
263
- margin: 0;
264
- padding: 0;
265
- line-height: 0;
266
- min-width: 0;
267
- width: 3rem;
268
- height: 3rem;
269
- }
270
- </style>
1
+ <template>
2
+ <el-dialog
3
+ :visible.sync="isActive"
4
+ width="54%"
5
+ custom-class="position-relative"
6
+ @close="$emit('close')"
7
+ >
8
+ <template>
9
+ <h2 class="display-4 mt-5 ml-5">Compartilhar</h2>
10
+ <div class="d-flex justify-content-center align-items-center">
11
+ <ul class="col-12 list-inline mb-4 mt-3 ml-5">
12
+ <li
13
+ class="p list-inline-item ml-2 cursor-pointer"
14
+ @click="$emit('whatsapp-modal')"
15
+ >
16
+ <base-button
17
+ icon
18
+ type="whatsapp"
19
+ class="btn--rounded mr-2"
20
+ >
21
+ <span class="btn-inner--icon"
22
+ ><i class="fab fa-whatsapp"></i
23
+ ></span>
24
+ </base-button>
25
+ <span class="btn-inner--text">Whatsapp</span>
26
+ </li>
27
+ <a
28
+ v-if="slug"
29
+ :href="`https://www.facebook.com/sharer/sharer.php?u=${baseUrl}/${slug}`"
30
+ target="_blank"
31
+ rel="noopener noreferrer"
32
+ class="social social-link"
33
+ >
34
+ <li class="p list-inline-item ml-2 cursor-pointer">
35
+ <base-button
36
+ icon
37
+ class="btn-facebook btn--rounded mr-2"
38
+ >
39
+ <span class="btn-inner--icon"
40
+ ><i class="fab fa-facebook-f"></i
41
+ ></span>
42
+ </base-button>
43
+ <span class="btn-inner--text">Facebook</span>
44
+ </li>
45
+ </a>
46
+ <a
47
+ v-if="slug"
48
+ :href="`https://twitter.com/intent/tweet?text=${baseUrl}/${slug}`"
49
+ target="_blank"
50
+ rel="noopener noreferrer"
51
+ class="social social-link"
52
+ >
53
+ <li class="p list-inline-item ml-2 cursor-pointer">
54
+ <base-button
55
+ icon
56
+ class="btn-twitter btn--rounded mr-2"
57
+ >
58
+ <span class="btn-inner--icon"
59
+ ><i class="fab fa-twitter"></i
60
+ ></span>
61
+ </base-button>
62
+ <span class="btn-inner--text">Twitter</span>
63
+ </li>
64
+ </a>
65
+ <a
66
+ v-if="slug"
67
+ :href="`https://www.linkedin.com/sharing/share-offsite/?url=${baseUrl}/${slug}`"
68
+ target="_blank"
69
+ rel="noopener noreferrer"
70
+ class="social social-link"
71
+ >
72
+ <li class="p list-inline-item ml-2 cursor-pointer">
73
+ <base-button
74
+ icon
75
+ class="btn-linkedin btn--rounded mr-2"
76
+ >
77
+ <span class="btn-inner--icon"
78
+ ><i class="fab fa-linkedin-in"></i
79
+ ></span>
80
+ </base-button>
81
+ <span class="btn-inner--text">Linkedin</span>
82
+ </li>
83
+ </a>
84
+ </ul>
85
+ </div>
86
+
87
+ <div class="row">
88
+ <div class="col-6" @click="copyToClipboard">
89
+ <label class="ml-5 social social-label" for="linkShareModal"
90
+ >Link compartilhável</label
91
+ >
92
+ <input
93
+ v-if="slug"
94
+ id="linkShareModal"
95
+ :value="`${baseUrl}/${slug}`"
96
+ type="text"
97
+ class="ml-5 form-control social social-input"
98
+ readonly
99
+ />
100
+ </div>
101
+
102
+ <div class="col-6 text-center pt-1">
103
+ <base-button
104
+ size="sm"
105
+ type="outline-primary"
106
+ class="mt-4 ml-3"
107
+ @click="$emit('close-modal')"
108
+ >
109
+ Voltar
110
+ </base-button>
111
+
112
+ <base-button
113
+ id="btnCopyLinkShare"
114
+ size="sm"
115
+ type="outline-primary"
116
+ class="mt-4"
117
+ @click="copyToClipboard"
118
+ >
119
+ Copiar
120
+ </base-button>
121
+ </div>
122
+ </div>
123
+
124
+ <span class="tool tool-close" @click="$emit('close-modal')">
125
+ Fechar
126
+ <font-awesome-icon
127
+ :icon="['fas', 'times']"
128
+ class="text-white ml-1"
129
+ />
130
+ </span>
131
+ </template>
132
+ </el-dialog>
133
+ </template>
134
+
135
+ <script>
136
+ import { Dialog } from 'element-ui';
137
+
138
+ export default {
139
+ name: 'shared-modal',
140
+ components: {
141
+ [Dialog.name]: Dialog
142
+ },
143
+ props: {
144
+ isActive: Boolean,
145
+ userData: Object,
146
+ baseUrl: String
147
+ },
148
+ data() {
149
+ return {
150
+ slug: null
151
+ };
152
+ },
153
+ methods: {
154
+ copyToClipboard() {
155
+ let text = document.getElementById('linkShareModal');
156
+ let btnCopy = document.getElementById('btnCopyLinkShare');
157
+ text.select();
158
+ document.execCommand('copy');
159
+
160
+ btnCopy.innerText = 'Copiado';
161
+ btnCopy.classList.remove('btn-outline-primary');
162
+ btnCopy.classList.add('btn-primary');
163
+
164
+ setTimeout(() => {
165
+ btnCopy.innerText = 'Copiar';
166
+ btnCopy.classList.remove('btn-primary');
167
+ btnCopy.classList.add('btn-outline-primary');
168
+ }, 3000);
169
+ }
170
+ },
171
+ watch: {
172
+ isActive(newValue) {
173
+ !newValue && this.$emit('close-modal');
174
+ },
175
+ userData(userData) {
176
+ if (userData.slug) {
177
+ this.slug = userData.slug.slug || null;
178
+ }
179
+ }
180
+ }
181
+ };
182
+ </script>
183
+
184
+ <style lang="scss" scoped>
185
+ @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
186
+
187
+ /deep/ .el-dialog__body {
188
+ padding: 0;
189
+ }
190
+
191
+ /deep/ .el-dialog__header {
192
+ display: none;
193
+ }
194
+
195
+ /deep/ .el-dialog {
196
+ overflow: hidden;
197
+ border-radius: 10px;
198
+ padding-bottom: 50px;
199
+ max-width: 725px;
200
+ min-width: 725px;
201
+ }
202
+
203
+ .social {
204
+ &-label {
205
+ color: #8898aa;
206
+ text-transform: uppercase;
207
+ }
208
+
209
+ &-input {
210
+ /* width: 300px; */
211
+ border: none;
212
+ border-radius: 5px;
213
+ background: #e9ecef;
214
+ color: #32325d;
215
+ padding-left: 15px;
216
+ outline: 0;
217
+ cursor: pointer;
218
+ }
219
+
220
+ &-link {
221
+ color: #606266;
222
+ }
223
+ }
224
+
225
+ .tool {
226
+ position: absolute;
227
+ top: 1rem;
228
+ z-index: 10;
229
+ color: $primary;
230
+ cursor: pointer;
231
+
232
+ &-close {
233
+ position: absolute;
234
+ width: 88px;
235
+ height: 27px;
236
+ right: 7px;
237
+ top: 7px;
238
+ display: flex;
239
+ justify-content: center;
240
+ align-items: center;
241
+
242
+ font-size: 11px;
243
+
244
+ font-weight: 500;
245
+ background: rgba(0, 0, 0, 0.2);
246
+ border-radius: 17.5px;
247
+ color: #fff;
248
+ }
249
+ }
250
+
251
+ .btn-whatsapp:hover {
252
+ color: white;
253
+ }
254
+
255
+ .btn-email {
256
+ color: white;
257
+ background-color: $primary !important;
258
+ border-color: $primary !important;
259
+ }
260
+
261
+ .btn--rounded {
262
+ font-size: 1.5rem;
263
+ margin: 0;
264
+ padding: 0;
265
+ line-height: 0;
266
+ min-width: 0;
267
+ width: 3rem;
268
+ height: 3rem;
269
+ }
270
+ </style>