diff --git a/Changelog.md b/Changelog.md index d13f9a1..6b33d9a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,15 @@ # Changelog ## [Unreleased] +### [3.12.1] - 2026-07-06 + +### Changed +- Rearranged the order of the service list. +### [3.12.0]- 2026-07-03 +### Added +- Added toggle for requesting fields for selective disclosure +### Fixed +- Fixed a bug where a section was removed from the consent screen. ### [3.12.0]- 2026-07-03 ### Added diff --git a/package.json b/package.json index 901cfcb..d730339 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "entity-developer-dashboard", - "version": "3.12.0", + "version": "3.12.1", "private": true, "scripts": { "serve": "vue-cli-service serve --mode production", diff --git a/src/components/stepper/StepCompanyDetails.vue b/src/components/stepper/StepCompanyDetails.vue index 74448f9..137bbd2 100644 --- a/src/components/stepper/StepCompanyDetails.vue +++ b/src/components/stepper/StepCompanyDetails.vue @@ -336,14 +336,14 @@ export default { COMMUNITY: "Community", }, BUSINESS_INTERESTED_IN: { + KYC: "Know Your Customer (KYC)", + KYB: "Know Your Business (KYB)", + AGE_VERIFICATION: "Age Verification", + PROOF_OF_PERSONHOOD: "Proof of Personhood", AML_SCREEN: "AML Screening", PROOF_OF_ADDRESS: "Proof Of Address", - KYB: "Know Your Business (KYB)", - KYC: "Know Your Customer (KYC)", COLLECT_WALLET: "Collect Wallet Address", - AGE_VERIFICATION: "Age Verification", FRAUD_PREVENTION: "Fraud Prevention", - PROOF_OF_PERSONHOOD: "Proof of Personhood", }, BUSINESS_EST_YEARLY_VOLUME: { ZERO_ONEK: "0 - 1,000", diff --git a/src/views/playground/WidgetConfig/Index.vue b/src/views/playground/WidgetConfig/Index.vue index ab3639b..8247a14 100644 --- a/src/views/playground/WidgetConfig/Index.vue +++ b/src/views/playground/WidgetConfig/Index.vue @@ -784,7 +784,7 @@ export default { } const selectedFields = this.widgetConfigTemp.selectiveDisclosure.fields - .filter(field => this.defaultSelectiveDisclosureFields.includes(field)) + .filter(field => this.selectiveDisclosureFieldOptions.some(option => option.value === field)) this.widgetConfigTemp.selectiveDisclosure.fields = selectedFields this.widgetConfigTemp.selectiveDisclosure.frame = this.generateSelectiveDisclosureFrame(selectedFields)