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