@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
25 lines (21 loc) • 522 B
JavaScript
import { CelleditInt32 } from './celledit-int32.js';
/**
* `celledit-furo-fat-uint32` is a `celledit` context renderer.
*
* It uses furo-ui5-number-input as the renderer
*
* @summary celledit renderer for `furo.fat.Uint32`
* @element celledit-furo-fat-uint32
*/
export class CelleditFuroFatUint32 extends CelleditInt32 {
/**
* @private
*/
static get metadata() {
return { tag: 'celledit-furo-fat-uint32' };
}
static get styles() {
return super.styles;
}
}
CelleditFuroFatUint32.define();