@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
19 lines (16 loc) • 649 B
JavaScript
import { DisplayInt32 } from './display-int32.js';
/**
* `display-int64`
* The display-int64 component displays a FieldNode of type `int64` in read only mode.
*
* The component uses locale from the environment to display the date value accordingly.
* https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat
*
* Every display-xxx component should implement the following API:
* - function: bindData(fieldNode){...}
*
* @summary display renderer for `int64`
* @element display-int64
*/
export class DisplayInt64 extends DisplayInt32 {}
window.customElements.define('display-int64', DisplayInt64);