gitextract_hkg7u874/ ├── .browserslistrc ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── Release.md ├── build/ │ ├── contained.html │ └── index.html ├── css/ │ ├── bar-styles.css │ ├── icons/ │ │ ├── ptroiconfont.css │ │ └── ptroiconfont.html │ └── styles.css ├── example/ │ ├── server.py │ └── templates/ │ ├── common.html │ ├── images_list.html │ ├── paste_as_base64.html │ ├── paste_as_bin.html │ └── paste_to_tinymce.html ├── generate_font.js ├── js/ │ ├── colorPicker.js │ ├── controlbuilder.js │ ├── customEvents.js │ ├── filters.js │ ├── inserter.js │ ├── main.js │ ├── paintBucket.js │ ├── params.js │ ├── primitive.js │ ├── resizer.js │ ├── selecter.js │ ├── settings.js │ ├── text.js │ ├── translation.js │ ├── utils.js │ ├── worklog.js │ └── zoomHelper.js ├── langs/ │ ├── ca.lang.js │ ├── de.lang.js │ ├── en.lang.js │ ├── es.lang.js │ ├── fa.lang.js │ ├── fr.lang.js │ ├── ja.lang.js │ ├── nl.lang.js │ ├── pl.lang.js │ ├── pt-BR.lang.js │ ├── pt-PT.lang.js │ ├── ru.lang.js │ └── uk.lang.js ├── package.json ├── publish.sh ├── res/ │ └── font/ │ └── font-css.hbs └── webpack.config.js