new StatefulButton()
Creates a new instance of StatefulButton.
Properties:
Name | Type | Description | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
properties |
Object | An object that contains the properties of the StatefulButton.
Properties
|
Example
const myButton = new instance.UI.Components.StatefulButton({
initialState: 'SinglePage',
states: {
SinglePage: {
img: 'icon-header-page-manipulation-page-layout-single-page-line',
onClick: (update) => {
update('DoublePage');
},
title: 'Single Page',
},
DoublePage: {
img: 'icon-header-page-manipulation-page-layout-double-page-line',
onClick: (update) => {
update('SinglePage');
},
title: 'Double Page',
},
},
mount: () => {},
});