mirror of
https://github.com/status-im/consul.git
synced 2025-01-19 18:19:53 +00:00
35 lines
482 B
JavaScript
35 lines
482 B
JavaScript
export default {
|
|
id: 'boolean',
|
|
initial: 'false',
|
|
states: {
|
|
true: {
|
|
on: {
|
|
TOGGLE: [
|
|
{
|
|
target: 'false',
|
|
},
|
|
],
|
|
FALSE: [
|
|
{
|
|
target: 'false',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
false: {
|
|
on: {
|
|
TOGGLE: [
|
|
{
|
|
target: 'true',
|
|
},
|
|
],
|
|
TRUE: [
|
|
{
|
|
target: 'true',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
};
|