@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
18 lines (16 loc) • 722 B
JavaScript
import { CellFuroFatInt64 } from './cell-furo-fat-int64.js';
/**
* `cell-furo-fat-uint64`
* The cell-furo-fat-uint64 component displays a FieldNode of type `furo.fat.uint64` 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 cell-xxx component should implement the following API:
* - function: bindData(fieldNode){...}
*
* @summary cell display renderer for `furo.fat.Uint64`
* @element cell-furo-fat-uint64
*/
export class CellFuroFatUint64 extends CellFuroFatInt64 {}
window.customElements.define('cell-furo-fat-uint64', CellFuroFatUint64);