-
Notifications
You must be signed in to change notification settings - Fork 17
Refactor: UI changes for developers setting and passkey components. #1087
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
Conversation
Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: pranalidhanavade <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Important
Looks good to me! 👍
Reviewed everything up to 38db56d in 2 minutes and 13 seconds. Click for details.
- Reviewed
562lines of code in8files - Skipped
0files when reviewing. - Skipped posting
12draft comments. View those below. - Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
1. nextjs/src/config/envConfig.ts:44
- Draft comment:
Added NEXT_PUBLIC_CURRENT_RELEASE in the env destructuring and set as PLATFORM_DATA.version. Confirm that exposing the release info is intended. - Reason this comment was not posted:
Comment looked like it was already resolved.
2. nextjs/src/config/svgs/EditIcon.tsx:1
- Draft comment:
New EditIcon component added. Consider adding an aria-label for accessibility. - Reason this comment was not posted:
Decided after close inspection that this draft comment was likely wrong and/or not actionable: usefulness confidence = 20% vs. threshold = 50% While accessibility is important, this is primarily a UI/styling change. The rules state not to comment on pure frontend UI or styling changes and to assume the author did these correctly. Additionally, accessibility concerns might be handled at a higher level component where this icon is used, such as with aria-label on a button that contains this icon. Accessibility is crucial for web applications and SVG icons should be properly labeled. The comment provides a concrete, actionable suggestion. However, per the rules, we should not comment on pure UI/styling changes and should assume the author handled these aspects correctly. The accessibility implementation could be intentionally handled differently at the usage level. The comment should be deleted as it violates the rule about not commenting on pure frontend UI and styling changes.
3. nextjs/src/features/passkey/AddPasskey.tsx:285
- Draft comment:
Enhanced Add Passkey header now includes a 'Learn more' link. Consider extracting the inline SVG in the add button to a reusable icon component for consistency. - Reason this comment was not posted:
Decided after close inspection that this draft comment was likely wrong and/or not actionable: usefulness confidence = 20% vs. threshold = 50% The first part about the "Learn more" link is purely descriptive and not actionable. The second part about extracting the SVG is a reasonable code quality suggestion since the SVG is part of the changed code. However, this is a relatively minor improvement and may not be worth the effort given that the SVG is only used once in this component. The suggestion to extract the SVG might be premature optimization if this icon is only used here. Also, the codebase might have existing patterns for handling icons that I'm not aware of. While the critique is valid, extracting SVGs to reusable components is generally good practice for maintainability and consistency, even if used only once initially. The comment should be deleted because the first part is purely descriptive and the second part, while technically valid, is a minor optimization that may not be worth the overhead.
4. nextjs/src/features/passkey/AddPasskey.tsx:356
- Draft comment:
Device list has been refactored to use a semantic table. Ensure that DeviceDetails consistently returns a proper to maintain valid table structure. - Reason this comment was not posted:
Decided after close inspection that this draft comment was likely wrong and/or not actionable: usefulness confidence = 30% vs. threshold = 50% This is a structural change that could cause layout issues if not handled correctly. The comment is specific about what needs to be checked (tr element in DeviceDetails) and why (table structure). However, we can't see the DeviceDetails component implementation, so we can't verify if this is already handled correctly or not. The comment is speculative without seeing the other file. Without seeing the DeviceDetails component implementation, we can't be certain if this is an actual issue or if it's already properly implemented. The comment could be raising a non-existent issue. However, this is a significant structural change that could break the layout if not handled correctly, and the comment provides clear, actionable guidance about what needs to be checked. Since we can't verify the implementation of DeviceDetails and the comment is somewhat speculative, we should err on the side of removing it per our guidelines about speculative comments.
5. nextjs/src/features/passkey/DeviceDetails.tsx:87
- Draft comment:
DeviceDetails component is refactored to render table rows (/). Verify that its parent always provides a valid table context. - Reason this comment was not posted:
Comment did not seem useful. Confidence is useful =0%<= threshold50%The comment is asking the PR author to verify that the parent component provides a valid table context for the refactored DeviceDetails component. This is asking the author to double-check something, which violates the rules.
6. nextjs/src/features/passkey/EditModal.tsx:52
- Draft comment:
Using enableReinitialize with the initialName prop in Formik ensures the form updates on prop changes. This is a good use of Formik's features. - Reason this comment was not posted:
Comment did not seem useful. Confidence is useful =0%<= threshold50%This comment is purely informative and does not provide any actionable feedback or suggestions for improvement. It simply states that the use of a feature is good, which does not align with the rules for useful comments.
7. nextjs/src/features/profile/components/DevelopersSetting.tsx:89
- Draft comment:
A new useEffect for auto-dismissing success messages and an Application Version card using envConfig.PLATFORM_DATA.version have been added. Ensure that the version value is reliably available in production. - Reason this comment was not posted:
Comment was not on a location in the diff, so it can't be submitted as a review comment.
8. nextjs/src/features/wallet/LedgerConfig.tsx:512
- Draft comment:
Added a 'border' class to the LedgerConfig container. This improves the visual consistency of the card components. - Reason this comment was not posted:
Comment did not seem useful. Confidence is useful =0%<= threshold50%This comment is purely informative and does not provide any actionable feedback or suggestions for improvement. It simply states what was done and why, which violates the rule against making purely informative comments.
9. nextjs/src/features/wallet/WalletSpinupComponent.tsx:564
- Draft comment:
Step indicator text updated from 'Step 3 of 4' to 'Step 2 of 4'. Verify that this change accurately reflects the current stage of the wallet spinup process. - Reason this comment was not posted:
Comment did not seem useful. Confidence is useful =0%<= threshold50%The comment is asking the PR author to verify the change, which violates the rule against asking for confirmation or verification. It does not provide a specific suggestion or point out a clear issue with the code.
10. nextjs/src/features/passkey/AddPasskey.tsx:290
- Draft comment:
Typo: The text says "complex password" but it should be "complex passwords" to match the intended meaning. - Reason this comment was not posted:
Decided after close inspection that this draft comment was likely wrong and/or not actionable: usefulness confidence = 10% vs. threshold = 50% While the comment is technically correct - "complex password" should be "complex passwords" - this is a very minor text change that doesn't affect functionality. The meaning is still clear either way. The rules say not to make purely informative comments and to avoid obvious or unimportant changes. This seems to fall into that category. The text is customer-facing UI text, so one could argue that proper grammar is important for professionalism and user experience. While proper grammar is good, this is an extremely minor issue that doesn't meaningfully impact understanding or professionalism. The rules explicitly say to avoid unimportant comments. Delete this comment as it's too minor and falls under the rule of avoiding purely informative or unimportant comments.
11. nextjs/src/features/passkey/DeviceDetails.tsx:144
- Draft comment:
Typo: 'onSucess' is likely intended to be 'onSuccess'. - Reason this comment was not posted:
Comment was on unchanged code.
12. nextjs/src/features/passkey/EditModal.tsx:22
- Draft comment:
Typographical error: The property name 'onSucess' appears to be misspelled. Consider changing it to 'onSuccess' for clarity and consistency. - Reason this comment was not posted:
Comment was on unchanged code.
Workflow ID: wflow_F3WTojDGkFSjgm9O
You can customize by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.
sujitaw
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
Signed-off-by: pranalidhanavade <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Caution
Changes requested ❌
Reviewed 59a3fb3 in 2 minutes and 41 seconds. Click for details.
- Reviewed
279lines of code in2files - Skipped
0files when reviewing. - Skipped posting
6draft comments. View those below. - Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
1. nextjs/src/features/passkey/AddPasskey.tsx:356
- Draft comment:
Ensure that deviceList objects include a 'createDateTime' field as expected by DeviceDetails. If the API returns 'lastChangedDateTime', update the mapping to rename it accordingly. - Reason this comment was not posted:
Comment was on unchanged code.
2. nextjs/src/features/passkey/DeviceDetails.tsx:181
- Draft comment:
Minor typo: consider renaming the modal callback prop from 'onSucess' to 'onSuccess' for clarity and consistency. - Reason this comment was not posted:
Comment was on unchanged code.
3. nextjs/src/features/passkey/DeviceDetails.tsx:99
- Draft comment:
Ensure each row given to DataTable has a unique key if DataTable doesn’t handle key assignment internally to avoid potential rendering issues. - Reason this comment was not posted:
Decided after close inspection that this draft comment was likely wrong and/or not actionable: usefulness confidence = 20% vs. threshold = 50% 1. React lists should have keys for performance and correctness. 2. The credentialId would make a good key since it's unique. 3. However, we can't see the DataTable implementation - it might handle keys internally. 4. The comment is speculative without knowing the DataTable implementation. 5. No obvious bugs or issues are present in the current code. Without seeing the DataTable implementation, we can't be certain if keys are actually needed. The current code might be working perfectly fine. While keys are important in React, making speculative suggestions without evidence of an actual problem violates our review guidelines. Delete the comment since it's speculative without evidence of an actual issue, and we don't have visibility into the DataTable implementation.
4. nextjs/src/features/passkey/DeviceDetails.tsx:164
- Draft comment:
Consider clearing the selectedDevice state after a successful edit or delete action to prevent stale selections, even though the modals are closed. - Reason this comment was not posted:
Comment was on unchanged code.
5. nextjs/src/features/passkey/AddPasskey.tsx:362
- Draft comment:
Typographical issue: The prop name is 'openModal' but the value passed is 'openModel'. Consider renaming 'openModel' to 'openModal' (or vice versa) for consistency. - Reason this comment was not posted:
Comment was on unchanged code.
6. nextjs/src/features/passkey/DeviceDetails.tsx:190
- Draft comment:
Typographical error: The prop name 'onSucess' appears to be misspelled. Consider renaming it to 'onSuccess' for clarity and consistency. - Reason this comment was not posted:
Marked as duplicate.
Workflow ID: wflow_hPFqrHykhS48PfI5
You can customize by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.
Signed-off-by: pranalidhanavade <[email protected]>
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Important
Looks good to me! 👍
Reviewed b68323a in 1 minute and 6 seconds. Click for details.
- Reviewed
90lines of code in3files - Skipped
0files when reviewing. - Skipped posting
5draft comments. View those below. - Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
1. nextjs/src/features/passkey/DeleteModal.tsx:17
- Draft comment:
Fixed typo: the prop 'onSucess' is now correctly spelled as 'onSuccess' (also updated in button onClick). - Reason this comment was not posted:
Confidence changes required:0%<= threshold50%None
2. nextjs/src/features/passkey/DeviceDetails.tsx:138
- Draft comment:
Added aria-label attributes for edit and delete buttons; also updated prop names to onSuccess for modals for consistency. - Reason this comment was not posted:
Confidence changes required:0%<= threshold50%None
3. nextjs/src/features/passkey/EditModal.tsx:19
- Draft comment:
Renamed the callback prop to 'onSuccess' for consistency. Consider typing formikRef more explicitly instead of using any for improved type safety. - Reason this comment was not posted:
Confidence changes required:33%<= threshold50%None
4. nextjs/src/features/passkey/DeviceDetails.tsx:192
- Draft comment:
Typo corrected: The prop name was previously 'onSucess' and is now correctly changed to 'onSuccess'. - Reason this comment was not posted:
Comment did not seem useful. Confidence is useful =0%<= threshold50%This comment is purely informative, as it only states that a typo was corrected. It doesn't provide any actionable feedback or suggestions for improvement.
5. nextjs/src/features/passkey/EditModal.tsx:32
- Draft comment:
Typo correction: 'onSucess' has been corrected to 'onSuccess'. - Reason this comment was not posted:
Comment did not seem useful. Confidence is useful =0%<= threshold50%This comment is purely informative as it only points out a typo correction without suggesting any action or asking for confirmation. It doesn't provide any actionable feedback or suggestion for improvement.
Workflow ID: wflow_Y7tmjF36pqxsiRkF
You can customize by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.
* resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
* resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
* DCO fixes for develop-nextjs branch (#1092) * resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: sonarlint issues (#1094) Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1095) * fix: sonarlint authentication security hotspots Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1096) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1097) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1098) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1099) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint auth…
* DCO fixes for develop-nextjs branch (#1092) * resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: sonarlint issues (#1094) Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1095) * fix: sonarlint authentication security hotspots Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1096) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1097) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1098) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1099) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint auth…
* DCO fixes for develop-nextjs branch (#1092) * resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: sonarlint issues (#1094) Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1095) * fix: sonarlint authentication security hotspots Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1096) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1097) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1098) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1099) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint auth…
* DCO fixes for develop-nextjs branch (#1092) * resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: sonarlint issues (#1094) Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1095) * fix: sonarlint authentication security hotspots Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1096) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1097) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1098) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1099) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint auth…
* DCO fixes for develop-nextjs branch (#1092) * resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: sonarlint issues (#1094) Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1095) * fix: sonarlint authentication security hotspots Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1096) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1097) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1098) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1099) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint auth…
* DCO fixes for develop-nextjs branch (#1092) * resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: sonarlint issues (#1094) Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1095) * fix: sonarlint authentication security hotspots Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1096) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1097) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1098) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1099) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint auth…
* DCO fixes for develop-nextjs branch (#1092) * resolve unneccsary code Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved type error Signed-off-by: sanjaykhondal-aw <[email protected]> * rename sigin file name Signed-off-by: sanjaykhondal-aw <[email protected]> * resolved interface confusion Signed-off-by: sanjaykhondal-aw <[email protected]> * take height and width from constants Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates from passwordRegex Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove duplicates Signed-off-by: sanjaykhondal-aw <[email protected]> * complete connection component and create wallet banner Signed-off-by: sanjaykhondal-aw <[email protected]> * WNP show schemas list Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP credential definition Signed-off-by: sanjaykhondal-aw <[email protected]> * Complete Credential Definitions implementation along with minor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: organization list and dashoard components (#945) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * refactor: Resolve conflicts Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolved sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components (#946) * refactor: organization list and organization dashboard components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create, edit and delete organization components Signed-off-by: pranalidhanavade <[email protected]> * refactor: create org component type error fix Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: implemented user list and edit org modal Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * feat: send invitations Signed-off-by: bhavanakarwade <[email protected]> * Fix: email prepopulate issue on sign up page (#950) * fix: resolved email prepopulation issue Signed-off-by: alokmore-awts <[email protected]> * refactor: loader & custome CSS changes Signed-off-by: alokmore-awts <[email protected]> * refactor: update organization model Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * feat: accept and reject invitations Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsiveness Signed-off-by: bhavanakarwade <[email protected]> * fix: added responsivness Signed-off-by: bhavanakarwade <[email protected]> * fix: remove unwanted refresh buttons Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comment on pr Signed-off-by: bhavanakarwade <[email protected]> * Refactor UI changes Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: handle role-based conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: handle delete invitation confirmation popup screen Signed-off-by: bhavanakarwade <[email protected]> * fix: added css for rejetc button Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonarlint errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolve sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved conflicts Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar cloud errors Signed-off-by: bhavanakarwade <[email protected]> * Resolved cred def SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved SonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: shared agent config components (#948) * refactor: shared agent configuration Signed-off-by: pranalidhanavade <[email protected]> * refactor: create did component Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: removed unecessary code Signed-off-by: pranalidhanavade <[email protected]> * refactor: handled conditions Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for organization page (#958) * refactor: css for organization page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: css for wallet spin up page Signed-off-by: pranalidhanavade <[email protected]> * refactor: delete organization issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: api file changes Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for import getheaderconfig for api components Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for organization data Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: org role condition Signed-off-by: bhavanakarwade <[email protected]> * fix: removed commented code Signed-off-by: bhavanakarwade <[email protected]> * Fixed formatting issues using ESLint and Prettier. (#963) * WIP:fixing the typescript related issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolved build related issues Signed-off-by: rohit.shitre <[email protected]> * added eslint rules Signed-off-by: pranalidhanavade <[email protected]> * fix:Resolved create org data type related issues Signed-off-by: rohit.shitre <[email protected]> * eslint fixes Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint issues Signed-off-by: rohit.shitre <[email protected]> * fix:lint stage issues Signed-off-by: rohit.shitre <[email protected]> * fix:lintstagerc file added Signed-off-by: rohit.shitre <[email protected]> * fix:modified the pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:lint-stage testing Signed-off-by: rohit.shitre <[email protected]> * fix:modified pre-commit file Signed-off-by: rohit.shitre <[email protected]> * fix:test lint stage Signed-off-by: rohit.shitre <[email protected]> * fix:changed the pre-commit file to outside of next js Signed-off-by: rohit.shitre <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: import sorting issue Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving the return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving eslint return type issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint issues for all pages Signed-off-by: pranalidhanavade <[email protected]> * WIP:resolving es-lint issues Signed-off-by: rohit.shitre <[email protected]> * fix: eslint and prettier issues Signed-off-by: pranalidhanavade <[email protected]> * crypto js issue Signed-off-by: pranalidhanavade <[email protected]> * Fix:added package for dom-toimage Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Co-authored-by: rohit.shitre <[email protected]> * fix: create org flow with agent setup (#960) * refactor: org onboarding flow Signed-off-by: pranalidhanavade <[email protected]> * refactor: create organization flow with wallet setup Signed-off-by: pranalidhanavade <[email protected]> * resolve logo issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#972) Signed-off-by: pranalidhanavade <[email protected]> * refactor: table component lint (#971) * feat: add generic table component Signed-off-by: Krishna Waske <[email protected]> * fix: sorted selection Signed-off-by: Krishna Waske <[email protected]> * fix: minor changes Signed-off-by: Krishna Waske <[email protected]> * fix: sonarcloud and other formating issues Signed-off-by: Krishna Waske <[email protected]> * fix: unnecessary components Signed-off-by: Krishna Waske <[email protected]> * add comments and fix table reset on org change Signed-off-by: Krishna Waske <[email protected]> * chore: remove unwanted components Signed-off-by: Krishna Waske <[email protected]> * chore: remove some more unwanted compoenets Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * fix: sonar cloud issues Signed-off-by: Krishna Waske <[email protected]> * chore: fix imports and logs Signed-off-by: Krishna Waske <[email protected]> * refactor: remove unnecessary components Signed-off-by: Krishna Waske <[email protected]> * fix: minor lintings Signed-off-by: Krishna Waske <[email protected]> * fix: changes Signed-off-by: Krishna Waske <[email protected]> --------- Signed-off-by: Krishna Waske <[email protected]> * fix: added role conditions (#973) * fix: added role conditions Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved sonar lint errors Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: add passkey to user's profile section (#974) * add passkey section to user profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to users profile Signed-off-by: pranalidhanavade <[email protected]> * added passkey to profile Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issues on org dashboard and wallet creation (#975) Signed-off-by: pranalidhanavade <[email protected]> * resolve extra semicolon issue Signed-off-by: pranalidhanavade <[email protected]> * resolved issue on org dashboard (#976) Signed-off-by: pranalidhanavade <[email protected]> * refactor: Issuance API pages and routes (#966) * fix:refactor of issuance api pages and routes Signed-off-by: Sujit <[email protected]> * fix:eslint fix Signed-off-by: Sujit <[email protected]> * fix: minor fix to pages removed unecessary div's Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Issuance related components (#967) * refactor/issuance related components Signed-off-by: Sujit <[email protected]> * fix : merge conflict and eslint Signed-off-by: Sujit <[email protected]> * fix:redundant conditon check Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Added Connection List page component and Credentials Page (#968) * refactor/ Added Connection List page component and Credentials Signed-off-by: Sujit <[email protected]> * fix:sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: redundant fragment removed Signed-off-by: Sujit <[email protected]> * fix:eslint errors Signed-off-by: Sujit <[email protected]> * fix: import sorting eslint rule removed Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor/Issuance Dashboard page and types (#969) * refactor/Issuance Dahsboard page and types Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: Storage Keys Redux Slice for storing local storage data (#970) * refactor/ storage key redux slice Signed-off-by: Sujit <[email protected]> * fix:eslint issues Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: issues on org dashboard and wallet creation (#980) Signed-off-by: pranalidhanavade <[email protected]> * fix: Resolved issues related to type and eslint (#977) * fix/ issues faced after combining all pr for connection Issue Signed-off-by: Sujit <[email protected]> * fix: issues after merge Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * complete verification list and verify credential Signed-off-by: sanjaykhondal-aw <[email protected]> * install packages Signed-off-by: sanjaykhondal-aw <[email protected]> * Added global css Signed-off-by: sanjaykhondal-aw <[email protected]> Test lint-staged revert precommit file Resolved sonarQube issue Signed-off-by: sanjaykhondal-aw <[email protected]> Resolve code duplicate error Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: pnpm lock Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube sortDataTable component issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube qality issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube quality Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved code duplication for model Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: UI issues from organiation dashboard, wallet spinup and organization list components (#983) * fix: UI issues from organiation dashboard, wallet spinup and organization list components Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> * fix: resolved comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * feat: session management with nextAuth library (#982) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * feat: added updated yaml file (#985) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: next js route issue (#986) * feat: implemented next auth library Signed-off-by: bhavanakarwade <[email protected]> * fix: removed cookies on log out Signed-off-by: bhavanakarwade <[email protected]> * fix: added interface for authoptions Signed-off-by: bhavanakarwade <[email protected]> * feat: added yaml file Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved next js route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Refactor / Added functionality for bulk issuance (#981) * refactor / bulk issue Signed-off-by: Sujit <[email protected]> * fix: sonar cube issues Signed-off-by: Sujit <[email protected]> * fix: breakdown of big file Signed-off-by: Sujit <[email protected]> * fix: minor fixes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete single and multiple connection Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolve PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix: Breakdown of Large Files for Email Issuance (#991) * fix:large file breakdown Signed-off-by: Sujit <[email protected]> * fix/pr comments Signed-off-by: Sujit <[email protected]> * fix: removed eslint disable rules Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Complete OOB for verification component Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Added svg icons in icons constant file Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs signIn,orgDropDown and schemaList Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix/Breakdown of connection issuance large files (#995) * wip started Signed-off-by: Sujit <[email protected]> * fix/ complete breakdown of large files Signed-off-by: Sujit <[email protected]> * merge: devlop-nextjs Signed-off-by: Sujit <[email protected]> * fix/file name for svg Signed-off-by: Sujit <[email protected]> * fix/ removed fixme comment Signed-off-by: Sujit <[email protected]> * fix/resolved pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix the functionality to reset password (#998) * fix:password reset link not working Signed-off-by: Sujit <[email protected]> * fix/Password Reset Signed-off-by: Sujit <[email protected]> * fix/minor fixes Signed-off-by: Sujit <[email protected]> * fix/ resolve pr comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/tooltip for dashboard (#999) Signed-off-by: Sujit <[email protected]> * Added validation to disable send button if data is invalid (#1000) * fix/added validation to disable send button Signed-off-by: Sujit <[email protected]> * fix/security comment by sonar Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: Replaced list components with generic table component. (#993) * replaced list components with generic table component Signed-off-by: pranalidhanavade <[email protected]> * changes in table component Signed-off-by: pranalidhanavade <[email protected]> * fix: statuses css from global css Signed-off-by: pranalidhanavade <[email protected]> * fix: table column names and global css classes Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication error Signed-off-by: pranalidhanavade <[email protected]> * fix: resolve sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Remove camelCase reule Signed-off-by: sanjaykhondal-aw <[email protected]> * fix/fixed path related issue on credential defination page for issuance (#1002) Signed-off-by: Sujit <[email protected]> * Separate svg icons Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: network dropdown issue for did:web (#1003) * fix: deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR for type fixes Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values and fixed organization dashboard css inconsistency issue Signed-off-by: pranalidhanavade <[email protected]> * fix: enum values for hardcoded string values Signed-off-by: pranalidhanavade <[email protected]> * fix: enum changes for prsentation list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Incorrect navigation from the “Dashboard” breadcrumb on the Organization Dashboard (#1004) * fix: navigation issue from the Dashboard breadcrumb on the Organization Dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: navigation issue for org dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> * fix: breadcrumb issue for organization dashboard Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue changes (#1006) * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * reverted org dashboard breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Fix schema and credential definition pages UI related issues (#1005) * fix/ui related issues Signed-off-by: Sujit <[email protected]> * fix:ui related issues Signed-off-by: Sujit <[email protected]> * fix/minor conditional correction for send button Signed-off-by: Sujit <[email protected]> * fix/ attributes label css Signed-off-by: Sujit <[email protected]> * fix / theme related changes Signed-off-by: Sujit <[email protected]> * fix/removed comment Signed-off-by: Sujit <[email protected]> * fix/ removed duplicates Signed-off-by: Sujit <[email protected]> * fix/renamed files and removed comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * WIP Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved CSS and User Profile Issue Signed-off-by: sanjaykhondal-aw <[email protected]> * changes for deployment for deno (#1008) * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deployment for deno Signed-off-by: pranalidhanavade <[email protected]> * changes for deploy.yml file Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: removed zod fron did list component Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> * fix: table border issue and deployment issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved sonar qube error Signed-off-by: sanjaykhondal-aw <[email protected]> * [Deno Deploy] Update .github/workflows/deploy.yml * [Deno Deploy] Update .github/workflows/deploy.yml * Resolved chatbot comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR comments Signed-off-by: sanjaykhondal-aw <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed UI for Organization Page and input placeholder (#1010) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/ changed alignment for email issuance form Signed-off-by: Sujit <[email protected]> * fix /missing changes Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/create cred def popup (#1011) * fix:Created new popup for create cred-def Signed-off-by: rohit.shitre <[email protected]> * Fix:resolved commit errors Signed-off-by: rohit.shitre <[email protected]> * fix:type error for schema list Signed-off-by: rohit.shitre <[email protected]> * fix:PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * refactor: css changes for components (#1012) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: button chnages Signed-off-by: pranalidhanavade <[email protected]> * refactor: remove extra code Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved css in verification commponent Signed-off-by: sanjaykhondal-aw <[email protected]> * Reset verification state after logout Signed-off-by: sanjaykhondal-aw <[email protected]> * Fix issunce formik form alignment for connection issuance (#1013) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Resolved .env demo file issue Signed-off-by: sanjaykhondal-aw <[email protected]> * fix:user and create-cred-def screen UI modification (#1016) * fix:user and create-cred-def screen UI modification Signed-off-by: rohit.shitre <[email protected]> * fix:resolve PR comments Signed-off-by: rohit.shitre <[email protected]> --------- Signed-off-by: rohit.shitre <[email protected]> * Fixed loader component and alignment for it in organizations list (#1015) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix/select dropdown fix (#1017) * fix/oragnization page and input place holder Signed-off-by: Sujit <[email protected]> * fix / html tag issue Signed-off-by: Sujit <[email protected]> * fix / sonar cube issue Signed-off-by: Sujit <[email protected]> * fix - wip Signed-off-by: Sujit <[email protected]> * fix/ bot comments Signed-off-by: Sujit <[email protected]> * fix / ellipse comments Signed-off-by: Sujit <[email protected]> * fix:loader component Signed-off-by: Sujit <[email protected]> * fix / dropdowns and loaders Signed-off-by: Sujit <[email protected]> * fix : removed unused parameters Signed-off-by: Sujit <[email protected]> * fix/ ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * refactor: CSS changes for organization, wallet and table components (#1018) * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * refactor: css changes for components Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: css and theme changes for organization flow Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: deploy workflow file changes (#1019) * refactor: deploy workflow file changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: changes in workflow file Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: added env secrets in workflow files (#1020) Signed-off-by: pranalidhanavade <[email protected]> * Replace generic table for connection list in verification Signed-off-by: sanjaykhondal-aw <[email protected]> * wip : fix reset page Signed-off-by: Sujit <[email protected]> * Resolved fav icon issue and support multiple fav icon Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved ellise bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved pr comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Fixed the issues found on importing other color theme (#1021) * fix/issuance card and color fix Signed-off-by: Sujit <[email protected]> * fix/ added minor fix Signed-off-by: Sujit <[email protected]> * fix : alert component issue error handling Signed-off-by: Sujit <[email protected]> * fix: ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/ sign in page Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * fix:ellipse comment Signed-off-by: Sujit <[email protected]> * Removed inline css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved verify modal ui issue Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved refresh verification list Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved cancel button css Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved bugs - schema card, verification list refresh Signed-off-by: sanjaykhondal-aw <[email protected]> * refactor: replace history and history details table with generic table component (#1023) * refactor: replace history and history details table with generic table component Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * refactor: table components Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table cells Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint duplication for table Signed-off-by: pranalidhanavade <[email protected]> * handle view button as per hide column condition Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments or Pull request Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: create did issue for issuer and verifier role (#1028) * fix: create did issue for issuer and verifier role Signed-off-by: pranalidhanavade <[email protected]> * fix: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page (#1027) * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * fix: organization already exist issue Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * resolve: ellipsis comments on pull request Signed-off-by: pranalidhanavade <[email protected]> * developers settingUI rendering issues Signed-off-by: pranalidhanavade <[email protected]> * developers settings rendering issues Signed-off-by: pranalidhanavade <[email protected]> * fix: changes for avatar component colors Signed-off-by: pranalidhanavade <[email protected]> * fix: svg changes for key icon on developer setting Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting page Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile section and developers setting page Signed-off-by: pranalidhanavade <[email protected]> * revert: icon issue for dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * removed extra code Signed-off-by: pranalidhanavade <[email protected]> * fix: setup wallet later button issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved role based isses Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved build related issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved type errors Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved chat bot comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved PR review comment Signed-off-by: sanjaykhondal-aw <[email protected]> * Remove commented code Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: organization dashboard issue (#1030) * fix: organization breadcrumb issue Signed-off-by: pranalidhanavade <[email protected]> * dedicated agent ledger icons Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: sonarcloud issues Signed-off-by: pranalidhanavade <[email protected]> * refactor: common validation function for ledger config validations Signed-off-by: pranalidhanavade <[email protected]> * fix: passkey in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipse comments Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: UI fixes for sign up page (#1031) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Resolved button arrows and show all role issues Signed-off-by: sanjaykhondal-aw <[email protected]> * Resolved credef roles Signed-off-by: sanjaykhondal-aw <[email protected]> * fix: user profile and create did component. (#1038) * fix: UI fixes for sign up page Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint issues Signed-off-by: pranalidhanavade <[email protected]> * fix: ellips suggestions on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issues in profile section Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issues related to loading and unnecessarily rendred components (#1037) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * fix extra tab spaces Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon UI issues (#1039) * fix: polygon UI issues Signed-off-by: pranalidhanavade <[email protected]> * remove: uneccessary code Signed-off-by: pranalidhanavade <[email protected]> * fix: display user profile organization issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed the No error message on invalid credentials on login and the alert component (#1040) * fix/ui related bugs and issues Signed-off-by: Sujit <[email protected]> * wip Signed-off-by: Sujit <[email protected]> * fix/ login alert message Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added generic table for connections list for issuance (#1041) * fix/added generic table for connections list Signed-off-by: Sujit <[email protected]> * fix/refactored common data in a single file Signed-off-by: Sujit <[email protected]> * fix/ sonar qube comment Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> * fix/ellipse issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored code for create Schema page into smaller chunks (#1043) * fix/refactor large code into smaller chunks for create schema page Signed-off-by: Sujit <[email protected]> * fix/removed eslint rule Signed-off-by: Sujit <[email protected]> * fix/code duplication comment by sonar cube Signed-off-by: Sujit <[email protected]> * fix/resolve sonar cube comment Signed-off-by: Sujit <[email protected]> * fix/moved the svg to seperate folder Signed-off-by: Sujit <[email protected]> * fix/removed the color argument for button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored members page from users route into smaller chunks (#1044) * fix/refactored members page from users into smaller chunks Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactored large file verificationSchemaList to smaller components (#1046) * fix/refactored large file verificationSchemaList Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> * feat/added new color theme provided by ajay sir Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: polygon related issues (#1042) * polygon related issues Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey with next-auth (#1047) * fix: issue regarding passkey with next auth Signed-off-by: pranalidhanavade <[email protected]> * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix/connection list refresh issue , no org view conistency (#1049) Signed-off-by: Sujit <[email protected]> * All schema issue from schema list (#1048) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> * fix: schema list pagination issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding deployment (#1050) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: all schemas issue from schema list Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: error message for edit user profile. (#1051) * resolved: comments on PR Signed-off-by: pranalidhanavade <[email protected]> * fix: issue regarding passkey Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> * fix: edit user profile error message Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: Schemas not displayed when selecting "All Schemas" from dropdown (#1052) * fix: issue regarding all schemas Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comments Signed-off-by: pranalidhanavade <[email protected]> * fix: ellipsis comment Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed issue for credential message visibility and org switcher not switching orgs (#1053) * fix/ issue for credential message visibility and org switcher Signed-off-by: Sujit <[email protected]> * fix ellipse comments Signed-off-by: Sujit <[email protected]> * fix ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed searching functionality for schemalist (#1054) * fix/search functionality for schema list page Signed-off-by: Sujit <[email protected]> * fix/ sonar cube issue Signed-off-by: Sujit <[email protected]> * fix/pagination issue of last page being blank Signed-off-by: Sujit <[email protected]> * fix/ ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/theme fix for both credebl and sovio (#1056) Signed-off-by: Sujit <[email protected]> * fix: changes in organization list for org logo (#1057) Signed-off-by: pranalidhanavade <[email protected]> * fix: changes in organization dropdown for logo issue (#1058) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verify button functionality and cred def validation message (#1060) * fix/verify button loader Signed-off-by: Sujit <[email protected]> * fix/invalid message for verifcation Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fixed w3c all schema issue for issuance while selecting from dropdown (#1059) * wip Signed-off-by: Sujit <[email protected]> * fix/all schema in w3c Signed-off-by: Sujit <[email protected]> * fix/ schema list issue Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/changed_name_for_file (#1061) Signed-off-by: Sujit <[email protected]> * fix: routing structure for authentication components (#1062) Signed-off-by: pranalidhanavade <[email protected]> * feat: added Dockerfile (#1063) * feat: added Dockerfile Signed-off-by: Sahil Kamble <[email protected]> * chore: updated port to 3000 Signed-off-by: Sahil Kamble <[email protected]> * chore: updated npm run build to pnpm run build Signed-off-by: Sahil Kamble <[email protected]> --------- Signed-off-by: Sahil Kamble <[email protected]> * Fixed the ui related issue for profile and user page (#1065) * fix/edit profile button fix, user invite modal fix Signed-off-by: Sujit <[email protected]> * fix/profile edit button Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey flow related issues (#1064) Signed-off-by: pranalidhanavade <[email protected]> * fix: email type error (#1066) Signed-off-by: pranalidhanavade <[email protected]> * fix: build issues (#1067) Signed-off-by: pranalidhanavade <[email protected]> * fix: build errors (#1068) Signed-off-by: pranalidhanavade <[email protected]> * [Draft] feat: sso using nextauth (#1055) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * Fixed organization issues for switcher , delete wallet and schema list (#1070) * fix/ org switcher issue , schema creation page issue , wallet deletion issue Signed-off-by: Sujit <[email protected]> * fix/removed extra parameters for get org api function Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Feat/nextauth sso org onboarding (#1072) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol (#1073) * wip: nextauth sso Signed-off-by: bhavanakarwade <[email protected]> * wip: org onboarding using sso Signed-off-by: bhavanakarwade <[email protected]> * refactor: updated return type for session check Signed-off-by: bhavanakarwade <[email protected]> * fix: code warnings Signed-off-by: bhavanakarwade <[email protected]> * fix: route changes Signed-off-by: bhavanakarwade <[email protected]> * fix: resolved comments on pr Signed-off-by: bhavanakarwade <[email protected]> * fix: route issue Signed-off-by: bhavanakarwade <[email protected]> * refactor: added secure cookie protocol Signed-off-by: bhavanakarwade <[email protected]> --------- Signed-off-by: bhavanakarwade <[email protected]> * fix: logout issue for add passkey pop up while entering password (#1069) * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> * fix: logout issue for add passkey pop up while entering password Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed Ui issue for signin page logo responsiveness and link styling (#1074) * wip Signed-off-by: Sujit <[email protected]> * feat/added tooltip for schema list card Signed-off-by: Sujit <[email protected]> * fix/ellipse comments Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: passkey related issues (#1075) Signed-off-by: pranalidhanavade <[email protected]> * Fixed verification button disable issue of verification list (#1076) * fix/verification button disable issue Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> * fix/ellipse comment Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix: sign up with passkey (#1077) * fix: sign up with passkey Signed-off-by: pranalidhanavade <[email protected]> * resolve: comments on PR Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * fix: schema page UI, table view dropdown, and theme issues (#1078) * wip search fix email and message fix Signed-off-by: Sujit <[email protected]> * wip search and selection issue issuance connection Signed-off-by: Sujit <[email protected]> * fix/create creddef permissions , table view dropdown Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * fix/back button issue (#1080) Signed-off-by: Sujit <[email protected]> * fix:/color for side bar and removed user option from sidebar (#1081) Signed-off-by: Sujit <[email protected]> * Fixed card animations and effects and org drop down position (#1082) * wip Signed-off-by: Sujit <[email protected]> * wip dropdown below sidebar Signed-off-by: Sujit <[email protected]> * wip org drop down shifted left Signed-off-by: Sujit <[email protected]> * Update nextjs/src/app/globals.css Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Signed-off-by: sujitaw <[email protected]> --------- Signed-off-by: Sujit <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Fix/wallet creation refresh issue (#1079) * Managed state for the wallet creation steps Signed-off-by: alokmore-awts <[email protected]> * minor ui fixes and text changes Signed-off-by: alokmore-awts <[email protected]> * enum added in common enums file Signed-off-by: alokmore-awts <[email protected]> * Added loaders to all the buttons Signed-off-by: alokmore-awts <[email protected]> * sonarcube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Resolved issues of sonarqube Signed-off-by: alokmore-awts <[email protected]> * Sonarqube issues resolved Signed-off-by: alokmore-awts <[email protected]> * Added loaders for remaining components Signed-off-by: alokmore-awts <[email protected]> * resolved comments of ellipsis bot Signed-off-by: alokmore-awts <[email protected]> * Minor changes done Signed-off-by: alokmore-awts <[email protected]> * moved interfaces in common file Signed-off-by: alokmore-awts <[email protected]> --------- Signed-off-by: alokmore-awts <[email protected]> * refactor: UI refactoring for organization and wallet flow. (#1083) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines in create organization modal Signed-off-by: pranalidhanavade <[email protected]> * refactor: reduce code of lines Signed-off-by: pranalidhanavade <[email protected]> * resolved: elipsis comments Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix drawer padding and footer positioning on Dashboard and Signup pages (#1084) * wip updated connections Signed-off-by: Sujit <[email protected]> * fix/connection sidebar and footer copyright added Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Added Side panel for schema list to show technical details of schema (#1085) * wip Signed-off-by: Sujit <[email protected]> * fix/added side drawer for schema list Signed-off-by: Sujit <[email protected]> * fix/added fallback condition Signed-off-by: Sujit <[email protected]> * fix/commented code Signed-off-by: Sujit <[email protected]> * fix/sonarqube comments Signed-off-by: Sujit <[email protected]> * fix/verification list after change of schema list and card comp Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Fix: Org flow UI changes (#1086) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: user profile and edit user profile section Signed-off-by: pranalidhanavade <[email protected]> * refactor: edit profile form Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fixed ui for organization details page (#1088) * wip: fixed org dashboard issues Signed-off-by: Sujit <[email protected]> * wip: org list Signed-off-by: Sujit <[email protected]> * wip Did list Signed-off-by: Sujit <[email protected]> * fix/organization details updated Signed-off-by: Sujit <[email protected]> * fix/removed commented code Signed-off-by: Sujit <[email protected]> --------- Signed-off-by: Sujit <[email protected]> * Refactor: UI changes for developers setting and passkey components. (#1087) * fix: country,state and city dropdown issue Signed-off-by: pranalidhanavade <[email protected]> * refactor: replaced dropdown with radio button in create wallet flow. Signed-off-by: pranalidhanavade <[email protected]> * refactor: wallet screens Signed-off-by: pranalidhanavade <[email protected]> * refactor: developers setting and passkey UI changes Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> * refactor: passkey device list table component Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: sanjaykhondal-aw <[email protected]> Signed-off-by: pranalidhanavade <[email protected]> Signed-off-by: bhavanakarwade <[email protected]> Signed-off-by: alokmore-awts <[email protected]> Signed-off-by: rohit.shitre <[email protected]> Signed-off-by: Krishna Waske <[email protected]> Signed-off-by: Sujit <[email protected]> Signed-off-by: Sahil Kamble <[email protected]> Signed-off-by: sujitaw <[email protected]> Co-authored-by: sanjaykhondal-aw <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: bhavanakarwade <[email protected]> Co-authored-by: alokmore-awts <[email protected]> Co-authored-by: shitrerohit <[email protected]> Co-authored-by: rohit.shitre <[email protected]> Co-authored-by: Krishna Waske <[email protected]> Co-authored-by: sujitaw <[email protected]> Co-authored-by: deno-deploy[bot] <75045203+deno-deploy[bot]@users.noreply.github.com> Co-authored-by: Sahil Kamble <[email protected]> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: sonarlint issues (#1094) Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1095) * fix: sonarlint authentication security hotspots Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1096) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1097) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint errors Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1098) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> * fix: JSX issue Signed-off-by: pranalidhanavade <[email protected]> --------- Signed-off-by: pranalidhanavade <[email protected]> * Fix/sonarlint issues (#1099) * fix: sonarlint authentication security issues Signed-off-by: pranalidhanavade <[email protected]> * fix: sonarlint auth…



What
UI screens
Important
Refactor UI for developer settings and passkey components, adding new layouts, icons, and bug fixes.
AddPasskey.tsxto improve layout and add external link for passkey information.DeviceDetails.tsxto use a data table for device management, including edit and delete actions.DevelopersSetting.tsxwith new card layout for client credentials and application version.EditIcon.tsxfor consistent iconography across the application.DeleteModal.tsxandEditModal.tsxby renamingonSucesstoonSuccess.envConfig.tsto includeNEXT_PUBLIC_CURRENT_RELEASEfor version tracking.WalletSpinupComponent.tsxandLedgerConfig.tsxfor clarity.This description was created by
for b68323a. You can customize this summary. It will automatically update as commits are pushed.