Skip to content

Commit

Permalink
build: bump to latest submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
oriolagobat committed Dec 10, 2023
1 parent 8eb6179 commit c335616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refuapp-frontend
Submodule refuapp-frontend updated 65 files
+3,980 −4,613 app/package-lock.json
+62 −68 app/package.json
+1 −8 app/src/app/app.component.html
+1 −7 app/src/app/app.component.ts
+7 −37 app/src/app/app.module.ts
+1 −3 app/src/app/components/language-settings/language-settings.component.ts
+4 −1 app/src/app/components/map/map.component.html
+11 −10 app/src/app/components/map/map.component.ts
+155 −0 app/src/app/components/map/map.store.ts
+1 −3 app/src/app/components/refuge-info/refuge-info.component.ts
+75 −0 app/src/app/components/refuge-modal/modal.store.ts
+1 −1 app/src/app/components/refuge-modal/refuge-modal.component.html
+10 −8 app/src/app/components/refuge-modal/refuge-modal.component.ts
+5 −5 app/src/app/components/refuge/refuge.page.ts
+7 −10 app/src/app/components/reservations-chart/reservations-chart.component.ts
+1 −3 app/src/app/components/reservations-item/reservations-item.component.ts
+4 −8 app/src/app/components/searchbar-location/searchbar-location.component.ts
+1 −3 app/src/app/pages/about/about.page.ts
+1 −3 app/src/app/pages/forbidden/forbidden/forbidden.page.ts
+7 −4 app/src/app/pages/home/home.page.html
+14 −8 app/src/app/pages/home/home.page.ts
+1 −3 app/src/app/pages/internal-error-page/internal-error-page.page.ts
+1 −3 app/src/app/pages/login/login.page.ts
+1 −3 app/src/app/pages/logout/logout.page.ts
+1 −3 app/src/app/pages/not-found-page/not-found-page.page.ts
+69 −5 app/src/app/pages/profile/profile-get/profile.page.html
+104 −8 app/src/app/pages/profile/profile-get/profile.page.ts
+0 −5 app/src/app/pages/profile/profile-routing.module.ts
+0 −13 app/src/app/pages/profile/profile-update/profile-update/profile-update.page.html
+0 −0 app/src/app/pages/profile/profile-update/profile-update/profile-update.page.scss
+0 −17 app/src/app/pages/profile/profile-update/profile-update/profile-update.page.spec.ts
+0 −177 app/src/app/pages/profile/profile-update/profile-update/profile-update.page.ts
+3 −2 app/src/app/pages/profile/profile.module.ts
+1 −3 app/src/app/pages/programming-error/programming-error.page.ts
+1 −3 app/src/app/pages/reservations/reservations.page.ts
+11 −6 app/src/app/pages/reservations/reservations.store.ts
+2 −4 app/src/app/pages/signup/signup.page.ts
+2 −2 app/src/app/schemas/user/fetch/get-refuge-schema.ts
+57 −0 app/src/app/schemas/user/update/update-user-error.ts
+34 −0 app/src/app/schemas/user/update/update-user-response.ts
+2 −0 app/src/app/schemas/user/user.ts
+1 −1 app/src/app/services/auth/auth.service.ts
+5 −5 app/src/app/services/map/map.service.ts
+31 −5 app/src/app/services/user/user.service.ts
+0 −8 app/src/app/state/app.state.ts
+0 −2 app/src/app/state/errors/error.effects.ts
+0 −7 app/src/app/state/init/init.actions.ts
+0 −52 app/src/app/state/init/init.effects.ts
+0 −32 app/src/app/state/init/init.reducer.ts
+0 −14 app/src/app/state/init/init.selectors.ts
+0 −22 app/src/app/state/map/map.actions.ts
+0 −89 app/src/app/state/map/map.effects.ts
+0 −40 app/src/app/state/map/map.reducer.ts
+0 −9 app/src/app/state/map/map.selectors.ts
+0 −17 app/src/app/state/modal/modal.actions.ts
+0 −56 app/src/app/state/modal/modal.effects.ts
+0 −31 app/src/app/state/modal/modal.reducer.ts
+0 −11 app/src/app/state/modal/modal.selectors.ts
+0 −15 app/src/app/state/refuges/refuges.actions.ts
+0 −56 app/src/app/state/refuges/refuges.effects.ts
+0 −37 app/src/app/state/refuges/refuges.reducer.ts
+0 −8 app/src/app/state/refuges/refuges.selectors.ts
+13 −0 app/src/assets/i18n/ca.json
+13 −0 app/src/assets/i18n/en.json
+13 −0 app/src/assets/i18n/es.json

0 comments on commit c335616

Please sign in to comment.