├── frontend
├── src
│ ├── app
│ │ ├── app.component.scss
│ │ ├── pages
│ │ │ ├── login
│ │ │ │ └── login.component.scss
│ │ │ ├── dashboard
│ │ │ │ └── dashboard.component.scss
│ │ │ └── user-profile
│ │ │ │ └── user-profile.component.scss
│ │ ├── components
│ │ │ ├── footer
│ │ │ │ ├── footer.component.html
│ │ │ │ ├── footer.component.scss
│ │ │ │ └── footer.component.ts
│ │ │ ├── navbar
│ │ │ │ └── navbar.component.scss
│ │ │ ├── sidebar
│ │ │ │ └── sidebar.component.scss
│ │ │ └── components.module.spec.ts
│ │ ├── layouts
│ │ │ ├── auth-layout
│ │ │ │ ├── auth-layout.component.scss
│ │ │ │ └── auth-layout.routing.ts
│ │ │ └── admin-layout
│ │ │ │ ├── admin-layout.component.scss
│ │ │ │ ├── admin-layout.component.html
│ │ │ │ ├── admin-layout.component.ts
│ │ │ │ └── admin-layout.routing.ts
│ │ ├── app.component.html
│ │ └── app.component.ts
│ ├── assets
│ │ ├── scss
│ │ │ ├── custom
│ │ │ │ ├── _map.scss
│ │ │ │ ├── _mask.scss
│ │ │ │ ├── _chart.scss
│ │ │ │ ├── _close.scss
│ │ │ │ ├── _modal.scss
│ │ │ │ ├── _tables.scss
│ │ │ │ ├── _footer.scss
│ │ │ │ ├── _header.scss
│ │ │ │ ├── _dropdown.scss
│ │ │ │ ├── _input-group.scss
│ │ │ │ ├── _popover.scss
│ │ │ │ ├── _progress.scss
│ │ │ │ ├── _separator.scss
│ │ │ │ ├── _list-group.scss
│ │ │ │ ├── _pagination.scss
│ │ │ │ ├── _icons.scss
│ │ │ │ ├── _nav.scss
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _avatar.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── _forms.scss
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _reboot.scss
│ │ │ │ ├── _type.scss
│ │ │ │ ├── _vendors.scss
│ │ │ │ ├── _card.scss
│ │ │ │ ├── _navbar.scss
│ │ │ │ ├── _custom-forms.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ └── _utilities.scss
│ │ │ ├── core
│ │ │ │ ├── headers
│ │ │ │ │ └── _header.scss
│ │ │ │ ├── utilities
│ │ │ │ │ ├── _sizing.scss
│ │ │ │ │ ├── _image.scss
│ │ │ │ │ ├── _overflow.scss
│ │ │ │ │ ├── _helper.scss
│ │ │ │ │ ├── _transform.scss
│ │ │ │ │ ├── _position.scss
│ │ │ │ │ └── _shadows.scss
│ │ │ │ ├── cards
│ │ │ │ │ ├── _card.scss
│ │ │ │ │ ├── _card-animations.scss
│ │ │ │ │ ├── _card-stats.scss
│ │ │ │ │ └── _card-blockquote.scss
│ │ │ │ ├── mixins
│ │ │ │ │ ├── _icon.scss
│ │ │ │ │ ├── _alert.scss
│ │ │ │ │ ├── _badge.scss
│ │ │ │ │ └── _modals.scss
│ │ │ │ ├── maps
│ │ │ │ │ └── _map.scss
│ │ │ │ ├── type
│ │ │ │ │ ├── _display.scss
│ │ │ │ │ ├── _article.scss
│ │ │ │ │ └── _type.scss
│ │ │ │ ├── masks
│ │ │ │ │ └── _mask.scss
│ │ │ │ ├── buttons
│ │ │ │ │ └── _button-brand.scss
│ │ │ │ ├── avatars
│ │ │ │ │ └── _avatar-group.scss
│ │ │ │ ├── badges
│ │ │ │ │ └── _badge-circle.scss
│ │ │ │ ├── popovers
│ │ │ │ │ └── _popover.scss
│ │ │ │ ├── modals
│ │ │ │ │ └── _modal.scss
│ │ │ │ └── vendors
│ │ │ │ │ └── _headroom.scss
│ │ │ └── angular-differences
│ │ │ │ ├── _angular-differences.scss
│ │ │ │ ├── _responsive.scss
│ │ │ │ └── _sidebar-and-main-panel.scss
│ │ ├── img
│ │ │ ├── brand
│ │ │ │ ├── red.png
│ │ │ │ ├── blue.png
│ │ │ │ ├── itau.png
│ │ │ │ ├── white.png
│ │ │ │ ├── favicon.png
│ │ │ │ ├── favicon0.png
│ │ │ │ ├── naelinda.jpg
│ │ │ │ └── argon-white.png
│ │ │ └── theme
│ │ │ │ ├── vue.jpg
│ │ │ │ ├── react.jpg
│ │ │ │ ├── angular.jpg
│ │ │ │ ├── sketch.jpg
│ │ │ │ ├── bootstrap.jpg
│ │ │ │ ├── profile-cover.jpg
│ │ │ │ ├── team-1-800x800.jpg
│ │ │ │ ├── team-2-800x800.jpg
│ │ │ │ ├── team-3-800x800.jpg
│ │ │ │ └── team-4-800x800.jpg
│ │ ├── fonts
│ │ │ └── nucleo
│ │ │ │ ├── nucleo-icons.eot
│ │ │ │ ├── nucleo-icons.ttf
│ │ │ │ ├── nucleo-icons.woff
│ │ │ │ └── nucleo-icons.woff2
│ │ └── vendor
│ │ │ ├── nucleo
│ │ │ └── fonts
│ │ │ │ ├── nucleo-icons.eot
│ │ │ │ ├── nucleo-icons.ttf
│ │ │ │ ├── nucleo-icons.woff
│ │ │ │ └── nucleo-icons.woff2
│ │ │ └── @fortawesome
│ │ │ └── fontawesome-free
│ │ │ ├── webfonts
│ │ │ ├── fa-solid-900.eot
│ │ │ ├── fa-solid-900.ttf
│ │ │ ├── fa-brands-400.eot
│ │ │ ├── fa-brands-400.ttf
│ │ │ ├── fa-brands-400.woff
│ │ │ ├── fa-regular-400.eot
│ │ │ ├── fa-regular-400.ttf
│ │ │ ├── fa-solid-900.woff
│ │ │ ├── fa-solid-900.woff2
│ │ │ ├── fa-brands-400.woff2
│ │ │ ├── fa-regular-400.woff
│ │ │ └── fa-regular-400.woff2
│ │ │ └── svgs
│ │ │ ├── brands
│ │ │ ├── facebook-f.svg
│ │ │ ├── facebook-messenger.svg
│ │ │ ├── facebook-square.svg
│ │ │ ├── houzz.svg
│ │ │ ├── flipboard.svg
│ │ │ ├── facebook.svg
│ │ │ ├── yandex-international.svg
│ │ │ ├── ethereum.svg
│ │ │ ├── black-tie.svg
│ │ │ ├── microsoft.svg
│ │ │ ├── bandcamp.svg
│ │ │ ├── gitter.svg
│ │ │ ├── strava.svg
│ │ │ ├── vuejs.svg
│ │ │ ├── css3.svg
│ │ │ ├── windows.svg
│ │ │ ├── y-combinator.svg
│ │ │ ├── google-drive.svg
│ │ │ ├── mix.svg
│ │ │ ├── patreon.svg
│ │ │ ├── uikit.svg
│ │ │ ├── viacoin.svg
│ │ │ ├── modx.svg
│ │ │ ├── npm.svg
│ │ │ ├── deviantart.svg
│ │ │ ├── servicestack.svg
│ │ │ ├── angular.svg
│ │ │ ├── dyalog.svg
│ │ │ ├── twitch.svg
│ │ │ ├── adn.svg
│ │ │ ├── dochub.svg
│ │ │ ├── hacker-news.svg
│ │ │ ├── firstdraft.svg
│ │ │ ├── html5.svg
│ │ │ ├── magento.svg
│ │ │ ├── yandex.svg
│ │ │ ├── autoprefixer.svg
│ │ │ ├── cloudsmith.svg
│ │ │ ├── monero.svg
│ │ │ ├── buysellads.svg
│ │ │ ├── maxcdn.svg
│ │ │ ├── stack-exchange.svg
│ │ │ ├── bitbucket.svg
│ │ │ ├── dropbox.svg
│ │ │ ├── css3-alt.svg
│ │ │ ├── dashcube.svg
│ │ │ ├── google.svg
│ │ │ ├── telegram-plane.svg
│ │ │ ├── elementor.svg
│ │ │ ├── google-play.svg
│ │ │ ├── korvue.svg
│ │ │ ├── cuttlefish.svg
│ │ │ ├── gg.svg
│ │ │ ├── gratipay.svg
│ │ │ ├── openid.svg
│ │ │ ├── product-hunt.svg
│ │ │ ├── discourse.svg
│ │ │ ├── rockrms.svg
│ │ │ ├── hotjar.svg
│ │ │ ├── hacker-news-square.svg
│ │ │ ├── sistrix.svg
│ │ │ ├── stack-overflow.svg
│ │ │ ├── yahoo.svg
│ │ │ ├── envira.svg
│ │ │ ├── pied-piper.svg
│ │ │ ├── bluetooth.svg
│ │ │ ├── bluetooth-b.svg
│ │ │ ├── telegram.svg
│ │ │ ├── digg.svg
│ │ │ ├── digital-ocean.svg
│ │ │ ├── flickr.svg
│ │ │ ├── kickstarter-k.svg
│ │ │ └── stripe-s.svg
│ │ │ ├── solid
│ │ │ ├── square-full.svg
│ │ │ ├── circle.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── fast-backward.svg
│ │ │ ├── fast-forward.svg
│ │ │ ├── sort-down.svg
│ │ │ ├── sort-up.svg
│ │ │ ├── stop.svg
│ │ │ ├── play.svg
│ │ │ ├── square.svg
│ │ │ ├── minus.svg
│ │ │ ├── window-minimize.svg
│ │ │ ├── caret-down.svg
│ │ │ ├── folder.svg
│ │ │ ├── comment-alt.svg
│ │ │ ├── star-half.svg
│ │ │ ├── adjust.svg
│ │ │ ├── caret-right.svg
│ │ │ ├── genderless.svg
│ │ │ ├── hockey-puck.svg
│ │ │ ├── caret-left.svg
│ │ │ ├── caret-up.svg
│ │ │ ├── columns.svg
│ │ │ ├── location-arrow.svg
│ │ │ ├── map-marker.svg
│ │ │ ├── dot-circle.svg
│ │ │ ├── minus-circle.svg
│ │ │ ├── mobile.svg
│ │ │ ├── stop-circle.svg
│ │ │ ├── tablet.svg
│ │ │ ├── window-maximize.svg
│ │ │ ├── play-circle.svg
│ │ │ ├── volume-off.svg
│ │ │ ├── file.svg
│ │ │ ├── step-backward.svg
│ │ │ ├── step-forward.svg
│ │ │ ├── angle-down.svg
│ │ │ ├── angle-left.svg
│ │ │ ├── angle-right.svg
│ │ │ ├── angle-up.svg
│ │ │ ├── dice-one.svg
│ │ │ ├── sticky-note.svg
│ │ │ ├── sort.svg
│ │ │ ├── table.svg
│ │ │ ├── burn.svg
│ │ │ ├── chalkboard.svg
│ │ │ ├── filter.svg
│ │ │ ├── heart.svg
│ │ │ ├── glass-martini.svg
│ │ │ ├── lock.svg
│ │ │ ├── minus-square.svg
│ │ │ ├── pause.svg
│ │ │ ├── seedling.svg
│ │ │ ├── ellipsis-v.svg
│ │ │ ├── meh-blank.svg
│ │ │ ├── paper-plane.svg
│ │ │ ├── qrcode.svg
│ │ │ ├── battery-empty.svg
│ │ │ ├── box.svg
│ │ │ ├── comment.svg
│ │ │ ├── ellipsis-h.svg
│ │ │ ├── forward.svg
│ │ │ ├── sign.svg
│ │ │ ├── suitcase.svg
│ │ │ ├── tv.svg
│ │ │ ├── utensil-spoon.svg
│ │ │ ├── backward.svg
│ │ │ ├── caret-square-down.svg
│ │ │ ├── desktop.svg
│ │ │ ├── neuter.svg
│ │ │ ├── equals.svg
│ │ │ ├── coffee.svg
│ │ │ ├── cross.svg
│ │ │ ├── long-arrow-alt-down.svg
│ │ │ ├── long-arrow-alt-up.svg
│ │ │ ├── map.svg
│ │ │ ├── plus.svg
│ │ │ ├── video.svg
│ │ │ ├── battery-full.svg
│ │ │ ├── battery-half.svg
│ │ │ ├── chart-area.svg
│ │ │ ├── chevron-left.svg
│ │ │ ├── clock.svg
│ │ │ ├── clone.svg
│ │ │ ├── folder-minus.svg
│ │ │ ├── long-arrow-alt-left.svg
│ │ │ ├── long-arrow-alt-right.svg
│ │ │ ├── pen.svg
│ │ │ ├── toggle-on.svg
│ │ │ ├── arrow-alt-circle-up.svg
│ │ │ ├── battery-quarter.svg
│ │ │ ├── industry.svg
│ │ │ ├── user-alt.svg
│ │ │ ├── arrow-alt-circle-right.svg
│ │ │ ├── arrow-down.svg
│ │ │ ├── arrow-left.svg
│ │ │ ├── arrow-up.svg
│ │ │ ├── battery-three-quarters.svg
│ │ │ ├── cloud.svg
│ │ │ ├── glass-martini-alt.svg
│ │ │ ├── map-marker-alt.svg
│ │ │ ├── star.svg
│ │ │ ├── user-tie.svg
│ │ │ ├── user.svg
│ │ │ ├── arrow-alt-circle-down.svg
│ │ │ ├── arrow-alt-circle-left.svg
│ │ │ ├── arrow-right.svg
│ │ │ ├── laptop.svg
│ │ │ ├── archive.svg
│ │ │ ├── chevron-circle-up.svg
│ │ │ ├── divide.svg
│ │ │ ├── gem.svg
│ │ │ ├── briefcase.svg
│ │ │ ├── brush.svg
│ │ │ ├── check.svg
│ │ │ ├── chevron-circle-down.svg
│ │ │ ├── chevron-circle-left.svg
│ │ │ ├── chevron-circle-right.svg
│ │ │ ├── compact-disc.svg
│ │ │ ├── dice-two.svg
│ │ │ ├── exclamation.svg
│ │ │ ├── hospital-symbol.svg
│ │ │ ├── meh.svg
│ │ │ ├── paragraph.svg
│ │ │ ├── door-closed.svg
│ │ │ ├── pause-circle.svg
│ │ │ ├── plus-circle.svg
│ │ │ ├── shield-alt.svg
│ │ │ ├── unlock.svg
│ │ │ ├── eject.svg
│ │ │ ├── lock-open.svg
│ │ │ ├── mobile-alt.svg
│ │ │ ├── parking.svg
│ │ │ ├── phone.svg
│ │ │ ├── tablet-alt.svg
│ │ │ ├── tape.svg
│ │ │ ├── wine-glass.svg
│ │ │ ├── caret-square-up.svg
│ │ │ ├── chevron-down.svg
│ │ │ ├── chevron-right.svg
│ │ │ ├── chevron-up.svg
│ │ │ ├── surprise.svg
│ │ │ ├── tag.svg
│ │ │ ├── bowling-ball.svg
│ │ │ ├── caret-square-left.svg
│ │ │ ├── caret-square-right.svg
│ │ │ ├── cube.svg
│ │ │ ├── less-than.svg
│ │ │ ├── level-down-alt.svg
│ │ │ ├── level-up-alt.svg
│ │ │ ├── mouse-pointer.svg
│ │ │ ├── music.svg
│ │ │ ├── tint.svg
│ │ │ ├── vial.svg
│ │ │ ├── wallet.svg
│ │ │ ├── window-restore.svg
│ │ │ ├── bolt.svg
│ │ │ ├── flask.svg
│ │ │ ├── screwdriver.svg
│ │ │ ├── store-alt.svg
│ │ │ ├── bed.svg
│ │ │ ├── fire.svg
│ │ │ └── greater-than.svg
│ │ │ └── regular
│ │ │ ├── window-minimize.svg
│ │ │ ├── circle.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── window-maximize.svg
│ │ │ ├── square.svg
│ │ │ ├── star-half.svg
│ │ │ ├── file.svg
│ │ │ ├── folder.svg
│ │ │ ├── window-restore.svg
│ │ │ ├── stop-circle.svg
│ │ │ ├── calendar.svg
│ │ │ ├── play-circle.svg
│ │ │ ├── sticky-note.svg
│ │ │ ├── comment-alt.svg
│ │ │ ├── dot-circle.svg
│ │ │ ├── meh-blank.svg
│ │ │ └── minus-square.svg
│ ├── environments
│ │ └── environment.prod.ts
│ ├── styles.scss
│ ├── favicon.ico
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── tslint.json
│ └── browserslist
├── e2e
│ ├── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
│ └── tsconfig.e2e.json
├── CHANGELOG.md
├── .editorconfig
├── ISSUE_TEMPLATE.md
└── tsconfig.json
├── mer.png
├── backend
├── .mvn
│ └── wrapper
│ │ ├── maven-wrapper.jar
│ │ └── maven-wrapper.properties
├── src
│ ├── test
│ │ └── java
│ │ │ └── com
│ │ │ └── itau
│ │ │ └── backend
│ │ │ └── DemoApplicationTests.java
│ └── main
│ │ └── java
│ │ └── com
│ │ └── itau
│ │ └── backend
│ │ ├── repository
│ │ ├── PontoRepository.java
│ │ └── UsuarioRepository.java
│ │ └── DemoApplication.java
└── .gitignore
├── README.md
└── .vscode
└── launch.json
/frontend/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/pages/login/login.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/components/footer/footer.component.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/components/footer/footer.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/components/navbar/navbar.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/components/sidebar/sidebar.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/pages/dashboard/dashboard.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/layouts/auth-layout/auth-layout.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/pages/user-profile/user-profile.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/app/layouts/admin-layout/admin-layout.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/mer.png
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_map.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Maps
3 | //
4 |
5 | @import "../core/maps/map";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_mask.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Mask
3 | //
4 |
5 | @import "../core/masks/mask";
6 |
--------------------------------------------------------------------------------
/frontend/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/frontend/src/styles.scss:
--------------------------------------------------------------------------------
1 | /* You can add global styles to this file, and also import other style files */
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_chart.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Chart
3 | //
4 |
5 | @import "../core/charts/chart";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_close.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Close
3 | //
4 |
5 | @import "../core/close/close"
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_modal.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Modal
3 | //
4 |
5 | @import "../core/modals/modal";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_tables.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Tables
3 | //
4 |
5 | @import "../core/tables/table";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_footer.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Footer
3 | //
4 |
5 | @import "../core/footers/footer";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_header.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Header
3 | //
4 |
5 | @import "../core/headers/header";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_dropdown.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Dropdown
3 | //
4 |
5 | @import "../core/dropdowns/dropdown";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_input-group.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Input group
3 | //
4 |
5 | @import "../core/forms/input-group";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_popover.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Popover
3 | //
4 |
5 |
6 | @import "../core/popovers/popover";
7 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_progress.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Progress
3 | //
4 |
5 | @import "../core/progresses/progress";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_separator.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Separator
3 | //
4 |
5 | @import "../core/separators/separator";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/core/headers/_header.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Header
3 | //
4 |
5 | .header {
6 | position: relative;
7 | }
8 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_list-group.scss:
--------------------------------------------------------------------------------
1 | //
2 | // List group
3 | //
4 |
5 | @import "../core/list-groups/list-group";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_pagination.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Pagination
3 | //
4 |
5 | @import "../core/paginations/pagination";
6 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/core/utilities/_sizing.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Height
3 | //
4 |
5 | .h-100vh {
6 | height: 100vh !important;
7 | }
8 |
--------------------------------------------------------------------------------
/frontend/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/favicon.ico
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_icons.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Icon
3 | //
4 |
5 | @import "../core/icons/icon";
6 | @import "../core/icons/icon-shape";
7 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_nav.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Nav
3 | //
4 |
5 |
6 | @import "../core/navs/nav";
7 | @import "../core/navs/nav-pills";
8 |
--------------------------------------------------------------------------------
/frontend/src/assets/img/brand/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/red.png
--------------------------------------------------------------------------------
/frontend/src/assets/img/theme/vue.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/vue.jpg
--------------------------------------------------------------------------------
/frontend/src/assets/scss/core/cards/_card.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Card
3 | //
4 |
5 |
6 | .card-translucent {
7 | background-color: rgba(18, 91, 152, 0.08);
8 | }
9 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_alert.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Alert
3 | //
4 |
5 | @import "../core/alerts/alert";
6 | @import "../core/alerts/alert-dismissible";
7 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_avatar.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Avatar
3 | //
4 |
5 | @import "../core/avatars/avatar";
6 | @import "../core/avatars/avatar-group";
7 |
--------------------------------------------------------------------------------
/backend/.mvn/wrapper/maven-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/.mvn/wrapper/maven-wrapper.jar
--------------------------------------------------------------------------------
/frontend/src/assets/img/brand/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/blue.png
--------------------------------------------------------------------------------
/frontend/src/assets/img/brand/itau.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/itau.png
--------------------------------------------------------------------------------
/frontend/src/assets/img/brand/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/white.png
--------------------------------------------------------------------------------
/frontend/src/assets/img/theme/react.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/react.jpg
--------------------------------------------------------------------------------
/frontend/src/assets/img/brand/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/favicon.png
--------------------------------------------------------------------------------
/frontend/src/assets/img/brand/favicon0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/favicon0.png
--------------------------------------------------------------------------------
/frontend/src/assets/img/brand/naelinda.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/naelinda.jpg
--------------------------------------------------------------------------------
/frontend/src/assets/img/theme/angular.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/angular.jpg
--------------------------------------------------------------------------------
/frontend/src/assets/img/theme/sketch.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/sketch.jpg
--------------------------------------------------------------------------------
/frontend/src/assets/scss/angular-differences/_angular-differences.scss:
--------------------------------------------------------------------------------
1 | @import "sidebar-and-main-panel";
2 | @import "responsive";
3 | @import "./plugins/ng-bootstrap";
4 |
--------------------------------------------------------------------------------
/frontend/src/assets/img/theme/bootstrap.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/bootstrap.jpg
--------------------------------------------------------------------------------
/frontend/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 | # MER
13 | 
14 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/core/mixins/_modals.scss:
--------------------------------------------------------------------------------
1 | @mixin modal-variant($background) {
2 | .modal-title {
3 | color: color-yiq($background);
4 | }
5 | .modal-header,
6 | .modal-footer {
7 | border-color: rgba(color-yiq($background), .075);
8 | }
9 | .modal-content {
10 | background-color: $background;
11 | color: color-yiq($background);
12 |
13 | .heading {
14 | color: color-yiq($background);
15 | }
16 | }
17 |
18 | .close {
19 | &>span:not(.sr-only) {
20 | color: $white;
21 | }
22 | }
23 | }
--------------------------------------------------------------------------------
/frontend/src/assets/scss/core/type/_type.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Type
3 | //
4 |
5 |
6 | // Paragraphs
7 |
8 | p {
9 | font-size: $paragraph-font-size;
10 | font-weight: $paragraph-font-weight;
11 | line-height: $paragraph-line-height;
12 | }
13 |
14 | .lead {
15 | font-size: $lead-font-size;
16 | font-weight: $lead-font-weight;
17 | line-height: $paragraph-line-height;
18 | margin-top: 1.5rem;
19 |
20 | + .btn-wrapper {
21 | margin-top: 3rem;
22 | }
23 | }
24 |
25 | .description {
26 | font-size: $font-size-sm;
27 | }
28 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/html5.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/core/utilities/_position.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Position
3 | // modifier classes to be applied on an abosolute positioned element
4 | // use it next to .position-absolute class
5 | //
6 |
7 | @each $size, $value in $spacers {
8 | .top-#{$size} {
9 | top: $value;
10 | }
11 | .right-#{$size} {
12 | right: $value;
13 | }
14 | .bottom-#{$size} {
15 | bottom: $value;
16 | }
17 | .left-#{$size} {
18 | left: $value;
19 | }
20 | }
21 |
22 | .center {
23 | left: 50%;
24 | transform: translateX(-50%);
25 | }
26 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/magento.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/table.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/star-half.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/burn.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/filter.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heart.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lock.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pause.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/seedling.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/monero.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/file.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/box.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/comment.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/forward.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sign.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tv.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/folder.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/backward.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/desktop.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/neuter.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/equals.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/coffee.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cross.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/video.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/custom/_utilities.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Utilities
3 | //
4 |
5 | @import "../core/utilities/backgrounds";
6 | @import "../core/utilities/floating";
7 | @import "../core/utilities/helper";
8 | @import "../core/utilities/image";
9 | @import "../core/utilities/opacity";
10 | @import "../core/utilities/overflow";
11 | @import "../core/utilities/position";
12 | @import "../core/utilities/sizing";
13 | @import "../core/utilities/spacing";
14 | @import "../core/utilities/shadows";
15 | @import "../core/utilities/text";
16 | @import "../core/utilities/transform";
17 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clock.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clone.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pen.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/telegram-plane.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/industry.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/scss/core/utilities/_shadows.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Shadows
3 | //
4 |
5 | // General styles
6 | [class*="shadow"] {
7 | @if $enable-transitions {
8 | transition: $transition-base;
9 | }
10 | }
11 |
12 |
13 | // Size variations
14 | .shadow-sm--hover:hover {
15 | box-shadow: $box-shadow-sm !important;
16 | }
17 |
18 | .shadow--hover:hover {
19 | box-shadow: $box-shadow !important;
20 | }
21 |
22 | .shadow-lg--hover:hover {
23 | box-shadow: $box-shadow-lg !important;
24 | }
25 |
26 | .shadow-none--hover:hover {
27 | box-shadow: none !important;
28 | }
29 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/elementor.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google-play.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/korvue.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cloud.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map-marker-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/star.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gg.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/openid.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/stop-circle.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/laptop.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/discourse.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archive.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/divide.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gem.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/calendar.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/play-circle.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/sticky-note.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/brush.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/check.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hospital-symbol.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | "configurations": [
3 | {
4 | "type": "java",
5 | "name": "Spring Boot-GerenciamentoPontoEletronicoItauEstagsApplication