@burh/nuxt-core 1.0.410 → 1.0.411

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 (38) hide show
  1. package/assets/images/icons/icon5.svg +3 -3
  2. package/assets/images/icons/icon6.svg +3 -3
  3. package/assets/sass/burh-ds/_global.scss +324 -324
  4. package/assets/sass/burh-ds/atoms/_forms.scss +21 -19
  5. package/assets/sass/burh-ds/content/_interface-spa.scss +306 -306
  6. package/assets/sass/burh-ds/content/_main-content.scss +25 -25
  7. package/components/argon-core/BaseDropdown.vue +114 -114
  8. package/components/argon-core/LoadingPanel.vue +26 -26
  9. package/components/burh-ds/Cards/BaseCard.vue +194 -194
  10. package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
  11. package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
  12. package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSide.vue +874 -859
  13. package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSideNotAuth.vue +379 -379
  14. package/components/burh-ds/Filters/BaseFilterContainer.vue +91 -91
  15. package/components/burh-ds/Headings/AppHeader.vue +222 -222
  16. package/components/burh-ds/Modals/AddCustomerModal.vue +5 -46
  17. package/components/burh-ds/Modals/AddMember.vue +5 -48
  18. package/components/burh-ds/Modals/AddRoleModal.vue +4 -47
  19. package/components/burh-ds/Modals/AppConfigModal.vue +326 -326
  20. package/components/burh-ds/Modals/NewUserModal.vue +87 -87
  21. package/components/burh-ds/Modals/PlanModal.vue +133 -172
  22. package/components/burh-ds/Modals/RequestModal.vue +206 -247
  23. package/components/burh-ds/Modals/SendTest.vue +7 -43
  24. package/components/burh-ds/Modals/SharedModal.vue +7 -50
  25. package/components/burh-ds/Modals/UniversalShareModal.vue +7 -50
  26. package/components/burh-ds/Modals/UniversalWhatsappModal.vue +5 -53
  27. package/components/burh-ds/Modals/WhatsappModal.vue +79 -127
  28. package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
  29. package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
  30. package/components/burh-ds/Skeleton/BaseCourseInfo.vue +71 -71
  31. package/components/burh-ds/Skeleton/Cards.vue +86 -86
  32. package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
  33. package/components/burh-ds/Tabs/TesteTab.vue +108 -108
  34. package/components/layouts/burh-ds/navbar/PublicNavbar.vue +168 -168
  35. package/environment.js +221 -221
  36. package/nuxt.config.js +207 -207
  37. package/package.json +1 -1
  38. package/plugins/vClickOutside.js +4 -4
@@ -1,8 +1,7 @@
1
1
  <template>
2
- <el-dialog
3
- :visible.sync="isActive"
4
- width="54%"
5
- custom-class="position-relative"
2
+ <modal
3
+ :show.sync="isActive"
4
+ :size="'lg'"
6
5
  @close="$emit('close')"
7
6
  >
8
7
  <template>
@@ -121,17 +120,13 @@
121
120
  />
122
121
  </span>
123
122
  </template>
124
- </el-dialog>
123
+ </modal>
125
124
  </template>
126
125
 
127
126
  <script>
