package.dist.TableCellBase.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webcomponents Show documentation
Show all versions of webcomponents Show documentation
UI5 Web Components: webcomponents.main
The newest version!
import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
import type I18nBundle from "@ui5/webcomponents-base/dist/i18nBundle.js";
/**
* @class
* A class to serve as a foundation for the `TableCell` and `TableHeaderCell` classes.
* @constructor
* @abstract
* @extends UI5Element
* @since 2.0.0
* @public
*/
declare abstract class TableCellBase extends UI5Element {
/**
* Defines the content of the component.
* @public
*/
content: Array;
_popin: boolean;
protected ariaRole: string;
static i18nBundle: I18nBundle;
static onDefine(): Promise;
onEnterDOM(): void;
onBeforeRendering(): void;
getFocusDomRef(): this;
isTableCellBase(): boolean;
}
export default TableCellBase;