Componentes do Style Guide da Uniasselvi construídos em Next.JS usando TypeScript.
npm install
para instalar as dependências. Depois rodar npm run dev
ou yarn dev
para iniciar a aplicação.
Botão simples, apenas com texto.
Name | Type | require | Default |
---|---|---|---|
style | string | false | "prime" |
size | string | false | empty string |
filled | boolean | false | false |
disabled | boolean | false | false |
rounded | boolean | false | false |
onClick | function | false | null |
prime
second
third
waring
right
wrong
small
large
<Button rounded={true} filled={true} style='prime' size='large'>Primário</Button>
Botão com ícone dentro. Pode receber ou não texto também.
Name | Type | require | Default |
---|---|---|---|
src | string | true | - |
style | string | false | "prime" |
size | string | false | empty string |
wide | boolean | false | false |
disabled | boolean | false | false |
rounded | boolean | false | false |
textBefore | string | false | empty string |
textAfter | string | false | empty string |
onClick | function | false | null |
prime
second
third
waring
right
wrong
small
large
<IconButton src='/img/ico/add.svg' rounded={true} style='prime' size='large' textAfter='Upload'></IconButton>
Toogle Switch simples, usado para que o usuário possa habilitar ou desabilitar algo dentro da aplicação.
Name | Type | require | Default |
---|---|---|---|
size | string | false | empty string |
disabled | boolean | false | false |
rounded | boolean | false | false |
checked | boolean | false | false |
small
large
<Switch checked={true} rounded={true}></Switch>
Input tipo checkbox, usado para questões de multipla escolha onde há a possibilidade de marcar mais de uma alterantiva ao mesmo tempo.
Name | Type | require | Default |
---|---|---|---|
id | string | true | - |
disabled | boolean | false | false |
checked | boolean | false | false |
tabIndex | number | false | - |
<Checkbox id={1} name='rg-1' checked={true}>Input type checkbox</Checkbox>
Input tipo radio, usado para questões de multipla escolha onde só há uma única resposta correta, sem possibilidade de marcar mais de uma opção ao mesmo tempo.
Name | Type | require | Default |
---|---|---|---|
id | string | true | - |
name | string | false | - |
disabled | boolean | false | false |
checked | boolean | false | false |
tabIndex | number | false | - |
<Radio id={1} name='rg-1' checked={true}>Input type radio</Radio>
Input tipo range, usado para medir o nível de algo, o quanto que a resposta tende mais para um dos lados.
Name | Type | require | Default |
---|---|---|---|
style | string | false | "prime" |
filled | boolean | false | false |
prime
second
third
right
wrong
<Range filled={true} style='prime' />
Input tipo text, usado para coletar informações curtas e diretas. EX.: cadastrar e-mail, senha, endereço, etc.
Name | Type | require | Default |
---|---|---|---|
style | string | false | empty string |
placeHolder | string | false | empty string |
value | string | false | empty string |
form | string | false | empty string |
wrap | string | false | "soft" |
cols | number | false | 20 |
rows | number | false | 2 |
minLenght | number | false | 0 |
maxLenght | number | false | 524288 |
required | boolean | false | false |
readOnly | boolean | false | false |
disabled | boolean | false | false |
autoFocus | boolean | false | false |
resize | boolean | false | false |
done
wrong
soft
hard
<TextArea
style='wrong'
cols={30}
rows={5}
maxLenght={100}
placeholder='Escreva algo aqui...'
value='Algo deu errado!'
/>
Input tipo text, usado para coletar informações curtas e diretas. EX.: cadastrar e-mail, senha, endereço, etc.
Name | Type | require | Default |
---|---|---|---|
style | string | false | empty string |
placeHolder | string | false | empty string |
value | string | false | empty string |
disabled | boolean | false | false |
done
warning
right
wrong
<TextField
src='/img/ico/user.svg'
value='Completo'
style='done'
/>
Usado para informar e/ou alertar o usuário sobre algo da aplicação, como, por exemplo, um erro, aviso, mensagem de sucesso, etc.
Name | Type | require | Default |
---|---|---|---|
style | string | false | "prime" |
title | string | false | empty string |
message | string | true | - |
onClick | function | false | null |
*OBS.: A prop onClick
é usada para passar uma função onClick() para o botão de fechar o alerta.*
prime
waring
right
wrong
<Alert title='Atenção' message='Mensagem de aviso' style='warning' />
Usado para informar algo sobre um elemento ou notificar o usuário.
Name | Type | require | Default |
---|---|---|---|
style | string | false | "prime" |
single | boolean | false | false |
*OBS.: A prop single
deve ser passada como {true}
se o conteúdo da label for muito curto, como, por exemplo, um número com até 2 algarismos.*
prime
second
third
waring
right
wrong
<Label style='prime' single={true}>11</Label>
Navegação em migalhas de pão. Útil para o usuário receber um feedback visual de qual a profundidade que ele está dentro da aplicação.
Name | Type | require | Default |
---|---|---|---|
href | string | true | - |
*OBS.: O componente CrumbsList
não recebe props, mas o CrumbsItem
precisa obrigatoriamente receber a prop href
.*
<CrumbsList>
<CrumbsItem href='/'>Início</CrumbsItem>
<CrumbsItem href='/'>Categorias</CrumbsItem>
<CrumbsItem href='/'>Ciências Exatas</CrumbsItem>
</CrumbsList>
Navegação de paginação, mostrando quantas páginas há de conteúdo disponível para ser navegado.
Esse componente irá checar se há a query page
na URL, e irá gerar o número de páginas disponíveis baseado nessa numeração juntamente com as props paginationMin
e paginationMax
.
Name | Type | require | Default |
---|---|---|---|
size | string | false | empty string |
paginationNumber | number | false | - |
paginationMin | number | true | - |
paginationMax | number | true | - |
*OBS.: A prop paginatioNumber
deve ser usada apenas para testes, quando se quer colocar o componente <Pagination/>
em uma página que não possui em sua URL uma query page
.*
small
large
<Pagination size='large' paginationMin={1} paginationMax={7}/>
Título das páginas. Podem ter tamanhos variados dependento da seção que o título se encontra.
Name | Type | require | Default |
---|---|---|---|
size | string | false | "h1" |
h1
h2
h3
h4
h5
h6
<Header size='h1'>Meu Título</Header>
Componente de lista ordenada. Recebe <li>
tags como children.
<OrderedList>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</OrderedList>
Componente de lista não ordenada. Recebe <li>
tags como children.
<UnorderedList>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</UnorderedList>