Listener on actions, if this changes, this listener will get triggered with the updates
Stringified array of DocumentAction type
Listener on when a certain animation gets changed
Stringified array of FrameAnimationType
Listener on the playback state of the animation, it contains the current time of the playback (in milliseconds) and a flag that describes if the animation is currently playing
Stringified array of AnimationPlaybackType
Listener on async errors. Async errors are thrown at times not directly tied to SDK calls. e.g. Getting an action error triggered after a late event.
If this is an ActionAsyncError
:
id
refers to the action idevent
refers to the event that triggered the actioneventChain
refers the chain of events that lead to the action, first
item being the closest parent.error triggered asynchronously
Listener on authentication expiration. The callback should resolve to the refreshed authentication. If the listener is not defined, the http requests from the connector will return 401 with no refetch of assets.
When this emits it means either:
Stringified object of AuthRefreshRequest
Listener on when barcode frames change their validation state
the json string representation of the validation results
Listener on character styles, if this changes, this listener will get triggered with the updates
Stringified object of character styles
Listener on the state of the currently selected color's styles, if this changes, this listener will get triggered with the updates
Stringified object of colors
Listener on connector events, this listener will get triggered when a connector emits one of those events
stateChanged - this event will be triggered by connector states: loading, loaded, running, ready, error
Stringified object of ConnectorEvent
Listener on connectors, if this changes, this listener will get triggered with the updates
Stringified array of ConnectorInstance type
Listener of editor entering / exiting the crop mode
Optional
id: stringframe id when entering / null when exiting
Listener on custom undo data changes
Stringified object of custom undo data
Listener on when the data source has changed
Optional
connectorId: stringthe id of the data connector
Listener on document issues, if this changes, this listener will get triggered with the updates
Stringified object of document issues
Listener on when the document is fully loaded.
Listener on engine editing mode, if this changes, this listener will get triggered with the updates
Stringified object of engine edit mode
Listener on fonts, if this changes, this listener will get triggered with the updates
Stringified object of font families
Listener on the state of all frames, if this changes, this listener will get triggered with the updates
Stringified array of FrameLayoutType objects
Listener on layouts, this listener will get triggered when a (sub)layout is
Stringified object of layouts
Experimental
Listener on pages list, this listener will get triggered when the pages are updated.
Stringified object of the pages
To be implemented, gets triggered when clicking on the pageTitle on the canvas.
Listener on page size, this listener will get triggered when the page size is changed, while the document is a project
.
This will not emit anything if your document is a template
.
Stringified object of the PageSize
Experimental
Listener on pages snapshots, this will fire when a page snapshot is invalidated and should be updated.
id of the page
Listener on paragraph styles, if this changes, this listener will get triggered with the updates
Stringified object of paragraph styles
Listener on the state of the currently selected frame, it contains some basic information on the type of frame it is
Stringified array of Frame objects
Listener on the state of the currently selected frames, if this changes, this listener will get triggered with the updates
Stringified array of FrameLayoutType objects
Listener on the state of the currently selected layout's frames, if this changes, this listener will get triggered with the updates
Stringified object of Frames
Listener on selected layout id, this listener will get triggered when a different layout is selected.
the currently selected layout id
Listener on the state of the currently selected layout, if its properties are changed, this listener will get triggered with the new properties
Stringified object of LayoutPropertiesType
Listener on the unit of the currently active layout. If you switch between layouts with different units, this listener will get triggered with the new unit If you switch the unit of a layout this listener will get triggered with the new unit
Stringified object of MeasurementUnit
Experimental
Listener on when the selectedPageID is changed.
Stringified pageId
Listener on the state of the currently selected text's styles, if this changes, this listener will get triggered with the updates
Stringified object of styles
Listener on when the tool has changed by the canvas
the string representation of a certain tool
Listener on corner radii of rectangle and polygon shapes, this listener will get triggered when any corner radius is changed
Stringified object of the CornerRadius
Listener on the general state of the document, gets triggered every time a change is done on the document.
Listener on state changes
Stringified object of UndoState
Listener on when variables change
Stringified array of Variable
Listener on when the view mode has changed
the string representation of a view mode
Listener on viewport request. The callback should resolve to the visible viewport. If the listener is not defined, the viewport will take full size.
When this emits it means that the engine requested the viewport for a zoom to page call.
Listener on scale factor of the canvas, this listener will get triggered when a zoom is applied to the canvas
Stringified scale factor
The SubscriberController is responsible for all listeners which can influence the application-state from outside. Callbacks inside this controller can be set by
window.SDK.subscriber.{method-name}