Work towards using pop-out item sheets instead of inline-editing because inline-editing is annoying and kinda ugly TBH
This commit is contained in:
parent
dcdc1b7764
commit
516f7ac826
13 changed files with 150 additions and 73 deletions
|
|
@ -25,5 +25,6 @@ export default {
|
|||
"nor": (a, b) => !(a || b),
|
||||
"nand": (a, b) => !(a && b),
|
||||
"xor": (a, b) => (a || b) && !(a && b),
|
||||
"xnor": (a, b) => !((a || b) && !(a && b))
|
||||
"xnor": (a, b) => !((a || b) && !(a && b)),
|
||||
"defined": v => v != null
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue