Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUGFIX/HCMPRE-2253 : Fixed Button Issue in PopDataTable Screen #2195

Merged
merged 1 commit into from
Feb 6, 2025

Conversation

Swathi-eGov
Copy link
Contributor

@Swathi-eGov Swathi-eGov commented Feb 6, 2025

Choose the appropriate template for your PR:

Feature PR

Feature Request

JIRA ID

Module

Description

Related Issues


Bugfix PR

Bugfix Request

JIRA ID

Module

Description

Root Cause

Related Issues


Release PR

Summary by CodeRabbit

  • New Features
    • Alerts now offer enhanced SVG rendering for a sharper visual experience.
    • The inbox automatically refreshes status counts after workflow actions, ensuring up-to-date information is displayed.

@Swathi-eGov Swathi-eGov requested a review from a team as a code owner February 6, 2025 09:33
Copy link
Contributor

coderabbitai bot commented Feb 6, 2025

📝 Walkthrough

Walkthrough

This change introduces a new boolean property, showAlertAsSvg, in the PopUp component within the BoundarySelection component to enable SVG display for alerts. Additionally, a call to the fetchStatusCount() function is added in the onSuccess callback of the WorkflowCommentPopUp component in PopInbox.js, ensuring the UI reflects updated status counts after workflow updates.

Changes

File(s) Change Summary
.../components/BoundarySelection.js Added a new property showAlertAsSvg (set to true) in the PopUp component within the BoundarySelection component.
.../pages/employee/PopInbox.js Inserted a call to fetchStatusCount() in the onSuccess callback of the WorkflowCommentPopUp component to refresh status counts after a workflow operation.

Sequence Diagram(s)

sequenceDiagram
    participant PopInbox as PopInbox Component
    participant Workflow as WorkflowCommentPopUp
    participant StatusAPI as fetchStatusCount Function

    Workflow->>PopInbox: onSuccess Event
    PopInbox->>StatusAPI: Call fetchStatusCount()
    StatusAPI-->>PopInbox: Return updated status count
    PopInbox->>Workflow: Render updated count
Loading

Possibly related PRs

  • added popup for boundary summary #1525: Modifications involving the PopUp component in the BoundaryDetailsSummary which share similarities with the current changes.
  • Popup fix #1958: Adjustments to the PopUp properties in the UserAccess component, presenting a direct connection to the modifications in this PR.

Suggested reviewers

  • nabeelmd-eGov
  • jagankumar-egov

Poem

I'm a little rabbit with code in my paws,
Hoping these changes get a round of applause.
SVG alerts now dance in view,
While status counts freshen up the cue.
With hops and cheers, I'll code anew!
🐰✨

Tip

🌐 Web search-backed reviews and chat
  • We have enabled web search-based reviews and chat for all users. This feature allows CodeRabbit to access the latest documentation and information on the web.
  • You can disable this feature by setting web_search: false in the knowledge_base settings.
  • Please share any feedback in the Discord discussion.
✨ Finishing Touches
  • 📝 Generate Docstrings (Beta)

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🔭 Outside diff range comments (1)
health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/pages/employee/PopInbox.js (1)

13-875: Consider breaking down this large component for better maintainability.

The PopInbox component has grown quite large and handles multiple responsibilities. Consider:

  1. Extracting workflow management logic into a custom hook (e.g., useWorkflowManagement).
  2. Creating separate components for the filter section and action buttons.
  3. Moving status tracking logic into a dedicated hook (e.g., useStatusTracking).

This would improve code organization, reusability, and testing.

🧰 Tools
🪛 Biome (1.9.4)

[error] 151-151: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)


[error] 204-204: Unnecessary use of boolean literals in conditional expression.

Simplify your code by directly assigning the result without using a ternary operator.
If your goal is negation, you may use the logical NOT (!) or double NOT (!!) operator for clearer and concise code.
Check for more details about NOT operator.
Unsafe fix: Remove the conditional expression with

(lint/complexity/noUselessTernary)


[error] 272-272: Unnecessary use of boolean literals in conditional expression.

Simplify your code by directly assigning the result without using a ternary operator.
If your goal is negation, you may use the logical NOT (!) or double NOT (!!) operator for clearer and concise code.
Check for more details about NOT operator.
Unsafe fix: Remove the conditional expression with

(lint/complexity/noUselessTernary)


[error] 324-324: Unnecessary use of boolean literals in conditional expression.

