From b87c13057ed9825e138e8c528e8200c55148b6af Mon Sep 17 00:00:00 2001 From: wzglinieckisoldevelo <98958634+wzglinieckisoldevelo@users.noreply.github.com> Date: Thu, 1 Jun 2023 09:22:37 +0200 Subject: [PATCH 01/11] Update docker-manual.yml (#83) Updated github job name. --- .github/workflows/docker-manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-manual.yml b/.github/workflows/docker-manual.yml index fc64b44..a2c9fe3 100644 --- a/.github/workflows/docker-manual.yml +++ b/.github/workflows/docker-manual.yml @@ -16,7 +16,7 @@ jobs: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Build the openimis backend Docker image + - name: Build the openimis frontend Docker image run: | docker build . --tag ghcr.io/openimis/openimis-fe:${{ github.event.inputs.tag }} docker push ghcr.io/openimis/openimis-fe:${{ github.event.inputs.tag }} From a7af1acf2c0999a308f2923762260a6d949cd6f6 Mon Sep 17 00:00:00 2001 From: wzglinieckisoldevelo Date: Tue, 13 Jun 2023 13:01:05 +0200 Subject: [PATCH 02/11] ONI-114: Added missing step in translations instructions. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f6ccce5..45fba0b 100644 --- a/README.md +++ b/README.md @@ -254,6 +254,7 @@ Note: This image only provides the openimis frontend server. The full openIMIS d export default {"es":"es-ES", "es-ES": "es-ES","en":"en-GB","en-GB":"en-GB","fr":"fr-FR","fr-FR":"fr-FR"} ``` - type `yarn build` and if success - type `yarn start` and you should see this translation in your app (go to 'users' page, select user, change language into the newly provided, refresh page and you should see texts in changed language) +- if you encounter any problems by that point, run `yarn load-config` in the main module - there is also possibility to overwrite particular language for example 'English' into 'Gambian English' (without changes on database level). In your new translation module in index.js (for example new module called `openimis-fe-language_en_gm_js`): ```js import messages_en from "./translations/en.json"; From 0eaf26e7f70fd80b51eff197cf3e4d22cba9cbbb Mon Sep 17 00:00:00 2001 From: Damian Borowiecki Date: Wed, 28 Jun 2023 06:38:53 +0200 Subject: [PATCH 03/11] CM-213: Change moduleConfiguration reduce --- src/helpers/theme.js | 1 + src/index.js | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/helpers/theme.js b/src/helpers/theme.js index 27de3ca..8abb0ff 100644 --- a/src/helpers/theme.js +++ b/src/helpers/theme.js @@ -54,6 +54,7 @@ const theme = createTheme({ drawer: { width: 300, fontSize: 16, + backgroundColor:"#006273" }, appBar: { fontSize: 16, diff --git a/src/index.js b/src/index.js index 2a9b5ed..2545992 100644 --- a/src/index.js +++ b/src/index.js @@ -27,14 +27,16 @@ const loadConfiguration = async () => { throw response; } else { const { data } = await response.json(); - return data.moduleConfigurations.reduce((acc, c) => { + data.moduleConfigurations.unshift({}); + const out = data.moduleConfigurations.reduce((acc, c) => { try { acc[c.module] = { controls: c.controls, ...JSON.parse(c.config) }; } catch (error) { console.error(`Failed to parse module ${c.module} config`, error); } return acc; - }, []); + }); + return out; } }; From 9f3c71b3163b18fa0b63cfc62453b066276734b3 Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 23 Aug 2023 10:13:36 +0200 Subject: [PATCH 04/11] OP-781: add flex tooltip container to theme (#98) --- src/helpers/theme.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/helpers/theme.js b/src/helpers/theme.js index 8abb0ff..c338126 100644 --- a/src/helpers/theme.js +++ b/src/helpers/theme.js @@ -183,6 +183,18 @@ const theme = createTheme({ }, secondaryButton: {}, }, + tooltipContainer: { + position: 'fixed', + bottom: 15, + right: 8, + zIndex: 2000, + display: 'flex', + flexDirection: 'column', + alignItems: 'flex-end', + }, + flexTooltip: { + marginBottom: 5, + }, fab: { position: "fixed", bottom: 20, From 92217876cf24da39258b7dca73a4a8358a93834a Mon Sep 17 00:00:00 2001 From: Jan Date: Thu, 31 Aug 2023 10:07:01 +0200 Subject: [PATCH 05/11] OP-1533: add secondary highlight css (#99) --- src/helpers/theme.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/helpers/theme.js b/src/helpers/theme.js index c338126..34ce692 100644 --- a/src/helpers/theme.js +++ b/src/helpers/theme.js @@ -131,6 +131,10 @@ const theme = createTheme({ fontWeight: 500, align: "center", }, + secondaryHighlightedRow: { + backgroundColor: "#cbedf2", + }, + secondaryHighlightedCell: {}, highlightedAltRow: {}, highlightedAltCell: { fontStyle: "italic", From d7e44075c7a018faf04091d867d44f3b9daf4088 Mon Sep 17 00:00:00 2001 From: Patrick Delcroix Date: Thu, 14 Sep 2023 13:03:40 +0200 Subject: [PATCH 06/11] frankenstein beast --- openimis.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/openimis.json b/openimis.json index 33f5585..f9a7469 100644 --- a/openimis.json +++ b/openimis.json @@ -105,6 +105,26 @@ { "name": "InvoiceModule", "npm": "@openimis/fe-invoice@git+https://github.com/openimis/openimis-fe-invoice_js.git#develop" + }, + { + "name": "SocialProtectionModule", + "npm": "@openimis/fe-social_protection@git+https://github.com/openimis/openimis-fe-social_protection_js.git#develop" + }, + { + "name": "TasksManagementModule", + "npm": "@openimis/fe-tasks_management@git+https://github.com/openimis/openimis-fe-tasks_management_js.git#develop" + }, + { + "name": "OpenSearchReportsModule", + "npm": "@openimis/fe-opensearch_reports@git+https://github.com/openimis/openimis-fe-opensearch_reports_js.git#develop" + }, + { + "name": "GrievanceModule", + "npm": "@openimis/fe-grievance@git+https://github.com/openimis/openimis-fe-grievance_js.git#develop" + }, + { + "name": "PayrollModule", + "npm": "@openimis/fe-payroll@git+https://github.com/openimis/openimis-fe-payroll_js.git#develop" } ] } From 14778b325006479455a2b8e342debe80b5196afa Mon Sep 17 00:00:00 2001 From: Dragos DOBRE Date: Fri, 15 Sep 2023 18:41:16 +0200 Subject: [PATCH 07/11] Update openimis.json --- openimis.json | 54 +++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/openimis.json b/openimis.json index f9a7469..4097a93 100644 --- a/openimis.json +++ b/openimis.json @@ -20,111 +20,111 @@ "modules": [ { "name": "CoreModule", - "npm": "@openimis/fe-core@git+https://github.com/openimis/openimis-fe-core_js.git#develop" + "npm": "@openimis/fe-core@git+https://github.com/openimis/openimis-fe-core_js.git#release/23.10" }, { "name": "HomeModule", - "npm": "@openimis/fe-home@git+https://github.com/openimis/openimis-fe-home_js.git#develop" + "npm": "@openimis/fe-home@git+https://github.com/openimis/openimis-fe-home_js.git#release/23.10" }, { "name": "LocationModule", - "npm": "@openimis/fe-location@git+https://github.com/openimis/openimis-fe-location_js.git#develop" + "npm": "@openimis/fe-location@git+https://github.com/openimis/openimis-fe-location_js.git#release/23.10" }, { "name": "InsureeModule", - "npm": "@openimis/fe-insuree@git+https://github.com/openimis/openimis-fe-insuree_js.git#develop" + "npm": "@openimis/fe-insuree@git+https://github.com/openimis/openimis-fe-insuree_js.git#release/23.10" }, { "name": "MedicalModule", - "npm": "@openimis/fe-medical@git+https://github.com/openimis/openimis-fe-medical_js.git#develop" + "npm": "@openimis/fe-medical@git+https://github.com/openimis/openimis-fe-medical_js.git#release/23.10" }, { "name": "MedicalPriceListModule", - "npm": "@openimis/fe-medical_pricelist@git+https://github.com/openimis/openimis-fe-medical_pricelist_js.git#develop" + "npm": "@openimis/fe-medical_pricelist@git+https://github.com/openimis/openimis-fe-medical_pricelist_js.git#release/23.10" }, { "name": "ProductModule", - "npm": "@openimis/fe-product@git+https://github.com/openimis/openimis-fe-product_js.git#develop" + "npm": "@openimis/fe-product@git+https://github.com/openimis/openimis-fe-product_js.git#release/23.10" }, { "name": "PolicyModule", - "npm": "@openimis/fe-policy@git+https://github.com/openimis/openimis-fe-policy_js.git#develop" + "npm": "@openimis/fe-policy@git+https://github.com/openimis/openimis-fe-policy_js.git#release/23.10" }, { "name": "PayerModule", - "npm": "@openimis/fe-payer@git+https://github.com/openimis/openimis-fe-payer_js.git#develop" + "npm": "@openimis/fe-payer@git+https://github.com/openimis/openimis-fe-payer_js.git#release/23.10" }, { "name": "ContributionModule", - "npm": "@openimis/fe-contribution@git+https://github.com/openimis/openimis-fe-contribution_js.git#develop" + "npm": "@openimis/fe-contribution@git+https://github.com/openimis/openimis-fe-contribution_js.git#release/23.10" }, { "name": "PaymentModule", - "npm": "@openimis/fe-payment@git+https://github.com/openimis/openimis-fe-payment_js.git#develop" + "npm": "@openimis/fe-payment@git+https://github.com/openimis/openimis-fe-payment_js.git#release/23.10" }, { "name": "ClaimModule", - "npm": "@openimis/fe-claim@git+https://github.com/openimis/openimis-fe-claim_js.git#develop" + "npm": "@openimis/fe-claim@git+https://github.com/openimis/openimis-fe-claim_js.git#release/23.10" }, { "name": "ClaimBatchModule", - "npm": "@openimis/fe-claim_batch@git+https://github.com/openimis/openimis-fe-claim_batch_js.git#develop" + "npm": "@openimis/fe-claim_batch@git+https://github.com/openimis/openimis-fe-claim_batch_js.git#release/23.10" }, { "name": "AdminModule", - "npm": "@openimis/fe-admin@git+https://github.com/openimis/openimis-fe-admin_js.git#develop" + "npm": "@openimis/fe-admin@git+https://github.com/openimis/openimis-fe-admin_js.git#release/23.10" }, { "name": "ToolsModule", - "npm": "@openimis/fe-tools@git+https://github.com/openimis/openimis-fe-tools_js.git#develop" + "npm": "@openimis/fe-tools@git+https://github.com/openimis/openimis-fe-tools_js.git#release/23.10" }, { "name": "ProfileModule", - "npm": "@openimis/fe-profile@git+https://github.com/openimis/openimis-fe-profile_js.git#develop" + "npm": "@openimis/fe-profile@git+https://github.com/openimis/openimis-fe-profile_js.git#release/23.10" }, { "name": "LanguageFrModule", - "npm": "@openimis/fe-language_fr@git+https://github.com/openimis/openimis-fe-language_fr_js.git#develop" + "npm": "@openimis/fe-language_fr@git+https://github.com/openimis/openimis-fe-language_fr_js.git#release/23.10" }, { "name": "CalculationModule", - "npm": "@openimis/fe-calculation@git+https://github.com/openimis/openimis-fe-calculation_js.git#develop" + "npm": "@openimis/fe-calculation@git+https://github.com/openimis/openimis-fe-calculation_js.git#release/23.10" }, { "name": "PolicyHolderModule", - "npm": "@openimis/fe-policyholder@git+https://github.com/openimis/openimis-fe-policyholder_js.git#develop" + "npm": "@openimis/fe-policyholder@git+https://github.com/openimis/openimis-fe-policyholder_js.git#release/23.10" }, { "name": "ContributionPlanModule", - "npm": "@openimis/fe-contribution_plan@git+https://github.com/openimis/openimis-fe-contribution_plan_js.git#develop" + "npm": "@openimis/fe-contribution_plan@git+https://github.com/openimis/openimis-fe-contribution_plan_js.git#release/23.10" }, { "name": "ContractModule", - "npm": "@openimis/fe-contract@git+https://github.com/openimis/openimis-fe-contract_js.git#develop" + "npm": "@openimis/fe-contract@git+https://github.com/openimis/openimis-fe-contract_js.git#release/23.10" }, { "name": "InvoiceModule", - "npm": "@openimis/fe-invoice@git+https://github.com/openimis/openimis-fe-invoice_js.git#develop" + "npm": "@openimis/fe-invoice@git+https://github.com/openimis/openimis-fe-invoice_js.git#release/23.10" }, { "name": "SocialProtectionModule", - "npm": "@openimis/fe-social_protection@git+https://github.com/openimis/openimis-fe-social_protection_js.git#develop" + "npm": "@openimis/fe-social_protection@git+https://github.com/openimis/openimis-fe-social_protection_js.git#release/23.10" }, { "name": "TasksManagementModule", - "npm": "@openimis/fe-tasks_management@git+https://github.com/openimis/openimis-fe-tasks_management_js.git#develop" + "npm": "@openimis/fe-tasks_management@git+https://github.com/openimis/openimis-fe-tasks_management_js.git#release/23.10" }, { "name": "OpenSearchReportsModule", - "npm": "@openimis/fe-opensearch_reports@git+https://github.com/openimis/openimis-fe-opensearch_reports_js.git#develop" + "npm": "@openimis/fe-opensearch_reports@git+https://github.com/openimis/openimis-fe-opensearch_reports_js.git#release/23.10" }, { "name": "GrievanceModule", - "npm": "@openimis/fe-grievance@git+https://github.com/openimis/openimis-fe-grievance_js.git#develop" + "npm": "@openimis/fe-grievance@git+https://github.com/openimis/openimis-fe-grievance_js.git#release/23.10" }, { "name": "PayrollModule", - "npm": "@openimis/fe-payroll@git+https://github.com/openimis/openimis-fe-payroll_js.git#develop" + "npm": "@openimis/fe-payroll@git+https://github.com/openimis/openimis-fe-payroll_js.git#release/23.10" } ] } From 0daf02662db9abba6a6c76a486b3d17b227d61f2 Mon Sep 17 00:00:00 2001 From: Dragos DOBRE Date: Mon, 18 Sep 2023 13:18:15 +0200 Subject: [PATCH 08/11] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42db806..abbe82a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openimis/fe", - "version": "1.4.0", + "version": "23.10", "license": "AGPL-3.0-only", "proxy": "http://localhost:8000", "homepage": "http://localhost:3000/front", From c013c8f6bb5f8e82b5b6ed2f6ee54f23f4a9ca8d Mon Sep 17 00:00:00 2001 From: Patrick Delcroix Date: Tue, 19 Sep 2023 14:58:37 +0200 Subject: [PATCH 09/11] update coreMIS --- openimis.json | 54 +++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/openimis.json b/openimis.json index f9a7469..04bca18 100644 --- a/openimis.json +++ b/openimis.json @@ -18,91 +18,95 @@ } ], "modules": [ - { + { "name": "CoreModule", "npm": "@openimis/fe-core@git+https://github.com/openimis/openimis-fe-core_js.git#develop" - }, - { + }, + { + "name": "IndividualModule", + "npm": "@openimis/fe-individual@git+https://github.com/openimis/openimis-fe-individual_js.git#develop" + }, + { "name": "HomeModule", "npm": "@openimis/fe-home@git+https://github.com/openimis/openimis-fe-home_js.git#develop" }, - { + { "name": "LocationModule", "npm": "@openimis/fe-location@git+https://github.com/openimis/openimis-fe-location_js.git#develop" }, - { + { "name": "InsureeModule", "npm": "@openimis/fe-insuree@git+https://github.com/openimis/openimis-fe-insuree_js.git#develop" }, - { + { "name": "MedicalModule", "npm": "@openimis/fe-medical@git+https://github.com/openimis/openimis-fe-medical_js.git#develop" }, - { + { "name": "MedicalPriceListModule", "npm": "@openimis/fe-medical_pricelist@git+https://github.com/openimis/openimis-fe-medical_pricelist_js.git#develop" }, - { + { "name": "ProductModule", "npm": "@openimis/fe-product@git+https://github.com/openimis/openimis-fe-product_js.git#develop" }, - { + { "name": "PolicyModule", "npm": "@openimis/fe-policy@git+https://github.com/openimis/openimis-fe-policy_js.git#develop" }, - { + { "name": "PayerModule", "npm": "@openimis/fe-payer@git+https://github.com/openimis/openimis-fe-payer_js.git#develop" }, - { + { "name": "ContributionModule", "npm": "@openimis/fe-contribution@git+https://github.com/openimis/openimis-fe-contribution_js.git#develop" }, - { + { "name": "PaymentModule", "npm": "@openimis/fe-payment@git+https://github.com/openimis/openimis-fe-payment_js.git#develop" }, - { + { "name": "ClaimModule", "npm": "@openimis/fe-claim@git+https://github.com/openimis/openimis-fe-claim_js.git#develop" }, - { + { "name": "ClaimBatchModule", "npm": "@openimis/fe-claim_batch@git+https://github.com/openimis/openimis-fe-claim_batch_js.git#develop" }, - { + { "name": "AdminModule", "npm": "@openimis/fe-admin@git+https://github.com/openimis/openimis-fe-admin_js.git#develop" }, - { + { "name": "ToolsModule", "npm": "@openimis/fe-tools@git+https://github.com/openimis/openimis-fe-tools_js.git#develop" }, - { + { "name": "ProfileModule", "npm": "@openimis/fe-profile@git+https://github.com/openimis/openimis-fe-profile_js.git#develop" }, - { + { "name": "LanguageFrModule", "npm": "@openimis/fe-language_fr@git+https://github.com/openimis/openimis-fe-language_fr_js.git#develop" }, - { + { "name": "CalculationModule", "npm": "@openimis/fe-calculation@git+https://github.com/openimis/openimis-fe-calculation_js.git#develop" }, - { + { "name": "PolicyHolderModule", "npm": "@openimis/fe-policyholder@git+https://github.com/openimis/openimis-fe-policyholder_js.git#develop" }, - { + { "name": "ContributionPlanModule", "npm": "@openimis/fe-contribution_plan@git+https://github.com/openimis/openimis-fe-contribution_plan_js.git#develop" }, - { + { "name": "ContractModule", "npm": "@openimis/fe-contract@git+https://github.com/openimis/openimis-fe-contract_js.git#develop" }, - { + { "name": "InvoiceModule", "npm": "@openimis/fe-invoice@git+https://github.com/openimis/openimis-fe-invoice_js.git#develop" }, @@ -118,10 +122,6 @@ "name": "OpenSearchReportsModule", "npm": "@openimis/fe-opensearch_reports@git+https://github.com/openimis/openimis-fe-opensearch_reports_js.git#develop" }, - { - "name": "GrievanceModule", - "npm": "@openimis/fe-grievance@git+https://github.com/openimis/openimis-fe-grievance_js.git#develop" - }, { "name": "PayrollModule", "npm": "@openimis/fe-payroll@git+https://github.com/openimis/openimis-fe-payroll_js.git#develop" From 999628f98990d05556d74d52270d8a6760ca162c Mon Sep 17 00:00:00 2001 From: Dragos DOBRE Date: Tue, 19 Sep 2023 16:09:54 +0200 Subject: [PATCH 10/11] Update openimis.json --- openimis.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openimis.json b/openimis.json index ad725f9..6844290 100644 --- a/openimis.json +++ b/openimis.json @@ -20,11 +20,11 @@ "modules": [ { "name": "CoreModule", - "npm": "@openimis/fe-core@git+https://github.com/openimis/openimis-fe-core_js.git#develop" + "npm": "@openimis/fe-core@git+https://github.com/openimis/openimis-fe-core_js.git#release/23.10" }, { "name": "IndividualModule", - "npm": "@openimis/fe-individual@git+https://github.com/openimis/openimis-fe-individual_js.git#develop" + "npm": "@openimis/fe-individual@git+https://github.com/openimis/openimis-fe-individual_js.git#release/23.10" }, { "name": "HomeModule", From d359587fd1d0f907766e13a96ce9ddc5801e8e19 Mon Sep 17 00:00:00 2001 From: Patrick Delcroix Date: Sat, 16 Dec 2023 01:53:47 +0100 Subject: [PATCH 11/11] Release 23.10 --- openimis.json | 120 +++++++++++++++++++++++++------------------------- 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/openimis.json b/openimis.json index 6844290..8fca7b3 100644 --- a/openimis.json +++ b/openimis.json @@ -20,111 +20,111 @@ "modules": [ { "name": "CoreModule", - "npm": "@openimis/fe-core@git+https://github.com/openimis/openimis-fe-core_js.git#release/23.10" - }, - { - "name": "IndividualModule", - "npm": "@openimis/fe-individual@git+https://github.com/openimis/openimis-fe-individual_js.git#release/23.10" - }, - { + "npm": "@openimis/fe-core@>=1.6.0" + }, + { "name": "HomeModule", - "npm": "@openimis/fe-home@git+https://github.com/openimis/openimis-fe-home_js.git#release/23.10" + "npm": "@openimis/fe-home@>=1.5.2" }, - { + { "name": "LocationModule", - "npm": "@openimis/fe-location@git+https://github.com/openimis/openimis-fe-location_js.git#release/23.10" + "npm": "@openimis/fe-location@>=1.5.0" }, - { + { "name": "InsureeModule", - "npm": "@openimis/fe-insuree@git+https://github.com/openimis/openimis-fe-insuree_js.git#release/23.10" + "npm": "@openimis/fe-insuree@>=1.6.0" }, - { + { "name": "MedicalModule", - "npm": "@openimis/fe-medical@git+https://github.com/openimis/openimis-fe-medical_js.git#release/23.10" + "npm": "@openimis/fe-medical@>=1.6.0" }, - { + { "name": "MedicalPriceListModule", - "npm": "@openimis/fe-medical_pricelist@git+https://github.com/openimis/openimis-fe-medical_pricelist_js.git#release/23.10" + "npm": "@openimis/fe-medical_pricelist@>=1.5.2" }, - { + { "name": "ProductModule", - "npm": "@openimis/fe-product@git+https://github.com/openimis/openimis-fe-product_js.git#release/23.10" + "npm": "@openimis/fe-product@>=1.6.0" }, - { + { "name": "PolicyModule", - "npm": "@openimis/fe-policy@git+https://github.com/openimis/openimis-fe-policy_js.git#release/23.10" + "npm": "@openimis/fe-policy@>=1.6.0" }, - { + { "name": "PayerModule", - "npm": "@openimis/fe-payer@git+https://github.com/openimis/openimis-fe-payer_js.git#release/23.10" + "npm": "@openimis/fe-payer@>=1.4.3" }, - { + { "name": "ContributionModule", - "npm": "@openimis/fe-contribution@git+https://github.com/openimis/openimis-fe-contribution_js.git#release/23.10" + "npm": "@openimis/fe-contribution@>=1.5.0" }, - { + { "name": "PaymentModule", - "npm": "@openimis/fe-payment@git+https://github.com/openimis/openimis-fe-payment_js.git#release/23.10" + "npm": "@openimis/fe-payment@>=1.4.3" }, - { + { "name": "ClaimModule", - "npm": "@openimis/fe-claim@git+https://github.com/openimis/openimis-fe-claim_js.git#release/23.10" + "npm": "@openimis/fe-claim@>=1.5.0" }, - { + { "name": "ClaimBatchModule", - "npm": "@openimis/fe-claim_batch@git+https://github.com/openimis/openimis-fe-claim_batch_js.git#release/23.10" + "npm": "@openimis/fe-claim_batch@>=1.4.3" }, - { + { "name": "AdminModule", - "npm": "@openimis/fe-admin@git+https://github.com/openimis/openimis-fe-admin_js.git#release/23.10" + "npm": "@openimis/fe-admin@>=1.6.0" }, - { + { "name": "ToolsModule", - "npm": "@openimis/fe-tools@git+https://github.com/openimis/openimis-fe-tools_js.git#release/23.10" + "npm": "@openimis/fe-tools@>=1.5.3" }, - { + { "name": "ProfileModule", - "npm": "@openimis/fe-profile@git+https://github.com/openimis/openimis-fe-profile_js.git#release/23.10" + "npm": "@openimis/fe-profile@>=1.6.0" }, - { + { "name": "LanguageFrModule", - "npm": "@openimis/fe-language_fr@git+https://github.com/openimis/openimis-fe-language_fr_js.git#release/23.10" + "npm": "@openimis/fe-language_fr@>=1.6.0" }, - { + { "name": "CalculationModule", - "npm": "@openimis/fe-calculation@git+https://github.com/openimis/openimis-fe-calculation_js.git#release/23.10" + "npm": "@openimis/fe-calculation@>=1.5.0" }, - { + { "name": "PolicyHolderModule", - "npm": "@openimis/fe-policyholder@git+https://github.com/openimis/openimis-fe-policyholder_js.git#release/23.10" + "npm": "@openimis/fe-policyholder@>=1.5.0" }, - { + { "name": "ContributionPlanModule", - "npm": "@openimis/fe-contribution_plan@git+https://github.com/openimis/openimis-fe-contribution_plan_js.git#release/23.10" + "npm": "@openimis/fe-contribution_plan@>=1.6.0" }, - { + { "name": "ContractModule", - "npm": "@openimis/fe-contract@git+https://github.com/openimis/openimis-fe-contract_js.git#release/23.10" + "npm": "@openimis/fe-contract@>=1.5.0" }, - { + { "name": "InvoiceModule", - "npm": "@openimis/fe-invoice@git+https://github.com/openimis/openimis-fe-invoice_js.git#release/23.10" + "npm": "@openimis/fe-invoice@>=1.5.0" + }, + { + "name": "SocialProtectionModule", + "npm": "@openimis/fe-social_protection@>=1.0.0" }, - { - "name": "SocialProtectionModule", - "npm": "@openimis/fe-social_protection@git+https://github.com/openimis/openimis-fe-social_protection_js.git#release/23.10" + { + "name": "TasksManagementModule", + "npm": "@openimis/fe-tasks_management@>=1.0.0" }, - { - "name": "TasksManagementModule", - "npm": "@openimis/fe-tasks_management@git+https://github.com/openimis/openimis-fe-tasks_management_js.git#release/23.10" + { + "name": "OpenSearchReportsModule", + "npm": "@openimis/fe-opensearch_reports@>=1.0.0" }, - { - "name": "OpenSearchReportsModule", - "npm": "@openimis/fe-opensearch_reports@git+https://github.com/openimis/openimis-fe-opensearch_reports_js.git#release/23.10" + { + "name": "GrievanceModule", + "npm": "@openimis/fe-grievance@>=1.0.0" }, - { - "name": "PayrollModule", - "npm": "@openimis/fe-payroll@git+https://github.com/openimis/openimis-fe-payroll_js.git#release/23.10" + { + "name": "PayrollModule", + "npm": "@openimis/fe-payroll@>=1.0.0" } ] }