- Updated
allowedOrigins
to support congregant portal
- Add support for sending custom events to the add-in host page.
- Deprecate help widget related functionality.
- Add support for event handler to process blocking events from the add-in host.
- Add event handler for processing events sent from the add-in host.
- Updated
allowedOrigins
to support Luminate Online
- Fixed a bug where localhost required a port in the allowed origins list. #40 (Thanks @MatthewMazaika!)
- Added
updateContext
callback to notify add-in when context information has been updated.
- Added
showWait
andhideWait
methods to allow developers to show/hide a page-blocking-wait, respectively.
- Updated
devDependencies
and instructions for consuming from CDN.
- Added
AddinModalConfig
with optionalfullPage
property (Default: false) to indicate if a modal add-in will be displayed full page.
- Added
removeInset
property toAddinTileConfig
to specify whether the tile content inset should be removed which allows the content to extend all the way to the edge of the tile container (Default: false)
- Added a
showConfirm
method to allow developers to show a confirm dialog with a title, description body, and button configuration containing custom actions to return when the dialog closes. - Added a
showError
method to allow developers to show an error dialog with a title, error description, and text for the close button.
- Added a
closeFlyout
method to allow developers to close a flyout panel. - The
showFlyout
method will now return a Promise which will resolve when the flyout is closed.
- Added a
showFlyout
method to allow developers to display supplementary information in a flyout panel.
- Added a
showToast
method to allow developers to show a toast with a provided message and toast style.
-
To remove confusion and clarify the intent, we've added a new method named
getUserIdentityToken
. This method is used to obtain a user identity token from the host application and replaces thegetAuthToken
method (which is still functional but marked as deprecated). -
Added tile config options to allow developers to provide additional metadata, such as tile summary details and whether to show a tile's help or settings icons.
-
Added
helpClick
andsettingsClick
callbacks to allow developers to take action when the tile help and settings icons (respectfully) are clicked.
-
Added a
buttonClick
callback for Button Add-ins to allow developers to take action when buttons are clicked. -
Added button config options to support Button Add-ins. This allows developers to provide
style
metadata - essentially, the button's intent as it relates to CRUD operations (add, edit, delete). We will add more "styles" as requested.
- Bugfix when calculating height of addin.
- Added import barrels for interfaces at the root.
- Added import barrels for interfaces.
- Added
openHelp
method to client.
- Account for the add-in's body margin when resizing the iframe height.
- Initial release.