@burh/nuxt-core 1.0.270 → 1.0.272

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 (30) hide show
  1. package/assets/sass/burh-ds/variables/_colors.scss +350 -350
  2. package/components/argon-core/BaseDropdown.vue +114 -114
  3. package/components/argon-core/Modal.vue +184 -184
  4. package/components/burh-ds/Cards/CourseInfoCard.vue +2 -4
  5. package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
  6. package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
  7. package/components/burh-ds/Cards/RecruitmentCard.vue +214 -214
  8. package/components/burh-ds/Carousel/ImageCarousel.vue +111 -111
  9. package/components/burh-ds/Curriculum/UserCurriculum/UserCvLeftSide.vue +437 -437
  10. package/components/burh-ds/Curriculum/UserCurriculum/index.vue +245 -245
  11. package/components/burh-ds/Dropdown/JobStatusDropdown.vue +145 -145
  12. package/components/burh-ds/Headings/AppHeader.vue +162 -162
  13. package/components/burh-ds/Inputs/SearchInput.vue +64 -64
  14. package/components/burh-ds/Loads/LoadingBar.vue +83 -0
  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/Skeleton/BaseCardTest.vue +51 -0
  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 +65 -0
  21. package/components/burh-ds/Skeleton/BaseTraining.vue +29 -0
  22. package/components/burh-ds/Skeleton/BufferFolderSkeleton.vue +41 -0
  23. package/components/burh-ds/Skeleton/BufferUserSkeleton.vue +142 -0
  24. package/components/burh-ds/Skeleton/Cards.vue +86 -86
  25. package/components/burh-ds/Skeleton/Home.vue +100 -100
  26. package/components/burh-ds/Skeleton/RecruitmentCard.vue +169 -169
  27. package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
  28. package/components/layouts/burh-ds/footer/ProductsFooter.vue +330 -330
  29. package/nuxt.config.js +206 -206
  30. package/package.json +1 -1
