UNPKG

@furo/ui5

Version:
25 lines (21 loc) 500 B
import { CelleditBool } from './celledit-bool.js'; /** * `celledit-furo-fat-bool` is a `celledit` context renderer. * * It uses furo-ui5-checkbox-input as the renderer * * @summary celledit renderer for `bool` * @element celledit-furo-fat-bool */ export class CelleditFuroFatBool extends CelleditBool { /** * @private */ static get metadata() { return { tag: 'celledit-furo-fat-bool' }; } static get styles() { return super.styles; } } CelleditFuroFatBool.define();