├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── bug_report.md │ └── config.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── issue_templates │ ├── feature_request.md │ └── bug_report.md └── merge_request_templates │ └── default.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .directory ├── .testcafe-electron-rc ├── Routes.tsx ├── about.css ├── about.html ├── app.global.css ├── app.html ├── app.icns ├── assets │ ├── fonts │ │ ├── Montserrat │ │ │ ├── Montserrat-Black.ttf │ │ │ ├── Montserrat-BlackItalic.ttf │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-BoldItalic.ttf │ │ │ ├── Montserrat-ExtraBold.ttf │ │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ │ ├── Montserrat-ExtraLight.ttf │ │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ │ ├── Montserrat-Italic.ttf │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-LightItalic.ttf │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── Montserrat-MediumItalic.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Montserrat-SemiBold.ttf │ │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ │ ├── Montserrat-Thin.ttf │ │ │ └── Montserrat-ThinItalic.ttf │ │ └── Saira │ │ │ ├── OFL.txt │ │ │ ├── README.txt │ │ │ ├── Saira-Italic-VariableFont_wdth,wght.ttf │ │ │ ├── Saira-VariableFont_wdth,wght.ttf │ │ │ └── static │ │ │ ├── Saira-Black.ttf │ │ │ ├── Saira-BlackItalic.ttf │ │ │ ├── Saira-Bold.ttf │ │ │ ├── Saira-BoldItalic.ttf │ │ │ ├── Saira-ExtraBold.ttf │ │ │ ├── Saira-ExtraBoldItalic.ttf │ │ │ ├── Saira-ExtraLight.ttf │ │ │ ├── Saira-ExtraLightItalic.ttf │ │ │ ├── Saira-Italic.ttf │ │ │ ├── Saira-Light.ttf │ │ │ ├── Saira-LightItalic.ttf │ │ │ ├── Saira-Medium.ttf │ │ │ ├── Saira-MediumItalic.ttf │ │ │ ├── Saira-Regular.ttf │ │ │ ├── Saira-SemiBold.ttf │ │ │ ├── Saira-SemiBoldItalic.ttf │ │ │ ├── Saira-Thin.ttf │ │ │ ├── Saira-ThinItalic.ttf │ │ │ ├── Saira_Condensed-Black.ttf │ │ │ ├── Saira_Condensed-BlackItalic.ttf │ │ │ ├── Saira_Condensed-Bold.ttf │ │ │ ├── Saira_Condensed-BoldItalic.ttf │ │ │ ├── Saira_Condensed-ExtraBold.ttf │ │ │ ├── Saira_Condensed-ExtraBoldItalic.ttf │ │ │ ├── Saira_Condensed-ExtraLight.ttf │ │ │ ├── Saira_Condensed-ExtraLightItalic.ttf │ │ │ ├── Saira_Condensed-Italic.ttf │ │ │ ├── Saira_Condensed-Light.ttf │ │ │ ├── Saira_Condensed-LightItalic.ttf │ │ │ ├── Saira_Condensed-Medium.ttf │ │ │ ├── Saira_Condensed-MediumItalic.ttf │ │ │ ├── Saira_Condensed-Regular.ttf │ │ │ ├── Saira_Condensed-SemiBold.ttf │ │ │ ├── Saira_Condensed-SemiBoldItalic.ttf │ │ │ ├── Saira_Condensed-Thin.ttf │ │ │ ├── Saira_Condensed-ThinItalic.ttf │ │ │ ├── Saira_Expanded-Black.ttf │ │ │ ├── Saira_Expanded-BlackItalic.ttf │ │ │ ├── Saira_Expanded-Bold.ttf │ │ │ ├── Saira_Expanded-BoldItalic.ttf │ │ │ ├── Saira_Expanded-ExtraBold.ttf │ │ │ ├── Saira_Expanded-ExtraBoldItalic.ttf │ │ │ ├── Saira_Expanded-ExtraLight.ttf │ │ │ ├── Saira_Expanded-ExtraLightItalic.ttf │ │ │ ├── Saira_Expanded-Italic.ttf │ │ │ ├── Saira_Expanded-Light.ttf │ │ │ ├── Saira_Expanded-LightItalic.ttf │ │ │ ├── Saira_Expanded-Medium.ttf │ │ │ ├── Saira_Expanded-MediumItalic.ttf │ │ │ ├── Saira_Expanded-Regular.ttf │ │ │ ├── Saira_Expanded-SemiBold.ttf │ │ │ ├── Saira_Expanded-SemiBoldItalic.ttf │ │ │ ├── Saira_Expanded-Thin.ttf │ │ │ ├── Saira_Expanded-ThinItalic.ttf │ │ │ ├── Saira_ExtraCondensed-Black.ttf │ │ │ ├── Saira_ExtraCondensed-BlackItalic.ttf │ │ │ ├── Saira_ExtraCondensed-Bold.ttf │ │ │ ├── Saira_ExtraCondensed-BoldItalic.ttf │ │ │ ├── Saira_ExtraCondensed-ExtraBold.ttf │ │ │ ├── Saira_ExtraCondensed-ExtraBoldItalic.ttf │ │ │ ├── Saira_ExtraCondensed-ExtraLight.ttf │ │ │ ├── Saira_ExtraCondensed-ExtraLightItalic.ttf │ │ │ ├── Saira_ExtraCondensed-Italic.ttf │ │ │ ├── Saira_ExtraCondensed-Light.ttf │ │ │ ├── Saira_ExtraCondensed-LightItalic.ttf │ │ │ ├── Saira_ExtraCondensed-Medium.ttf │ │ │ ├── Saira_ExtraCondensed-MediumItalic.ttf │ │ │ ├── Saira_ExtraCondensed-Regular.ttf │ │ │ ├── Saira_ExtraCondensed-SemiBold.ttf │ │ │ ├── Saira_ExtraCondensed-SemiBoldItalic.ttf │ │ │ ├── Saira_ExtraCondensed-Thin.ttf │ │ │ ├── Saira_ExtraCondensed-ThinItalic.ttf │ │ │ ├── Saira_SemiCondensed-Black.ttf │ │ │ ├── Saira_SemiCondensed-BlackItalic.ttf │ │ │ ├── Saira_SemiCondensed-Bold.ttf │ │ │ ├── Saira_SemiCondensed-BoldItalic.ttf │ │ │ ├── Saira_SemiCondensed-ExtraBold.ttf │ │ │ ├── Saira_SemiCondensed-ExtraBoldItalic.ttf │ │ │ ├── Saira_SemiCondensed-ExtraLight.ttf │ │ │ ├── Saira_SemiCondensed-ExtraLightItalic.ttf │ │ │ ├── Saira_SemiCondensed-Italic.ttf │ │ │ ├── Saira_SemiCondensed-Light.ttf │ │ │ ├── Saira_SemiCondensed-LightItalic.ttf │ │ │ ├── Saira_SemiCondensed-Medium.ttf │ │ │ ├── Saira_SemiCondensed-MediumItalic.ttf │ │ │ ├── Saira_SemiCondensed-Regular.ttf │ │ │ ├── Saira_SemiCondensed-SemiBold.ttf │ │ │ ├── Saira_SemiCondensed-SemiBoldItalic.ttf │ │ │ ├── Saira_SemiCondensed-Thin.ttf │ │ │ ├── Saira_SemiCondensed-ThinItalic.ttf │ │ │ ├── Saira_SemiExpanded-Black.ttf │ │ │ ├── Saira_SemiExpanded-BlackItalic.ttf │ │ │ ├── Saira_SemiExpanded-Bold.ttf │ │ │ ├── Saira_SemiExpanded-BoldItalic.ttf │ │ │ ├── Saira_SemiExpanded-ExtraBold.ttf │ │ │ ├── Saira_SemiExpanded-ExtraBoldItalic.ttf │ │ │ ├── Saira_SemiExpanded-ExtraLight.ttf │ │ │ ├── Saira_SemiExpanded-ExtraLightItalic.ttf │ │ │ ├── Saira_SemiExpanded-Italic.ttf │ │ │ ├── Saira_SemiExpanded-Light.ttf │ │ │ ├── Saira_SemiExpanded-LightItalic.ttf │ │ │ ├── Saira_SemiExpanded-Medium.ttf │ │ │ ├── Saira_SemiExpanded-MediumItalic.ttf │ │ │ ├── Saira_SemiExpanded-Regular.ttf │ │ │ ├── Saira_SemiExpanded-SemiBold.ttf │ │ │ ├── Saira_SemiExpanded-SemiBoldItalic.ttf │ │ │ ├── Saira_SemiExpanded-Thin.ttf │ │ │ ├── Saira_SemiExpanded-ThinItalic.ttf │ │ │ ├── Saira_UltraCondensed-Black.ttf │ │ │ ├── Saira_UltraCondensed-BlackItalic.ttf │ │ │ ├── Saira_UltraCondensed-Bold.ttf │ │ │ ├── Saira_UltraCondensed-BoldItalic.ttf │ │ │ ├── Saira_UltraCondensed-ExtraBold.ttf │ │ │ ├── Saira_UltraCondensed-ExtraBoldItalic.ttf │ │ │ ├── Saira_UltraCondensed-ExtraLight.ttf │ │ │ ├── Saira_UltraCondensed-ExtraLightItalic.ttf │ │ │ ├── Saira_UltraCondensed-Italic.ttf │ │ │ ├── Saira_UltraCondensed-Light.ttf │ │ │ ├── Saira_UltraCondensed-LightItalic.ttf │ │ │ ├── Saira_UltraCondensed-Medium.ttf │ │ │ ├── Saira_UltraCondensed-MediumItalic.ttf │ │ │ ├── Saira_UltraCondensed-Regular.ttf │ │ │ ├── Saira_UltraCondensed-SemiBold.ttf │ │ │ ├── Saira_UltraCondensed-SemiBoldItalic.ttf │ │ │ ├── Saira_UltraCondensed-Thin.ttf │ │ │ └── Saira_UltraCondensed-ThinItalic.ttf │ └── img │ │ ├── icon.png │ │ ├── logo-camba-footer.png │ │ ├── logo.png │ │ ├── logo_azul_texto.png │ │ ├── logo_blanco.png │ │ ├── logo_sin_texto.png │ │ └── logo_verde.png ├── components │ ├── ErrorVisualizer │ │ ├── ErrorVisualizer.tsx │ │ ├── ErrorVisualizerStats.tsx │ │ └── PopUpReset.tsx │ ├── Home │ │ ├── Home.css │ │ └── Home.tsx │ ├── Loader │ │ └── Loader.tsx │ ├── Result │ │ ├── Results.tsx │ │ ├── body.tsx │ │ ├── header.tsx │ │ └── table.tsx │ ├── Stepper │ │ └── Stepper.tsx │ ├── Toast │ │ └── Toast.tsx │ ├── TopBar │ │ └── TopBar.tsx │ └── css.d.ts ├── constants │ ├── api.js │ ├── misc.js │ └── routes.json ├── containers │ ├── AnonimizationPage.tsx │ ├── App.tsx │ ├── LoginPage.tsx │ ├── Root.tsx │ └── StatsPage.tsx ├── features │ ├── anonymizer │ │ ├── EditionStep │ │ │ ├── EditionStep.css │ │ │ └── EditionStep.tsx │ │ ├── ResultStep │ │ │ └── ResultStep.tsx │ │ ├── UploaderStep │ │ │ └── UploaderStep.tsx │ │ └── anonymizerSlice.ts │ ├── login │ │ ├── Login │ │ │ └── Login.tsx │ │ ├── authHook.tsx │ │ └── authSlice.tsx │ ├── notifications │ │ ├── Notification.tsx │ │ └── notificationsSlice.ts │ └── stats │ │ ├── Stats.tsx │ │ ├── helpers.ts │ │ └── statsSlice.ts ├── hooks │ └── clearProcessStateHook.tsx ├── index.tsx ├── main.dev.ts ├── main.prod.js.LICENSE ├── main.prod.js.LICENSE.txt ├── menu.ts ├── online-status.html ├── package-lock.json ├── package.json ├── renderer.js ├── rootReducer.ts ├── store.ts ├── utils │ ├── .gitkeep │ ├── declarations.ts │ └── index.ts └── yarn.lock ├── babel.config.js ├── configs ├── .eslintrc ├── webpack.config.base.js ├── webpack.config.eslint.js ├── webpack.config.main.prod.babel.js ├── webpack.config.renderer.dev.babel.js ├── webpack.config.renderer.dev.dll.babel.js └── webpack.config.renderer.prod.babel.js ├── internals ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── BabelRegister.js │ ├── CheckBuildsExist.js │ ├── CheckNativeDep.js │ ├── CheckNodeEnv.js │ ├── CheckPortInUse.js │ ├── CheckYarn.js │ ├── DeleteSourceMaps.js │ └── ElectronRebuild.js ├── package.json ├── resources ├── icon.icns ├── icon.ico ├── icon.png └── icons │ └── 512x512.png ├── test ├── .eslintrc.json └── e2e │ └── Login.e2e.ts ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ ISSUE_TEMPLATE / feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.github/ ISSUE_TEMPLATE / feature_request.md -------------------------------------------------------------------------------- /.github/ ISSUE_TEMPLATE /bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.github/ ISSUE_TEMPLATE /bug_report.md -------------------------------------------------------------------------------- /.github/ ISSUE_TEMPLATE /config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/ feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.gitlab/issue_templates/ feature_request.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.gitlab/issue_templates/bug_report.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/.gitlab/merge_request_templates/default.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/README.md -------------------------------------------------------------------------------- /app/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2020,11,15,20,47,49 3 | Version=4 4 | 5 | [Settings] 6 | HiddenFilesShown=true 7 | -------------------------------------------------------------------------------- /app/.testcafe-electron-rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/.testcafe-electron-rc -------------------------------------------------------------------------------- /app/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/Routes.tsx -------------------------------------------------------------------------------- /app/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/about.css -------------------------------------------------------------------------------- /app/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/about.html -------------------------------------------------------------------------------- /app/app.global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/app.global.css -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/app.html -------------------------------------------------------------------------------- /app/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/app.icns -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/OFL.txt -------------------------------------------------------------------------------- /app/assets/fonts/Saira/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/README.txt -------------------------------------------------------------------------------- /app/assets/fonts/Saira/Saira-Italic-VariableFont_wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/Saira-Italic-VariableFont_wdth,wght.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/Saira-VariableFont_wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/Saira-VariableFont_wdth,wght.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Condensed-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Condensed-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_Expanded-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_Expanded-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_ExtraCondensed-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_ExtraCondensed-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiCondensed-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiCondensed-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_SemiExpanded-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_SemiExpanded-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraLight.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-SemiBold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Saira/static/Saira_UltraCondensed-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/fonts/Saira/static/Saira_UltraCondensed-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/img/icon.png -------------------------------------------------------------------------------- /app/assets/img/logo-camba-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/img/logo-camba-footer.png -------------------------------------------------------------------------------- /app/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/img/logo.png -------------------------------------------------------------------------------- /app/assets/img/logo_azul_texto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/img/logo_azul_texto.png -------------------------------------------------------------------------------- /app/assets/img/logo_blanco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/img/logo_blanco.png -------------------------------------------------------------------------------- /app/assets/img/logo_sin_texto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/img/logo_sin_texto.png -------------------------------------------------------------------------------- /app/assets/img/logo_verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/assets/img/logo_verde.png -------------------------------------------------------------------------------- /app/components/ErrorVisualizer/ErrorVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/ErrorVisualizer/ErrorVisualizer.tsx -------------------------------------------------------------------------------- /app/components/ErrorVisualizer/ErrorVisualizerStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/ErrorVisualizer/ErrorVisualizerStats.tsx -------------------------------------------------------------------------------- /app/components/ErrorVisualizer/PopUpReset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/ErrorVisualizer/PopUpReset.tsx -------------------------------------------------------------------------------- /app/components/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Home/Home.css -------------------------------------------------------------------------------- /app/components/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Home/Home.tsx -------------------------------------------------------------------------------- /app/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /app/components/Result/Results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Result/Results.tsx -------------------------------------------------------------------------------- /app/components/Result/body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Result/body.tsx -------------------------------------------------------------------------------- /app/components/Result/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Result/header.tsx -------------------------------------------------------------------------------- /app/components/Result/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Result/table.tsx -------------------------------------------------------------------------------- /app/components/Stepper/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Stepper/Stepper.tsx -------------------------------------------------------------------------------- /app/components/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/Toast/Toast.tsx -------------------------------------------------------------------------------- /app/components/TopBar/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/TopBar/TopBar.tsx -------------------------------------------------------------------------------- /app/components/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/components/css.d.ts -------------------------------------------------------------------------------- /app/constants/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/constants/api.js -------------------------------------------------------------------------------- /app/constants/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/constants/misc.js -------------------------------------------------------------------------------- /app/constants/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/constants/routes.json -------------------------------------------------------------------------------- /app/containers/AnonimizationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/containers/AnonimizationPage.tsx -------------------------------------------------------------------------------- /app/containers/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/containers/App.tsx -------------------------------------------------------------------------------- /app/containers/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/containers/LoginPage.tsx -------------------------------------------------------------------------------- /app/containers/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/containers/Root.tsx -------------------------------------------------------------------------------- /app/containers/StatsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/containers/StatsPage.tsx -------------------------------------------------------------------------------- /app/features/anonymizer/EditionStep/EditionStep.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/anonymizer/EditionStep/EditionStep.css -------------------------------------------------------------------------------- /app/features/anonymizer/EditionStep/EditionStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/anonymizer/EditionStep/EditionStep.tsx -------------------------------------------------------------------------------- /app/features/anonymizer/ResultStep/ResultStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/anonymizer/ResultStep/ResultStep.tsx -------------------------------------------------------------------------------- /app/features/anonymizer/UploaderStep/UploaderStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/anonymizer/UploaderStep/UploaderStep.tsx -------------------------------------------------------------------------------- /app/features/anonymizer/anonymizerSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/anonymizer/anonymizerSlice.ts -------------------------------------------------------------------------------- /app/features/login/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/login/Login/Login.tsx -------------------------------------------------------------------------------- /app/features/login/authHook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/login/authHook.tsx -------------------------------------------------------------------------------- /app/features/login/authSlice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/login/authSlice.tsx -------------------------------------------------------------------------------- /app/features/notifications/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/notifications/Notification.tsx -------------------------------------------------------------------------------- /app/features/notifications/notificationsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/notifications/notificationsSlice.ts -------------------------------------------------------------------------------- /app/features/stats/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/stats/Stats.tsx -------------------------------------------------------------------------------- /app/features/stats/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/stats/helpers.ts -------------------------------------------------------------------------------- /app/features/stats/statsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/features/stats/statsSlice.ts -------------------------------------------------------------------------------- /app/hooks/clearProcessStateHook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/hooks/clearProcessStateHook.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/index.tsx -------------------------------------------------------------------------------- /app/main.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/main.dev.ts -------------------------------------------------------------------------------- /app/main.prod.js.LICENSE: -------------------------------------------------------------------------------- 1 | /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */ 2 | -------------------------------------------------------------------------------- /app/main.prod.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/main.prod.js.LICENSE.txt -------------------------------------------------------------------------------- /app/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/menu.ts -------------------------------------------------------------------------------- /app/online-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/online-status.html -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/package.json -------------------------------------------------------------------------------- /app/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/renderer.js -------------------------------------------------------------------------------- /app/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/rootReducer.ts -------------------------------------------------------------------------------- /app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/store.ts -------------------------------------------------------------------------------- /app/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utils/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/utils/declarations.ts -------------------------------------------------------------------------------- /app/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/utils/index.ts -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/configs/.eslintrc -------------------------------------------------------------------------------- /configs/webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/configs/webpack.config.base.js -------------------------------------------------------------------------------- /configs/webpack.config.eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/configs/webpack.config.eslint.js -------------------------------------------------------------------------------- /configs/webpack.config.main.prod.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/configs/webpack.config.main.prod.babel.js -------------------------------------------------------------------------------- /configs/webpack.config.renderer.dev.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/configs/webpack.config.renderer.dev.babel.js -------------------------------------------------------------------------------- /configs/webpack.config.renderer.dev.dll.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/configs/webpack.config.renderer.dev.dll.babel.js -------------------------------------------------------------------------------- /configs/webpack.config.renderer.prod.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/configs/webpack.config.renderer.prod.babel.js -------------------------------------------------------------------------------- /internals/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /internals/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/.eslintrc -------------------------------------------------------------------------------- /internals/scripts/BabelRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/BabelRegister.js -------------------------------------------------------------------------------- /internals/scripts/CheckBuildsExist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/CheckBuildsExist.js -------------------------------------------------------------------------------- /internals/scripts/CheckNativeDep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/CheckNativeDep.js -------------------------------------------------------------------------------- /internals/scripts/CheckNodeEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/CheckNodeEnv.js -------------------------------------------------------------------------------- /internals/scripts/CheckPortInUse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/CheckPortInUse.js -------------------------------------------------------------------------------- /internals/scripts/CheckYarn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/CheckYarn.js -------------------------------------------------------------------------------- /internals/scripts/DeleteSourceMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/DeleteSourceMaps.js -------------------------------------------------------------------------------- /internals/scripts/ElectronRebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/internals/scripts/ElectronRebuild.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/resources/icons/512x512.png -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/e2e/Login.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/test/e2e/Login.e2e.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-desktop-app/HEAD/yarn.lock --------------------------------------------------------------------------------