@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.
- package/assets/sass/burh-ds/atoms/_buttons.scss +219 -219
- package/assets/sass/burh-ds/content/_interface-spa.scss +306 -306
- package/assets/sass/burh-ds/content/_main-content.scss +25 -25
- package/assets/sass/burh-ds/variables/_colors.scss +350 -350
- package/components/argon-core/BaseDropdown.vue +114 -114
- package/components/argon-core/BaseProgress.vue +121 -121
- package/components/argon-core/Modal.vue +184 -184
- package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
- package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
- package/components/burh-ds/Cards/RecruitmentCard.vue +214 -214
- package/components/burh-ds/Collapse/DefaultCollapse.vue +70 -70
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvMiddle.vue +497 -496
- package/components/burh-ds/Curriculum/UserCurriculum/index.vue +245 -245
- package/components/burh-ds/Dropdown/JobStatusDropdown.vue +145 -145
- package/components/burh-ds/Headings/AppHeader.vue +162 -162
- package/components/burh-ds/Inputs/SearchInput.vue +64 -64
- package/components/burh-ds/Lists/VagasSimple.vue +404 -404
- package/components/burh-ds/Loadings/LoadingFullPage.vue +68 -68
- package/components/burh-ds/Loads/LoadingBar.vue +83 -83
- package/components/burh-ds/Modals/MobileModal.vue +65 -65
- package/components/burh-ds/Modals/NewUserModal.vue +87 -87
- package/components/burh-ds/Modals/SharedModal.vue +270 -270
- package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
- package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
- package/components/burh-ds/Skeleton/Cards.vue +86 -86
- package/components/burh-ds/Skeleton/Home.vue +100 -100
- package/components/burh-ds/Skeleton/RecruitmentCard.vue +169 -169
- package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
- package/components/layouts/burh-ds/footer/ProductsFooter.vue +330 -330
- package/nuxt.config.js +206 -206
- package/package.json +1 -1
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="input__container__icon">
|
|
3
|
-
<label for="search">
|
|
4
|
-
<i class="fas fa-search"></i>
|
|
5
|
-
</label>
|
|
6
|
-
<input type="text" name="search" id="search" :placeholder="placeholder" v-model="searchModel" @change="$emit('change')">
|
|
7
|
-
</div>
|
|
8
|
-
</template>
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
export default {
|
|
12
|
-
name: 'search-input',
|
|
13
|
-
props: {
|
|
14
|
-
search: String,
|
|
15
|
-
placeholder: {
|
|
16
|
-
type: String,
|
|
17
|
-
default: 'Busque por vaga'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
data() {
|
|
21
|
-
return {
|
|
22
|
-
searchModel: null
|
|
23
|
-
};
|
|
24
|
-
},
|
|
25
|
-
mounted() {
|
|
26
|
-
this.searchModel = this.search;
|
|
27
|
-
},
|
|
28
|
-
watch: {
|
|
29
|
-
search(value) {
|
|
30
|
-
this.searchModel = value;
|
|
31
|
-
},
|
|
32
|
-
searchModel(value) {
|
|
33
|
-
this.$emit('search', value);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
};
|
|
37
|
-
</script>
|
|
38
|
-
|
|
39
|
-
<style lang="scss" scoped>
|
|
40
|
-
.input__container__icon {
|
|
41
|
-
position: relative;
|
|
42
|
-
display: flex;
|
|
43
|
-
align-items: center;
|
|
44
|
-
border-radius: 100px;
|
|
45
|
-
max-width: 270px;
|
|
46
|
-
overflow: hidden;
|
|
47
|
-
border: 1px solid #E9ECEF;
|
|
48
|
-
input {
|
|
49
|
-
background: transparent;
|
|
50
|
-
border: 0;
|
|
51
|
-
outline: none;
|
|
52
|
-
padding: 5px 0;
|
|
53
|
-
width: 100%;
|
|
54
|
-
}
|
|
55
|
-
label {
|
|
56
|
-
margin: 0;
|
|
57
|
-
display: block;
|
|
58
|
-
}
|
|
59
|
-
i {
|
|
60
|
-
padding: 0 10px;
|
|
61
|
-
color: #AEB6BE;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="input__container__icon">
|
|
3
|
+
<label for="search">
|
|
4
|
+
<i class="fas fa-search"></i>
|
|
5
|
+
</label>
|
|
6
|
+
<input type="text" name="search" id="search" :placeholder="placeholder" v-model="searchModel" @change="$emit('change')">
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
export default {
|
|
12
|
+
name: 'search-input',
|
|
13
|
+
props: {
|
|
14
|
+
search: String,
|
|
15
|
+
placeholder: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: 'Busque por vaga'
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
data() {
|
|
21
|
+
return {
|
|
22
|
+
searchModel: null
|
|
23
|
+
};
|
|
24
|
+
},
|
|
25
|
+
mounted() {
|
|
26
|
+
this.searchModel = this.search;
|
|
27
|
+
},
|
|
28
|
+
watch: {
|
|
29
|
+
search(value) {
|
|
30
|
+
this.searchModel = value;
|
|
31
|
+
},
|
|
32
|
+
searchModel(value) {
|
|
33
|
+
this.$emit('search', value);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
</script>
|
|
38
|
+
|
|
39
|
+
<style lang="scss" scoped>
|
|
40
|
+
.input__container__icon {
|
|
41
|
+
position: relative;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
border-radius: 100px;
|
|
45
|
+
max-width: 270px;
|
|
46
|
+
overflow: hidden;
|
|
47
|
+
border: 1px solid #E9ECEF;
|
|
48
|
+
input {
|
|
49
|
+
background: transparent;
|
|
50
|
+
border: 0;
|
|
51
|
+
outline: none;
|
|
52
|
+
padding: 5px 0;
|
|
53
|
+
width: 100%;
|
|
54
|
+
}
|
|
55
|
+
label {
|
|
56
|
+
margin: 0;
|
|
57
|
+
display: block;
|
|
58
|
+
}
|
|
59
|
+
i {
|
|
60
|
+
padding: 0 10px;
|
|
61
|
+
color: #AEB6BE;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
</style>
|