Skip to content

v3.0.0

Compare
Choose a tag to compare
@BurnedChris BurnedChris released this 30 Aug 18:24
· 10 commits to main since this release
332389f

@everfund/js-sdk v3.0.0

Breaking Changes

  • donationWidget has been removed and been replace with checkoutModal.
  • donationWidget has be renamed to modal.

@everfund/react-sdk v3.0.0

New Features

  • New DonationForm component that can be used to embed a donation form on your site.
<div style={{ width: '450px', height: '600px' }}>
  <DonationForm
    code={code}
    onSuccess={(e) => console.log('success', e)}
    onFailure={(e) => console.log('failure', e)}
  />
</div>

Breaking Changes

  • useDonationWidget has been removed and been replace with useDonationCheckoutModal.
  • openDonationWidget has be renamed to openModal.

Changelog Wordpress plugin v3.0.0

New Features

Two new blocks to use in the Wordpress editor:

  1. Everfund Donation Form - add a donation form to your page
  2. Everfund Donation Checkout Modal - Adds a button to your page that opens a modal to donate.