Create emails when pressing enter or space

EmailsInput(element, { triggerKeyCodes: [13, 32] })  

Create emails separated by comma on paste

(Try pasting the following content below: valid@mail.com, invalid, user.mail@mail.com)
EmailsInput(element, { pasteSplitPattern: ',' })  

Scroll editor on overflow

#sample2 { max-height: 7rem; }