All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.TableCellBase.d.ts Maven / Gradle / Ivy

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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy