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',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|