Simplify your code by directly assigning the result without using a ternary operator.
If your goal is negation, you may use the logical NOT (!) or double NOT (!!) operator for clearer and concise code.
Check for more details about NOT operator.
Unsafe fix: Remove the conditional expression with

(lint/complexity/noUselessTernary)


[error] 357-357: Unnecessary use of boolean literals in conditional expression.

Simplify your code by directly assigning the result without using a ternary operator.
If your goal is negation, you may use the logical NOT (!) or double NOT (!!) operator for clearer and concise code.
Check for more details about NOT operator.
Unsafe fix: Remove the conditional expression with

(lint/complexity/noUselessTernary)


[error] 377-377: Unnecessary use of boolean literals in conditional expression.

Simplify your code by directly assigning the result without using a ternary operator.
If your goal is negation, you may use the logical NOT (!) or double NOT (!!) operator for clearer and concise code.
Check for more details about NOT operator.
Unsafe fix: Remove the conditional expression with

(lint/complexity/noUselessTernary)


[error] 642-648: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.

Unsafe fix: Use a SelfClosingElement instead

(lint/style/useSelfClosingElements)


[error] 687-687: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.

Unsafe fix: Use a SelfClosingElement instead

(lint/style/useSelfClosingElements)


[error] 141-141: Use Number.POSITIVE_INFINITY instead of the equivalent global.

ES2015 moved some globals into the Number namespace for consistency.
Safe fix: Use Number.POSITIVE_INFINITY instead.

(lint/style/useNumberNamespace)


[error] 819-819: Missing key property for this element in iterable.

The order of the items may change, and having a key can help React identify which item was moved.
Check the React documentation.

(lint/correctness/useJsxKeyInIterable)


[error] 831-833: Missing key property for this element in iterable.

The order of the items may change, and having a key can help React identify which item was moved.
Check the React documentation.

(lint/correctness/useJsxKeyInIterable)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2414a37 and 2b21c1c.

