1.0.1 • Published 2 years ago
grapesjs-typography-fonts v1.0.1
Grapesjs Typography Fonts
Customize the font family list for typography
HTML
<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet">
<script src="https://unpkg.com/grapesjs"></script>
<script src="https://unpkg.com/grapesjs-typography-fonts"></script>
<div id="gjs"></div>JS
const editor = grapesjs.init({
	container: '#gjs',
  height: '100%',
  fromElement: true,
  storageManager: false,
  plugins: ['grapesjs-typography-fonts'],
  pluginsOpts: {
    'grapesjs-typography-fonts': { 
      fonts: [
        {
          label: 'Merriweather',
          value: 'Merriweather, serif',
          import: {
            link: 'https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap'
          }
        },
      ],
    },
    clearDefaultList: false,
  }
});CSS
body, html {
  margin: 0;
  height: 100%;
}Summary
- Plugin name: 
grapesjs-typography-fonts - Options
fonts: FontOption - list of fonts for TypographyFontOption- font configuration optionlabel- font label in the Font Family dropdownvalue- font name in the css ruleimport- import option: { link: '', style: '' }link- url to load the font instyle- css rules, @font-face
clearDefaultList: Boolean - remove existing font list
 
Options
| Option | Description | Default | 
|---|---|---|
fonts | FontOption - list of fonts for Typography, see above for FontOption | [] | 
clearDefaultList | remove existing font list | true | 
Download
- CDN
https://unpkg.com/grapesjs-typography-fonts
 - NPM
npm i grapesjs-typography-fonts
 - GIT
git clone https://github.com/wenfzhao/grapesjs-typography-fonts.git
 
Usage
Directly in the browser
<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-typography-fonts.min.js"></script>
<div id="gjs"></div>
<script type="text/javascript">
  var editor = grapesjs.init({
      container: '#gjs',
      plugins: ['grapesjs-typography-fonts'],
      pluginsOpts: {
        'grapesjs-typography-fonts': { 
          fonts: [
            {
              label: 'Merriweather',
              value: 'Merriweather, serif',
              import: {
                link: 'https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap'
              }
            },
            ...
          ],
        }
      }
  });
</script>Modern javascript
import grapesjs from 'grapesjs';
import plugin from 'grapesjs-typography-fonts';
import 'grapesjs/dist/css/grapes.min.css';
const editor = grapesjs.init({
  container : '#gjs',
  // ...
  plugins: [plugin],
  pluginsOpts: {
    [plugin]: { /* options */ }
  }
  // or
  plugins: [
    editor => plugin(editor, { /* options */ }),
  ],
});Development
Clone the repository
$ git clone https://github.com/wenfzhao/grapesjs-typography-fonts.git
$ cd grapesjs-typography-fontsInstall dependencies
$ npm iStart the dev server
$ npm startBuild the source
$ npm run buildLicense
MIT
1.0.1
2 years ago