@burh/nuxt-core 1.0.247 → 1.0.249

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.
@@ -1,73 +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: 300px;
40
- margin: 0 auto;
41
- transition: transform 0.25s, box-shadow 0.5s;
42
- &__image {
43
- display: flex;
44
- align-items: center;
45
- justify-content: center;
46
- width: 45px;
47
- height: 45px;
48
- border-radius: 10px;
49
- background: var(--icon-bg-color);
50
- img {
51
- display: block;
52
- width: 25px;
53
- }
54
- }
55
- &__title {
56
- padding: 10px 0;
57
- p {
58
- font-size: 1.5625rem;
59
- font-weight: 600;
60
- margin-bottom: 0;
61
- }
62
- }
63
- &__description {
64
- text-align: left;
65
- font-weight: 400;
66
- font-size: 0.875rem;
67
- }
68
- &:hover {
69
- transform: translateY(-10px);
70
- box-shadow: 7px 15px 20px rgba(0, 0, 0, 0.05);
71
- }
72
- }
73
- </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: 90%;
40
+ max-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>
@@ -25,6 +25,49 @@
25
25
  <span>Data de atualização: {{ $moment(userData.updated_at).format('DD/MM/YYYY H:mm')}}</span>
26
26
  </div>
27
27
 
28
+ <div
29
+ class="deficiency title-block mt-3 ml-4"
30
+ v-if="userData.user_deficiency"
31
+ >
32
+ <div class="d-flex align-items-center">
33
+ <i class="fas fa-wheelchair"></i>
34
+ <h6 class="mb-0 ml-2">Deficiência</h6>
35
+ </div>
36
+ <div class="line"></div>
37
+ <p>
38
+ {{ userData.user_deficiency.deficiency_id | allDeficiencies }} -
39
+ {{ userData.user_deficiency.cid }}
40
+ </p>
41
+
42
+ <p v-show="userData.user_deficiency.appliance">
43
+ Acessório: {{ userData.user_deficiency.appliance }}
44
+ </p>
45
+
46
+ <p v-show="userData.user_deficiency.apparatus">
47
+ Necessidade: {{ userData.user_deficiency.apparatus }}
48
+ </p>
49
+
50
+ <p v-show="userData.user_deficiency.course">
51
+ Curso: {{ userData.user_deficiency.course }}
52
+ </p>
53
+
54
+ <p v-show="userData.user_deficiency.note">
55
+ Anotações: {{ userData.user_deficiency.note }}
56
+ </p>
57
+
58
+ <p v-show="userData.user_deficiency.transport === 1">
59
+ Utiliza transporte coletivo
60
+ </p>
61
+
62
+ <p v-show="userData.user_deficiency.vehicle === 1">
63
+ Possuí veículo adaptado
64
+ </p>
65
+
66
+ <p v-show="userData.user_deficiency.escort === 1">
67
+ Precisa de acompanhante
68
+ </p>
69
+ </div>
70
+
28
71
  <div
29
72
  v-show="userData.user_desired_job.length > 0"
30
73
  class="desidered title-block mt-3 ml-4"
@@ -70,49 +113,6 @@
70
113
  ></p>
71
114
  </div>
72
115
 
73
- <div
74
- class="deficiency title-block mt-3 ml-4"
75
- v-if="userData.user_deficiency"
76
- >
77
- <div class="d-flex align-items-center">
78
- <i class="fas fa-wheelchair"></i>
79
- <h6 class="mb-0 ml-2">Deficiência</h6>
80
- </div>
81
- <div class="line"></div>
82
- <p>
83
- {{ userData.user_deficiency.deficiency_id | allDeficiencies }} -
84
- {{ userData.user_deficiency.cid }}
85
- </p>
86
-
87
- <p v-show="userData.user_deficiency.appliance">
88
- Acessório: {{ userData.user_deficiency.appliance }}
89
- </p>
90
-
91
- <p v-show="userData.user_deficiency.apparatus">
92
- Necessidade: {{ userData.user_deficiency.apparatus }}
93
- </p>
94
-
95
- <p v-show="userData.user_deficiency.course">
96
- Curso: {{ userData.user_deficiency.course }}
97
- </p>
98
-
99
- <p v-show="userData.user_deficiency.note">
100
- Anotações: {{ userData.user_deficiency.note }}
101
- </p>
102
-
103
- <p v-show="userData.user_deficiency.transport === 1">
104
- Utiliza transporte coletivo
105
- </p>
106
-
107
- <p v-show="userData.user_deficiency.vehicle === 1">
108
- Possuí veículo adaptado
109
- </p>
110
-
111
- <p v-show="userData.user_deficiency.escort === 1">
112
- Precisa de acompanhante
113
- </p>
114
- </div>
115
-
116
116
  <div class="socials text-center mt-5">
117
117
  <a
118
118
  :href="baseUrl + '/' + userData.slug.slug"