📒 Files selected for processing (2)
  • health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/components/BoundarySelection.js (1 hunks)
  • health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/pages/employee/PopInbox.js (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`**/*.js`: check

**/*.js: check

  • health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/components/BoundarySelection.js
  • health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/pages/employee/PopInbox.js
📓 Learnings (1)
health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/pages/employee/PopInbox.js (2)
Learnt from: rachana-egov
PR: egovernments/DIGIT-Frontend#1837
File: health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/pages/employee/PopInbox.js:559-561
Timestamp: 2024-11-15T10:15:57.370Z
Learning: In `PopInbox.js`, error handling for the `onError` callback in `WorkflowCommentPopUp` is handled within the component, so explicit error handling in the parent component is unnecessary.
Learnt from: rachana-egov
PR: egovernments/DIGIT-Frontend#1832
File: health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/pages/employee/PopInbox.js:592-594
Timestamp: 2024-11-14T12:48:23.024Z
Learning: In `PopInbox.js`, when integrating the `ConfirmationPopUp` component, error handling for API failures is managed internally within the component, so explicitly passing an `onError` prop is not necessary.
🔇 Additional comments (2)
health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/pages/employee/PopInbox.js (1)

792-792: LGTM! Good addition for data consistency.

The addition of fetchStatusCount() in the onSuccess callback ensures that status counts are refreshed after a successful workflow update, maintaining UI consistency.

health/micro-ui/web/micro-ui-internals/packages/modules/microplan/src/components/BoundarySelection.js (1)

116-151: Verify PopUp component's SVG support.

The PopUp component is used here to display important boundary-related warnings. Let's verify that the component properly supports SVG alerts.

Also, let's verify the component's documentation:

✅ Verification successful

🏁 Script executed:

#!/bin/bash
# Search for PopUp component definition to verify SVG alert support
ast-grep --pattern 'const PopUp = ({ showAlertAsSvg, $$$}) => {
  $$$
}'

Length of output: 74


🌐 Web query:

What are the supported props for egovernments digit-ui-components PopUp component?

💡 Result:

The `PopUp` component from `@egovernments/digit-ui-components` supports **two primary variants** (`default` and `alert`) based on its July 2024 update[7]. While detailed prop documentation isn’t explicitly provided in the search results, typical React component patterns suggest additional common props likely exist:

**Confirmed Props:**
- `variant`: Specifies visual style (`"default"` or `"alert"`)[7][9].

**Inferred Props (common patterns):**
- `isOpen`: Boolean to control visibility.
- `onClose`: Callback triggered when closing.
- `children`: Content rendered inside.
- `title`: Header text.
- `actions`: Buttons/CTAs (e.g., Confirm/Cancel).

For exact implementation details or advanced configurations (e.g., custom styling hooks), refer to DIGIT’s Storybook documentation[4][6].

Citations:

- 1: https://core.digit.org/guides/developer-guide/ui-developer-guide/digit-ui
- 2: https://sanitation.digit.org/setup/development-guide/ui-developer-guide
- 3: https://docs.apryse.com/web/guides/modular-ui/items
- 4: https://github.com/egovernments/DIGIT-UI-LIBRARIES/tree/master
- 5: https://www.npmjs.com/package/@egovernments/digit-ui-react-components
- 6: https://github.com/egovernments/DIGIT-Frontend
- 7: https://www.npmjs.com/package/@egovernments/digit-ui-components
- 8: https://urban.digit.org/v2.6/product/modules/hrms/employee-activation-deactivation-ui-flow
- 9: https://www.npmjs.com/package/@egovernments/digit-ui-components-css
- 10: https://www.digitalpublicgoods.net/r/digit

🏁 Script executed:

#!/bin/bash
# Search the entire repository for references to "showAlertAsSvg"
rg -n "showAlertAsSvg"

Length of output: 160


Verified: PopUp component's SVG support appears to be correctly enabled in this usage.

  • The code in BoundarySelection.js passes showAlertAsSvg={true} when using the PopUp component.
  • While the AST search didn’t return the internal implementation (likely because PopUp is imported from an external library), the external documentation confirms that the component supports an alert variant which is consistent with SVG-enabled alerts.
  • No contradictory evidence was found regarding the support for SVG alerts.
🧰 Tools
🪛 Biome (1.9.4)

[error] 117-150: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.

Unsafe fix: Use a SelfClosingElement instead

(lint/style/useSelfClosingElements)


[error] 136-147: Missing key property for this element in iterable.

The order of the items may change, and having a key can help React identify which item was moved.
Check the React documentation.

(lint/correctness/useJsxKeyInIterable)

@nipunarora-eGov nipunarora-eGov merged commit 69b7d0c into console Feb 6, 2025
5 checks passed
@nipunarora-eGov nipunarora-eGov deleted the BUGFIX/HCMPRE-2253 branch February 6, 2025 09:41
jagankumar-egov added a commit that referenced this pull request Feb 14, 2025
…Payments v0.1.0 (#2217)

* BUGFIX/HCMPRE-1547 updated workflow error message to generic code (#2005)

updated workflow error message to generic code

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* BUGFIX/HCMPRE-1246 :: boundary related issue (#1998)

* validation from ui (#1981)

* validation from ui

* empty top rows considered

* info card added for error in place of toast

* review changes

* file name added

* file name added

* Updated the branch name validation (#1997)

* Update README.md

* Updated the branch name validation

* Updated the branch name validator to have title check as well (#2002)

* review changes

---------

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* BUGFIX/ISSUE-2007 Build issue fix for #2007 (#2008)

* Build issue fix for #2007

* import issue fix

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* BUGFIX/HCMPRE-1585 fixed tootltip icon position according to the label (#2010)

* Update UserManagement.js (#2017)

Co-authored-by: Nipun Arora <aroranipun1@gmail.com>

* Feature/HCMPRE-1234: adding mapping screen for facility and user screen (#2012)

* adding mapping screen for facility and user screen

* Update health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/components/UploadDataMappingWrapper.js

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* updated core version (#2020)

* Bugfix/hcmpre 1583 (#2021)

* Update MicroplanSearch.js

* Pagination issues

---------

Co-authored-by: Nipun Arora <aroranipun1@gmail.com>

* BUGFIX/HCMPRE-1634: fix for versions (#2024)

* Revert "Bugfix/hcmpre 1583 (#2021)"

This reverts commit 201a0ce.

* BUGFIX/HCMPRE-1634 Revert ing"updated core version (#2020)"

* BUGFIX/HCMPRE-1583 fixes

---------

Co-authored-by: Swathi-eGov <swathi.chatrathi@egovernments.org>

* FEATURE/HCMPRE-1634:Fixed all the version updates (#2026)

FEATURE/HCMPRE-1634: Fixed all the version updates

* FIX : Branch name validator fixed Reference #2042

Sample Ticket for reference #2042

* FEATURE/HCMPRE-1644 : Changed download template name (#2035)

FEATURE/HCMPRE-1644: Changed download template name

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* BUGFIX/HCMPRE-1505 : Updated Core Version To Fix Validation Issue on … (#2047)

BUGFIX/HCMPRE-1505 : Updated Core Version To Fix Validation Issue on Profile Update

* FEATURE/HCMPRE-814: Added geojson view and edit (#2013)

* added geojson view and edit

* resolved pr comments

---------

Co-authored-by: nabeelmd-eGov <nabeel.md@egovernments.org>
Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* BUGFIX/HCMPRE-1243: fixes currentKey (#2052)

* fixes current key

* fixes

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* FEATURE/HCMPRE-1625  last modified date added in campaign search and checklist search screens (#2044)

* last modified date added in campaign search and checklist search screens

* lat modified date corrected

---------

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* BUGFIX/HCMPRE-1418 : Fixed IRS value NAN issue (#2055)

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* BUGFIX/HCMPRE-1243: added check for empty upload  (#2056)

* fixes current key

* fixes

* added check

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* FEATURE/HCMPRE-1624 : added alert, fixed localisation on checklist & added more date info on Hierarchy (#2054)

* showcase review points

* logs rmoved

---------

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* HCMPRE-1717::PAYMENTS Module setup (#2053)

* PAYMENTS Module setup

* updated module index file

* updated comments

* HCMPRE-1717:: Removed other modules dependency from Payments

* added static view screen

* Updated dependencies

* Updated Roles and label for Payments Card

* HCMPRE-1717:: Payments Base Module Setup

* Resolved code rabbit comments

* Update package.json

* Rename view_attendance.js to ViewAttendance.js

* Update attendanceManagementTable.js

* Update build-config.yml

* Update Module.js

* Update Module.js

---------

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>
Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* FEATURE/HCMPRE-1717 :: added payment module build (#2059)

* FEATURE/HCMPRE-1717 :: added payment module build

* Update build-config.yml

* BUGFIX/HCMPRE-1717 :: Health Payments Module Build issue fix (#2060)

Health Payments Module Build issue fix

* BUGFIX/HCMPRE-1283: added the config for campaign creation from microplan

* BUGFIX/HCMPRE-1717 :: FIxed the build config file (#2062)

* BUGFIX/HCMPRE-15830 : Fixed checkbox click area (#2064)

Css changes

* BUGFIX/HCMPRE-1730 & HCMPRE-1731 (#2070)

* BUGFIX/HCMPRE-1730 & HCMPRE-1731

* fixes

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* Added css for payment module (#2079)

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>

* BUGFIX/HCMPRE-1730: Fixes pagination in mapping table (#2078)

* BUGFIX/HCMPRE-1730 & HCMPRE-1731

* fixes

* BUGFIX/HCMPRE_1730: Fix pagination

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* FEATURE/HCMPRE-1209 :  Added co-del project type (#2088)

FEATURE/HCMPRE-1209 : Added co-del project type

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* FEATURE/HCMPRE-1789 : Draft Flow (#2093)

* changes to createUpdatePlan

* Changes to UI, createUpdatePlan

* Putting the Hierarchy near the name

* Loc change

* Resolved comments

* Null check for Hierarchy level

* Changes

* Indirectly Mutating planObject

* changes

* changes

---------

Co-authored-by: Abishek <abishek.t@egovernments.org>

* FEATURE/HCMPRE-1787 : Untagging all the current users if boundary is  (#2092)

* FEATURE/HCMPRE-1787 : Untagging all the current users if boundary is changed during setup

* FEATUTE/HCMPRE-1787 : Added different error cases

* FEATURE/HCMPRE-1710: Accessibility dropdown for planInbox with plan integration and apply filter (#2091)

* Adding filters

* Working Filter Search

* InboxFilter Changes

* removing console.log

* Css package update

* changes

* changes

* changes

* changes

* changes

* A lot of changes

* changes

* changes

* changes

* uniform payload structure

* FEATURE/HCMPRE-1712: Facility Dropdown for plan Inbox (#2096)

* Adding filters

* Working Filter Search

* InboxFilter Changes

* removing console.log

* Css package update

* changes

* changes

* changes

* changes

* changes

* A lot of changes

* changes

* changes

* changes

* uniform payload structure

* Adding Facility Dropdown

* code replacing name attribute

* Loader changes

* comments resolved

* Loader change

* Id to id

* BUGFIX/HCMPRE-1810: Fix issue for next page in user tagging (#2104)

* for clickng on save and next

* remove console

* FEATURE/HCMPRE-1706: Plan Inbox updates and draft flow changes (#2109)

* updated plan inbox

* Update createUpdatePlanProject.js

* formatted createupdateplanproject

* BUGFIX/HCMPRE-1776 : Added UI/UX Master changes (#2110)

* FEATURE/HCMPRE-1681: Handled the case where capacity is 0 and tested full flow (#2111)

handled the case where capacity is 0 and tested full flow

* BUGFIX/HCMPRE-1209 changes in the project type code (#2116)

* HCMPRE-1766: App Configuration Screen Setup (#2117)

* HCMPRE-1766: Added AppScreenConfiguration Feature screen

* added enhancement in app configuration

* added app configuration link

* added tag component in mapping

* package upgrade

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* FEATURE/HCMPRE-1713: PopInbox and filtering integration (#2108)

* PopInbox and facilityId search in planInbox

* Localization

* Chages to CSS and removing filter

* Changes to facility filter and security Question

* css package update

* facilityId removed

* Resolved comments, made payload to facilityId

* component package update

* FEATURE/HCMPRE-1852 :: Consolidated Common UI  (#2120)

* added change for common

* Updated the readme content

* revert

* added build configs

* Update buildCommonConsole.yml

* Apply suggestions from code review

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* FEATURE/HCMPRE-1704 : Removing current validation from assumptions an… (#2122)

* FEATURE/HCMPRE-1704 : Removing current validation from assumptions and making sure the flow works as expected( for mixed strat, regis and dist can be same)

* FEATURE/HCMPRE-1704 : Review updates

* HCMPRE-1766: User Mapping Issue fix (#2119)

* User Mapping issue fixes

* fix lowest Hierarchy boundary selection

* fi localisation code

---------

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* BUGFIX/HCMPRE-1584: Disable planSearch for popInbox and CSS for dropdown (#2123)

* BUGFIX/HCMPRE-1866 : Updated versions (#2128)

* FEATURE/HCMPRE-0000 : Fix for serach query in user tagging screen (#2132)

* FEATURE/HCMPRE-1826 : Fixed 0 capacity validation from microplan (#2137)

* FEATURE/HCMPRE-1826 : Fixed 0 capacity validation from microplan

* validation method change

* BUGFIX/HCMPRE-1944: TotalCount UI issue in planIbox (#2138)

* useEffect updated

* CountAssignToAll issue in planInbox

* BUGFIX/HCMPRE-1955 : updated versions of core and libraries (#2144)

updated versions of core and libraries

* BUGFIX/HCMPRE-1826 : Enhanced microplan validation (#2147)

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* FEATURE/HCMPRE-1852 :: Consolidated Common UI removing other modules(#2120)

* FEATURE/HCMPRE-2207 : removed the hard coded project types (#2157)

* BUGFIX/HCMPRE-1242: Status active/inactive and pagination bug fix (#2160)

HCMPRE-1242: Status active/inactive and pagination bug fix

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* BUGFIX/HCMPRE-1243: user mapping pagination issue fix and error toast added for api error (#2162)

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* FEATURE/HCMPRE-1852: Fixes of version in consolidated UI (#2163)

* Update build-config.yml

* Update App.js

* Update package.json

* Update package.json

* fix of landing pacge

* Update build-config.yml

* FEATURE/HCMPRE-2215 : UI Code cleanup (#2161)

* FEATURE/HCMPRE-1852: Added other optimisations for common build(#2163)

* add/edit mappings (#2152)

* add/edit mappings

* edit and delete feature added

* classname corrected

* Update health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/components/UploadData.js

---------

Co-authored-by: nabeelmd-eGov <nabeel.md@egovernments.org>
Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* BUGFIX/HCMPRE-1243: User Mapping Table CSS fix (#2168)

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* FEATURE/HCMPRE-1438 : Health Payments v0.1 Module (#2136)

* removed hcm from store

* added view attendance screen

* added alert pop up, table for view and edit attendance

* updated module.js file

* added success screen and updated breadcrumbs

* fixing table component

* HCMPRE-1717:: Load and store project details on Payments module initi… (#2065)

HCMPRE-1717:: Load and store project details on Payments module initialization

* added input component in table for editing attendance

* HCM-1646::Payment inbox attendance (#2067)

attendance inbox in  progress

* updated table with static data and fields with attendance data

* updated breadcrumbs

* fixed edit attendance calls

* updated css

* fixed nevigation issue

* updated css version

* Payment inbox attendance (#2072)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* updated api calls for create and update flow and added disabled action condition

* fixed back button in view screen

* Payment inbox attendance (#2073)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* Update filter_section.js

---------

Co-authored-by: rachana-egov <137176770+rachana-egov@users.noreply.github.com>

* added workflow in api calls

* removed comments

* updated api base point

* Payment inbox attendance (#2074)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* Payment inbox attendance (#2075)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* Payment inbox attendance (#2076)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* inbox css fix

* added module for boundary localization

* added session storage for individual

* added individual in session storage

* fixed project search issue

* Payment inbox attendance (#2080)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* Payment inbox attendance (#2082)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* Updated hierarchy type for Payments Testing

* integrated with apis

* added create api

* added validation for APPROVAL

* fixed extra call issue

* fixed issue

* Payment inbox attendance (#2084)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* added loading for mutation

* translator funtion added

* started with static screens for bills

* Payment inbox attendance (#2090)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* updated default pagination

* fixed small css issues

* Payment inbox attendance (#2094)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* updated view attendance screen

* removed other links

* Payment inbox attendance (#2095)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* removed logs

* code comment added and status put in the constant file

* Updated Payments Module Initialization to a single hook

* added bill search api

* updated search bill params

* Payment inbox attendance (#2099)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* added condition to boundary filter

* updated bill inbox

* fixed my bills screen

* Payment inbox attendance (#2100)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* Updated paymentStatus to review Status

* Localization fixes

* Localization fixes

* Localization fixes

* Localization fixes

* fixed bill screen

* Payment inbox attendance (#2103)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* boundary component issue fixed for mandatory filed and drop down reset

* commented code removed

* fixed table css

* fixed api not being called again issue

* added pdf and excel download options

* HCMPRE-1816, HCMPRE-1774::Demo Feedbacks and Bug fixes (#2107)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* boundary component issue fixed for mandatory filed and drop down reset

* commented code removed

* bug fixes done

* updated billinbox

* updating session storage for billl inbox

* added session storage for bill screens

* fixed bill inbox screen issues

* fixed my bills session issue

* updated breadcrumbs

* fixed date range picker component

* added loader on edit screens

* Ticket: HCMPRE-1822 (#2112)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* boundary component issue fixed for mandatory filed and drop down reset

* commented code removed

* bug fixes done

* ticket: HCMPRE-1822, boundary option reloaded and error scenation handled for project selection and boundary selection in attendance register inbox

* updated table data refresh

* fixed filter issue

* fixed validation issue

* fixed breadcrumbs issue

* fixed demo issues

* ticketNo: HCMPRE-1822,bug fixes and edge cases fixed

* fixed date going nulls

* updated attendance duration to ceil value of dates

* added session storage for selected boundary

* fixed boundary filter issue

* fixed locality code not going in bill search

* updated render to one time only

* bill search updated

* fixed bill page issue

* TICKET: HCMPRE-1822 (#2118)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* boundary component issue fixed for mandatory filed and drop down reset

* commented code removed

* bug fixes done

* ticket: HCMPRE-1822, boundary option reloaded and error scenation handled for project selection and boundary selection in attendance register inbox

* HCMPRE-1822::table rows per page issue fixed, and digit.session storage implemented

* session storage fix

* fixed boundary filter issue

* fixed pagination issue

* fixed name for approver and staff

* fixed view attendance screen

* added toast for bill generation

* fixed owner name

* fixed isRequired label

* updated my bills table

* reworking on the table component in view attendance screen (#2121)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* boundary component issue fixed for mandatory filed and drop down reset

* commented code removed

* bug fixes done

* ticket: HCMPRE-1822, boundary option reloaded and error scenation handled for project selection and boundary selection in attendance register inbox

* HCMPRE-1822::table rows per page issue fixed, and digit.session storage implemented

* reworking on the tavle component in view attendance screen

* demo fixes

* fixed issue

* fixed css issues

* HCMPRE-1863:: Updated boundaryHierarchyOrder from boundary search. (#2124)

HCMPRE-1863:: Updated boundaryHierarchyOrder from boundary search. Removed hardocoded boundaryType options

* added project selection page

* fixed approval flow

* fixed bill screens

* TICKET::HCMPRE-1884 (#2129)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* boundary component issue fixed for mandatory filed and drop down reset

* commented code removed

* bug fixes done

* ticket: HCMPRE-1822, boundary option reloaded and error scenation handled for project selection and boundary selection in attendance register inbox

* HCMPRE-1822::table rows per page issue fixed, and digit.session storage implemented

* reworking on the tavle component in view attendance screen

* HCMPRE-1884, worked on preselected boundary

* HCMPRE-1884:: project is also bydefault selected

---------

Co-authored-by: rachana-egov <137176770+rachana-egov@users.noreply.github.com>

* fixed loading screen

* fixed bill inbox screen

* fixed all the css issues

* Inline CSS content removed from unwanted places (#2131)

* attendance inbox in  progress

* composer in progress

* inboxserach composer replaced with custom inbox component

* boundary service API integration implemented for inbox screen

* check box and register search API integration in progress

* table data enriched

* removed debugger

* variable name changed

* tab section functionlity added

* attendance register param changed

* localization code and table value changed

* inbox pagination and status register count fixed

* table component css style changed

* padding removed from table style

* console removed

* HCMPRE-1774: point-1 project drop down is put in the filter section and search section is not required as per last demo

* fliter boundary dropdown in progress

* staffName key changed for attendance mark by

* bug fixes

* code comment added why not used inboxsearch composer

* boundary service made dynamic

* boundary component made dynamic

* boundary component issue fixed for mandatory filed and drop down reset

* commented code removed

* bug fixes done

* ticket: HCMPRE-1822, boundary option reloaded and error scenation handled for project selection and boundary selection in attendance register inbox

* HCMPRE-1822::table rows per page issue fixed, and digit.session storage implemented

* reworking on the tavle component in view attendance screen

* HCMPRE-1884, worked on preselected boundary

* HCMPRE-1884:: project is also bydefault selected

* inline css code removed from custom div

* css

* fixed table css

* added start date and end date for campaign

* HCMPRE-1943:: Demo Feedback Pending Items and Fixes

* Updated constants

* fixed info message when boundary changes

* updated css version

* Revert "updated css version"

This reverts commit 65129c5.

* Revert "Inline CSS content removed from unwanted places (#2131)"

This reverts commit 0707199.

* reverted css changes

* payment module

* fixed project selection issue

* fixed css comments

* resolved github comments

* resolved code rabbit comments

* fixed attendance error issue

* updated context path for services from global config

* fixed grammer error

---------

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>
Co-authored-by: pitabash-eGov <151724478+pitabash-eGov@users.noreply.github.com>
Co-authored-by: rachana-egov <137176770+rachana-egov@users.noreply.github.com>
Co-authored-by: pitabash-eGov <pitabash.choudhdry@egovernments.org>
Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* BUGFIX/HCMPRE-1852 :: FIxed the build config file (#2169)

* BUGFIX/HCMPRE-1852 :: FIxed the build config file

* Update webpack.config.js

* BUGFIX/HCMPRE-2212 : Updated Facility Filter as a Multiselect dropdown  (#2167)

* BUGFIX.HCMPRE-2212 : Updated Facility Filter to MultiselectDropdown

* fixed filter issues

* Removed console logs

* BUGFIX/HCMPRE-1209 : Fixed campaign summary inbetween issue (#2170)

* FEATURE/HCMPRE-1438 : Updated css version for payments css (#2172)

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>

* BUGFIX|HCMPRE-1438: payments css (#2174)

* FEATURE/HCMPRE-1438 : Updated css version for payments css

* fixed css issues from deployement

---------

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>

* BUGFIX/HCMPRE-2212 : Fixed Facility Filter Issue (#2173)

* ui changes and validations for boundary added (#2175)

* BUGFIX|HCMPRE-1438: Updated core module version (#2176)

* FEATURE/HCMPRE-1438 : Updated css version for payments css

* fixed css issues from deployement

* updated core modules version in payments

---------

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>

* BUGFIX/HCMPRE-1850 : Fix the css (#2177)

css version changes

* FEATURE/HCMPRE-0000 : Fixed Css Issue (#2178)

* FEATURE/HCMPRE-0000: adhoc fix (#2179)

? added

* FEATURE/HCMPRE-1649 :  help text and checklist create call order corrected (#2071)

* help text and checklist create call order corrected

* localisations changed

---------

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* FEATURE/HCMPRE-1649: Cleanedup campaign card & added a extra info in project type selection

* BUGFIX|HCMPRE-1438: Updated payments Config key (#2182)

Updated paymentsConfig Key

* FEATURE/HCMPRE-1649:  Updated the core version to check the feature HCMPRE-1425 workbench enhancements

* FEATURE/HCMPRE-2208 :: Fixed the default landing for console user

* BUGFIX/HCMPRE-2243 : Showing only supported campaign types for microplan ui (#2185)

* BUGFIX/HCMPRE-2243 : Showing only supported campaign types for microplan

* Added review changes

* Updated to hcm-microplanning module

* Fixed typo

* FEATURE/HCMPRE-1852: Updated the core version dynamic core module ren… (#2190)

FEATURE/HCMPRE-1852: Updated the core version dynamic core module renderer & Clean up of hcm workbench module

* FEATURE/HCMPRE-1852: Updated the core version as part of Core for Single landing page

* BUGFIX/HCMPRE-2250 : Added loader while data is loading  (#2193)

BUGFIX/HCMPRE-2250 : Added loader while data is loading for the Boundary KPI

* BUGFIX/HCMPRE-1852: Added missed out package dependency

* BUGFIX/HCMPRE-1818: Height of FilterCard Changed (#2191)

* BUGFIX/HCMPRE-2253 : Fixed Button Issue in PopDataTable Screen (#2195)

* FEATURE/HCMPRE-2263: no geojson data case handled (#2197)

no geojson data case handled

* BUGFIX/HCMPRE-2260: upload data mapping screen add/edit bug fixes (#2199)

* BUGFIX/HCMPRE-2263: Boundary Management geojson code revert (#2200)

Boundary management screen geojson code revert

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* BUGFIX/HCMPRE-2263:  campaign summary cycle number issue fix (#2202)

campaign summary cycle number issue fix

Co-authored-by: NabeelAyubee <nayubi7@gmail.com>

* FEATURE/HCMPRE-2296 :: add comment feature removed (#2201)

* add comment feature removed

* review points convered

* changes

* BUGFIX/HCMPRE-1820: Filter card dynamic height (#2204)

* changes for filter card height

* limit changed

* limit changes

* FEATURE/HCMPRE-2303 : Incremented campaign manager version from 0.3.0 (#2205)

* FEATURE/HCMPRE-2303 : Incremented campaign manager version from 0.3.0 to 0.3.1

* removed console

* added readme and change log

* Apply suggestions from code review

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* BUGFIX/HCMPRE-1821: Filter card tab change fix (#2206)

changes

* BUGFIX/HCMPRE-1438: Fixed Session storage and localization issue #2209 (#2209)

Fixed Session storage and localization issue

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>

* FEATURE/HCMPRE-2322 : Microplanning 0.2 release activities (#2210)

Microplanning 0.2 release activity

* BUGFIX/HCMPRE-1822: Minimum height in popInbox (#2208)

changes done

Co-authored-by: Nipun Arora <aroranipun1@gmail.com>

* BUGFIX/HCMPRE-2303 : Integrated with new loader  (#2211)

BUGFIX/HCMPRE-2303 : Integrated with new loader

Co-authored-by: Jagankumar <53823168+jagankumar-egov@users.noreply.github.com>

* FEATURE/HCMPRE-2322 : Console 0.3.1 release activities update the logs

* RELEASE/HCMPRE-1990: Updated the core & component version and updated the settings module loaders

* FEATURE/HCMPRE-1438 : payment-module. Updated changelog and readme file (#2216)

* Updated changelog and readme file

* Update README.md

---------

Co-authored-by: rachana-egov <rachana.singh@egovernment.org>

* RELEASE/HCMPRE-1990 : Updated all the css versions

---------

Co-authored-by: Swathi-eGov <137176788+Swathi-eGov@users.noreply.github.com>
Co-authored-by: suryansh-egov <suryansh.singh@egovernments.org>
Co-authored-by: NabeelAyubee <nayubi7@gmail.com>
Co-authored-by: Nipun Arora <aroranipun1@gmail.com>
Co-authored-by: nabeelmd-eGov <nabeel.md@egovernments.org>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: abishekTa-egov <abishek.t@egovernments.org>
Co-authored-by: Swathi-eGov <swathi.chatrathi@egovernments.org>
Co-authored-by: Bhavya-egov <137176879+Bhavya-egov@users.noreply.github.com>
Co-authored-by: Ramkrishna-egov <85437265+Ramkrishna-egov@users.noreply.github.com>
Co-authored-by: rachana-egov <rachana.singh@egovernment.org>
Co-authored-by: rachana-egov <137176770+rachana-egov@users.noreply.github.com>
Co-authored-by: pitabash-eGov <151724478+pitabash-eGov@users.noreply.github.com>
Co-authored-by: pitabash-eGov <pitabash.choudhdry@egovernments.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants