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