-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from idopterlabs/developer/tdanin
Melhorias no Boilerplate - Setembro
- Loading branch information
Showing
37 changed files
with
1,547 additions
and
221 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Changelog 📝 | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.0.2] - 2022-09-26 | ||
|
||
### Added | ||
|
||
- Adicionado componente alternativo ao Alert para mostrar erros de forma mais sutil (Snackbar) | ||
- Adicionado retornos original de http status e http response data para erros de request | ||
- Adicionado exemplo de testes usando FireEvent | ||
- Adicionado Mock para RN Reanimated | ||
- Adicionado Mock para RN Safe Area Context | ||
|
||
### Changed | ||
|
||
- Definindo versão fixa de instalação do React Native Reanimated | ||
- Primeira letra do campo de erro é mostrado com letra maiúscula | ||
- Novo componente de input com suporte melhor a dark mode, eventos de troca de texto e mostrar label personalizada. | ||
|
||
### Fixed | ||
|
||
- Usando estilo compatível com VSCode Styled | ||
- Alinhando texto de erro no input | ||
- Status 422 agora mostrar o erro processado | ||
- Tirando opacidade da cores em componentes desabilitados | ||
- Adicionado opção para configurar cor do `placeholder` | ||
- Mock de navegação incorporar o tema | ||
- Evitar problemas de sobreposição do teclado no iOS onde há scroll | ||
- Suporte a DarkMode para o Select | ||
- FormData não funcionar no Jest | ||
- Falhas na importação de funções do RN Platform | ||
- Corrigido problema do Safe Area Context não funcionar no Jest | ||
|
||
## [1.0.1] - 2022-06-20 | ||
|
||
### Fixed | ||
|
||
- Aplicando cor no fundo que faltava | ||
|
||
## [1.0.0] - 2022-06-13 | ||
|
||
### Added | ||
|
||
- Criado boilerplate |
This file contains 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 file contains 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 file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
diff --git a/node_modules/react-native-element-dropdown/src/components/Dropdown/index.tsx b/node_modules/react-native-element-dropdown/src/components/Dropdown/index.tsx | ||
index a8feae8..94edebf 100644 | ||
--- a/node_modules/react-native-element-dropdown/src/components/Dropdown/index.tsx | ||
+++ b/node_modules/react-native-element-dropdown/src/components/Dropdown/index.tsx | ||
@@ -449,7 +449,6 @@ const DropdownComponent = React.forwardRef<any, DropdownProps>( | ||
ref={refList} | ||
onScrollToIndexFailed={scrollIndex} | ||
data={listData} | ||
- inverted | ||
renderItem={_renderItem} | ||
keyExtractor={(_item, index) => index.toString()} | ||
showsVerticalScrollIndicator={showsVerticalScrollIndicator} | ||
diff --git a/node_modules/react-native-element-dropdown/src/components/MultiSelect/index.tsx b/node_modules/react-native-element-dropdown/src/components/MultiSelect/index.tsx | ||
index ad33b78..2c306e8 100644 | ||
--- a/node_modules/react-native-element-dropdown/src/components/MultiSelect/index.tsx | ||
+++ b/node_modules/react-native-element-dropdown/src/components/MultiSelect/index.tsx | ||
@@ -420,7 +420,6 @@ const MultiSelectComponent = React.forwardRef<any, MultiSelectProps>( | ||
{...flatListProps} | ||
keyboardShouldPersistTaps="handled" | ||
data={listData} | ||
- inverted | ||
renderItem={_renderItem} | ||
keyExtractor={(_item, index) => index.toString()} | ||
showsVerticalScrollIndicator={showsVerticalScrollIndicator} |
This file contains 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 file contains 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
Oops, something went wrong.