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