@wf-financing/ui 4.0.0 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.es.js +4032 -4031
- package/package.json +3 -3
- package/src/components/banner/BulletList.tsx +1 -1
- package/src/config/whitelistedPartnerIds.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wf-financing/ui",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./dist/index.es.js",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"react-markdown": "^10.1.0",
|
|
39
39
|
"styled-components": "^6.1.19",
|
|
40
40
|
"@wf-financing/embedded-types": "1.0.0",
|
|
41
|
-
"@wf-financing/
|
|
42
|
-
"@wf-financing/
|
|
41
|
+
"@wf-financing/logger": "2.0.0",
|
|
42
|
+
"@wf-financing/ui-assets": "1.0.0"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
@@ -15,7 +15,7 @@ export const BulletList = ({ isOnDarkTheme, bulletPoints }: BulletListProps) =>
|
|
|
15
15
|
<Flex gap="4">
|
|
16
16
|
{bulletPoints.map((bulletPoint: string) => (
|
|
17
17
|
<Flex key={bulletPoint} gap="1" align="center">
|
|
18
|
-
<Icon color={isOnDarkTheme ? '
|
|
18
|
+
<Icon color={isOnDarkTheme ? 'onDark' : 'default'}>
|
|
19
19
|
<IconCheck12Line />
|
|
20
20
|
</Icon>
|
|
21
21
|
<Text
|
|
@@ -22,4 +22,7 @@ export const WHITELISTED_PARTNER_IDS = {
|
|
|
22
22
|
|
|
23
23
|
'0e553c21-13a7-461f-bf4d-5a92fad4a403': 'reveni',
|
|
24
24
|
'bb9f8122-66ff-41bd-a8c0-52a9af0b3b4f': 'reveni',
|
|
25
|
+
|
|
26
|
+
'9f21c2f7-fd67-4557-82df-8e2f4783c66a': 'linkMyBooks',
|
|
27
|
+
'01aba3d9-21d6-4a40-b6d2-a9f0c8628b0f': 'linkMyBooks',
|
|
25
28
|
} as const satisfies Record<string, PartnerTheme>;
|