├── .editorconfig ├── .gitattributes ├── .github ├── demo.gif ├── html-element-names.png └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── github-icon.svg ├── index.html └── style.css ├── package.json ├── rollup.config.js ├── src └── FontPicker.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/.github/demo.gif -------------------------------------------------------------------------------- /.github/html-element-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/.github/html-element-names.png -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | dist-browser/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/README.md -------------------------------------------------------------------------------- /demo/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/demo/github-icon.svg -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/demo/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/FontPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/src/FontPicker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelmeuli/font-picker/HEAD/yarn.lock --------------------------------------------------------------------------------