UNPKG

@furo/ui5

Version:
18 lines (16 loc) 656 B
import { DisplayInt32 } from './display-int32.js'; /** * `display-uint64` * The display-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 display-xxx component should implement the following API: * - function: bindData(fieldNode){...} * * @summary display renderer for `uint64` * @element display-uint64 */ export class DisplayUint64 extends DisplayInt32 {} window.customElements.define('display-uint64', DisplayUint64);