·
3 commits
to main
since this release
Minor Changes
- 5ed08fc: - BREAKING CHANGE 🧨 : updated
subscribeToEditor
arguments: - arguments are now passed as a named argument object -apiKey
is now a required field
Example:
- from:
subscribeToEditor('page', () => { ... }, options: {trustedHosts:['...']})
- to:
subscribeToEditor({
apiKey: '...',
model: '...',
trustedHosts: ['...'],
callback: () => { ... }
})
- 10a5754: BREAKING CHANGE 🧨:
model
andcontent
are now required props for<Content>
.