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
// This is the default html and body font-size for the base rem value. | |
$rem-base: 16px !default; | |
$base-font-family: 'din-2014', Arial, sans-serif; | |
$fallback-font-family: Arial, sans-serif; | |
// --- Colors --- | |
$colors: ( | |
primary: ( | |
enterpriseGreen: #169a5a, |
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
// This is the default html and body font-size for the base rem value. | |
$rem-base: 16px !default; | |
$base-font-family: 'din-2014', Arial, sans-serif; | |
$fallback-font-family: Arial, sans-serif; | |
// --- Colors --- | |
$colors: ( | |
primary: ( | |
enterpriseGreen: #169a5a, |
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
// This is the default html and body font-size for the base rem value. | |
$rem-base: 16px !default; | |
$base-font-family: 'din-2014', Arial, sans-serif; | |
$fallback-font-family: Arial, sans-serif; | |
// --- Colors --- | |
$colors: ( | |
primary: ( | |
enterpriseGreen: #169a5a, |
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
// This is the default html and body font-size for the base rem value. | |
$rem-base: 16px !default; | |
$base-font-family: 'din-2014', Arial, sans-serif; | |
$fallback-font-family: Arial, sans-serif; | |
$heading: ( | |
/* name element font-size weight line-height letter-spacing text-transform */ | |
mobile: ( |
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
import { HttpLink } from 'apollo-link-http'; | |
import { ApolloClient, DefaultOptions } from 'apollo-client'; | |
import { InMemoryCache, NormalizedCacheObject } from 'apollo-cache-inmemory'; | |
import { ApolloLink } from 'apollo-link'; | |
import { resolvers } from './resolvers'; | |
import { typeDefs } from './schema/typeDefs'; | |
import { errorLink } from './error'; | |
import { requestLink } from './requestLink'; | |
import customFetch from './customFetch'; |
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
<div className="dragDropContainer"> | |
<DragDropContext onDragEnd={this.onDragEnd}> | |
<DroppableZone | |
items={this.state.include} | |
segId={'segmentation-list_include'} | |
droppableId={'droppable_include'} | |
title={'Include'} | |
/> | |
<div className="segmentation-list container-drag flex-grow"> | |
<div className="header-container"> |
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" : ObjectId("5bca202e4bddc2793e6741fb"), | |
"CRQ":2118, | |
"nome":"Vicente", | |
"sobrenome":"Kayser", | |
"salario":4200, | |
"especialidade":"Fezes", | |
"exames":[ | |
ObjectId("5bca214e4bddc2793e674200") //2 |
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
<ion-item *ngIf="message.from !== username" class="messageNotUser" [ngClass]="{'my_message': message.from === username, 'other_message': message.from !== username}"> | |
<span class="user_name">{{ message.from }}:</span><br> | |
<span>{{ message.text }}</span> | |
<div class="time">Lançado dia: {{message.created | date:'dd.MM hh:MM'}}</div> | |
</ion-item> |
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
import { HnrContent } from '../models/hnrcontent.interface'; | |
const hnrcontentModal: HnrContent[] = [ | |
{ | |
itemId: "1T", | |
topic: "Valor Hora", | |
items: [ | |
{ | |
valueId: 1, | |
description: "Despesas Correntes", |
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
import { VALOR_HORA_CARD_TOTAL } from './../../classes/valor-hora_soma'; | |
import { VALOR_HORA_CARD_LIST } from '../../classes/valor-hora'; | |
import { HONORARIOS_EXEC_CARD_TOTAL } from './../../classes/honorariosExec_soma'; | |
import { HONORARIOS_EXEC_CARD_LIST } from './../../classes/honorariosExec'; | |
import { HONORARIOS_PROJ_CARD_LIST } from './../../classes/honorariosProj'; | |
import { HONORARIOS_PROJ_CARD_TOTAL } from '../../classes/honorariosProj_soma'; | |
import { VALOR_HORA_HNR_TOTAL } from "../../classes/valor-hora_honorarios"; | |
import { HCard } from './../../models/hcard.interface'; | |
import { VHCard } from '../../models/vhcard.interface'; |
NewerOlder