@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,68 +1,68 @@
1
- <template>
2
- <div class="vld-parent">
3
- <loading :active.sync="isLoading"
4
- :can-cancel="true"
5
- :on-cancel="onCancel"
6
- :is-full-page="fullPage"
7
- :color="'#4460F4'"
8
- :loader="'dots'"
9
- :class="isBottomLoading ? 'bottom-loading' : ''"
10
- ></loading>
11
-
12
- <!-- <label><input type="checkbox" v-model="fullPage">Full page?</label>
13
- <button @click.prevent="doAjax">fetch Data</button> -->
14
- </div>
15
- </template>
16
-
17
- <script>
18
- // Import component
19
- import Loading from 'vue-loading-overlay';
20
- // Import stylesheet
21
- import 'vue-loading-overlay/dist/vue-loading.css';
22
-
23
- export default {
24
- name: 'loading-full-page',
25
- // data() {
26
- // return {
27
- // isLoading: false,
28
- // fullPage: true
29
- // };
30
- // },
31
- props: {
32
- isLoading: {
33
- type: Boolean,
34
- default: false
35
- },
36
- fullPage: {
37
- type: Boolean,
38
- default: true
39
- },
40
- isBottomLoading: {
41
- type: Boolean,
42
- default: false
43
- }
44
- },
45
- components: {
46
- Loading
47
- },
48
- methods: {
49
- doAjax() {
50
- this.isLoading = true;
51
- // simulate AJAX
52
- setTimeout(() => {
53
- this.isLoading = false;
54
- }, 5000);
55
- },
56
- onCancel() {
57
-
58
- }
59
- }
60
- };
61
- </script>
62
- <style lang="scss" scoped>
63
- .bottom-loading{
64
- top: initial;
65
- max-height: 4rem;
66
- background-color: transparent;
67
- }
68
- </style>
1
+ <template>
2
+ <div class="vld-parent">
3
+ <loading :active.sync="isLoading"
4
+ :can-cancel="true"
5
+ :on-cancel="onCancel"
6
+ :is-full-page="fullPage"
7
+ :color="'#4460F4'"
8
+ :loader="'dots'"
9
+ :class="isBottomLoading ? 'bottom-loading' : ''"
10
+ ></loading>
11
+
12
+ <!-- <label><input type="checkbox" v-model="fullPage">Full page?</label>
13
+ <button @click.prevent="doAjax">fetch Data</button> -->
14
+ </div>
15
+ </template>
16
+
17
+ <script>
18
+ // Import component
19
+ import Loading from 'vue-loading-overlay';
20
+ // Import stylesheet
21
+ import 'vue-loading-overlay/dist/vue-loading.css';
22
+
23
+ export default {
24
+ name: 'loading-full-page',
25
+ // data() {
26
+ // return {
27
+ // isLoading: false,
28
+ // fullPage: true
29
+ // };
30
+ // },
31
+ props: {
32
+ isLoading: {
33
+ type: Boolean,
34
+ default: false
35
+ },
36
+ fullPage: {
37
+ type: Boolean,
38
+ default: true
39
+ },
40
+ isBottomLoading: {
41
+ type: Boolean,
42
+ default: false
43
+ }
44
+ },
45
+ components: {
46
+ Loading
47
+ },
48
+ methods: {
49
+ doAjax() {
50
+ this.isLoading = true;
51
+ // simulate AJAX
52
+ setTimeout(() => {
53
+ this.isLoading = false;
54
+ }, 5000);
55
+ },
56
+ onCancel() {
57
+
58
+ }
59
+ }
60
+ };
61
+ </script>
62
+ <style lang="scss" scoped>
63
+ .bottom-loading{
64
+ top: initial;
65
+ max-height: 4rem;
66
+ background-color: transparent;
67
+ }
68
+ </style>
@@ -1,83 +1,83 @@
1
- <template>
2
- <div
3
- class="loading__bar"
4
- v-if="isShowing"
5
- >
6
- <div
7
- class="loading__bar__content"
8
- :style="`--loading-bar-color: ${defaultColor}; --loading-bar-w: ${loadingWidth}%`"
9
- ></div>
10
- </div>
11
- </template>
12
-
13
- <script>
14
- export default {
15
- name: 'loading-bar',
16
- props: {
17
- defaultColor: {
18
- type: String,
19
- default: '#4460F4'
20
- },
21
- isLoading: {
22
- type: Boolean,
23
- default: false
24
- }
25
- },
26
- watch: {
27
- isLoading() {
28
- this.setLoading();
29
- }
30
- },
31
- data() {
32
- return {
33
- loadingWidth: 0,
34
- loadingInterval: null,
35
- isShowing: false
36
- };
37
- },
38
- methods: {
39
- setLoading() {
40
- if (this.isLoading) {
41
- this.isShowing = true;
42
- this.setLoadingInterval();
43
- } else {
44
- this.loadingInterval = null;
45
- this.loadingWidth = 100;
46
-
47
- setTimeout(() => {
48
- this.isShowing = false;
49
- this.loadingWidth = 0;
50
- }, 1000);
51
- }
52
- },
53
- setLoadingInterval() {
54
- this.loadingInterval = setInterval(() => {
55
- if (this.loadingWidth < 100 && this.isLoading) {
56
- this.loadingWidth += 1 / 4;
57
- }
58
- }, 100);
59
- }
60
- },
61
- mounted() {
62
- this.setLoading();
63
- this.setLoadingInterval();
64
- }
65
- };
66
- </script>
67
-
68
- <style lang="scss" scoped>
69
- .loading__bar {
70
- background: #e9ecef;
71
- width: 100%;
72
- height: 4px;
73
- display: flex;
74
- align-items: center;
75
- justify-content: flex-start;
76
- &__content {
77
- width: var(--loading-bar-w);
78
- height: 100%;
79
- background: var(--loading-bar-color);
80
- transition: width 0.5s;
81
- }
82
- }
83
- </style>
1
+ <template>
2
+ <div
3
+ class="loading__bar"
4
+ v-if="isShowing"
5
+ >
6
+ <div
7
+ class="loading__bar__content"
8
+ :style="`--loading-bar-color: ${defaultColor}; --loading-bar-w: ${loadingWidth}%`"
9
+ ></div>
10
+ </div>
11
+ </template>
12
+
13
+ <script>
14
+ export default {
15
+ name: 'loading-bar',
16
+ props: {
17
+ defaultColor: {
18
+ type: String,
19
+ default: '#4460F4'
20
+ },
21
+ isLoading: {
22
+ type: Boolean,
23
+ default: false
24
+ }
25
+ },
26
+ watch: {
27
+ isLoading() {
28
+ this.setLoading();
29
+ }
30
+ },
31
+ data() {
32
+ return {
33
+ loadingWidth: 0,
34
+ loadingInterval: null,
35
+ isShowing: false
36
+ };
37
+ },
38
+ methods: {
39
+ setLoading() {
40
+ if (this.isLoading) {
41
+ this.isShowing = true;
42
+ this.setLoadingInterval();
43
+ } else {
44
+ this.loadingInterval = null;
45
+ this.loadingWidth = 100;
46
+
47
+ setTimeout(() => {
48
+ this.isShowing = false;
49
+ this.loadingWidth = 0;
50
+ }, 1000);
51
+ }
52
+ },
53
+ setLoadingInterval() {
54
+ this.loadingInterval = setInterval(() => {
55
+ if (this.loadingWidth < 100 && this.isLoading) {
56
+ this.loadingWidth += 1 / 4;
57
+ }
58
+ }, 100);
59
+ }
60
+ },
61
+ mounted() {
62
+ this.setLoading();
63
+ this.setLoadingInterval();
64
+ }
65
+ };
66
+ </script>
67
+
68
+ <style lang="scss" scoped>
69
+ .loading__bar {
70
+ background: #e9ecef;
71
+ width: 100%;
72
+ height: 4px;
73
+ display: flex;
74
+ align-items: center;
75
+ justify-content: flex-start;
76
+ &__content {
77
+ width: var(--loading-bar-w);
78
+ height: 100%;
79
+ background: var(--loading-bar-color);
80
+ transition: width 0.5s;
81
+ }
82
+ }
83
+ </style>
@@ -1,65 +1,65 @@
1
- <template>
2
- <div>
3
- <notifications></notifications>
4
- <modal :show.sync="show.mobileModal" class="modal-share">
5
- <template slot="header">
6
- <!-- <h5 class="modal-title" id="exampleModalLabel">Compartilhar</h5> -->
7
- </template>
8
- <div class="img-app-container">
9
- <img src="img/android_and_ios.png" class="img-app"/>
10
- </div>
11
-
12
- <p class="p-title">Estamos atualizando nossos aplicativos</p>
13
- <p class="p-text">Nossos Apps iOS e Android estão passando por melhorias, queremos garantir a melhor experiência possível e feedback em tempo real das vagas para você.</p>
14
-
15
- </modal>
16
- </div>
17
- </template>
18
-
19
- <script>
20
- import { mask } from 'vue-the-mask';
21
-
22
- export default {
23
- name: 'mobile-modal',
24
- directives:{
25
- mask
26
- },
27
- components: {
28
- },
29
- props: {
30
- show: Object,
31
- url: String
32
- },
33
- data() {
34
- return {
35
- modals: {
36
- mobileModal: false
37
- },
38
- };
39
- },
40
- mounted(){
41
-
42
- },
43
- methods:{
44
-
45
- }
46
- };
47
- </script>
48
- <style lang="scss">
49
- .img-app-container {
50
- text-align: center;
51
- }
52
- .img-app {
53
- width: 300px !important;
54
- height: auto !important;
55
- }
56
- .p-text {
57
- text-align: center;
58
- }
59
- .p-title {
60
- font-size: 27px;
61
- font-weight: bold;
62
- text-align: center;
63
- color:#4460F4;
64
- }
65
- </style>
1
+ <template>
2
+ <div>
3
+ <notifications></notifications>
4
+ <modal :show.sync="show.mobileModal" class="modal-share">
5
+ <template slot="header">
6
+ <!-- <h5 class="modal-title" id="exampleModalLabel">Compartilhar</h5> -->
7
+ </template>
8
+ <div class="img-app-container">
9
+ <img src="img/android_and_ios.png" class="img-app"/>
10
+ </div>
11
+
12
+ <p class="p-title">Estamos atualizando nossos aplicativos</p>
13
+ <p class="p-text">Nossos Apps iOS e Android estão passando por melhorias, queremos garantir a melhor experiência possível e feedback em tempo real das vagas para você.</p>
14
+
15
+ </modal>
16
+ </div>
17
+ </template>
18
+
19
+ <script>
20
+ import { mask } from 'vue-the-mask';
21
+
22
+ export default {
23
+ name: 'mobile-modal',
24
+ directives:{
25
+ mask
26
+ },
27
+ components: {
28
+ },
29
+ props: {
30
+ show: Object,
31
+ url: String
32
+ },
33
+ data() {
34
+ return {
35
+ modals: {
36
+ mobileModal: false
37
+ },
38
+ };
39
+ },
40
+ mounted(){
41
+
42
+ },
43
+ methods:{
44
+
45
+ }
46
+ };
47
+ </script>
48
+ <style lang="scss">
49
+ .img-app-container {
50
+ text-align: center;
51
+ }
52
+ .img-app {
53
+ width: 300px !important;
54
+ height: auto !important;
55
+ }
56
+ .p-text {
57
+ text-align: center;
58
+ }
59
+ .p-title {
60
+ font-size: 27px;
61
+ font-weight: bold;
62
+ text-align: center;
63
+ color:#4460F4;
64
+ }
65
+ </style>
@@ -1,87 +1,87 @@
1
- <template>
2
- <div>
3
- <modal
4
- :show.sync="isModalOpen"
5
- @close="$emit('close-modal')"
6
- class="modal modal-new"
7
- bodyClasses="container-fluid px-4 pt-0 modal-new-fix"
8
- headerClasses="container-fluid new-modal-header pb-0"
9
- >
10
- <template slot="header">
11
- <p>&ThinSpace;</p>
12
- </template>
13
- <div class="text-center mb-4 mt-0">
14
- <img src="/img/logotipo_color.svg" class="pb-4" width="110" alt="Burh">
15
- <h5 class="display-5 text-center">Olá! Sou a Burh! Estamos mudando.</h5>
16
- </div>
17
- <div class="mt-2 text-justify">
18
- <p>
19
- O Burh foi criado para empresas que buscam os melhores profissionais para compor seu time, mas que para isso não tenham que passar por sistemas burocráticos, ultrapassados e cheios de pegadinhas. Com o único propósito de tornar o mercado profissional em um lugar livre e aberto, chegou a hora de apresentarmos a melhor versão que já criamos, uma plataforma inteligente, rápida, segura e repleta de novas possibilidades.
20
- <br><br>
21
- Por isso acreditamos que você vai adorar! A nova plataforma possibilita criar e organizar pastas na nuvem, anexar documentos e notas nos perfis dos profissionais e compartilhar essas informações com toda segurança da LGPD. Tudo isso de forma simples, inovadora e inteligente.
22
- <br><br>
23
- Pode-se dizer que estamos amadurecendo, o que é meio chavão para uma marca dizer, mas nós somos gratos pelas pessoas que ficaram ao nosso lado nos últimos quatro anos e estamos empolgados para crescer cada vez mais juntos.
24
- <br><br>
25
- Hoje, apresentamos a nova Burh Empresas que será liberada nos próximos dias. Uma solução que reflete aquilo que somos, nossa essência e o que acreditamos. Nossas novas cores representam toda a integração, possibilidade e liberdade de criarmos o novo, de pessoas para pessoas.
26
- <br><br>
27
- Com amor,<br>Burh
28
- </p>
29
- </div>
30
- </modal>
31
- </div>
32
- </template>
33
-
34
- <script>
35
- export default {
36
- name: 'new-user-modal',
37
- props: {
38
- show: {
39
- type: Boolean,
40
- default: false
41
- },
42
- },
43
- data() {
44
- return {
45
- isModalOpen: this.show
46
- };
47
- },
48
- watch: {
49
- show(value) {
50
- this.isModalOpen = value;
51
- }
52
- }
53
- };
54
- </script>
55
- <style lang="scss">
56
- .modal-new {
57
- overflow-y: auto!important;
58
- &::-webkit-scrollbar-track {
59
- border-radius: 10px!important;
60
- background-color: rgba(23, 43, 77, 0.7)!important;
61
- }
62
-
63
- &::-webkit-scrollbar {
64
- width: 8px!important;
65
- background-color: rgba(23, 43, 77, 0.7)!important;
66
- }
67
-
68
- &::-webkit-scrollbar-thumb {
69
- border-radius: 10px!important;
70
- background-color: #e9e8e8!important;
71
- }
72
- .modal-dialog {
73
- min-width: 60rem;
74
- display: flex;
75
- flex-direction: columns;
76
- align-items: center;
77
- }
78
- }
79
- .modal-new-fix {
80
- padding: 30px 60px!important;
81
- padding-top: 0!important;
82
- width: 75%!important;
83
- }
84
- .new-modal-header {
85
- padding: 10px!important;
86
- }
87
- </style>
1
+ <template>
2
+ <div>
3
+ <modal
4
+ :show.sync="isModalOpen"
5
+ @close="$emit('close-modal')"
6
+ class="modal modal-new"
7
+ bodyClasses="container-fluid px-4 pt-0 modal-new-fix"
8
+ headerClasses="container-fluid new-modal-header pb-0"
9
+ >
10
+ <template slot="header">
11
+ <p>&ThinSpace;</p>
12
+ </template>
13
+ <div class="text-center mb-4 mt-0">
14
+ <img src="/img/logotipo_color.svg" class="pb-4" width="110" alt="Burh">
15
+ <h5 class="display-5 text-center">Olá! Sou a Burh! Estamos mudando.</h5>
16
+ </div>
17
+ <div class="mt-2 text-justify">
18
+ <p>
19
+ O Burh foi criado para empresas que buscam os melhores profissionais para compor seu time, mas que para isso não tenham que passar por sistemas burocráticos, ultrapassados e cheios de pegadinhas. Com o único propósito de tornar o mercado profissional em um lugar livre e aberto, chegou a hora de apresentarmos a melhor versão que já criamos, uma plataforma inteligente, rápida, segura e repleta de novas possibilidades.
20
+ <br><br>
21
+ Por isso acreditamos que você vai adorar! A nova plataforma possibilita criar e organizar pastas na nuvem, anexar documentos e notas nos perfis dos profissionais e compartilhar essas informações com toda segurança da LGPD. Tudo isso de forma simples, inovadora e inteligente.
22
+ <br><br>
23
+ Pode-se dizer que estamos amadurecendo, o que é meio chavão para uma marca dizer, mas nós somos gratos pelas pessoas que ficaram ao nosso lado nos últimos quatro anos e estamos empolgados para crescer cada vez mais juntos.
24
+ <br><br>
25
+ Hoje, apresentamos a nova Burh Empresas que será liberada nos próximos dias. Uma solução que reflete aquilo que somos, nossa essência e o que acreditamos. Nossas novas cores representam toda a integração, possibilidade e liberdade de criarmos o novo, de pessoas para pessoas.
26
+ <br><br>
27
+ Com amor,<br>Burh
28
+ </p>
29
+ </div>
30
+ </modal>
31
+ </div>
32
+ </template>
33
+
34
+ <script>
35
+ export default {
36
+ name: 'new-user-modal',
37
+ props: {
38
+ show: {
39
+ type: Boolean,
40
+ default: false
41
+ },
42
+ },
43
+ data() {
44
+ return {
45
+ isModalOpen: this.show
46
+ };
47
+ },
48
+ watch: {
49
+ show(value) {
50
+ this.isModalOpen = value;
51
+ }
52
+ }
53
+ };
54
+ </script>
55
+ <style lang="scss">
56
+ .modal-new {
57
+ overflow-y: auto!important;
58
+ &::-webkit-scrollbar-track {
59
+ border-radius: 10px!important;
60
+ background-color: rgba(23, 43, 77, 0.7)!important;
61
+ }
62
+
63
+ &::-webkit-scrollbar {
64
+ width: 8px!important;
65
+ background-color: rgba(23, 43, 77, 0.7)!important;
66
+ }
67
+
68
+ &::-webkit-scrollbar-thumb {
69
+ border-radius: 10px!important;
70
+ background-color: #e9e8e8!important;
71
+ }
72
+ .modal-dialog {
73
+ min-width: 60rem;
74
+ display: flex;
75
+ flex-direction: columns;
76
+ align-items: center;
77
+ }
78
+ }
79
+ .modal-new-fix {
80
+ padding: 30px 60px!important;
81
+ padding-top: 0!important;
82
+ width: 75%!important;
83
+ }
84
+ .new-modal-header {
85
+ padding: 10px!important;
86
+ }
87
+ </style>