@wf-financing/ui 3.0.0 → 3.2.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 +12 -0
- package/dist/index.es.js +38603 -42588
- package/package.json +2 -6
- package/src/components/banner/BannerActionsDesktop.tsx +3 -3
- package/src/components/banner/BulletList.tsx +12 -4
- package/src/components/banner/CloseButton.tsx +2 -2
- package/src/components/banner/CtaBanner.snapshot.stories.tsx +3 -5
- package/src/components/banner/CtaBanner.tsx +23 -17
- package/src/components/banner/CtaBannerContent.tsx +12 -5
- package/src/components/banner/FooterActions.tsx +2 -2
- package/src/components/banner/HeaderActions.tsx +6 -2
- package/src/components/banner/ProceedFundingButton.tsx +5 -3
- package/src/components/modal/ConsentModal.tsx +2 -1
- package/src/components/modal/ModalFooter.tsx +3 -1
- package/src/config/fontParameters.ts +11 -2
- package/src/config/index.ts +1 -0
- package/src/config/staticUrls.ts +5 -0
- package/src/config/whitelistedPartnerIds.ts +1 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useCtaBanner.ts +5 -2
- package/src/hooks/useInvalidateCta.ts +13 -0
- package/src/hooks/usePreloadImage.ts +14 -0
- package/src/utils/applyFont.ts +4 -1
- package/vite.config.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @wf-financing/ui
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add Athena theme
|
|
8
|
+
|
|
9
|
+
## 3.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Request new CTA copy after start or continue hosted application actions, preload image for modal
|
|
14
|
+
|
|
3
15
|
## 3.0.0
|
|
4
16
|
|
|
5
17
|
### Major Changes
|