@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
29 lines (24 loc) • 534 B
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
import { FuroUi5NumberInput } from '../furo-ui5-number-input.js';
/**
*
*
* @summary celledit renderer for `int32`
* @element celledit-int32
*/
export class CelleditInt32 extends FuroUi5NumberInput {
connectedCallback() {
super.connectedCallback();
this.style.width = '100%';
}
/**
* @private
*/
static get metadata() {
return { tag: 'celledit-int32' };
}
static get styles() {
return super.styles;
}
}
CelleditInt32.define();