@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
18 lines (16 loc) • 591 B
JavaScript
import { CellBool } from './cell-bool.js';
/**
* `cell-google-protobuf-boolvalue`
* The cell-google-protobuf-boolvalue component displays a FieldNode of type `google.protobuf.BoolValue` in read only mode.
*
* Every cell-xxx component should implement the following API:
* - function: bindData(fieldNode){...}
*
* @summary cell display renderer for `google.protobuf.BoolValue`
* @element cell-google-protobuf-boolvalue
*/
export class CellGoolgeProtobufBoolvalue extends CellBool {}
window.customElements.define(
'cell-google-protobuf-boolvalue',
CellGoolgeProtobufBoolvalue
);