@@ -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
+
@@ -1,84 +1,84 @@
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
- <skeleton-animate class="user__age" :width="80" :height="15" />
14
-
15
- <skeleton-animate class="user__city" :width="120" :height="25" />
16
-
17
- <skeleton-animate class="user__text" :width="140" :height="15" />
18
- <skeleton-animate class="user__experience" :width="220" :height="20" />
19
- </div>
20
- </div>
21
- </template>
22
-
23
- <script>
24
- import SkeletonAnimate from './SkeletonAnimate.vue';
25
-
26
- export default {
27
- name: 'base-card-user',
28
- components: {
29
- SkeletonAnimate
30
- }
31
- };
32
- </script>
33
-
34
- <style lang="scss" scoped>
35
-
36
- .recruitment__user__card {
37
- background: #fff;
38
- box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
39
- border-radius: 4px;
40
- overflow: hidden;
41
- cursor: pointer;
42
- transition: transform 0.25s;
43
- padding-bottom: 40px;
44
-
45
- &__header {
46
- width: 100%;
47
- height: 70px;
48
- overflow: hidden;
49
- position: relative;
50
- .user__cover {
51
- width: 100%!important;
52
- height: 100%!important;
53
- }
54
- }
55
- &__content {
56
- display: flex;
57
- flex-direction: column;
58
- align-items: center;
59
- justify-content: center;
60
- .user__avatar {
61
- margin-top: -20px;
62
- border: 4px solid #fff;
63
- z-index: 10;
64
- }
65
- .user__title {
66
- margin-top: 20px;
67
- }
68
- .user__age {
69
- margin-top: 10px;
70
- }
71
- .user__city {
72
- margin-top: 40px;
73
- }
74
- .user__text {
75
- margin-top: 40px;
76
- }
77
- .user__experience {
78
- margin-top: 5px;
79
- }
80
- }
81
- }
82
-
83
- </style>
84
-
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
+ <skeleton-animate class="user__age" :width="80" :height="15" />
14
+
15
+ <skeleton-animate class="user__city" :width="120" :height="25" />
16
+
17
+ <skeleton-animate class="user__text" :width="140" :height="15" />
18
+ <skeleton-animate class="user__experience" :width="220" :height="20" />
19
+ </div>
20
+ </div>
21
+ </template>
22
+
23
+ <script>
24
+ import SkeletonAnimate from './SkeletonAnimate.vue';
25
+
26
+ export default {
27
+ name: 'base-card-user',
28
+ components: {
29
+ SkeletonAnimate
30
+ }
31
+ };
32
+ </script>
33
+
34
+ <style lang="scss" scoped>
35
+
36
+ .recruitment__user__card {
37
+ background: #fff;
38
+ box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
39
+ border-radius: 4px;
40
+ overflow: hidden;
41
+ cursor: pointer;
42
+ transition: transform 0.25s;
43
+ padding-bottom: 40px;
44
+
45
+ &__header {
46
+ width: 100%;
47
+ height: 70px;
48
+ overflow: hidden;
49
+ position: relative;
50
+ .user__cover {
51
+ width: 100%!important;
52
+ height: 100%!important;
53
+ }
54
+ }
55
+ &__content {
56
+ display: flex;
57
+ flex-direction: column;
58
+ align-items: center;
59
+ justify-content: center;
60
+ .user__avatar {
61
+ margin-top: -20px;
62
+ border: 4px solid #fff;
63
+ z-index: 10;
64
+ }
65
+ .user__title {
66
+ margin-top: 20px;
67
+ }
68
+ .user__age {
69
+ margin-top: 10px;
70
+ }
71
+ .user__city {
72
+ margin-top: 40px;
73
+ }
74
+ .user__text {
75
+ margin-top: 40px;
76
+ }
77
+ .user__experience {
78
+ margin-top: 5px;
79
+ }
80
+ }
81
+ }
82
+
83
+ </style>
84
+
@@ -0,0 +1,65 @@
1
+ <template>
2
+ <div class="card h-100">
3
+ <div class="container-fluid container-fluid--bu pt-5">
4
+ <skeleton-animate :width="220" :height="20" rounded />
5
+
6
+ <div class="row card-body px-0">
7
+ <div
8
+ class="col-6 col-sm-3 col-md-3 info-box text-center px-0"
9
+ v-for="index in 3"
10
+ :key="index"
11
+ >
12
+ <skeleton-animate
13
+ :width="80"
14
+ :height="80"
15
+ class="ml-3"
16
+ rounded
17
+ />
18
+
19
+ <skeleton-animate
20
+ :width="120"
21
+ :height="15"
22
+ rounded
23
+ class="mt-2"
24
+ />
25
+ </div>
26
+ </div>
27
+ <div class="d-flex align-items-center justify-content-center">
28
+ <skeleton-animate :width="80" :height="80" img />
29
+ <skeleton-animate
30
+ :width="120"
31
+ :height="15"
32
+ rounded
33
+ class="ml-2"
34
+ />
35
+ </div>
36
+ </div>
37
+ </div>
38
+ </template>
39
+ <script>
40
+ import SkeletonAnimate from './SkeletonAnimate.vue';
41
+ export default {
42
+ name: 'course-info-skeleton',
43
+ components: { SkeletonAnimate }
44
+ };
45
+ </script>
46
+
47
+ <style lang="scss" scoped>
48
+ .card-title {
49
+ font-size: 1rem;
50
+ }
51
+ .info-box {
52
+ @media (min-width: 576px) {
53
+ flex: 0 0 50%;
54
+ max-width: 50%;
55
+ }
56
+ @media (min-width: 768px) {
57
+ flex: 0 0 50%;
58
+ max-width: 50%;
59
+ }
60
+ @media (min-width: 1024px) {
61
+ flex: 0 0 33%;
62
+ max-width: 33%;
63
+ }
64
+ }
65
+ </style>
@@ -0,0 +1,29 @@
1
+ <template>
2
+ <div class="card">
3
+ <div class="card-header"></div>
4
+ <div class="card-body">
5
+ <skeleton-animate :width="160" :height="15" />
6
+ </div>
7
+ </div>
8
+ </template>
9
+
10
+ <script>
11
+ import SkeletonAnimate from './SkeletonAnimate.vue';
12
+ export default {
13
+ name: 'training-skeleton',
14
+ components: { SkeletonAnimate }
15
+ };
16
+ </script>
17
+
18
+ <style lang="scss" scoped>
19
+ .card {
20
+ width: 100% !important;
21
+ }
22
+ /deep/ .card-header {
23
+ background: linear-gradient(
24
+ #ececec 11rem,
25
+ rgb(255, 255, 255) 20%
26
+ ) !important;
27
+ height: 11rem;
28
+ }
29
+ </style>
@@ -0,0 +1,41 @@
1
+ <template>
2
+ <div class="card-app">
3
+ <skeleton-animate rounded :width="40" :height="40" />
4
+ <skeleton-animate
5
+ rounded
6
+ :width="80"
7
+ :height="15"
8
+ class="text-skeleton"
9
+ />
10
+ </div>
11
+ </template>
12
+
13
+ <script>
14
+ import SkeletonAnimate from './SkeletonAnimate.vue';
15
+
16
+ export default {
17
+ name: 'buffer-folder-skeleton',
18
+ components: {
19
+ SkeletonAnimate
20
+ }
21
+ };
22
+ </script>
23
+
24
+ <style lang="scss" scoped>
25
+ .card-app {
26
+ width: 22%;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: start;
30
+ height: 5.625rem !important;
31
+ flex-direction: row;
32
+ padding: 1.875rem 2.18rem !important;
33
+
34
+ & + div {
35
+ margin: 0 1rem;
36
+ }
37
+ .text-skeleton {
38
+ margin-left: 1rem;
39
+ }
40
+ }
41
+ </style>
@@ -0,0 +1,142 @@
1
+ <template>
2
+ <div class="box-applicant col-12 col-sm-6 col-md-3">
3
+ <card
4
+ :hover="true"
5
+ :bodyClasses="'mx-auto text-center px-0'"
6
+ :footerClasses="'mx-auto border-0'"
7
+ @click.stop
8
+ >
9
+ <template>
10
+ <div class="avatar rounded-circle header-avatar">
11
+ <skeleton-animate :width="90" :height="90" img />
12
+ </div>
13
+ <div class="applicant__card--info">
14
+ <div class="applicant__card--header">
15
+ <skeleton-animate :width="120" :height="15" rounded />
16
+ <skeleton-animate
17
+ class="mt-2"
18
+ :width="120"
19
+ :height="15"
20
+ rounded
21
+ />
22
+ </div>
23
+
24
+ <p class="applicant__card--city">
25
+ <skeleton-animate :width="100" :height="15" rounded />
26
+ </p>
27
+ </div>
28
+ </template>
29
+
30
+ <!-- <div slot="footer">
31
+ <i v-if="isSeen" class="fa fa-eye"></i>
32
+ <i v-else class="fa fa-eye-slash"></i>
33
+ </div> -->
34
+ </card>
35
+ </div>
36
+ </template>
37
+
38
+ <script>
39
+ import SkeletonAnimate from './SkeletonAnimate.vue';
40
+
41
+ export default {
42
+ name: 'buffer-user-skeleton',
43
+ components: {
44
+ SkeletonAnimate
45
+ }
46
+ };
47
+ </script>
48
+
49
+ <style lang="scss" scoped>
50
+ .box-applicant {
51
+ /deep/ .card {
52
+ background: linear-gradient(
53
+ #ececec 4rem,
54
+ rgb(255, 255, 255) 20%
55
+ ) !important;
56
+ .card-body {
57
+ display: grid;
58
+ grid-template-columns: 90px 1fr;
59
+ margin-top: 30px;
60
+ width: 90%;
61
+ padding-bottom: 0;
62
+ .header-avatar {
63
+ width: 90px;
64
+ height: 90px;
65
+ max-width: initial;
66
+ max-height: initial;
67
+ }
68
+ }
69
+ }
70
+ }
71
+ .applicant__card--info {
72
+ display: flex;
73
+ flex-direction: column;
74
+ align-items: flex-start;
75
+ padding: 20px;
76
+ overflow: hidden;
77
+ p {
78
+ margin-bottom: 0px;
79
+ color: #1d364b;
80
+ font-weight: 500;
81
+ font-size: 1rem;
82
+ }
83
+ span {
84
+ color: #525f7f;
85
+ font-size: 0.875rem;
86
+ }
87
+ p,
88
+ span {
89
+ text-align: left;
90
+ }
91
+
92
+ .applicant__card--header {
93
+ display: flex;
94
+ flex-direction: column;
95
+ }
96
+
97
+ .applicant__card--city {
98
+ margin-top: 40px;
99
+ }
100
+ }
101
+
102
+ .header {
103
+ &-avatar {
104
+ position: relative;
105
+ width: 8rem;
106
+ height: 8rem;
107
+ max-width: 100%;
108
+ max-height: 90%;
109
+ img {
110
+ height: 100%;
111
+ }
112
+ }
113
+ }
114
+ .box-applicant {
115
+ .card-body {
116
+ height: 20.5rem !important;
117
+ }
118
+
119
+ &:hover {
120
+ .applicant-title {
121
+ display: block;
122
+ overflow: initial;
123
+ }
124
+ }
125
+ }
126
+
127
+ .checkbox-applicant {
128
+ position: absolute;
129
+ top: 1rem;
130
+ right: 1rem;
131
+ }
132
+
133
+ .applicant {
134
+ &-title {
135
+ overflow: hidden;
136
+ text-overflow: ellipsis;
137
+ display: -webkit-box;
138
+ -webkit-line-clamp: 1;
139
+ -webkit-box-orient: vertical;
140
+ }
141
+ }
142
+ </style>