@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
26 lines (21 loc) • 582 B
JavaScript
import { CelleditBool } from './celledit-bool.js';
/**
* `celledit-google-protobuf-boolvalue` is a `celledit` context renderer.
*
* It uses furo-ui5-checkbox-input as the renderer
*
* @summary celledit renderer for `google.protobuf.BoolValue`
* @element celledit-google-protobuf-boolvalue
*/
export class CelleditGoogleProtobufBoolvalue extends CelleditBool {
/**
* @private
*/
static get metadata() {
return { tag: 'celledit-google-protobuf-boolvalue' };
}
static get styles() {
return super.styles;
}
}
CelleditGoogleProtobufBoolvalue.define();