128
- import { Dialog } from 'element-ui';
129
-
130
127
  export default {
131
128
  name: 'shared-modal',
132
- components: {
133
- [Dialog.name]: Dialog
134
- },
129
+ components: {},
135
130
  props: {
136
131
  isActive: Boolean,
137
132
  shareUrl: String,
@@ -176,20 +171,8 @@ export default {
176
171
  <style lang="scss" scoped>
177
172
  @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
178
173
 
179
- /deep/ .el-dialog__body {
180
- padding: 0;
181
- }
182
-
183
- /deep/ .el-dialog__header {
184
- display: none;
185
- }
186
-
187
- /deep/ .el-dialog {
188
- overflow: hidden;
189
- border-radius: 10px;
190
- padding-bottom: 50px;
191
- max-width: 725px;
192
- min-width: 725px;
174
+ /deep/ .modal-body {
175
+ margin-bottom: 2rem;
193
176
  }
194
177
 
195
178
  .social {
@@ -214,32 +197,6 @@ export default {
214
197
  }
215
198
  }
216
199
 
217
- .tool {
218
- position: absolute;
219
- top: 1rem;
220
- z-index: 10;
221
- color: $primary;
222
- cursor: pointer;
223
-
224
- &-close {
225
- position: absolute;
226
- width: 88px;
227
- height: 27px;
228
- right: 7px;
229
- top: 7px;
230
- display: flex;
231
- justify-content: center;
232
- align-items: center;
233
-
234
- font-size: 11px;
235
-
236
- font-weight: 500;
237
- background: rgba(0, 0, 0, 0.2);
238
- border-radius: 17.5px;
239
- color: #fff;
240
- }
241
- }
242
-
243
200
  .btn-whatsapp:hover {
244
201
  color: white;
245
202
  }
@@ -1,8 +1,7 @@
1
1
  <template>
2
- <el-dialog
3
- :visible.sync="isActive"
4
- width="54%"
5
- custom-class="position-relative"
2
+ <modal
3
+ :show.sync="isActive"
4
+ :size="'lg'"
6
5
  @close="$emit('close')"
7
6
  >
8
7
  <template>
@@ -50,17 +49,13 @@
50
49
  />
51
50
  </span>
52
51
  </template>
53
- </el-dialog>
52
+ </modal>
54
53
  </template>
55
54
 
56
55
  <script>
57
- import { Dialog } from 'element-ui';
58
-
59
56
  export default {
60
57
  name: 'whatsapp-modal',
61
- components: {
62
- [Dialog.name]: Dialog
63
- },
58
+ components: {},
64
59
  data() {
65
60
  return {
66
61
  phoneNumber: ''
@@ -98,47 +93,4 @@ export default {
98
93
  </script>
99
94
 
100
95
  <style lang="scss" scoped>
101
- @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
102
-
103
- /deep/ .el-dialog__body {
104
- padding: 0;
105
- }
106
-
107
- /deep/ .el-dialog__header {
108
- display: none;
109
- }
110
-
111
- /deep/ .el-dialog {
112
- overflow: hidden;
113
- border-radius: 10px;
114
- padding-bottom: 50px;
115
- max-width: 725px;
116
- min-width: 725px;
117
- }
118
-
119
- .tool {
120
- position: absolute;
121
- top: 1rem;
122
- z-index: 10;
123
- color: $primary;
124
- cursor: pointer;
125
-
126
- &-close {
127
- position: absolute;
128
- width: 88px;
129
- height: 27px;
130
- right: 7px;
131
- top: 7px;
132
- display: flex;
133
- justify-content: center;
134
- align-items: center;
135
-
136
- font-size: 11px;
137
-
138
- font-weight: 500;
139
- background: rgba(0, 0, 0, 0.2);
140
- border-radius: 17.5px;
141
- color: #fff;
142
- }
143
- }
144
96
  </style>
@@ -1,143 +1,95 @@
1
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
- <div class="row mt-5">
10
- <!-- <base-input class="col-12" label="Email" type="text" /> -->
11
- <div class="col-12 px-3 mb-4">
12
- <p class="lead mt-0 ml-5">
13
- Insira aqui o número do telefone.
14
- </p>
15
- <base-input
16
- class="mb-1 ml-5 mr-5"
17
- v-model="phoneNumber"
18
- placeholder="Ex: (15) 3342-6237"
19
- type="text"
20
- name="NumberCellphone"
21
- >
22
- </base-input>
23
- </div>
2
+ <modal
3
+ :show.sync="isActive"
4
+ :size="'lg'"
5
+ @close="$emit('close')"
6
+ >
7
+ <template>
8
+ <div class="row mt-5">
9
+ <!-- <base-input class="col-12" label="Email" type="text" /> -->
10
+ <div class="col-12 px-3 mb-4">
11
+ <p class="lead mt-0 ml-5">
12
+ Insira aqui o número do telefone.
13
+ </p>
14
+ <base-input
15
+ class="mb-1 ml-5 mr-5"
16
+ v-model="phoneNumber"
17
+ placeholder="Ex: (15) 3342-6237"
18
+ type="text"
19
+ name="NumberCellphone"
20
+ >
21
+ </base-input>
22
+ </div>
24
23
 
25
- <div class="col-12 d-flex">
26
- <base-button
27
- size="md"
28
- outline
29
- type="primary"
30
- role="button"
31
- class="ml-5"
32
- @click="$emit('close-modal')"
33
- >voltar
34
- </base-button>
35
- <base-button
36
- size="md"
37
- type="primary"
38
- role="button"
39
- @click="sendMessage()"
40
- class="ml-auto mr-5"
41
- >Enviar
42
- </base-button>
43
- </div>
44
- </div>
24
+ <div class="col-12 d-flex">
25
+ <base-button
26
+ size="md"
27
+ outline
28
+ type="primary"
29
+ role="button"
30
+ class="ml-5"
31
+ @click="$emit('close-modal')"
32
+ >voltar
33
+ </base-button>
34
+ <base-button
35
+ size="md"
36
+ type="primary"
37
+ role="button"
38
+ @click="sendMessage()"
39
+ class="ml-auto mr-5"
40
+ >Enviar
41
+ </base-button>
42
+ </div>
43
+ </div>
45
44
 
46
- <span class="tool tool-close" @click="$emit('close-modal')">
47
- Fechar
48
- <font-awesome-icon
49
- :icon="['fas', 'times']"
50
- class="text-white ml-1"
51
- />
52
- </span>
53
- </template>
54
- </el-dialog>
45
+ <span class="tool tool-close" @click="$emit('close-modal')">
46
+ Fechar
47
+ <font-awesome-icon
48
+ :icon="['fas', 'times']"
49
+ class="text-white ml-1"
50
+ />
51
+ </span>
52
+ </template>
53
+ </modal>
55
54
  </template>
56
55
 
57
56
  <script>
58
- import { Dialog } from 'element-ui';
59
-
60
57
  export default {
61
- name: 'whatsapp-modal',
62
- components: {
63
- [Dialog.name]: Dialog
64
- },
65
- data() {
66
- return {
67
- phoneNumber: ''
68
- };
69
- },
70
- props: {
71
- isActive: Boolean,
72
- userData: Object,
73
- baseUrl: String
74
- },
75
- methods: {
76
- sendMessage() {
77
- let phoneNumber = this.phoneNumber
78
- .replace('(', '')
79
- .replace(')', '')
80
- .replace(' ', '')
81
- .replace('-', '');
82
- window.open(
83
- 'https://api.whatsapp.com/send?phone=' +
58
+ name: 'whatsapp-modal',
59
+ components: {},
60
+ data() {
61
+ return {
62
+ phoneNumber: ''
63
+ };
64
+ },
65
+ props: {
66
+ isActive: Boolean,
67
+ userData: Object,
68
+ baseUrl: String
69
+ },
70
+ methods: {
71
+ sendMessage() {
72
+ let phoneNumber = this.phoneNumber
73
+ .replace('(', '')
74
+ .replace(')', '')
75
+ .replace(' ', '')
76
+ .replace('-', '');
77
+ window.open(
78
+ 'https://api.whatsapp.com/send?phone=' +
84
79
  '+55' +
85
80
  phoneNumber +
86
81
  '&text=' +
87
82
  `${this.baseUrl}/${this.userData.slug.slug}`
88
- );
89
- }
90
- },
91
- watch: {
92
- isActive(newValue) {
93
- !newValue && this.$emit('close-modal');
94
- }
95
- }
83
+ );
84
+ }
85
+ },
86
+ watch: {
87
+ isActive(newValue) {
88
+ !newValue && this.$emit('close-modal');
89
+ }
90
+ }
96
91
  };
97
92
  </script>
98
93
 
99
94
  <style lang="scss" scoped>
100
- @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
101
-
102
- /deep/ .el-dialog__body {
103
- padding: 0;
104
- }
105
-
106
- /deep/ .el-dialog__header {
107
- display: none;
108
- }
109
-
110
- /deep/ .el-dialog {
111
- overflow: hidden;
112
- border-radius: 10px;
113
- padding-bottom: 50px;
114
- max-width: 725px;
115
- min-width: 725px;
116
- }
117
-
118
- .tool {
119
- position: absolute;
120
- top: 1rem;
121
- z-index: 10;
122
- color: $primary;
123
- cursor: pointer;
124
-
125
- &-close {
126
- position: absolute;
127
- width: 88px;
128
- height: 27px;
129
- right: 7px;
130
- top: 7px;
131
- display: flex;
132
- justify-content: center;
133
- align-items: center;
134
-
135
- font-size: 11px;
136
-
137
- font-weight: 500;
138
- background: rgba(0, 0, 0, 0.2);
139
- border-radius: 17.5px;
140
- color: #fff;
141
- }
142
- }
143
95
  </style>
@@ -1,79 +1,79 @@
1
- <template>
2
- <div class="recruitment__user__card">
3
- <div
4
- class="recruitment__user__card__header"
5
- >
6
- <skeleton-animate class="user__cover" />
7
- </div>
8
-
9
- <div class="recruitment__user__card__content">
10
- <skeleton-animate class="user__avatar" :width="120" :height="120" img />
11
-
12
- <skeleton-animate class="user__title" :width="160" :height="20" />
13
- </div>
14
-
15
- <div class="recruitment__user__card__footer">
16
- <skeleton-animate class="user__footer" :width="200" :height="20" />
17
- </div>
18
- </div>
19
- </template>
20
-
21
- <script>
22
- import SkeletonAnimate from './SkeletonAnimate.vue';
23
-
24
- export default {
25
- name: 'base-card-university',
26
- components: {
27
- SkeletonAnimate
28
- }
29
- };
30
- </script>
31
-
32
- <style lang="scss" scoped>
33
-
34
- .recruitment__user__card {
35
- background: #fff;
36
- box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
37
- border-radius: 4px;
38
- overflow: hidden;
39
- cursor: pointer;
40
- transition: transform 0.25s;
41
-
42
- &__header {
43
- width: 100%;
44
- height: 70px;
45
- overflow: hidden;
46
- position: relative;
47
- .user__cover {
48
- width: 100%!important;
49
- height: 100%!important;
50
- }
51
- }
52
- &__content {
53
- display: flex;
54
- flex-direction: column;
55
- align-items: center;
56
- justify-content: center;
57
- .user__avatar {
58
- margin-top: -20px;
59
- border: 4px solid #fff;
60
- z-index: 10;
61
- }
62
- .user__title {
63
- margin-top: 40px;
64
- }
65
- }
66
- &__footer {
67
- display: flex;
68
- align-items: center;
69
- justify-content: center;
70
- padding-bottom: 20px;
71
- .user__footer {
72
- margin-top: 40px;
73
- margin-bottom: 20px;
74
- }
75
- }
76
- }
77
-
78
- </style>
79
-
1
+ <template>
2
+ <div class="recruitment__user__card">
3
+ <div
4
+ class="recruitment__user__card__header"
5
+ >
6
+ <skeleton-animate class="user__cover" />
7
+ </div>
8
+
9
+ <div class="recruitment__user__card__content">
10
+ <skeleton-animate class="user__avatar" :width="120" :height="120" img />
11
+
12
+ <skeleton-animate class="user__title" :width="160" :height="20" />
13
+ </div>
14
+
15
+ <div class="recruitment__user__card__footer">
16
+ <skeleton-animate class="user__footer" :width="200" :height="20" />
17
+ </div>
18
+ </div>
19
+ </template>
20
+
21
+ <script>
22
+ import SkeletonAnimate from './SkeletonAnimate.vue';
23
+
24
+ export default {
25
+ name: 'base-card-university',
26
+ components: {
27
+ SkeletonAnimate
28
+ }
29
+ };
30
+ </script>
31
+
32
+ <style lang="scss" scoped>
33
+
34
+ .recruitment__user__card {
35
+ background: #fff;
36
+ box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
37
+ border-radius: 4px;
38
+ overflow: hidden;
39
+ cursor: pointer;
40
+ transition: transform 0.25s;
41
+
42
+ &__header {
43
+ width: 100%;
44
+ height: 70px;
45
+ overflow: hidden;
46
+ position: relative;
47
+ .user__cover {
48
+ width: 100%!important;
49
+ height: 100%!important;
50
+ }
51
+ }
52
+ &__content {
53
+ display: flex;
54
+ flex-direction: column;
55
+ align-items: center;
56
+ justify-content: center;
57
+ .user__avatar {
58
+ margin-top: -20px;
59
+ border: 4px solid #fff;
60
+ z-index: 10;
61
+ }
62
+ .user__title {
63
+ margin-top: 40px;
64
+ }
65
+ }
66
+ &__footer {
67
+ display: flex;
68
+ align-items: center;
69
+ justify-content: center;
70
+ padding-bottom: 20px;
71
+ .user__footer {
72
+ margin-top: 40px;
73
+ margin-bottom: 20px;
74
+ }
75
+ }
76
+ }
77
+
78
+ </style>
79
+