Migration from 4.1
Designer Toolbar
The toolbar is configurable. You have to specify them in the appmixer.ui.Designer
constructor, otherwise, it will be empty. More information here.
Custom Inspector Fields
The props structure for Custom Inspector Fields was changed. Although the same data is available inside the fields, it is accessed a bit differently. Until the 4.0 version the props definition looked like this:
This is how it looks in 4.1:
The context
object contains the following properties:
componentId
inputManifest
componentManifest
descriptorPath
variables
As you can see, the context
object now contains the contextual data - i.e. the data from the component to which the input belongs. The same data as before remains available, and access to the componentId
and componentManifest
is now available as well. So if you have references to inputManifest
, descriptorPath
or variables
, change them and refer to these properties inside the context
object. For example, if we had this code:
You have to update it to:
Slack app
Migrate the legacy Slack applications. The Slack Appmixer module in 4.1 does not work with newly registered Slack applications. We upgraded the module to the newest Slack API. Unfortunately, it is no longer compatible with legacy Slack apps. More information can be found in the Slack section.
Last updated