├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── dist ├── richVoiceEditor.js ├── richVoiceEditor.js.map └── richVoiceEditor.min.js ├── docs ├── _config.yml ├── _includes │ ├── example.html │ └── jsfiddle.html ├── index.md ├── rich-voice-editor-screen.png └── rich_voice_editor.png ├── package.json ├── src └── index.js └── webpack.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: fabiancelik 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | node_modules 3 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .git 3 | src/ 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/README.md -------------------------------------------------------------------------------- /dist/richVoiceEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/dist/richVoiceEditor.js -------------------------------------------------------------------------------- /dist/richVoiceEditor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/dist/richVoiceEditor.js.map -------------------------------------------------------------------------------- /dist/richVoiceEditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/dist/richVoiceEditor.min.js -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/docs/_includes/example.html -------------------------------------------------------------------------------- /docs/_includes/jsfiddle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/docs/_includes/jsfiddle.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/rich-voice-editor-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/docs/rich-voice-editor-screen.png -------------------------------------------------------------------------------- /docs/rich_voice_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/docs/rich_voice_editor.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiancelik/rich-voice-editor/HEAD/webpack.config.js --------------------------------------------------------------------------------