svg text editor with JSYG framework. It's a brick of JSYG.FullEditor, a full svg editor API.
http://yannickbochatay.github.io/JSYG.TextEditor/
npm install jsyg-texteditor
import TextEditor from "jsyg-texteditor"
import $ from "jquery"
let editor = new TextEditor('#mySVGContainer')
$('#mySVGContainer').on("click",function(e) {
if ( e.target.tagName == "text") {
editor.target(e.target)
editor.show()
}
})