├── .babelrc.js ├── .build_scripts └── az-upload.js ├── .circleci └── config.yml ├── .dockerignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report---production.md │ ├── bug-report---staging.md │ └── feature_request.md ├── issue_template.md └── workflows │ └── add-issue-to-backlog.yml ├── .gitignore ├── .nvmrc ├── .unimported.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DOCS-GRID.md ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── env.js ├── getHttpsConfig.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── modules.js ├── paths.js ├── pnpTs.js ├── webpack.config.js └── webpackDevServer.config.js ├── cypress-test.sh ├── docker-compose.yml ├── package.json ├── public ├── humans.txt ├── index.html └── robots.txt ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── assets │ ├── env.js │ ├── graphics │ │ ├── content │ │ │ ├── 2020 │ │ │ │ ├── IFRC-icons-colour_Affected-people.svg │ │ │ │ ├── IFRC-icons-colour_Appeal-budget-Funding-Requirements.svg │ │ │ │ ├── IFRC-icons-colour_Cross-ns.svg │ │ │ │ ├── IFRC-icons-colour_DREF.svg │ │ │ │ ├── IFRC-icons-colour_Emergency-appeal.svg │ │ │ │ └── IFRC-icons-colour_Funding-Coverage.svg │ │ │ ├── .gitkeep │ │ │ ├── IFRC_Surge_01.jpg │ │ │ ├── IFRC_Surge_02.jpg │ │ │ ├── IMRoles.jpg │ │ │ ├── Pyramid.png │ │ │ ├── RIT400.jpg │ │ │ ├── adm.jpg │ │ │ ├── arc_logo.png │ │ │ ├── aurc_logo.svg │ │ │ ├── brc_logo.png │ │ │ ├── crc_logo.png │ │ │ ├── dnk_logo.png │ │ │ ├── download.svg │ │ │ ├── ericsson_logo.png │ │ │ ├── eru.jpg │ │ │ ├── esp_logo.svg │ │ │ ├── fact.jpg │ │ │ ├── frc_logo.png │ │ │ ├── heops.jpg │ │ │ ├── jrc_logo.png │ │ │ ├── nlrc_logo.jpg │ │ │ ├── operational_timeline_bodi.svg │ │ │ ├── operational_timeline_body.svg │ │ │ ├── operational_timeline_title.svg │ │ │ ├── pdc_logo.svg │ │ │ ├── per_approach.svg │ │ │ ├── per_approach_notext.png │ │ │ ├── per_approach_notext.svg │ │ │ ├── per_old.jpg │ │ │ ├── rdrt.jpg │ │ │ ├── swiss.svg │ │ │ ├── us_aid.svg │ │ │ ├── usr.jpg │ │ │ ├── wiki-help-header1.svg │ │ │ ├── wiki-help-section.png │ │ │ └── wiki-help-section.svg │ │ ├── layout │ │ │ ├── .gitkeep │ │ │ ├── FollowThisOperation.png │ │ │ ├── OpenInGO.png │ │ │ ├── ViewFullReport.png │ │ │ ├── card-mid-line.svg │ │ │ ├── card-tick.svg │ │ │ ├── card-x.svg │ │ │ ├── circle-information-hover.svg │ │ │ ├── circle-information.svg │ │ │ ├── close-full-screen.svg │ │ │ ├── country-plan.png │ │ │ ├── emergency-brand.svg │ │ │ ├── emergency.svg │ │ │ ├── eru-brand.svg │ │ │ ├── eru.svg │ │ │ ├── fact-brand.svg │ │ │ ├── fact.svg │ │ │ ├── full-screen.svg │ │ │ ├── fullscreen-square.svg │ │ │ ├── funding-coverage.svg │ │ │ ├── funding-requirements.svg │ │ │ ├── funding.svg │ │ │ ├── go-logo-2020-withbackground.svg │ │ │ ├── go-logo-2020.png │ │ │ ├── go-logo-2020.svg │ │ │ ├── go-logo-2020_orig.svg │ │ │ ├── go-logo-2020_orig_no_padding.svg │ │ │ ├── go-pdf-footer.png │ │ │ ├── heops-brand.svg │ │ │ ├── heops.svg │ │ │ ├── ifrc-square.png │ │ │ ├── ifrc_logo_2020.svg │ │ │ ├── logo-appeals.svg │ │ │ ├── logo-dref.svg │ │ │ ├── logo-icon.svg │ │ │ ├── people.svg │ │ │ ├── targeted-population.svg │ │ │ ├── tick.png │ │ │ └── x-thin.svg │ │ └── meta │ │ │ ├── .gitkeep │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ └── favicon.ico │ └── icons │ │ ├── collecticons │ │ ├── affected-population.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-loop.svg │ │ ├── arrow-right-diagonal.svg │ │ ├── arrow-right.svg │ │ ├── arrow-spin-clockwise.svg │ │ ├── arrow-up.svg │ │ ├── book.svg │ │ ├── calendar.svg │ │ ├── cash-bag.svg │ │ ├── cash-notes.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-step-backward.svg │ │ ├── chevron-step-forward.svg │ │ ├── chevron-up.svg │ │ ├── circle-exclamation.svg │ │ ├── circle-information.svg │ │ ├── circle-question.svg │ │ ├── circle-tick.svg │ │ ├── circle-xmark.svg │ │ ├── clipboard-list.svg │ │ ├── clock-back.svg │ │ ├── clock.svg │ │ ├── code.svg │ │ ├── cog.svg │ │ ├── compass.svg │ │ ├── devseed.svg │ │ ├── disc-xmark.svg │ │ ├── download.svg │ │ ├── ellipsis-horizontal.svg │ │ ├── ellipsis-vertical.svg │ │ ├── envelope.svg │ │ ├── facebook.svg │ │ ├── folder.svg │ │ ├── github.svg │ │ ├── globe.svg │ │ ├── google-plus.svg │ │ ├── grid-3x3.svg │ │ ├── hamburger-menu.svg │ │ ├── heart-full.svg │ │ ├── house.svg │ │ ├── humanitarian-assessment.svg │ │ ├── humanitarian-basecamp.svg │ │ ├── humanitarian-cash.svg │ │ ├── humanitarian-cea.svg │ │ ├── humanitarian-comms.svg │ │ ├── humanitarian-download.svg │ │ ├── humanitarian-health.svg │ │ ├── humanitarian-im.svg │ │ ├── humanitarian-itt.svg │ │ ├── humanitarian-livelihood.svg │ │ ├── humanitarian-logs.svg │ │ ├── humanitarian-opsmanagement.svg │ │ ├── humanitarian-other.svg │ │ ├── humanitarian-pdf.svg │ │ ├── humanitarian-pgi.svg │ │ ├── humanitarian-pmer.svg │ │ ├── humanitarian-relief.svg │ │ ├── humanitarian-security.svg │ │ ├── humanitarian-shelter.svg │ │ ├── humanitarian-wash.svg │ │ ├── id-editor.svg │ │ ├── link.svg │ │ ├── list.svg │ │ ├── location.svg │ │ ├── magnifier-left-grey.svg │ │ ├── magnifier-left.svg │ │ ├── magnifier-right.svg │ │ ├── map.svg │ │ ├── marker.svg │ │ ├── medium.svg │ │ ├── minus.svg │ │ ├── pages.svg │ │ ├── pencil.svg │ │ ├── people-arrows.svg │ │ ├── picture.svg │ │ ├── plus.svg │ │ ├── pop-up.svg │ │ ├── quote-left.svg │ │ ├── rc-appeals.svg │ │ ├── rc-appeals_2020.svg │ │ ├── rc-block.svg │ │ ├── rc.svg │ │ ├── rc_2020.svg │ │ ├── share.svg │ │ ├── slack.svg │ │ ├── sliders-horizontal.svg │ │ ├── sm-chevron-down.svg │ │ ├── sm-chevron-left.svg │ │ ├── sm-chevron-right.svg │ │ ├── sm-chevron-up.svg │ │ ├── sm-minus.svg │ │ ├── sm-plus.svg │ │ ├── sm-tick.svg │ │ ├── sm-triangle-down.svg │ │ ├── sm-triangle-left.svg │ │ ├── sm-triangle-right.svg │ │ ├── sm-triangle-up.svg │ │ ├── sm-xmark.svg │ │ ├── sort-asc.svg │ │ ├── sort-desc.svg │ │ ├── sort-none.svg │ │ ├── sort.svg │ │ ├── star-full.svg │ │ ├── text-block.svg │ │ ├── tick.svg │ │ ├── trash-bin.svg │ │ ├── triangle-down-grey.svg │ │ ├── triangle-down.svg │ │ ├── triangle-left.svg │ │ ├── triangle-right.svg │ │ ├── triangle-up.svg │ │ ├── twitter.svg │ │ ├── upload.svg │ │ ├── user.svg │ │ ├── xmark.svg │ │ └── youtube.svg │ │ └── icomoon │ │ ├── Read Me.txt │ │ ├── demo-files │ │ ├── demo.css │ │ └── demo.js │ │ ├── demo.html │ │ ├── fonts │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ │ ├── selection.json │ │ └── style.css ├── index.js ├── root │ ├── Multiplexer │ │ ├── history.ts │ │ ├── index.js │ │ └── styles.module.scss │ ├── actions │ │ ├── index.js │ │ └── query-external.js │ ├── components │ │ ├── Alert │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── AlertContainer │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── AlertContext.tsx │ │ ├── AnonymousRoute.js │ │ ├── BasicModal │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── BulletTextArea │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ButtonLikeLink │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Card │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Charts │ │ │ └── index.js │ │ ├── Checkbox │ │ │ ├── Checkmark │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Checklist │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Chip │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ConfirmButton │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Container │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── DREFFileImport │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── DREFFileInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── DateInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── DateOutput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Description │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── DrefApplicationList │ │ │ ├── ActiveDrefList │ │ │ │ ├── ActiveDrefTable │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── CompletedDrefList │ │ │ │ ├── CompletedDrefTable │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ShareUserModal │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ ├── styles.module.scss │ │ │ └── useDrefApplicationListOptions.ts │ │ ├── DrefExportButton │ │ │ └── index.tsx │ │ ├── DrefPdfDocument │ │ │ ├── AboutServicesOutput │ │ │ │ └── index.tsx │ │ │ ├── BudgetFileOutput │ │ │ │ └── index.tsx │ │ │ ├── ContactInformationOutput │ │ │ │ ├── ContactSection │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── EssentialInformationOutput │ │ │ │ └── index.tsx │ │ │ ├── EventDescriptionOutput │ │ │ │ └── index.tsx │ │ │ ├── HeadingOutput │ │ │ │ └── index.tsx │ │ │ ├── IcrcActionsOutput │ │ │ │ └── index.tsx │ │ │ ├── MovementPartnerOutput │ │ │ │ └── index.tsx │ │ │ ├── NationalSocietyOutput │ │ │ │ └── index.tsx │ │ │ ├── NeedIdentifiedOutput │ │ │ │ └── index.tsx │ │ │ ├── ObjectivesAndStrategy │ │ │ │ └── index.tsx │ │ │ ├── OtherActionsOutput │ │ │ │ └── index.tsx │ │ │ ├── PageNumberPdf │ │ │ │ └── index.tsx │ │ │ ├── PlannedInterventionOutput │ │ │ │ └── index.tsx │ │ │ ├── PreviousOperationOutput │ │ │ │ └── index.tsx │ │ │ ├── RiskAndSecurityOutput │ │ │ │ └── index.tsx │ │ │ ├── TargetedPopulationOutput │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── DropdownMenuItem │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ElementFragments │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── EmergencyThreeWDetails │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── EmergencyThreeWForm │ │ │ ├── ERUInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── EmergencyEventInput │ │ │ │ └── index.tsx │ │ │ ├── SectorInput │ │ │ │ ├── ActivityInput │ │ │ │ │ ├── SupplyInput │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── CustomActivityInput │ │ │ │ │ ├── CustomSupplyInput │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── DisaggregationInputs │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── PointInput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ ├── styles.module.scss │ │ │ └── useEmergencyThreeWOptions.ts │ │ ├── EmptyMessage │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── EnvironmentBanner │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── ExpandButton │ │ │ └── index.tsx │ │ ├── ExpandableContainer │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ExportProjectsButton │ │ │ └── index.tsx │ │ ├── ExportTableButton │ │ │ └── index.tsx │ │ ├── ExportableView │ │ │ ├── ExportButton.js │ │ │ ├── ExportContainer.js │ │ │ ├── ExportFooter.js │ │ │ ├── ExportHeader.js │ │ │ ├── ExportHiddenContent.js │ │ │ ├── ExportOnlyContent.js │ │ │ ├── exportContext.js │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── FileInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── FinalReportExport │ │ │ └── index.tsx │ │ ├── FinalReportPdfDocument │ │ │ ├── ContactInformationOutput │ │ │ │ ├── ContactSection │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── EssentialInformationOutput │ │ │ │ └── index.tsx │ │ │ ├── EventDescriptionOutput │ │ │ │ └── index.tsx │ │ │ ├── FinancialReportFileOutput │ │ │ │ └── index.tsx │ │ │ ├── HeadingOutput │ │ │ │ └── index.tsx │ │ │ ├── IcrcActionsOutput │ │ │ │ └── index.tsx │ │ │ ├── MovementPartnerOutput │ │ │ │ └── index.tsx │ │ │ ├── NationalSocietyOutput │ │ │ │ └── index.tsx │ │ │ ├── NeedIdentifiedOutput │ │ │ │ └── index.tsx │ │ │ ├── ObjectivesAndStrategy │ │ │ │ └── index.tsx │ │ │ ├── OtherActionsOutput │ │ │ │ └── index.tsx │ │ │ ├── PlannedInterventionOutput │ │ │ │ └── index.tsx │ │ │ ├── RiskAndSecurityOutput │ │ │ │ └── index.tsx │ │ │ ├── TargetedPopulationOutput │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── FlashUpdateFileInput │ │ │ └── index.tsx │ │ ├── Footer │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── FullPageErrorMessage │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── GoFileInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── GoMapDisclaimer │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Header │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Heading │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── InfoPopup │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── InputContainer │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── InputElementFragments │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── InputError │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── InputLabel │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── InputSection │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── KeyFigure │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── LanguageSelect │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── Link │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── List.tsx │ │ ├── ListView │ │ │ ├── Message │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ │ ├── MapEaseTo │ │ │ └── index.tsx │ │ ├── MapTooltipContent │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── NewGlobalLoading │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── NonFieldError │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── NumberInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── NumberOutput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── OperationalUpdateExport │ │ │ └── index.tsx │ │ ├── OperationalUpdatePdfDocument │ │ │ ├── AboutServicesOutput │ │ │ │ └── index.tsx │ │ │ ├── BudgetFileOutput │ │ │ │ └── index.tsx │ │ │ ├── ContactInformationOutput │ │ │ │ ├── ContactSection │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── EssentialInformationOutput │ │ │ │ └── index.tsx │ │ │ ├── EventDescriptionOutput │ │ │ │ └── index.tsx │ │ │ ├── HeadingOutput │ │ │ │ └── index.tsx │ │ │ ├── IcrcActionsOutput │ │ │ │ └── index.tsx │ │ │ ├── MovementPartnerOutput │ │ │ │ └── index.tsx │ │ │ ├── NationalSocietyOutput │ │ │ │ └── index.tsx │ │ │ ├── NeedIdentifiedOutput │ │ │ │ └── index.tsx │ │ │ ├── ObjectivesAndStrategy │ │ │ │ └── index.tsx │ │ │ ├── OtherActionsOutput │ │ │ │ └── index.tsx │ │ │ ├── PlannedInterventionOutput │ │ │ │ └── index.tsx │ │ │ ├── RiskAndSecurityOutput │ │ │ │ └── index.tsx │ │ │ ├── SummaryOfChangeOutput │ │ │ │ └── index.tsx │ │ │ ├── TargetedPopulationOutput │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Page │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── PageHeader │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Pager │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── PdfTextOutput │ │ │ ├── index.tsx │ │ │ └── pdfStyles.ts │ │ ├── PrivateRoute.js │ │ ├── ProgressBar │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RadioInput │ │ │ ├── Radio │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RawButton │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RawInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RawTextArea │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ReducedListDisplay │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RegionOutput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RichTextArea │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RichTextOutput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RiskImminentEventMap │ │ │ ├── ADAMEventMap │ │ │ │ ├── PointDetails │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Sidebar │ │ │ │ │ ├── EventDetail │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── GDACSEventMap │ │ │ │ ├── PointDetails │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Sidebar │ │ │ │ │ ├── EventDetails │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── MapFooter │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── MeteoSwissEvent │ │ │ │ ├── PointDetails │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Sidebar │ │ │ │ │ ├── EventDetails │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── PDCEventMap │ │ │ │ ├── HazardMapImage │ │ │ │ └── index.tsx │ │ │ │ ├── PointDetails │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ │ ├── Sidebar │ │ │ │ ├── EventDetail │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ ├── RouterTabs │ │ │ └── index.js │ │ ├── SearchSelectInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── SegmentInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── SelectInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Svg │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Switch │ │ │ ├── SwitchIcon │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ │ ├── Table │ │ │ ├── Cell │ │ │ │ └── index.tsx │ │ │ ├── HeaderCell │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── TableData │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── TableRow │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── predefinedColumns.ts │ │ │ ├── styles.module.scss │ │ │ ├── types.ts │ │ │ ├── useDownloading.ts │ │ │ ├── useFiltering.ts │ │ │ ├── useHiding.ts │ │ │ ├── useOrdering.ts │ │ │ ├── useRowExpansion.tsx │ │ │ └── useSorting.ts │ │ ├── TableActions │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Tabs │ │ │ ├── Tab │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── TabContext.tsx │ │ │ ├── TabList │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── TabPanel │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── TextArea │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── TextInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── TextOutput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ThreeWDetails │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ThreeWForm │ │ │ ├── AnnualSplitInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── RegionSelectionInput │ │ │ │ ├── FilterOutput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── MapAdmin2Select.tsx │ │ │ │ ├── MapDistrictSelect.tsx │ │ │ │ ├── RegionSelectionModal │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── common.ts │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ ├── styles.module.scss │ │ │ └── useThreeWOptions.ts │ │ ├── ThreeWList │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ThreeWSankey │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── Translate │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── TranslationWarningBanner │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── UserSearchSelectInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── WikiLink │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── about │ │ │ └── video-carousel.js │ │ ├── admin-area-elements.js │ │ ├── auth-controls.js │ │ ├── backdrop.js │ │ ├── block-loading.js │ │ ├── breadcrumb.js │ │ ├── bullet-table.js │ │ ├── common │ │ │ ├── dropdown.js │ │ │ ├── filters │ │ │ │ └── date-filter-header.js │ │ │ ├── fullscreen-header.js │ │ │ ├── info-icon.js │ │ │ ├── key-figures-header.js │ │ │ ├── table-basic.js │ │ │ ├── toggle-button.js │ │ │ └── tooltip.js │ │ ├── confirm-modal.js │ │ ├── connected │ │ │ ├── alerts-table.js │ │ │ ├── all-personnel-table.js │ │ │ ├── appeals-table.js │ │ │ ├── emergencies-dash.js │ │ │ ├── emergencies-table.js │ │ │ ├── eru-table.js │ │ │ ├── field-reports-table.js │ │ │ ├── new-password.js │ │ │ ├── personnel-table.js │ │ │ ├── presentation-dash.js │ │ │ ├── styles.module.scss │ │ │ └── user-menu.js │ │ ├── contact-row.js │ │ ├── country-list.js │ │ ├── country │ │ │ ├── preparedness-column-graph.js │ │ │ ├── preparedness-overview.js │ │ │ ├── preparedness-phase-outcomes.js │ │ │ ├── preparedness-summary.js │ │ │ └── preparedness-work-plan.js │ │ ├── deployments │ │ │ ├── personnel-by-event-table.js │ │ │ └── readiness.js │ │ ├── display-table.js │ │ ├── dropdown-menu.js │ │ ├── emergencies │ │ │ ├── overview.js │ │ │ ├── snippets.js │ │ │ └── stats.js │ │ ├── error-panel.js │ │ ├── expandable.js │ │ ├── export-button-component.js │ │ ├── export-button-container.js │ │ ├── fold.js │ │ ├── form-elements │ │ │ ├── checkable.js │ │ │ ├── checkbox-group-actions.js │ │ │ ├── checkbox-group.js │ │ │ ├── checkbox.js │ │ │ ├── date-input.js │ │ │ ├── error.js │ │ │ ├── faram-checkbox.js │ │ │ ├── index.js │ │ │ ├── input-select.js │ │ │ ├── input.js │ │ │ ├── misc.js │ │ │ ├── number-input.js │ │ │ ├── radio-group.js │ │ │ ├── radio.js │ │ │ ├── raw-input.js │ │ │ ├── select-input.js │ │ │ ├── select.js │ │ │ ├── text-input.js │ │ │ └── textarea.js │ │ ├── formatted-date.js │ │ ├── formatted-number.js │ │ ├── global-header-banner.js │ │ ├── global-loading.js │ │ ├── header-region-button.js │ │ ├── highlighted-operations │ │ │ ├── index.js │ │ │ └── operation-card.js │ │ ├── map │ │ │ ├── common │ │ │ │ ├── download-button.js │ │ │ │ ├── emergencies-left-menu.js │ │ │ │ ├── map-component.js │ │ │ │ ├── map-footer.js │ │ │ │ └── map-header.js │ │ │ ├── country-map.js │ │ │ ├── deployments-map.js │ │ │ ├── emergencies-map.js │ │ │ ├── emergency-map.js │ │ │ ├── home-map │ │ │ │ ├── appeal-types-dropdown.js │ │ │ │ ├── emergency-types-dropdown.js │ │ │ │ ├── explanation-bubble.js │ │ │ │ ├── factory │ │ │ │ │ └── marker-layer-stylesheet-factory.js │ │ │ │ ├── filtering │ │ │ │ │ ├── comparator │ │ │ │ │ │ ├── appeal-type-comparator.js │ │ │ │ │ │ ├── date-comparator.js │ │ │ │ │ │ └── emergency-type-comparator.js │ │ │ │ │ └── filtering-processor.js │ │ │ │ └── operations-popover.js │ │ │ ├── main-map.js │ │ │ ├── per-map.js │ │ │ └── per-map │ │ │ │ ├── explanation-bubble.js │ │ │ │ ├── factory │ │ │ │ └── marker-layer-stylesheet-factory.js │ │ │ │ ├── operations-popover.js │ │ │ │ ├── per-phase-dropdown.js │ │ │ │ └── per-type-dropdown.js │ │ ├── mobile-navbar.js │ │ ├── modal.js │ │ ├── navbar.js │ │ ├── page-footer.js │ │ ├── per-forms │ │ │ ├── factory │ │ │ │ └── request-factory.js │ │ │ ├── per-account.js │ │ │ ├── per-form.js │ │ │ ├── per-overview.js │ │ │ └── per-table.js │ │ ├── pills.js │ │ ├── portal.js │ │ ├── preparedness │ │ │ ├── contact-per.js │ │ │ ├── factory │ │ │ │ └── national-societies-engaged-per-graph-data-factory.js │ │ │ ├── global-preparedness-highlights.js │ │ │ ├── national-societies-engaged-per.js │ │ │ └── preparedness-header.js │ │ ├── progress-labeled.js │ │ ├── progress.js │ │ ├── spinner.js │ │ ├── system-alerts.js │ │ ├── tab-content.js │ │ ├── text-output.js │ │ └── timeline-charts.js │ ├── config.js │ ├── declarations │ │ ├── docx4js.d.ts │ │ ├── png.d.ts │ │ ├── react-through.d.ts │ │ ├── scss.d.ts │ │ ├── svg.d.ts │ │ └── ttf.d.ts │ ├── hooks │ │ ├── index.js │ │ ├── useAlert.ts │ │ ├── useBasicLayout │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── useBooleanState.ts │ │ ├── useConfirmation │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── useDebouncedValue.ts │ │ ├── useDidUpdateEffect.ts │ │ ├── useDropHandler.tsx │ │ ├── useExportButton.js │ │ ├── useHash.ts │ │ ├── useInputState.ts │ │ └── useReduxState.ts │ ├── index.js │ ├── lang.js │ ├── languageContext.js │ ├── reducers │ │ ├── actions.js │ │ ├── admin-area.js │ │ ├── appeal-documents.js │ │ ├── appeals.js │ │ ├── countries.js │ │ ├── country-overview.js │ │ ├── csv.js │ │ ├── deployments.js │ │ ├── disaster-types.js │ │ ├── districts.js │ │ ├── domain-whitelist.js │ │ ├── email.js │ │ ├── emergencies.js │ │ ├── eru-owners.js │ │ ├── event.js │ │ ├── export-per-to-csv.js │ │ ├── external_partners.js │ │ ├── fdrs.js │ │ ├── field-report-form.js │ │ ├── field-report.js │ │ ├── field-reports.js │ │ ├── heops.js │ │ ├── index.js │ │ ├── lang-all.js │ │ ├── lang.js │ │ ├── main_contacts.js │ │ ├── ns-rapid-response.js │ │ ├── overall-stats.js │ │ ├── password.js │ │ ├── per-areas.js │ │ ├── per-components.js │ │ ├── per-form.js │ │ ├── per-latest-overview.js │ │ ├── per-overview.js │ │ ├── per-questions.js │ │ ├── personnel-by-event.js │ │ ├── profile.js │ │ ├── projects.js │ │ ├── regions.js │ │ ├── registration.js │ │ ├── resend-validation.js │ │ ├── situation-reports.js │ │ ├── subscriptions.js │ │ ├── supported_activities.js │ │ ├── surge-alerts.js │ │ └── user.js │ ├── resources │ │ ├── montserrat.bold.ttf │ │ ├── open-sans.bold.ttf │ │ ├── open-sans.italic.ttf │ │ └── open-sans.regular.ttf │ ├── schemas │ │ ├── new-password.js │ │ ├── per-overview.js │ │ └── register.js │ ├── selectors │ │ └── index.js │ ├── sentry.ts │ ├── types │ │ ├── common.ts │ │ ├── country.ts │ │ ├── dref.ts │ │ ├── eru.ts │ │ ├── event.ts │ │ ├── index.ts │ │ ├── project.ts │ │ ├── risk.ts │ │ └── user.ts │ ├── utils │ │ ├── appeal-type-constants.js │ │ ├── common.ts │ │ ├── constants.js │ │ ├── country-labels.js │ │ ├── download-starter.js │ │ ├── eru-types.js │ │ ├── exception │ │ │ └── FormatDateException.js │ │ ├── export-map.js │ │ ├── extendables.js │ │ ├── field-report-constants.js │ │ ├── form.ts │ │ ├── format.js │ │ ├── fullscreen.js │ │ ├── get-country-meta.js │ │ ├── get-new-map.js │ │ ├── get-per-components.js │ │ ├── get-per-process-type.js │ │ ├── ie.js │ │ ├── lang.js │ │ ├── map.ts │ │ ├── mapGeo │ │ │ └── index.tsx │ │ ├── mergeDeployData.js │ │ ├── network.js │ │ ├── pdf │ │ │ ├── pdfStyles.ts │ │ │ └── pdfVariables.ts │ │ ├── reducer-utils.js │ │ ├── request.js │ │ ├── resolveUrl.ts │ │ ├── restRequest │ │ │ ├── go.ts │ │ │ ├── index.ts │ │ │ ├── useRecursiveCsvRequest.ts │ │ │ └── useRecursiveRequest.ts │ │ ├── risk-icons │ │ │ ├── cyclone.png │ │ │ ├── cyclone.svg │ │ │ ├── drought.png │ │ │ ├── drought.svg │ │ │ ├── earthquake.png │ │ │ ├── flood.png │ │ │ ├── flood.svg │ │ │ ├── food-insecurity.svg │ │ │ ├── storm-surge.png │ │ │ └── wildfire.png │ │ ├── risk.ts │ │ ├── scrollToTop.ts │ │ ├── search.ts │ │ ├── special-map-labels.js │ │ ├── store.js │ │ └── utils.js │ └── views │ │ ├── AllEmergencyThreeW │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── AllFlashUpdates │ │ ├── TableLists.tsx │ │ ├── flashUpdateTableColumns.ts │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── AllThreeW │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── ClearInitCache │ │ ├── index.js │ │ └── styles.module.scss │ │ ├── Country │ │ ├── CountryPlan │ │ │ ├── MembershipCoordinationTable │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── StrategicPrioritiesTable │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RiskWatch │ │ │ ├── ImminentEvents │ │ │ │ ├── ImminentEventsADAM │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── ImminentEventsMeteoSwiss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── ImminentEventsPDC │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ImminentEventsGDACS │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── SeasonalRisk │ │ │ │ ├── ChartLegendItem │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── HistoricalDataChart │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── MonthSelector │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── PossibleEarlyActionTable │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── ReturnPeriodTable │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── RiskBarChart │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── RiskTable │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── common.ts │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ThreeW │ │ │ ├── InCountryProjects │ │ │ │ ├── Filters │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Map │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── SankeyFilters │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── NSProjects │ │ │ │ ├── Filters │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Map │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── SankeyFilters │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ProjectDetailModal │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ProjectFlowSankey │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ProjectFormModal │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ProjectStatPieChart │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ProjectTableActions │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── common.ts │ │ │ ├── export-headers.js │ │ │ ├── index.tsx │ │ │ ├── projectTableColumns.ts │ │ │ └── styles.module.scss │ │ └── index.js │ │ ├── CountryProfile │ │ ├── Card │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── ClimateChart.js │ │ ├── Container │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── ExternalSources.js │ │ ├── IndicatorOutput.js │ │ ├── InformIndicators.js │ │ ├── KeyClimateEvents.js │ │ ├── KeyDocuments.js │ │ ├── KeyIndicators.js │ │ ├── Map.js │ │ ├── NSIndicators.js │ │ ├── PastCrisesEvents.js │ │ ├── PastEpidemics.js │ │ ├── PastOperation.js │ │ ├── PopulationMap.js │ │ ├── SeasonalCalendar.js │ │ ├── SocialEvents.js │ │ ├── common.js │ │ ├── index.js │ │ └── styles.module.scss │ │ ├── Covid19ThreeWSankey │ │ ├── Filters.js │ │ ├── index.js │ │ └── styles.module.scss │ │ ├── DrefApplicationForm │ │ ├── ActionsFields │ │ │ ├── NSActionInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── NeedInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── CaptionInput │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── DrefOverview │ │ │ ├── CopyFieldReportSection │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── CountryDistrictInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ImageWithCaptionInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── EventDetails │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ObsoletePayloadResolutionModal │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Response │ │ │ ├── IndicatorInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── InterventionInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── RiskSecurityInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Submission │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── common.tsx │ │ ├── import.ts │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── useDrefFormOptions.ts │ │ ├── DrefOpPdfPreview │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── DrefOperationalUpdateForm │ │ ├── EventDetails │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Needs │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ObsoletePayloadResolutionModal │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Operation │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Overview │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Submission │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── common.tsx │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── useDrefOperationalUpdateOptions.ts │ │ ├── DrefPdfPreview │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Emergency │ │ ├── Activities │ │ │ ├── ActivityMap │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Filters │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── StatsPie │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ ├── projectTableColumns.tsx │ │ │ ├── styles.module.scss │ │ │ └── useProjectStats.ts │ │ └── index.js │ │ ├── EmergencyThreeW │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── EmergencyThreeWEdit │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── FieldReportForm │ │ ├── ActionsFields │ │ │ ├── CovidActionFields.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ContextFields │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── EarlyActionsFields │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ResponseFields │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RiskAnalysisFields │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── SituationFields │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── common.tsx │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── useFieldReportOptions.ts │ │ ├── FinalReportForm │ │ ├── EventDetails │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Needs │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ObsoletePayloadResolutionModal │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Operation │ │ │ ├── IndicatorInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── InterventionInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Overview │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Submission │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── common.tsx │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── useDreFinalReportOptions.ts │ │ ├── FinalReportPdfPreview │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── FlashUpdateApplicationForm │ │ ├── ActionsInput │ │ │ ├── ActionInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ │ ├── Context │ │ │ ├── CountryProvinceInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── GraphicInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── MapInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ReferenceInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── FocalPoint │ │ │ └── index.tsx │ │ ├── common.tsx │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── useFlashUpdateFormOptions.ts │ │ ├── FlashUpdateReport │ │ ├── ExportButton │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ShareButton │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── FourHundredFour │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── GlobalRiskWatch │ │ ├── ImminentEvents │ │ │ ├── ImminentEventsADAM │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ImminentEventsPDC │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── SeasonalRisk │ │ │ ├── CountryRiskBarChart │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Filters │ │ │ │ ├── FilterOutput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Map │ │ │ │ ├── Choropleth │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── common.ts │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── GlobalThreeW │ │ ├── Charts │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Filters │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Map │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── common.ts │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── NewThreeW │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── RegionalRiskWatch │ │ ├── ImminentEvents │ │ │ ├── ImminentEventsADAM │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ImminentEventsGDACS │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ImminentEventsMeteoSwiss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ImminentEventsPDC │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── SeasonalRisk │ │ │ ├── CountryRiskBarChart │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Filters │ │ │ │ ├── FilterOutput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── HistoricalChart │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Map │ │ │ │ ├── Choropleth │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── LegendItem │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── MapLegend │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── common.ts │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── RegionalThreeW │ │ ├── activity-details.js │ │ ├── budget-overview.js │ │ ├── country-table.js │ │ ├── export-button.js │ │ ├── index.js │ │ ├── map.js │ │ ├── movement-activities-filters.js │ │ ├── ns-activities-filters.js │ │ ├── people-overview.js │ │ └── status-overview.js │ │ ├── Search │ │ ├── CountryList │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── EmergencyPlanningTable │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── EmergencyTable │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── FieldReportTable │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ProjectTable │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── ProvinceList │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RapidDeploymentTable │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── RegionList │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── SurgeAlertTable │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── SurgeDeploymentTable │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Surge │ │ ├── catalogue-of-surge-services-subpage.js │ │ ├── catalogue-of-surge-services.js │ │ ├── contentData │ │ │ ├── catalogue-of-surge-service-subpage-content.js │ │ │ ├── catalogue-of-surge-services-content.js │ │ │ ├── map-pdf-to-sharepoint.js │ │ │ └── operation-timeline-content.js │ │ ├── operational-timeline.js │ │ └── operationalTimelineToolbox.md │ │ ├── ThreeW │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── ThreeWEdit │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── TranslationDashboard │ │ ├── index.js │ │ └── styles.module.scss │ │ ├── about.js │ │ ├── account.js │ │ ├── app.js │ │ ├── deployments.js │ │ ├── emergencies.js │ │ ├── emergencyWrapper.js │ │ ├── field-report.js │ │ ├── home.js │ │ ├── login.js │ │ ├── password-change.js │ │ ├── per-assessment.js │ │ ├── preparedness.js │ │ ├── recover-account.js │ │ ├── recover-username.js │ │ ├── region.js │ │ ├── register.js │ │ ├── resend-validation.js │ │ └── table.js ├── styles │ ├── about │ │ └── _global.scss │ ├── components │ │ ├── _backdrop.scss │ │ ├── _common.scss │ │ ├── _dropdown-menu.scss │ │ ├── _formatted-date.scss │ │ ├── _formatted-number.scss │ │ └── _select.scss │ ├── core │ │ ├── _animation.scss │ │ ├── _base.scss │ │ ├── _box-heading-content.scss │ │ ├── _code.scss │ │ ├── _collecticons.scss │ │ ├── _grid.scss │ │ ├── _icomoon.scss │ │ ├── _media.scss │ │ ├── _skins.scss │ │ ├── _tables.scss │ │ ├── _tabs.scss │ │ ├── _typography.scss │ │ └── _utilities.scss │ ├── country │ │ └── _global.scss │ ├── deployments │ │ ├── _catalogueOfSurgeServices.scss │ │ ├── _global.scss │ │ ├── _operationalTimeline.scss │ │ └── _presenting.scss │ ├── emergencies │ │ └── _global.scss │ ├── emergency │ │ └── _global.scss │ ├── field-report │ │ ├── _display.scss │ │ ├── _form.scss │ │ └── _global.scss │ ├── forms │ │ └── per-form.scss │ ├── global │ │ ├── _alerts.scss │ │ ├── _box-heading-content.scss │ │ ├── _breadcrumbs.scss │ │ ├── _buttons.scss │ │ ├── _callouts.scss │ │ ├── _cards.scss │ │ ├── _charts.scss │ │ ├── _drops.scss │ │ ├── _folds.scss │ │ ├── _forms.scss │ │ ├── _frames.scss │ │ ├── _global-banner.scss │ │ ├── _icon-styles.scss │ │ ├── _iframe-embeds.scss │ │ ├── _inpages.scss │ │ ├── _labels.scss │ │ ├── _loading.scss │ │ ├── _login.scss │ │ ├── _modals.scss │ │ ├── _navs.scss │ │ ├── _page-prime-nav.scss │ │ ├── _pages.scss │ │ ├── _panels.scss │ │ ├── _pills.scss │ │ ├── _popovers.scss │ │ ├── _print.scss │ │ ├── _scrollbar-custom.scss │ │ ├── _states.scss │ │ ├── _text-output.scss │ │ ├── _tooltip.scss │ │ └── faram-inputs │ │ │ ├── _faram-checkbox.scss │ │ │ ├── _raw-input.scss │ │ │ ├── _select-input.scss │ │ │ └── _text-input.scss │ ├── header │ │ └── navbar.scss │ ├── home │ │ ├── _global.scss │ │ ├── _highlighted-emergencies.scss │ │ ├── _homemap.scss │ │ └── _presenting.scss │ ├── main.css.json │ ├── main.scss │ ├── preparedness │ │ └── _global.scss │ ├── region │ │ └── _global.scss │ ├── settings │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ └── vendor │ │ ├── _normalize.scss │ │ ├── _react-carousel.scss │ │ ├── _react-paginate.scss │ │ └── _react-select.scss └── wdyr.js ├── tsconfig.json └── yarn.lock /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.build_scripts/az-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.build_scripts/az-upload.js -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report---production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.github/ISSUE_TEMPLATE/bug-report---production.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report---staging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.github/ISSUE_TEMPLATE/bug-report---staging.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/add-issue-to-backlog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.github/workflows/add-issue-to-backlog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.unimported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/.unimported.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCS-GRID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/DOCS-GRID.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/env.js -------------------------------------------------------------------------------- /config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/getHttpsConfig.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/modules.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/pnpTs.js -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /cypress-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/cypress-test.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | Disallow: 5 | -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/assets/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/env.js -------------------------------------------------------------------------------- /src/assets/graphics/content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/graphics/content/IFRC_Surge_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/IFRC_Surge_01.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/IFRC_Surge_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/IFRC_Surge_02.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/IMRoles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/IMRoles.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/Pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/Pyramid.png -------------------------------------------------------------------------------- /src/assets/graphics/content/RIT400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/RIT400.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/adm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/adm.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/arc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/arc_logo.png -------------------------------------------------------------------------------- /src/assets/graphics/content/aurc_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/aurc_logo.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/brc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/brc_logo.png -------------------------------------------------------------------------------- /src/assets/graphics/content/crc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/crc_logo.png -------------------------------------------------------------------------------- /src/assets/graphics/content/dnk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/dnk_logo.png -------------------------------------------------------------------------------- /src/assets/graphics/content/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/download.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/ericsson_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/ericsson_logo.png -------------------------------------------------------------------------------- /src/assets/graphics/content/eru.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/eru.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/esp_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/esp_logo.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/fact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/fact.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/frc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/frc_logo.png -------------------------------------------------------------------------------- /src/assets/graphics/content/heops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/heops.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/jrc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/jrc_logo.png -------------------------------------------------------------------------------- /src/assets/graphics/content/nlrc_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/nlrc_logo.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/pdc_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/pdc_logo.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/per_approach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/per_approach.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/per_approach_notext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/per_approach_notext.png -------------------------------------------------------------------------------- /src/assets/graphics/content/per_approach_notext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/per_approach_notext.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/per_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/per_old.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/rdrt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/rdrt.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/swiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/swiss.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/us_aid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/us_aid.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/usr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/usr.jpg -------------------------------------------------------------------------------- /src/assets/graphics/content/wiki-help-header1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/wiki-help-header1.svg -------------------------------------------------------------------------------- /src/assets/graphics/content/wiki-help-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/wiki-help-section.png -------------------------------------------------------------------------------- /src/assets/graphics/content/wiki-help-section.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/content/wiki-help-section.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/graphics/layout/FollowThisOperation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/FollowThisOperation.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/OpenInGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/OpenInGO.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/ViewFullReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/ViewFullReport.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/card-mid-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/card-mid-line.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/card-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/card-tick.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/card-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/card-x.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/circle-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/circle-information.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/close-full-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/close-full-screen.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/country-plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/country-plan.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/emergency-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/emergency-brand.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/emergency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/emergency.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/eru-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/eru-brand.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/eru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/eru.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/fact-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/fact-brand.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/fact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/fact.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/full-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/full-screen.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/fullscreen-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/fullscreen-square.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/funding-coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/funding-coverage.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/funding-requirements.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/funding-requirements.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/funding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/funding.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/go-logo-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/go-logo-2020.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/go-logo-2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/go-logo-2020.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/go-logo-2020_orig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/go-logo-2020_orig.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/go-pdf-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/go-pdf-footer.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/heops-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/heops-brand.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/heops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/heops.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/ifrc-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/ifrc-square.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/ifrc_logo_2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/ifrc_logo_2020.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/logo-appeals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/logo-appeals.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/logo-dref.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/logo-dref.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/logo-icon.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/people.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/targeted-population.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/targeted-population.svg -------------------------------------------------------------------------------- /src/assets/graphics/layout/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/tick.png -------------------------------------------------------------------------------- /src/assets/graphics/layout/x-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/layout/x-thin.svg -------------------------------------------------------------------------------- /src/assets/graphics/meta/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/graphics/meta/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/meta/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /src/assets/graphics/meta/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/meta/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /src/assets/graphics/meta/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/meta/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /src/assets/graphics/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /src/assets/graphics/meta/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/graphics/meta/favicon.ico -------------------------------------------------------------------------------- /src/assets/icons/collecticons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/arrow-left.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/arrow-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/arrow-loop.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/arrow-up.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/book.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/calendar.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/cash-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/cash-bag.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/cash-notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/cash-notes.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/chevron-down.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/chevron-left.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/chevron-right.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/chevron-up.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/circle-exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/circle-exclamation.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/circle-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/circle-information.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/circle-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/circle-question.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/circle-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/circle-tick.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/circle-xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/circle-xmark.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/clipboard-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/clipboard-list.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/clock-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/clock-back.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/clock.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/code.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/cog.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/compass.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/devseed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/devseed.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/disc-xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/disc-xmark.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/download.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/ellipsis-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/ellipsis-vertical.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/envelope.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/facebook.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/folder.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/github.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/globe.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/google-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/google-plus.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/grid-3x3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/grid-3x3.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/hamburger-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/hamburger-menu.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/heart-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/heart-full.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/house.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-cash.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-cea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-cea.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-comms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-comms.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-im.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-im.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-itt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-itt.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-logs.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-other.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-pdf.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-pgi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-pgi.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-pmer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-pmer.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/humanitarian-wash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/humanitarian-wash.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/id-editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/id-editor.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/link.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/list.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/location.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/magnifier-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/magnifier-left.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/magnifier-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/magnifier-right.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/map.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/marker.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/medium.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/minus.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/pages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/pages.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/pencil.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/people-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/people-arrows.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/picture.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/plus.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/pop-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/pop-up.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/quote-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/quote-left.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/rc-appeals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/rc-appeals.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/rc-appeals_2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/rc-appeals_2020.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/rc-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/rc-block.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/rc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/rc.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/rc_2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/rc_2020.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/share.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/slack.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sliders-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sliders-horizontal.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-chevron-down.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-chevron-left.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-chevron-right.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-chevron-up.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-minus.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-plus.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-tick.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-triangle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-triangle-down.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-triangle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-triangle-left.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-triangle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-triangle-right.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-triangle-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-triangle-up.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sm-xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sm-xmark.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sort-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sort-asc.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sort-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sort-desc.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sort-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sort-none.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/sort.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/star-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/star-full.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/text-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/text-block.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/tick.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/trash-bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/trash-bin.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/triangle-down-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/triangle-down-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/triangle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/triangle-down.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/triangle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/triangle-left.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/triangle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/triangle-right.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/triangle-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/triangle-up.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/twitter.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/upload.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/user.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/xmark.svg -------------------------------------------------------------------------------- /src/assets/icons/collecticons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/collecticons/youtube.svg -------------------------------------------------------------------------------- /src/assets/icons/icomoon/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/Read Me.txt -------------------------------------------------------------------------------- /src/assets/icons/icomoon/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/demo-files/demo.css -------------------------------------------------------------------------------- /src/assets/icons/icomoon/demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/demo-files/demo.js -------------------------------------------------------------------------------- /src/assets/icons/icomoon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/demo.html -------------------------------------------------------------------------------- /src/assets/icons/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /src/assets/icons/icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/icons/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/assets/icons/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/selection.json -------------------------------------------------------------------------------- /src/assets/icons/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/assets/icons/icomoon/style.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/root/Multiplexer/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/Multiplexer/history.ts -------------------------------------------------------------------------------- /src/root/Multiplexer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/Multiplexer/index.js -------------------------------------------------------------------------------- /src/root/Multiplexer/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/Multiplexer/styles.module.scss -------------------------------------------------------------------------------- /src/root/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/actions/index.js -------------------------------------------------------------------------------- /src/root/actions/query-external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/actions/query-external.js -------------------------------------------------------------------------------- /src/root/components/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Alert/index.tsx -------------------------------------------------------------------------------- /src/root/components/Alert/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Alert/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/AlertContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/AlertContainer/index.tsx -------------------------------------------------------------------------------- /src/root/components/AlertContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/AlertContext.tsx -------------------------------------------------------------------------------- /src/root/components/AnonymousRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/AnonymousRoute.js -------------------------------------------------------------------------------- /src/root/components/BasicModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/BasicModal/index.tsx -------------------------------------------------------------------------------- /src/root/components/BasicModal/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/BasicModal/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/BulletTextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/BulletTextArea/index.tsx -------------------------------------------------------------------------------- /src/root/components/BulletTextArea/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Button/index.tsx -------------------------------------------------------------------------------- /src/root/components/Button/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Button/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/ButtonLikeLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ButtonLikeLink/index.tsx -------------------------------------------------------------------------------- /src/root/components/ButtonLikeLink/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Card/index.tsx -------------------------------------------------------------------------------- /src/root/components/Card/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Card/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Charts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Charts/index.js -------------------------------------------------------------------------------- /src/root/components/Checkbox/Checkmark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Checkbox/Checkmark/index.tsx -------------------------------------------------------------------------------- /src/root/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/root/components/Checkbox/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Checkbox/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Checklist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Checklist/index.tsx -------------------------------------------------------------------------------- /src/root/components/Checklist/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Checklist/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Chip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Chip/index.tsx -------------------------------------------------------------------------------- /src/root/components/Chip/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Chip/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/ConfirmButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ConfirmButton/index.tsx -------------------------------------------------------------------------------- /src/root/components/ConfirmButton/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ConfirmButton/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Container/index.tsx -------------------------------------------------------------------------------- /src/root/components/Container/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Container/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/DREFFileImport/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DREFFileImport/index.tsx -------------------------------------------------------------------------------- /src/root/components/DREFFileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DREFFileInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/DREFFileInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DREFFileInput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/DateInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DateInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/DateInput/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/DateOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DateOutput/index.tsx -------------------------------------------------------------------------------- /src/root/components/DateOutput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DateOutput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Description/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Description/index.tsx -------------------------------------------------------------------------------- /src/root/components/Description/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Description/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/DrefApplicationList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DrefApplicationList/index.tsx -------------------------------------------------------------------------------- /src/root/components/DrefExportButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DrefExportButton/index.tsx -------------------------------------------------------------------------------- /src/root/components/DrefPdfDocument/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DrefPdfDocument/index.tsx -------------------------------------------------------------------------------- /src/root/components/DropdownMenuItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/DropdownMenuItem/index.tsx -------------------------------------------------------------------------------- /src/root/components/ElementFragments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ElementFragments/index.tsx -------------------------------------------------------------------------------- /src/root/components/EmergencyThreeWDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/EmergencyThreeWDetails/index.tsx -------------------------------------------------------------------------------- /src/root/components/EmergencyThreeWForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/EmergencyThreeWForm/index.tsx -------------------------------------------------------------------------------- /src/root/components/EmptyMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/EmptyMessage/index.tsx -------------------------------------------------------------------------------- /src/root/components/EmptyMessage/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/EmptyMessage/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/EnvironmentBanner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/EnvironmentBanner/index.js -------------------------------------------------------------------------------- /src/root/components/EnvironmentBanner/styles.module.scss: -------------------------------------------------------------------------------- 1 | .environment-banner { 2 | text-transform: uppercase; 3 | } 4 | -------------------------------------------------------------------------------- /src/root/components/ExpandButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExpandButton/index.tsx -------------------------------------------------------------------------------- /src/root/components/ExpandableContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExpandableContainer/index.tsx -------------------------------------------------------------------------------- /src/root/components/ExportProjectsButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExportProjectsButton/index.tsx -------------------------------------------------------------------------------- /src/root/components/ExportTableButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExportTableButton/index.tsx -------------------------------------------------------------------------------- /src/root/components/ExportableView/ExportButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExportableView/ExportButton.js -------------------------------------------------------------------------------- /src/root/components/ExportableView/ExportFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExportableView/ExportFooter.js -------------------------------------------------------------------------------- /src/root/components/ExportableView/ExportHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExportableView/ExportHeader.js -------------------------------------------------------------------------------- /src/root/components/ExportableView/exportContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExportableView/exportContext.js -------------------------------------------------------------------------------- /src/root/components/ExportableView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ExportableView/index.js -------------------------------------------------------------------------------- /src/root/components/FileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/FileInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/FileInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/FileInput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/FinalReportExport/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/FinalReportExport/index.tsx -------------------------------------------------------------------------------- /src/root/components/FinalReportPdfDocument/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/FinalReportPdfDocument/index.tsx -------------------------------------------------------------------------------- /src/root/components/FlashUpdateFileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/FlashUpdateFileInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/root/components/Footer/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/FullPageErrorMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/FullPageErrorMessage/index.tsx -------------------------------------------------------------------------------- /src/root/components/GoFileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/GoFileInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/GoFileInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/GoFileInput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/GoMapDisclaimer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/GoMapDisclaimer/index.tsx -------------------------------------------------------------------------------- /src/root/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Header/index.tsx -------------------------------------------------------------------------------- /src/root/components/Header/styles.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/settings/variables'; 2 | 3 | .header { 4 | color: inherit; 5 | } 6 | -------------------------------------------------------------------------------- /src/root/components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Heading/index.tsx -------------------------------------------------------------------------------- /src/root/components/Heading/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Heading/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/InfoPopup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InfoPopup/index.tsx -------------------------------------------------------------------------------- /src/root/components/InfoPopup/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InfoPopup/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/InputContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputContainer/index.tsx -------------------------------------------------------------------------------- /src/root/components/InputElementFragments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputElementFragments/index.tsx -------------------------------------------------------------------------------- /src/root/components/InputError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputError/index.tsx -------------------------------------------------------------------------------- /src/root/components/InputError/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputError/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/InputLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputLabel/index.tsx -------------------------------------------------------------------------------- /src/root/components/InputLabel/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputLabel/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/InputSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputSection/index.tsx -------------------------------------------------------------------------------- /src/root/components/InputSection/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/InputSection/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/KeyFigure/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/KeyFigure/index.tsx -------------------------------------------------------------------------------- /src/root/components/KeyFigure/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/KeyFigure/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/LanguageSelect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/LanguageSelect/index.js -------------------------------------------------------------------------------- /src/root/components/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Link/index.tsx -------------------------------------------------------------------------------- /src/root/components/Link/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Link/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/List.tsx -------------------------------------------------------------------------------- /src/root/components/ListView/Message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ListView/Message/index.tsx -------------------------------------------------------------------------------- /src/root/components/ListView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ListView/index.tsx -------------------------------------------------------------------------------- /src/root/components/MapEaseTo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/MapEaseTo/index.tsx -------------------------------------------------------------------------------- /src/root/components/MapTooltipContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/MapTooltipContent/index.tsx -------------------------------------------------------------------------------- /src/root/components/NewGlobalLoading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/NewGlobalLoading/index.js -------------------------------------------------------------------------------- /src/root/components/NewGlobalLoading/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/NonFieldError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/NonFieldError/index.tsx -------------------------------------------------------------------------------- /src/root/components/NonFieldError/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/NonFieldError/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/NumberInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/NumberInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/NumberInput/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/NumberOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/NumberOutput/index.tsx -------------------------------------------------------------------------------- /src/root/components/NumberOutput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/NumberOutput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Page/index.tsx -------------------------------------------------------------------------------- /src/root/components/Page/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Page/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/PageHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/PageHeader/index.tsx -------------------------------------------------------------------------------- /src/root/components/PageHeader/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/PageHeader/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Pager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Pager/index.tsx -------------------------------------------------------------------------------- /src/root/components/Pager/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Pager/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/PdfTextOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/PdfTextOutput/index.tsx -------------------------------------------------------------------------------- /src/root/components/PdfTextOutput/pdfStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/PdfTextOutput/pdfStyles.ts -------------------------------------------------------------------------------- /src/root/components/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/PrivateRoute.js -------------------------------------------------------------------------------- /src/root/components/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ProgressBar/index.tsx -------------------------------------------------------------------------------- /src/root/components/ProgressBar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ProgressBar/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/RadioInput/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RadioInput/Radio/index.tsx -------------------------------------------------------------------------------- /src/root/components/RadioInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RadioInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/RadioInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RadioInput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/RawButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RawButton/index.tsx -------------------------------------------------------------------------------- /src/root/components/RawButton/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RawButton/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/RawInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RawInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/RawInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RawInput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/RawTextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RawTextArea/index.tsx -------------------------------------------------------------------------------- /src/root/components/RawTextArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RawTextArea/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/ReducedListDisplay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ReducedListDisplay/index.tsx -------------------------------------------------------------------------------- /src/root/components/RegionOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RegionOutput/index.tsx -------------------------------------------------------------------------------- /src/root/components/RegionOutput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RegionOutput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/RichTextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RichTextArea/index.tsx -------------------------------------------------------------------------------- /src/root/components/RichTextArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RichTextArea/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/RichTextOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RichTextOutput/index.tsx -------------------------------------------------------------------------------- /src/root/components/RouterTabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/RouterTabs/index.js -------------------------------------------------------------------------------- /src/root/components/SearchSelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/SearchSelectInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/SegmentInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/SegmentInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/SegmentInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/SegmentInput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/SelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/SelectInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/SelectInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/SelectInput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Svg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Svg/index.tsx -------------------------------------------------------------------------------- /src/root/components/Svg/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Svg/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Switch/SwitchIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Switch/SwitchIcon/index.tsx -------------------------------------------------------------------------------- /src/root/components/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Switch/index.tsx -------------------------------------------------------------------------------- /src/root/components/Table/Cell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/Cell/index.tsx -------------------------------------------------------------------------------- /src/root/components/Table/HeaderCell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/HeaderCell/index.tsx -------------------------------------------------------------------------------- /src/root/components/Table/TableData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/TableData/index.tsx -------------------------------------------------------------------------------- /src/root/components/Table/TableRow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/TableRow/index.tsx -------------------------------------------------------------------------------- /src/root/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/index.tsx -------------------------------------------------------------------------------- /src/root/components/Table/predefinedColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/predefinedColumns.ts -------------------------------------------------------------------------------- /src/root/components/Table/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Table/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/types.ts -------------------------------------------------------------------------------- /src/root/components/Table/useDownloading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/useDownloading.ts -------------------------------------------------------------------------------- /src/root/components/Table/useFiltering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/useFiltering.ts -------------------------------------------------------------------------------- /src/root/components/Table/useHiding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/useHiding.ts -------------------------------------------------------------------------------- /src/root/components/Table/useOrdering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/useOrdering.ts -------------------------------------------------------------------------------- /src/root/components/Table/useRowExpansion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/useRowExpansion.tsx -------------------------------------------------------------------------------- /src/root/components/Table/useSorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Table/useSorting.ts -------------------------------------------------------------------------------- /src/root/components/TableActions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/TableActions/index.tsx -------------------------------------------------------------------------------- /src/root/components/TableActions/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/TableActions/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Tabs/Tab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Tabs/Tab/index.tsx -------------------------------------------------------------------------------- /src/root/components/Tabs/Tab/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Tabs/Tab/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Tabs/TabContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Tabs/TabContext.tsx -------------------------------------------------------------------------------- /src/root/components/Tabs/TabList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Tabs/TabList/index.tsx -------------------------------------------------------------------------------- /src/root/components/Tabs/TabList/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Tabs/TabList/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/Tabs/TabPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Tabs/TabPanel/index.tsx -------------------------------------------------------------------------------- /src/root/components/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Tabs/index.tsx -------------------------------------------------------------------------------- /src/root/components/TextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/TextArea/index.tsx -------------------------------------------------------------------------------- /src/root/components/TextArea/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/TextInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/TextInput/index.tsx -------------------------------------------------------------------------------- /src/root/components/TextInput/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/TextOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/TextOutput/index.tsx -------------------------------------------------------------------------------- /src/root/components/TextOutput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/TextOutput/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/ThreeWDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWDetails/index.tsx -------------------------------------------------------------------------------- /src/root/components/ThreeWDetails/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWDetails/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/ThreeWForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWForm/index.tsx -------------------------------------------------------------------------------- /src/root/components/ThreeWForm/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWForm/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/ThreeWForm/useThreeWOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWForm/useThreeWOptions.ts -------------------------------------------------------------------------------- /src/root/components/ThreeWList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWList/index.tsx -------------------------------------------------------------------------------- /src/root/components/ThreeWList/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWList/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/ThreeWSankey/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/ThreeWSankey/index.js -------------------------------------------------------------------------------- /src/root/components/Translate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/Translate/index.tsx -------------------------------------------------------------------------------- /src/root/components/Translate/styles.module.scss: -------------------------------------------------------------------------------- 1 | .translate { 2 | } 3 | -------------------------------------------------------------------------------- /src/root/components/UserSearchSelectInput/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/WikiLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/WikiLink/index.tsx -------------------------------------------------------------------------------- /src/root/components/WikiLink/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/root/components/about/video-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/about/video-carousel.js -------------------------------------------------------------------------------- /src/root/components/admin-area-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/admin-area-elements.js -------------------------------------------------------------------------------- /src/root/components/auth-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/auth-controls.js -------------------------------------------------------------------------------- /src/root/components/backdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/backdrop.js -------------------------------------------------------------------------------- /src/root/components/block-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/block-loading.js -------------------------------------------------------------------------------- /src/root/components/breadcrumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/breadcrumb.js -------------------------------------------------------------------------------- /src/root/components/bullet-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/bullet-table.js -------------------------------------------------------------------------------- /src/root/components/common/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/common/dropdown.js -------------------------------------------------------------------------------- /src/root/components/common/fullscreen-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/common/fullscreen-header.js -------------------------------------------------------------------------------- /src/root/components/common/info-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/common/info-icon.js -------------------------------------------------------------------------------- /src/root/components/common/key-figures-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/common/key-figures-header.js -------------------------------------------------------------------------------- /src/root/components/common/table-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/common/table-basic.js -------------------------------------------------------------------------------- /src/root/components/common/toggle-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/common/toggle-button.js -------------------------------------------------------------------------------- /src/root/components/common/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/common/tooltip.js -------------------------------------------------------------------------------- /src/root/components/confirm-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/confirm-modal.js -------------------------------------------------------------------------------- /src/root/components/connected/alerts-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/alerts-table.js -------------------------------------------------------------------------------- /src/root/components/connected/appeals-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/appeals-table.js -------------------------------------------------------------------------------- /src/root/components/connected/emergencies-dash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/emergencies-dash.js -------------------------------------------------------------------------------- /src/root/components/connected/eru-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/eru-table.js -------------------------------------------------------------------------------- /src/root/components/connected/new-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/new-password.js -------------------------------------------------------------------------------- /src/root/components/connected/personnel-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/personnel-table.js -------------------------------------------------------------------------------- /src/root/components/connected/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/styles.module.scss -------------------------------------------------------------------------------- /src/root/components/connected/user-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/connected/user-menu.js -------------------------------------------------------------------------------- /src/root/components/contact-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/contact-row.js -------------------------------------------------------------------------------- /src/root/components/country-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/country-list.js -------------------------------------------------------------------------------- /src/root/components/deployments/readiness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/deployments/readiness.js -------------------------------------------------------------------------------- /src/root/components/display-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/display-table.js -------------------------------------------------------------------------------- /src/root/components/dropdown-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/dropdown-menu.js -------------------------------------------------------------------------------- /src/root/components/emergencies/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/emergencies/overview.js -------------------------------------------------------------------------------- /src/root/components/emergencies/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/emergencies/snippets.js -------------------------------------------------------------------------------- /src/root/components/emergencies/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/emergencies/stats.js -------------------------------------------------------------------------------- /src/root/components/error-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/error-panel.js -------------------------------------------------------------------------------- /src/root/components/expandable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/expandable.js -------------------------------------------------------------------------------- /src/root/components/export-button-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/export-button-component.js -------------------------------------------------------------------------------- /src/root/components/export-button-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/export-button-container.js -------------------------------------------------------------------------------- /src/root/components/fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/fold.js -------------------------------------------------------------------------------- /src/root/components/form-elements/checkable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/checkable.js -------------------------------------------------------------------------------- /src/root/components/form-elements/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/checkbox.js -------------------------------------------------------------------------------- /src/root/components/form-elements/date-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/date-input.js -------------------------------------------------------------------------------- /src/root/components/form-elements/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/error.js -------------------------------------------------------------------------------- /src/root/components/form-elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/index.js -------------------------------------------------------------------------------- /src/root/components/form-elements/input-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/input-select.js -------------------------------------------------------------------------------- /src/root/components/form-elements/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/input.js -------------------------------------------------------------------------------- /src/root/components/form-elements/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/misc.js -------------------------------------------------------------------------------- /src/root/components/form-elements/number-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/number-input.js -------------------------------------------------------------------------------- /src/root/components/form-elements/radio-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/radio-group.js -------------------------------------------------------------------------------- /src/root/components/form-elements/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/radio.js -------------------------------------------------------------------------------- /src/root/components/form-elements/raw-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/raw-input.js -------------------------------------------------------------------------------- /src/root/components/form-elements/select-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/select-input.js -------------------------------------------------------------------------------- /src/root/components/form-elements/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/select.js -------------------------------------------------------------------------------- /src/root/components/form-elements/text-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/text-input.js -------------------------------------------------------------------------------- /src/root/components/form-elements/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/form-elements/textarea.js -------------------------------------------------------------------------------- /src/root/components/formatted-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/formatted-date.js -------------------------------------------------------------------------------- /src/root/components/formatted-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/formatted-number.js -------------------------------------------------------------------------------- /src/root/components/global-header-banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/global-header-banner.js -------------------------------------------------------------------------------- /src/root/components/global-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/global-loading.js -------------------------------------------------------------------------------- /src/root/components/header-region-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/header-region-button.js -------------------------------------------------------------------------------- /src/root/components/map/common/download-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/common/download-button.js -------------------------------------------------------------------------------- /src/root/components/map/common/map-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/common/map-component.js -------------------------------------------------------------------------------- /src/root/components/map/common/map-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/common/map-footer.js -------------------------------------------------------------------------------- /src/root/components/map/common/map-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/common/map-header.js -------------------------------------------------------------------------------- /src/root/components/map/country-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/country-map.js -------------------------------------------------------------------------------- /src/root/components/map/deployments-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/deployments-map.js -------------------------------------------------------------------------------- /src/root/components/map/emergencies-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/emergencies-map.js -------------------------------------------------------------------------------- /src/root/components/map/emergency-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/emergency-map.js -------------------------------------------------------------------------------- /src/root/components/map/main-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/main-map.js -------------------------------------------------------------------------------- /src/root/components/map/per-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/map/per-map.js -------------------------------------------------------------------------------- /src/root/components/mobile-navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/mobile-navbar.js -------------------------------------------------------------------------------- /src/root/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/modal.js -------------------------------------------------------------------------------- /src/root/components/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/navbar.js -------------------------------------------------------------------------------- /src/root/components/page-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/page-footer.js -------------------------------------------------------------------------------- /src/root/components/per-forms/per-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/per-forms/per-account.js -------------------------------------------------------------------------------- /src/root/components/per-forms/per-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/per-forms/per-form.js -------------------------------------------------------------------------------- /src/root/components/per-forms/per-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/per-forms/per-overview.js -------------------------------------------------------------------------------- /src/root/components/per-forms/per-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/per-forms/per-table.js -------------------------------------------------------------------------------- /src/root/components/pills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/pills.js -------------------------------------------------------------------------------- /src/root/components/portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/portal.js -------------------------------------------------------------------------------- /src/root/components/preparedness/contact-per.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/preparedness/contact-per.js -------------------------------------------------------------------------------- /src/root/components/progress-labeled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/progress-labeled.js -------------------------------------------------------------------------------- /src/root/components/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/progress.js -------------------------------------------------------------------------------- /src/root/components/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/spinner.js -------------------------------------------------------------------------------- /src/root/components/system-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/system-alerts.js -------------------------------------------------------------------------------- /src/root/components/tab-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/tab-content.js -------------------------------------------------------------------------------- /src/root/components/text-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/text-output.js -------------------------------------------------------------------------------- /src/root/components/timeline-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/components/timeline-charts.js -------------------------------------------------------------------------------- /src/root/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/config.js -------------------------------------------------------------------------------- /src/root/declarations/docx4js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/declarations/docx4js.d.ts -------------------------------------------------------------------------------- /src/root/declarations/png.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/declarations/png.d.ts -------------------------------------------------------------------------------- /src/root/declarations/react-through.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/declarations/react-through.d.ts -------------------------------------------------------------------------------- /src/root/declarations/scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/declarations/scss.d.ts -------------------------------------------------------------------------------- /src/root/declarations/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/declarations/svg.d.ts -------------------------------------------------------------------------------- /src/root/declarations/ttf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/declarations/ttf.d.ts -------------------------------------------------------------------------------- /src/root/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/index.js -------------------------------------------------------------------------------- /src/root/hooks/useAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useAlert.ts -------------------------------------------------------------------------------- /src/root/hooks/useBasicLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useBasicLayout/index.tsx -------------------------------------------------------------------------------- /src/root/hooks/useBasicLayout/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useBasicLayout/styles.module.scss -------------------------------------------------------------------------------- /src/root/hooks/useBooleanState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useBooleanState.ts -------------------------------------------------------------------------------- /src/root/hooks/useConfirmation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useConfirmation/index.tsx -------------------------------------------------------------------------------- /src/root/hooks/useConfirmation/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useConfirmation/styles.module.scss -------------------------------------------------------------------------------- /src/root/hooks/useDebouncedValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useDebouncedValue.ts -------------------------------------------------------------------------------- /src/root/hooks/useDidUpdateEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useDidUpdateEffect.ts -------------------------------------------------------------------------------- /src/root/hooks/useDropHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useDropHandler.tsx -------------------------------------------------------------------------------- /src/root/hooks/useExportButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useExportButton.js -------------------------------------------------------------------------------- /src/root/hooks/useHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useHash.ts -------------------------------------------------------------------------------- /src/root/hooks/useInputState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useInputState.ts -------------------------------------------------------------------------------- /src/root/hooks/useReduxState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/hooks/useReduxState.ts -------------------------------------------------------------------------------- /src/root/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/index.js -------------------------------------------------------------------------------- /src/root/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/lang.js -------------------------------------------------------------------------------- /src/root/languageContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/languageContext.js -------------------------------------------------------------------------------- /src/root/reducers/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/actions.js -------------------------------------------------------------------------------- /src/root/reducers/admin-area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/admin-area.js -------------------------------------------------------------------------------- /src/root/reducers/appeal-documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/appeal-documents.js -------------------------------------------------------------------------------- /src/root/reducers/appeals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/appeals.js -------------------------------------------------------------------------------- /src/root/reducers/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/countries.js -------------------------------------------------------------------------------- /src/root/reducers/country-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/country-overview.js -------------------------------------------------------------------------------- /src/root/reducers/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/csv.js -------------------------------------------------------------------------------- /src/root/reducers/deployments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/deployments.js -------------------------------------------------------------------------------- /src/root/reducers/disaster-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/disaster-types.js -------------------------------------------------------------------------------- /src/root/reducers/districts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/districts.js -------------------------------------------------------------------------------- /src/root/reducers/domain-whitelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/domain-whitelist.js -------------------------------------------------------------------------------- /src/root/reducers/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/email.js -------------------------------------------------------------------------------- /src/root/reducers/emergencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/emergencies.js -------------------------------------------------------------------------------- /src/root/reducers/eru-owners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/eru-owners.js -------------------------------------------------------------------------------- /src/root/reducers/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/event.js -------------------------------------------------------------------------------- /src/root/reducers/export-per-to-csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/export-per-to-csv.js -------------------------------------------------------------------------------- /src/root/reducers/external_partners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/external_partners.js -------------------------------------------------------------------------------- /src/root/reducers/fdrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/fdrs.js -------------------------------------------------------------------------------- /src/root/reducers/field-report-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/field-report-form.js -------------------------------------------------------------------------------- /src/root/reducers/field-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/field-report.js -------------------------------------------------------------------------------- /src/root/reducers/field-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/field-reports.js -------------------------------------------------------------------------------- /src/root/reducers/heops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/heops.js -------------------------------------------------------------------------------- /src/root/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/index.js -------------------------------------------------------------------------------- /src/root/reducers/lang-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/lang-all.js -------------------------------------------------------------------------------- /src/root/reducers/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/lang.js -------------------------------------------------------------------------------- /src/root/reducers/main_contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/main_contacts.js -------------------------------------------------------------------------------- /src/root/reducers/ns-rapid-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/ns-rapid-response.js -------------------------------------------------------------------------------- /src/root/reducers/overall-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/overall-stats.js -------------------------------------------------------------------------------- /src/root/reducers/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/password.js -------------------------------------------------------------------------------- /src/root/reducers/per-areas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/per-areas.js -------------------------------------------------------------------------------- /src/root/reducers/per-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/per-components.js -------------------------------------------------------------------------------- /src/root/reducers/per-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/per-form.js -------------------------------------------------------------------------------- /src/root/reducers/per-latest-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/per-latest-overview.js -------------------------------------------------------------------------------- /src/root/reducers/per-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/per-overview.js -------------------------------------------------------------------------------- /src/root/reducers/per-questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/per-questions.js -------------------------------------------------------------------------------- /src/root/reducers/personnel-by-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/personnel-by-event.js -------------------------------------------------------------------------------- /src/root/reducers/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/profile.js -------------------------------------------------------------------------------- /src/root/reducers/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/projects.js -------------------------------------------------------------------------------- /src/root/reducers/regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/regions.js -------------------------------------------------------------------------------- /src/root/reducers/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/registration.js -------------------------------------------------------------------------------- /src/root/reducers/resend-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/resend-validation.js -------------------------------------------------------------------------------- /src/root/reducers/situation-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/situation-reports.js -------------------------------------------------------------------------------- /src/root/reducers/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/subscriptions.js -------------------------------------------------------------------------------- /src/root/reducers/supported_activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/supported_activities.js -------------------------------------------------------------------------------- /src/root/reducers/surge-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/surge-alerts.js -------------------------------------------------------------------------------- /src/root/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/reducers/user.js -------------------------------------------------------------------------------- /src/root/resources/montserrat.bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/resources/montserrat.bold.ttf -------------------------------------------------------------------------------- /src/root/resources/open-sans.bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/resources/open-sans.bold.ttf -------------------------------------------------------------------------------- /src/root/resources/open-sans.italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/resources/open-sans.italic.ttf -------------------------------------------------------------------------------- /src/root/resources/open-sans.regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/resources/open-sans.regular.ttf -------------------------------------------------------------------------------- /src/root/schemas/new-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/schemas/new-password.js -------------------------------------------------------------------------------- /src/root/schemas/per-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/schemas/per-overview.js -------------------------------------------------------------------------------- /src/root/schemas/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/schemas/register.js -------------------------------------------------------------------------------- /src/root/selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/selectors/index.js -------------------------------------------------------------------------------- /src/root/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/sentry.ts -------------------------------------------------------------------------------- /src/root/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/common.ts -------------------------------------------------------------------------------- /src/root/types/country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/country.ts -------------------------------------------------------------------------------- /src/root/types/dref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/dref.ts -------------------------------------------------------------------------------- /src/root/types/eru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/eru.ts -------------------------------------------------------------------------------- /src/root/types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/event.ts -------------------------------------------------------------------------------- /src/root/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/index.ts -------------------------------------------------------------------------------- /src/root/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/project.ts -------------------------------------------------------------------------------- /src/root/types/risk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/risk.ts -------------------------------------------------------------------------------- /src/root/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/types/user.ts -------------------------------------------------------------------------------- /src/root/utils/appeal-type-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/appeal-type-constants.js -------------------------------------------------------------------------------- /src/root/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/common.ts -------------------------------------------------------------------------------- /src/root/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/constants.js -------------------------------------------------------------------------------- /src/root/utils/country-labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/country-labels.js -------------------------------------------------------------------------------- /src/root/utils/download-starter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/download-starter.js -------------------------------------------------------------------------------- /src/root/utils/eru-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/eru-types.js -------------------------------------------------------------------------------- /src/root/utils/exception/FormatDateException.js: -------------------------------------------------------------------------------- 1 | 2 | export class FormatDateException extends Error { } 3 | -------------------------------------------------------------------------------- /src/root/utils/export-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/export-map.js -------------------------------------------------------------------------------- /src/root/utils/extendables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/extendables.js -------------------------------------------------------------------------------- /src/root/utils/field-report-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/field-report-constants.js -------------------------------------------------------------------------------- /src/root/utils/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/form.ts -------------------------------------------------------------------------------- /src/root/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/format.js -------------------------------------------------------------------------------- /src/root/utils/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/fullscreen.js -------------------------------------------------------------------------------- /src/root/utils/get-country-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/get-country-meta.js -------------------------------------------------------------------------------- /src/root/utils/get-new-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/get-new-map.js -------------------------------------------------------------------------------- /src/root/utils/get-per-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/get-per-components.js -------------------------------------------------------------------------------- /src/root/utils/get-per-process-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/get-per-process-type.js -------------------------------------------------------------------------------- /src/root/utils/ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/ie.js -------------------------------------------------------------------------------- /src/root/utils/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/lang.js -------------------------------------------------------------------------------- /src/root/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/map.ts -------------------------------------------------------------------------------- /src/root/utils/mapGeo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/mapGeo/index.tsx -------------------------------------------------------------------------------- /src/root/utils/mergeDeployData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/mergeDeployData.js -------------------------------------------------------------------------------- /src/root/utils/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/network.js -------------------------------------------------------------------------------- /src/root/utils/pdf/pdfStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/pdf/pdfStyles.ts -------------------------------------------------------------------------------- /src/root/utils/pdf/pdfVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/pdf/pdfVariables.ts -------------------------------------------------------------------------------- /src/root/utils/reducer-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/reducer-utils.js -------------------------------------------------------------------------------- /src/root/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/request.js -------------------------------------------------------------------------------- /src/root/utils/resolveUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/resolveUrl.ts -------------------------------------------------------------------------------- /src/root/utils/restRequest/go.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/restRequest/go.ts -------------------------------------------------------------------------------- /src/root/utils/restRequest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/restRequest/index.ts -------------------------------------------------------------------------------- /src/root/utils/restRequest/useRecursiveRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/restRequest/useRecursiveRequest.ts -------------------------------------------------------------------------------- /src/root/utils/risk-icons/cyclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/cyclone.png -------------------------------------------------------------------------------- /src/root/utils/risk-icons/cyclone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/cyclone.svg -------------------------------------------------------------------------------- /src/root/utils/risk-icons/drought.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/drought.png -------------------------------------------------------------------------------- /src/root/utils/risk-icons/drought.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/drought.svg -------------------------------------------------------------------------------- /src/root/utils/risk-icons/earthquake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/earthquake.png -------------------------------------------------------------------------------- /src/root/utils/risk-icons/flood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/flood.png -------------------------------------------------------------------------------- /src/root/utils/risk-icons/flood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/flood.svg -------------------------------------------------------------------------------- /src/root/utils/risk-icons/food-insecurity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/food-insecurity.svg -------------------------------------------------------------------------------- /src/root/utils/risk-icons/storm-surge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/storm-surge.png -------------------------------------------------------------------------------- /src/root/utils/risk-icons/wildfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk-icons/wildfire.png -------------------------------------------------------------------------------- /src/root/utils/risk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/risk.ts -------------------------------------------------------------------------------- /src/root/utils/scrollToTop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/scrollToTop.ts -------------------------------------------------------------------------------- /src/root/utils/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/search.ts -------------------------------------------------------------------------------- /src/root/utils/special-map-labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/special-map-labels.js -------------------------------------------------------------------------------- /src/root/utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/store.js -------------------------------------------------------------------------------- /src/root/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/utils/utils.js -------------------------------------------------------------------------------- /src/root/views/AllEmergencyThreeW/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/AllEmergencyThreeW/index.tsx -------------------------------------------------------------------------------- /src/root/views/AllFlashUpdates/TableLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/AllFlashUpdates/TableLists.tsx -------------------------------------------------------------------------------- /src/root/views/AllFlashUpdates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/AllFlashUpdates/index.tsx -------------------------------------------------------------------------------- /src/root/views/AllFlashUpdates/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/AllFlashUpdates/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/AllThreeW/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/AllThreeW/index.tsx -------------------------------------------------------------------------------- /src/root/views/AllThreeW/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/AllThreeW/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/ClearInitCache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/ClearInitCache/index.js -------------------------------------------------------------------------------- /src/root/views/ClearInitCache/styles.module.scss: -------------------------------------------------------------------------------- 1 | .clear-init-cache { 2 | padding: 2em; 3 | } 4 | -------------------------------------------------------------------------------- /src/root/views/Country/CountryPlan/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Country/CountryPlan/index.tsx -------------------------------------------------------------------------------- /src/root/views/Country/RiskWatch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Country/RiskWatch/index.tsx -------------------------------------------------------------------------------- /src/root/views/Country/ThreeW/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Country/ThreeW/common.ts -------------------------------------------------------------------------------- /src/root/views/Country/ThreeW/export-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Country/ThreeW/export-headers.js -------------------------------------------------------------------------------- /src/root/views/Country/ThreeW/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Country/ThreeW/index.tsx -------------------------------------------------------------------------------- /src/root/views/Country/ThreeW/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Country/ThreeW/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/Country/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Country/index.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/Card/index.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/ClimateChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/ClimateChart.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/Container/index.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/ExternalSources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/ExternalSources.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/IndicatorOutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/IndicatorOutput.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/InformIndicators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/InformIndicators.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/KeyClimateEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/KeyClimateEvents.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/KeyDocuments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/KeyDocuments.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/KeyIndicators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/KeyIndicators.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/Map.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/NSIndicators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/NSIndicators.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/PastCrisesEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/PastCrisesEvents.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/PastEpidemics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/PastEpidemics.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/PastOperation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/PastOperation.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/PopulationMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/PopulationMap.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/SeasonalCalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/SeasonalCalendar.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/SocialEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/SocialEvents.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/common.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/index.js -------------------------------------------------------------------------------- /src/root/views/CountryProfile/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/CountryProfile/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/Covid19ThreeWSankey/Filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Covid19ThreeWSankey/Filters.js -------------------------------------------------------------------------------- /src/root/views/Covid19ThreeWSankey/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Covid19ThreeWSankey/index.js -------------------------------------------------------------------------------- /src/root/views/DrefApplicationForm/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/DrefApplicationForm/common.tsx -------------------------------------------------------------------------------- /src/root/views/DrefApplicationForm/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/DrefApplicationForm/import.ts -------------------------------------------------------------------------------- /src/root/views/DrefApplicationForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/DrefApplicationForm/index.tsx -------------------------------------------------------------------------------- /src/root/views/DrefOpPdfPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/DrefOpPdfPreview/index.tsx -------------------------------------------------------------------------------- /src/root/views/DrefPdfPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/DrefPdfPreview/index.tsx -------------------------------------------------------------------------------- /src/root/views/DrefPdfPreview/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/DrefPdfPreview/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/Emergency/Activities/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Emergency/Activities/index.tsx -------------------------------------------------------------------------------- /src/root/views/Emergency/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Emergency/index.js -------------------------------------------------------------------------------- /src/root/views/EmergencyThreeW/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/EmergencyThreeW/index.tsx -------------------------------------------------------------------------------- /src/root/views/EmergencyThreeW/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/EmergencyThreeW/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/EmergencyThreeWEdit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/EmergencyThreeWEdit/index.tsx -------------------------------------------------------------------------------- /src/root/views/EmergencyThreeWEdit/styles.module.scss: -------------------------------------------------------------------------------- 1 | @import '~styles/settings/variables'; 2 | 3 | .emergency-three-w-edit { 4 | } 5 | -------------------------------------------------------------------------------- /src/root/views/FieldReportForm/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FieldReportForm/common.tsx -------------------------------------------------------------------------------- /src/root/views/FieldReportForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FieldReportForm/index.tsx -------------------------------------------------------------------------------- /src/root/views/FieldReportForm/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FieldReportForm/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/FinalReportForm/Needs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FinalReportForm/Needs/index.tsx -------------------------------------------------------------------------------- /src/root/views/FinalReportForm/Overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FinalReportForm/Overview/index.tsx -------------------------------------------------------------------------------- /src/root/views/FinalReportForm/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FinalReportForm/common.tsx -------------------------------------------------------------------------------- /src/root/views/FinalReportForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FinalReportForm/index.tsx -------------------------------------------------------------------------------- /src/root/views/FinalReportForm/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FinalReportForm/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/FinalReportPdfPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FinalReportPdfPreview/index.tsx -------------------------------------------------------------------------------- /src/root/views/FlashUpdateReport/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FlashUpdateReport/index.tsx -------------------------------------------------------------------------------- /src/root/views/FourHundredFour/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FourHundredFour/index.tsx -------------------------------------------------------------------------------- /src/root/views/FourHundredFour/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/FourHundredFour/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/GlobalRiskWatch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalRiskWatch/index.tsx -------------------------------------------------------------------------------- /src/root/views/GlobalRiskWatch/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalRiskWatch/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/GlobalThreeW/Charts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalThreeW/Charts/index.tsx -------------------------------------------------------------------------------- /src/root/views/GlobalThreeW/Filters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalThreeW/Filters/index.tsx -------------------------------------------------------------------------------- /src/root/views/GlobalThreeW/Map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalThreeW/Map/index.tsx -------------------------------------------------------------------------------- /src/root/views/GlobalThreeW/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalThreeW/common.ts -------------------------------------------------------------------------------- /src/root/views/GlobalThreeW/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalThreeW/index.tsx -------------------------------------------------------------------------------- /src/root/views/GlobalThreeW/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/GlobalThreeW/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/NewThreeW/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/NewThreeW/index.tsx -------------------------------------------------------------------------------- /src/root/views/NewThreeW/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/NewThreeW/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/RegionalRiskWatch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalRiskWatch/index.tsx -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/activity-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/activity-details.js -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/budget-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/budget-overview.js -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/country-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/country-table.js -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/export-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/export-button.js -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/index.js -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/map.js -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/people-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/people-overview.js -------------------------------------------------------------------------------- /src/root/views/RegionalThreeW/status-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/RegionalThreeW/status-overview.js -------------------------------------------------------------------------------- /src/root/views/Search/CountryList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/CountryList/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/EmergencyTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/EmergencyTable/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/FieldReportTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/FieldReportTable/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/ProjectTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/ProjectTable/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/ProvinceList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/ProvinceList/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/RegionList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/RegionList/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/SurgeAlertTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/SurgeAlertTable/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/index.tsx -------------------------------------------------------------------------------- /src/root/views/Search/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Search/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/Surge/operational-timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/Surge/operational-timeline.js -------------------------------------------------------------------------------- /src/root/views/ThreeW/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/ThreeW/index.tsx -------------------------------------------------------------------------------- /src/root/views/ThreeW/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/ThreeW/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/ThreeWEdit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/ThreeWEdit/index.tsx -------------------------------------------------------------------------------- /src/root/views/ThreeWEdit/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/ThreeWEdit/styles.module.scss -------------------------------------------------------------------------------- /src/root/views/TranslationDashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/TranslationDashboard/index.js -------------------------------------------------------------------------------- /src/root/views/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/about.js -------------------------------------------------------------------------------- /src/root/views/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/account.js -------------------------------------------------------------------------------- /src/root/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/app.js -------------------------------------------------------------------------------- /src/root/views/deployments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/deployments.js -------------------------------------------------------------------------------- /src/root/views/emergencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/emergencies.js -------------------------------------------------------------------------------- /src/root/views/emergencyWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/emergencyWrapper.js -------------------------------------------------------------------------------- /src/root/views/field-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/field-report.js -------------------------------------------------------------------------------- /src/root/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/home.js -------------------------------------------------------------------------------- /src/root/views/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/login.js -------------------------------------------------------------------------------- /src/root/views/password-change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/password-change.js -------------------------------------------------------------------------------- /src/root/views/per-assessment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/per-assessment.js -------------------------------------------------------------------------------- /src/root/views/preparedness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/preparedness.js -------------------------------------------------------------------------------- /src/root/views/recover-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/recover-account.js -------------------------------------------------------------------------------- /src/root/views/recover-username.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/recover-username.js -------------------------------------------------------------------------------- /src/root/views/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/region.js -------------------------------------------------------------------------------- /src/root/views/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/register.js -------------------------------------------------------------------------------- /src/root/views/resend-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/resend-validation.js -------------------------------------------------------------------------------- /src/root/views/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/root/views/table.js -------------------------------------------------------------------------------- /src/styles/about/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/about/_global.scss -------------------------------------------------------------------------------- /src/styles/components/_backdrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/components/_backdrop.scss -------------------------------------------------------------------------------- /src/styles/components/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/components/_common.scss -------------------------------------------------------------------------------- /src/styles/components/_dropdown-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/components/_dropdown-menu.scss -------------------------------------------------------------------------------- /src/styles/components/_formatted-date.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/components/_formatted-number.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/components/_formatted-number.scss -------------------------------------------------------------------------------- /src/styles/components/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/components/_select.scss -------------------------------------------------------------------------------- /src/styles/core/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_animation.scss -------------------------------------------------------------------------------- /src/styles/core/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_base.scss -------------------------------------------------------------------------------- /src/styles/core/_box-heading-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_box-heading-content.scss -------------------------------------------------------------------------------- /src/styles/core/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_code.scss -------------------------------------------------------------------------------- /src/styles/core/_collecticons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_collecticons.scss -------------------------------------------------------------------------------- /src/styles/core/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_grid.scss -------------------------------------------------------------------------------- /src/styles/core/_icomoon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_icomoon.scss -------------------------------------------------------------------------------- /src/styles/core/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_media.scss -------------------------------------------------------------------------------- /src/styles/core/_skins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_skins.scss -------------------------------------------------------------------------------- /src/styles/core/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_tables.scss -------------------------------------------------------------------------------- /src/styles/core/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_tabs.scss -------------------------------------------------------------------------------- /src/styles/core/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_typography.scss -------------------------------------------------------------------------------- /src/styles/core/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/core/_utilities.scss -------------------------------------------------------------------------------- /src/styles/country/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/country/_global.scss -------------------------------------------------------------------------------- /src/styles/deployments/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/deployments/_global.scss -------------------------------------------------------------------------------- /src/styles/deployments/_operationalTimeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/deployments/_operationalTimeline.scss -------------------------------------------------------------------------------- /src/styles/deployments/_presenting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/deployments/_presenting.scss -------------------------------------------------------------------------------- /src/styles/emergencies/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/emergencies/_global.scss -------------------------------------------------------------------------------- /src/styles/emergency/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/emergency/_global.scss -------------------------------------------------------------------------------- /src/styles/field-report/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/field-report/_display.scss -------------------------------------------------------------------------------- /src/styles/field-report/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/field-report/_form.scss -------------------------------------------------------------------------------- /src/styles/field-report/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/field-report/_global.scss -------------------------------------------------------------------------------- /src/styles/forms/per-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/forms/per-form.scss -------------------------------------------------------------------------------- /src/styles/global/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_alerts.scss -------------------------------------------------------------------------------- /src/styles/global/_box-heading-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_box-heading-content.scss -------------------------------------------------------------------------------- /src/styles/global/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_breadcrumbs.scss -------------------------------------------------------------------------------- /src/styles/global/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_buttons.scss -------------------------------------------------------------------------------- /src/styles/global/_callouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_callouts.scss -------------------------------------------------------------------------------- /src/styles/global/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_cards.scss -------------------------------------------------------------------------------- /src/styles/global/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_charts.scss -------------------------------------------------------------------------------- /src/styles/global/_drops.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_drops.scss -------------------------------------------------------------------------------- /src/styles/global/_folds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_folds.scss -------------------------------------------------------------------------------- /src/styles/global/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_forms.scss -------------------------------------------------------------------------------- /src/styles/global/_frames.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_frames.scss -------------------------------------------------------------------------------- /src/styles/global/_global-banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_global-banner.scss -------------------------------------------------------------------------------- /src/styles/global/_icon-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_icon-styles.scss -------------------------------------------------------------------------------- /src/styles/global/_iframe-embeds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_iframe-embeds.scss -------------------------------------------------------------------------------- /src/styles/global/_inpages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_inpages.scss -------------------------------------------------------------------------------- /src/styles/global/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_labels.scss -------------------------------------------------------------------------------- /src/styles/global/_loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_loading.scss -------------------------------------------------------------------------------- /src/styles/global/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_login.scss -------------------------------------------------------------------------------- /src/styles/global/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_modals.scss -------------------------------------------------------------------------------- /src/styles/global/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_navs.scss -------------------------------------------------------------------------------- /src/styles/global/_page-prime-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_page-prime-nav.scss -------------------------------------------------------------------------------- /src/styles/global/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_pages.scss -------------------------------------------------------------------------------- /src/styles/global/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_panels.scss -------------------------------------------------------------------------------- /src/styles/global/_pills.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_pills.scss -------------------------------------------------------------------------------- /src/styles/global/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_popovers.scss -------------------------------------------------------------------------------- /src/styles/global/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_print.scss -------------------------------------------------------------------------------- /src/styles/global/_scrollbar-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_scrollbar-custom.scss -------------------------------------------------------------------------------- /src/styles/global/_states.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_states.scss -------------------------------------------------------------------------------- /src/styles/global/_text-output.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_text-output.scss -------------------------------------------------------------------------------- /src/styles/global/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/_tooltip.scss -------------------------------------------------------------------------------- /src/styles/global/faram-inputs/_raw-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/faram-inputs/_raw-input.scss -------------------------------------------------------------------------------- /src/styles/global/faram-inputs/_select-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/faram-inputs/_select-input.scss -------------------------------------------------------------------------------- /src/styles/global/faram-inputs/_text-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/global/faram-inputs/_text-input.scss -------------------------------------------------------------------------------- /src/styles/header/navbar.scss: -------------------------------------------------------------------------------- 1 | .navbar-highlighted span { 2 | border-bottom: 1px solid $primary-color; 3 | } -------------------------------------------------------------------------------- /src/styles/home/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/home/_global.scss -------------------------------------------------------------------------------- /src/styles/home/_highlighted-emergencies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/home/_highlighted-emergencies.scss -------------------------------------------------------------------------------- /src/styles/home/_homemap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/home/_homemap.scss -------------------------------------------------------------------------------- /src/styles/home/_presenting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/home/_presenting.scss -------------------------------------------------------------------------------- /src/styles/main.css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/main.css.json -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/preparedness/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/preparedness/_global.scss -------------------------------------------------------------------------------- /src/styles/region/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/region/_global.scss -------------------------------------------------------------------------------- /src/styles/settings/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/settings/_functions.scss -------------------------------------------------------------------------------- /src/styles/settings/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/settings/_mixins.scss -------------------------------------------------------------------------------- /src/styles/settings/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/settings/_variables.scss -------------------------------------------------------------------------------- /src/styles/vendor/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/vendor/_normalize.scss -------------------------------------------------------------------------------- /src/styles/vendor/_react-carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/vendor/_react-carousel.scss -------------------------------------------------------------------------------- /src/styles/vendor/_react-paginate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/vendor/_react-paginate.scss -------------------------------------------------------------------------------- /src/styles/vendor/_react-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/styles/vendor/_react-select.scss -------------------------------------------------------------------------------- /src/wdyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/src/wdyr.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFRCGo/go-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------