├── .eslintrc.json ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── _index.html ├── package.json ├── src ├── commands.js ├── fonts.js ├── index.js └── locale │ ├── en.js │ ├── fr.js │ └── ptbr.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/README.md -------------------------------------------------------------------------------- /_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/_index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/package.json -------------------------------------------------------------------------------- /src/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/src/commands.js -------------------------------------------------------------------------------- /src/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/src/fonts.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/src/index.js -------------------------------------------------------------------------------- /src/locale/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/src/locale/en.js -------------------------------------------------------------------------------- /src/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/src/locale/fr.js -------------------------------------------------------------------------------- /src/locale/ptbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/src/locale/ptbr.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silexlabs/grapesjs-fonts/HEAD/tsconfig.json --------------------------------------------------------------------------------