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