From 48400e07ca42edfea31c0c7247ac72b6eb1eddd6 Mon Sep 17 00:00:00 2001 From: Clement Mwimo Date: Tue, 11 Aug 2026 23:21:26 -0600 Subject: [PATCH 1/4] converted institutionLogo to MXUI --- src/components/ConnectInstitutionHeader.js | 4 ++-- src/views/verification/VerifyExistingMember.tsx | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/ConnectInstitutionHeader.js b/src/components/ConnectInstitutionHeader.js index b2985b40a5..630351252d 100644 --- a/src/components/ConnectInstitutionHeader.js +++ b/src/components/ConnectInstitutionHeader.js @@ -1,7 +1,7 @@ import React from 'react' import PropTypes from 'prop-types' import { useSelector } from 'react-redux' -import { InstitutionLogo } from '@kyper/institutionlogo' +import { InstitutionLogo } from '@mxenabled/mxui' import { useTokens } from '@kyper/tokenprovider' import { selectColorScheme } from 'src/redux/reducers/configSlice' @@ -34,7 +34,7 @@ export const ConnectInstitutionHeader = (props) => {
{props.institutionGuid ? ( = (props) => { > Date: Tue, 11 Aug 2026 23:23:45 -0600 Subject: [PATCH 2/4] remove @kyper/institutionlogo package --- README.md | 2 +- package-lock.json | 13 ------------- package.json | 1 - typings/kyper.d.ts | 1 - 4 files changed, 1 insertion(+), 16 deletions(-) diff --git a/README.md b/README.md index 132aa1ff78..4d1fe2a525 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ const App = () => { | `onShowConnectSuccessSurvey` | [`AnalyticContextType`](./typings/connectProps.d.ts#L100) | The connect widget provides a way to let your analytics provider know that the connect success survey was shown. [More details](./docs/ANALYTICS.md#onShowConnectSuccessSurvey) | | `onSubmitConnectSuccessSurvey` | [`AnalyticContextType`](./typings/connectProps.d.ts#L101) | The connect widget provides a way to submit connect success survey responses using your own analytics provider. [More details](./docs/ANALYTICS.md#onSubmitConnectSuccessSurvey) | | | `profiles` | [`ProfilesTypes`](./typings/connectProps.d.ts) | The connect widget uses the profiles to set the initial state of the widget. [More details](./docs/PROFILES.md) | See more details | -| `userFeatures` | [`UserFeaturesType`](./typings/connectProps.d.ts) | The connect widget uses user features to determine the behavior of the widget. [More details](./docs/USER_FEATURES.md) | See more details +| `userFeatures` | [`UserFeaturesType`](./typings/connectProps.d.ts) | The connect widget uses user features to determine the behavior of the widget. [More details](./docs/USER_FEATURES.md) | See more details | | `webSocketConnection` | `object` | An object containing `isConnected()` function and `webSocketMessages$` observable for real-time updates. | `null` | | `experimentalFeatures` | `object` | An object to enable or disable experimental features like `useWebSockets: true`. | `null` | diff --git a/package-lock.json b/package-lock.json index b315694a2e..b2dd71c615 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,6 @@ "@kyper/hooks": "^1.0.0", "@kyper/icon": "^1.18.1", "@kyper/input": "^6.1.0", - "@kyper/institutionlogo": "^3.1.0", "@kyper/messagebox": "^3.1.0", "@kyper/progressindicators": "^3.1.0", "@kyper/tag": "^3.0.0", @@ -1650,18 +1649,6 @@ "react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@kyper/institutionlogo": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@kyper/institutionlogo/-/institutionlogo-3.1.0.tgz", - "integrity": "sha512-z+17hedk4NiXH8fnUFd9Eour4bL3uQCfrA8/UHNWcKhWBQk5Qw3dIjUHdtvo9D6+fULm3/T8/IztvgEmnQzC1A==", - "peerDependencies": { - "@kyper/tokenprovider": "^4.0.0", - "@mxenabled/cssinjs": "^0.6.0", - "prop-types": "^15.7.2", - "react": "^16.14.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0" - } - }, "node_modules/@kyper/messagebox": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@kyper/messagebox/-/messagebox-3.1.0.tgz", diff --git a/package.json b/package.json index 1eeabab6c7..6bb7c659b5 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,6 @@ "@kyper/hooks": "^1.0.0", "@kyper/icon": "^1.18.1", "@kyper/input": "^6.1.0", - "@kyper/institutionlogo": "^3.1.0", "@kyper/messagebox": "^3.1.0", "@kyper/progressindicators": "^3.1.0", "@kyper/tag": "^3.0.0", diff --git a/typings/kyper.d.ts b/typings/kyper.d.ts index e9b6e8122a..8dda122a65 100644 --- a/typings/kyper.d.ts +++ b/typings/kyper.d.ts @@ -1,5 +1,4 @@ declare module '@kyper/tokenprovider' -declare module '@kyper/institutionlogo' declare module '@kyper/messagebox' declare module '@kyper/userfeedback' declare module '@kyper/textarea' From 11cc5753c69cd1111c1fe2aa2ff19f34cbb27e7a Mon Sep 17 00:00:00 2001 From: Clement Mwimo Date: Wed, 12 Aug 2026 12:04:03 -0600 Subject: [PATCH 3/4] removed extra space --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d1fe2a525..c540ab2cf2 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ const App = () => { | `onShowConnectSuccessSurvey` | [`AnalyticContextType`](./typings/connectProps.d.ts#L100) | The connect widget provides a way to let your analytics provider know that the connect success survey was shown. [More details](./docs/ANALYTICS.md#onShowConnectSuccessSurvey) | | `onSubmitConnectSuccessSurvey` | [`AnalyticContextType`](./typings/connectProps.d.ts#L101) | The connect widget provides a way to submit connect success survey responses using your own analytics provider. [More details](./docs/ANALYTICS.md#onSubmitConnectSuccessSurvey) | | | `profiles` | [`ProfilesTypes`](./typings/connectProps.d.ts) | The connect widget uses the profiles to set the initial state of the widget. [More details](./docs/PROFILES.md) | See more details | -| `userFeatures` | [`UserFeaturesType`](./typings/connectProps.d.ts) | The connect widget uses user features to determine the behavior of the widget. [More details](./docs/USER_FEATURES.md) | See more details | +| `userFeatures` | [`UserFeaturesType`](./typings/connectProps.d.ts) | The connect widget uses user features to determine the behavior of the widget. [More details](./docs/USER_FEATURES.md) | See more details | `webSocketConnection` | `object` | An object containing `isConnected()` function and `webSocketMessages$` observable for real-time updates. | `null` | | `experimentalFeatures` | `object` | An object to enable or disable experimental features like `useWebSockets: true`. | `null` | From 7a2f184af74ead9bfb1baa526658cf1f8c15419b Mon Sep 17 00:00:00 2001 From: Clement Mwimo Date: Wed, 12 Aug 2026 12:12:50 -0600 Subject: [PATCH 4/4] feat: migrate @kyper/institutionLogo to MXUI --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c540ab2cf2..132aa1ff78 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ const App = () => { | `onShowConnectSuccessSurvey` | [`AnalyticContextType`](./typings/connectProps.d.ts#L100) | The connect widget provides a way to let your analytics provider know that the connect success survey was shown. [More details](./docs/ANALYTICS.md#onShowConnectSuccessSurvey) | | `onSubmitConnectSuccessSurvey` | [`AnalyticContextType`](./typings/connectProps.d.ts#L101) | The connect widget provides a way to submit connect success survey responses using your own analytics provider. [More details](./docs/ANALYTICS.md#onSubmitConnectSuccessSurvey) | | | `profiles` | [`ProfilesTypes`](./typings/connectProps.d.ts) | The connect widget uses the profiles to set the initial state of the widget. [More details](./docs/PROFILES.md) | See more details | -| `userFeatures` | [`UserFeaturesType`](./typings/connectProps.d.ts) | The connect widget uses user features to determine the behavior of the widget. [More details](./docs/USER_FEATURES.md) | See more details +| `userFeatures` | [`UserFeaturesType`](./typings/connectProps.d.ts) | The connect widget uses user features to determine the behavior of the widget. [More details](./docs/USER_FEATURES.md) | See more details | `webSocketConnection` | `object` | An object containing `isConnected()` function and `webSocketMessages$` observable for real-time updates. | `null` | | `experimentalFeatures` | `object` | An object to enable or disable experimental features like `useWebSockets: true`. | `null` |