Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: shx-selecao/cotacao-dolar-full
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mepadev/shx-front-challenge
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 12 commits
  • 14 files changed
  • 1 contributor

Commits on Feb 13, 2024

  1. Docs: Add reference to default Node.js on project

    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 13, 2024
    Copy the full SHA
    f84ee9d View commit details
  2. Style: Add and old version of Tailwind for CSS.

    For angular 12, only Tailwind v2.x will work.
    
    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 13, 2024
    Copy the full SHA
    377f17f View commit details
  3. Feat: Update MVC about Current USD Exchange, and modify style of its …

    …presentation
    
    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 13, 2024
    Copy the full SHA
    aea3e6a View commit details
  4. Style: Create a Sidenav using Angular Material

    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 13, 2024
    Copy the full SHA
    5c5bf58 View commit details
  5. Docs: Add simple Readme for instructions

    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 13, 2024
    Copy the full SHA
    5cda3a8 View commit details

Commits on Feb 14, 2024

  1. Chore: Update Angular's packages to last version on major 12

    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 14, 2024
    Copy the full SHA
    5ed2b48 View commit details
  2. Feat: Update Datapicker with Angular Material and add Validators

    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 14, 2024
    Copy the full SHA
    31d361b View commit details
  3. Feat: Add Angular Material table with Pagination, Sort and Filter

    Update old list of elements.
    
    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 14, 2024
    Copy the full SHA
    884dcb3 View commit details
  4. Feat: Add optional filter for list of smaller exchanges on current US…

    …D price
    
    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 14, 2024
    Copy the full SHA
    c774eef View commit details
  5. Docs: Add screenshot of project

    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 14, 2024
    Copy the full SHA
    a6a5971 View commit details
  6. Docs: Update README and add Screenshot

    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 14, 2024
    Copy the full SHA
    5fd73be View commit details

Commits on Feb 29, 2024

  1. Feat: Creation of the visualization of the highest quote of the perio…

    …d with Back integration.
    
    Also, a small CSS change was implemented for displaying values below the current quote.
    
    Signed-off-by: Mepa <mepamaze@gmail.com>
    mepadev committed Feb 29, 2024
    Copy the full SHA
    55d0db6 View commit details
Showing with 4,029 additions and 3,484 deletions.
  1. +1 −0 .tool-versions
  2. +37 −0 README.md
  3. +3,685 −3,387 package-lock.json
  4. +16 −13 package.json
  5. +6 −0 postcss.config.js
  6. BIN preview/screenshot.png
  7. +1 −26 src/app/app.component.css
  8. +114 −18 src/app/app.component.html
  9. +100 −33 src/app/app.component.ts
  10. +25 −2 src/app/app.module.ts
  11. +5 −3 src/app/cotacao.ts
  12. +16 −2 src/app/cotacaodolar.service.ts
  13. +3 −0 src/styles.css
  14. +20 −0 tailwind.config.js
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodejs 12.14.1
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# FRONT-END SHX Admission Test

### The project's focus is to obtain information about the current dollar exchange rate.

## Screenshot
![Screenshot](./preview/screenshot.png)

## Dependencies
- Node 12.14.1
- Angular 12.2.x
- VSCode Extension: Angular Language Service 12.2.x !IMPORTANT

## How to Install
```bash
npm install
```

## How to Run
```bash
npm run start
```

## How to contribute

If you want to add anything to any of my Open Source projects, please follow the Conventional Commits standard:

### --> https://www.conventionalcommits.org/en/v1.0.0/

Example:

```typescript
<type>[optional scope]: <description>

[optional body]

[optional footer(s)]
```
Loading