This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div | |
| ref="tabberEl" | |
| :class="['c-tabber', { '-full-width': fullWidth, '-alternative': alternative }]" | |
| @mousedown="!noSwipe && bindScroll($event)" | |
| > | |
| <div | |
| ref="wrapperEl" | |
| :class="[ 'wrapper', { '-resizable': resizable } ]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <form class="c-form" name="formData" @submit.prevent="submitForm"> | |
| <div class="fields"> | |
| <slot> | |
| <template v-for="(field, fieldName) in fields"> | |
| <c-radio-button | |
| v-if="['radio', 'check'].includes(field.type)" | |
| class="radio field" | |
| :key="fieldName" | |
| :name="fieldName" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Media queries helpers | |
| $breakpoints: ( | |
| mobile: 0px, | |
| tablet: 1024px, | |
| desktop: 1280px | |
| ); | |
| @mixin xs-mobile { | |
| @media only screen and (max-width: #{map-get($breakpoints, mobile) - 1px}) { @content; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <c-popover | |
| align="left" | |
| class="actions-popover" | |
| :selector="scrollSelector" | |
| :target="target" | |
| @handler="$emit('close')" | |
| > | |
| <c-card class="actions" no-border> | |
| <slot> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { "id": "1" | |
| , "employee_quantity": 9 | |
| , "current_value": 23190000 | |
| , "last_value": 2190000 | |
| , "event": | |
| { "name": "Antecipação salarial 13 salário" | |
| , "type": "Provento" | |
| , "format": "Valor" | |
| } | |
| , "collaborators": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (define atom? | |
| (lambda (x) | |
| (and (not (pair? x)) (not (null? x))))) | |
| (define lat? | |
| (lambda (l) | |
| (cond | |
| ((null? l) #t) | |
| ((atom? (car l)) (lat? (cdr l))) | |
| (else #f)))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div class="c-multiselect" :class="generatedClass"> | |
| <label | |
| v-if="formLabel" | |
| class="label"> | |
| <span> | |
| {{ formLabel }}<span v-if="required" class="required">*</span> | |
| </span> | |
| </label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div class="activate-form"> | |
| <!-- modais --> | |
| <login-modal | |
| :opened="false" | |
| title="Bem vindo ao clube!" | |
| maintext="Parabéns, Seja bem vindo ao Clube!" | |
| text="Você está pronto para encontrar os melhores descontos em mais de [13948] parceiros" | |
| type="happy" | |
| button="Aproveitar o clube" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style lang="scss"> | |
| @import '~@style/reference'; | |
| .login-page { | |
| .logo-form { | |
| margin-bottom: 40px; | |
| margin-top: 50px !important; | |
| } |