@burh/nuxt-core 1.0.340 → 1.0.341

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 (28) hide show
  1. package/assets/sass/burh-ds/_global.scss +323 -323
  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/components/argon-core/BaseDropdown.vue +114 -114
  5. package/components/argon-core/LoadingPanel.vue +26 -26
  6. package/components/argon-core/Modal.vue +183 -183
  7. package/components/burh-ds/Cards/BaseCard.vue +190 -188
  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 +229 -229
  11. package/components/burh-ds/Curriculum/UserCurriculum/index.vue +245 -245
  12. package/components/burh-ds/Dropdown/JobStatusDropdown.vue +153 -146
  13. package/components/burh-ds/Filters/FilterWithDropdown.vue +228 -169
  14. package/components/burh-ds/Inputs/SearchInput.vue +64 -64
  15. package/components/burh-ds/Modals/NewUserModal.vue +87 -87
  16. package/components/burh-ds/Modals/SharedModal.vue +270 -270
  17. package/components/burh-ds/Modals/UniversityAccessModal.vue +134 -134
  18. package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
  19. package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
  20. package/components/burh-ds/Skeleton/BaseCourseInfo.vue +71 -71
  21. package/components/burh-ds/Skeleton/Cards.vue +86 -86
  22. package/components/burh-ds/Skeleton/Home.vue +100 -100
  23. package/components/burh-ds/Skeleton/RecruitmentCard.vue +169 -169
  24. package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
  25. package/environment.js +221 -221
  26. package/nuxt.config.js +207 -207
  27. package/package.json +1 -1
  28. package/plugins/vClickOutside.js +4 -4
@@ -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>