@burh/nuxt-core 1.0.409 → 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 +18 -2
  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,74 +1,74 @@
1
- <template>
2
- <div class="feature__card">
3
- <div class="feature__card__image" :style="`--icon-bg-color: #${iconBgColor}`">
4
- <img :src="icon" :alt="title">
5
- </div>
6
- <div class="feature__card__title">
7
- <p>{{ title }}</p>
8
- </div>
9
- <div class="feature__card__description">
10
- <span>{{ description }}</span>
11
- </div>
12
- </div>
13
- </template>
14
-
15
- <script>
16
- export default {
17
- name: 'FeatureBusinessCard',
18
- props: {
19
- icon: String,
20
- iconBgColor: {
21
- type: String,
22
- default: '5983FE'
23
- },
24
- title: String,
25
- description: String,
26
- }
27
- };
28
- </script>
29
-
30
- <style lang="scss" scoped>
31
- .feature__card {
32
- background: #fff;
33
- padding: 20px;
34
- display: flex;
35
- flex-direction: column;
36
- align-items: flex-start;
37
- box-shadow: 5px 5px 50px 2px #E9EEF2;
38
- border-radius: 10px;
39
- width: 100%;
40
- min-width: 300px;
41
- margin: 0 auto;
42
- transition: transform 0.25s, box-shadow 0.5s;
43
- &__image {
44
- display: flex;
45
- align-items: center;
46
- justify-content: center;
47
- width: 45px;
48
- height: 45px;
49
- border-radius: 10px;
50
- background: var(--icon-bg-color);
51
- img {
52
- display: block;
53
- width: 25px;
54
- }
55
- }
56
- &__title {
57
- padding: 10px 0;
58
- p {
59
- font-size: 1.5625rem;
60
- font-weight: 600;
61
- margin-bottom: 0;
62
- }
63
- }
64
- &__description {
65
- text-align: left;
66
- font-weight: 400;
67
- font-size: 0.875rem;
68
- }
69
- &:hover {
70
- transform: translateY(-10px);
71
- box-shadow: 7px 15px 20px rgba(0, 0, 0, 0.05);
72
- }
73
- }
74
- </style>
1
+ <template>
2
+ <div class="feature__card">
3
+ <div class="feature__card__image" :style="`--icon-bg-color: #${iconBgColor}`">
4
+ <img :src="icon" :alt="title">
5
+ </div>
6
+ <div class="feature__card__title">
7
+ <p>{{ title }}</p>
8
+ </div>
9
+ <div class="feature__card__description">
10
+ <span>{{ description }}</span>
11
+ </div>
12
+ </div>
13
+ </template>
14
+
15
+ <script>
16
+ export default {
17
+ name: 'FeatureBusinessCard',
18
+ props: {
19
+ icon: String,
20
+ iconBgColor: {
21
+ type: String,
22
+ default: '5983FE'
23
+ },
24
+ title: String,
25
+ description: String,
26
+ }
27
+ };
28
+ </script>
29
+
30
+ <style lang="scss" scoped>
31
+ .feature__card {
32
+ background: #fff;
33
+ padding: 20px;
34
+ display: flex;
35
+ flex-direction: column;
36
+ align-items: flex-start;
37
+ box-shadow: 5px 5px 50px 2px #E9EEF2;
38
+ border-radius: 10px;
39
+ width: 100%;
40
+ min-width: 300px;
41
+ margin: 0 auto;
42
+ transition: transform 0.25s, box-shadow 0.5s;
43
+ &__image {
44
+ display: flex;
45
+ align-items: center;
46
+ justify-content: center;
47
+ width: 45px;
48
+ height: 45px;
49
+ border-radius: 10px;
50
+ background: var(--icon-bg-color);
51
+ img {
52
+ display: block;
53
+ width: 25px;
54
+ }
55
+ }
56
+ &__title {
57
+ padding: 10px 0;
58
+ p {
59
+ font-size: 1.5625rem;
60
+ font-weight: 600;
61
+ margin-bottom: 0;
62
+ }
63
+ }
64
+ &__description {
65
+ text-align: left;
66
+ font-weight: 400;
67
+ font-size: 0.875rem;
68
+ }
69
+ &:hover {
70
+ transform: translateY(-10px);
71
+ box-shadow: 7px 15px 20px rgba(0, 0, 0, 0.05);
72
+ }
73
+ }
74
+ </style>
@@ -1,81 +1,81 @@
1
- <template>
2
- <card class="card">
3
- <h4 class="aria-text">Funcionalidades</h4>
4
- <ul class="list-unstyled list line-card">
5
- <functionality-item
6
- class="cursor-pointer card-item"
7
- :icone="firstItemIcon"
8
- :text="firstItemText"
9
- @functionality-click="$emit('click-first-item')"
10
- />
11
- <functionality-item
12
- class="cursor-pointer border-left card-item"
13
- :icone="secondItemIcon"
14
- :text="secondItemText"
15
- @functionality-click="$emit('click-second-item')"
16
- />
17
- </ul>
18
- <hr />
19
- <h6 class="list-title font-weight-bold">{{ title }}</h6>
20
- <ul class="list-unstyled list line-card">
21
- <slot></slot>
22
- </ul>
23
- <p class="footer-text">{{ context }}</p>
24
- </card>
25
- </template>
26
- <script>
27
- import FunctionalityItem from './FunctionalityItem';
28
- export default {
29
- name: 'performance-card',
30
- components: {
31
- FunctionalityItem
32
- },
33
- props: {
34
- title: String,
35
- context: String,
36
- firstItemText: String,
37
- secondItemText: String,
38
- firstItemIcon: String,
39
- secondItemIcon: String,
40
- subscribers: Number,
41
- jobs: Number,
42
- visualization: Number,
43
- skeleton: {
44
- type: Boolean,
45
- default: false
46
- }
47
- }
48
- };
49
- </script>
50
- <style lang="scss" scoped>
51
- hr {
52
- border-color: #e9ecef;
53
- }
54
-
55
- .list {
56
- margin: 1.8rem 0;
57
- display: flex;
58
- justify-content: space-evenly;
59
- }
60
-
61
- .line-card {
62
- ul {
63
- &:not(:first-child) {
64
- border: 2px solid #e9ecef;
65
- }
66
- }
67
- }
68
-
69
- .card-item {
70
- width: 50%;
71
- }
72
-
73
- .footer-text {
74
- margin-left: 1rem;
75
- opacity: 0.4;
76
- font-size: smaller;
77
- }
78
- .padding-border {
79
- padding-left: 7.5rem;
80
- }
81
- </style>
1
+ <template>
2
+ <card class="card">
3
+ <h4 class="aria-text">Funcionalidades</h4>
4
+ <ul class="list-unstyled list line-card">
5
+ <functionality-item
6
+ class="cursor-pointer card-item"
7
+ :icone="firstItemIcon"
8
+ :text="firstItemText"
9
+ @functionality-click="$emit('click-first-item')"
10
+ />
11
+ <functionality-item
12
+ class="cursor-pointer border-left card-item"
13
+ :icone="secondItemIcon"
14
+ :text="secondItemText"
15
+ @functionality-click="$emit('click-second-item')"
16
+ />
17
+ </ul>
18
+ <hr />
19
+ <h6 class="list-title font-weight-bold">{{ title }}</h6>
20
+ <ul class="list-unstyled list line-card">
21
+ <slot></slot>
22
+ </ul>
23
+ <p class="footer-text">{{ context }}</p>
24
+ </card>
25
+ </template>
26
+ <script>
27
+ import FunctionalityItem from './FunctionalityItem';
28
+ export default {
29
+ name: 'performance-card',
30
+ components: {
31
+ FunctionalityItem
32
+ },
33
+ props: {
34
+ title: String,
35
+ context: String,
36
+ firstItemText: String,
37
+ secondItemText: String,
38
+ firstItemIcon: String,
39
+ secondItemIcon: String,
40
+ subscribers: Number,
41
+ jobs: Number,
42
+ visualization: Number,
43
+ skeleton: {
44
+ type: Boolean,
45
+ default: false
46
+ }
47
+ }
48
+ };
49
+ </script>
50
+ <style lang="scss" scoped>
51
+ hr {
52
+ border-color: #e9ecef;
53
+ }
54
+
55
+ .list {
56
+ margin: 1.8rem 0;
57
+ display: flex;
58
+ justify-content: space-evenly;
59
+ }
60
+
61
+ .line-card {
62
+ ul {
63
+ &:not(:first-child) {
64
+ border: 2px solid #e9ecef;
65
+ }
66
+ }
67
+ }
68
+
69
+ .card-item {
70
+ width: 50%;
71
+ }
72
+
73
+ .footer-text {
74
+ margin-left: 1rem;
75
+ opacity: 0.4;
76
+ font-size: smaller;
77
+ }
78
+ .padding-border {
79
+ padding-left: 7.5rem;
80
+ }
81
+ </style>
@@ -237,6 +237,7 @@
237
237
  <p @click.prevent="hasCommentRemove = !hasCommentRemove" class="notes-date remove-baloon">
