@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
18 lines (16 loc) • 631 B
JavaScript
import { CellInt64 } from './cell-int64.js';
/**
* `cell-uint64`
* The cell-uint64 component displays a FieldNode of type `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 `uint64`
* @element cell-uint64
*/
export class CellUint64 extends CellInt64 {}
window.customElements.define('cell-uint64', CellUint64);