UNPKG

grapesjs_codeapps

Version:

Free and Open Source Web Builder Framework/SC Modification

19 lines (17 loc) 324 B
import Component from './ComponentText'; module.exports = Component.extend( { defaults: { ...Component.prototype.defaults, tagName: 'label', traits: ['id', 'title', 'for'] } }, { isComponent(el) { if (el.tagName == 'LABEL') { return { type: 'label' }; } } } );