238
238
  Excluir
239
239
  </p>
240
+
240
241
  <p class="notes-date">
241
242
  {{ userReportData.comment.created_at | convertDate }}
242
243
  </p>
@@ -724,7 +725,7 @@ export default {
724
725
  }
725
726
 
726
727
  /deep/ .el-tabs__item {
727
- padding: 0 1.60rem !important;
728
+ padding: 0 1.5rem !important;
728
729
  }
729
730
 
730
731
  /deep/ .el-tabs__nav {
@@ -734,7 +735,22 @@ export default {
734
735
 
735
736
  @media (max-width: 1520px) {
736
737
  /deep/ .el-tabs__item {
737
- padding: 0 1.8rem !important;
738
+ padding: 0 1.2rem !important;
739
+ }
740
+ }
741
+ @media (max-width: 1340px) {
742
+ /deep/ .el-tabs__item {
743
+ padding: 0 1rem !important;
744
+ }
745
+ }
746
+ @media (max-width: 1240px) {
747
+ /deep/ .el-tabs__item {
748
+ padding: 0 0.8rem !important;
749
+ }
750
+ }
751
+ @media (max-width: 1140px) {
752
+ /deep/ .el-tabs__item {
753
+ padding: 0 0.6rem !important;
738
754
  }
739
755
  }
740
756