import { LayoutElement } from '../Abstracts/LayoutElement'; import type { IAbsoluteElementProps } from './IAbsoluteElementProps'; declare const AbsoluteElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Fitable").IFitableProps) & typeof LayoutElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Absolute - A layout container for absolute positioning of child elements with precise coordinate control. * * @description * The Absolute layout component provides a container where child elements can be positioned using absolute * coordinates relative to the container boundaries. It establishes a positioning context for child elements * that use absolute positioning, allowing for precise pixel-level placement and layering control. This * component is essential for complex layouts requiring exact positioning, overlays, tooltips, custom UI * arrangements, and scenarios where CSS positioning alone is insufficient. The container maintains its * own coordinate system and provides a stable reference point for absolutely positioned children. * Perfect for dashboard layouts, image annotations, drag-and-drop interfaces, and custom positioning scenarios. * * @name Absolute * @element mosaik-absolute * @category Layouts * * @slot - The default slot for placing absolutely positioned child elements. * * @cssprop {String} --absolute-font-family - The font family CSS custom property. * @cssprop {String} --absolute-font-letter-spacing - The font letter spacing CSS custom property. * @cssprop {String} --absolute-font-line-height - The font line height CSS custom property. * @cssprop {String} --absolute-font-size - The font size CSS custom property. * @cssprop {String} --absolute-font-text-decoration - The font text decoration CSS custom property. * @cssprop {String} --absolute-font-text-transform - The font text transform CSS custom property. * @cssprop {String} --absolute-font-weight - The font weight CSS custom property. * @cssprop {String} --absolute-gap - The gap CSS custom property. * @cssprop {String} --absolute-padding-bottom - The padding bottom CSS custom property. * @cssprop {String} --absolute-padding-left - The padding left CSS custom property. * @cssprop {String} --absolute-padding-right - The padding right CSS custom property. * @cssprop {String} --absolute-padding-top - The padding top CSS custom property. * @cssprop {String} --absolute-shadow - The shadow CSS custom property. * @cssprop {String} --absolute-shadow-blur - The shadow blur CSS custom property. * @cssprop {String} --absolute-shadow-color - The shadow color CSS custom property. * @cssprop {String} --absolute-shadow-offset-x - The shadow offset x CSS custom property. * @cssprop {String} --absolute-shadow-offset-y - The shadow offset y CSS custom property. * @cssprop {String} --absolute-shadow-spread - The shadow spread CSS custom property. * @cssprop {String} --absolute-transition-duration - The transition duration CSS custom property. * @cssprop {String} --absolute-transition-mode - The transition mode CSS custom property. * @cssprop {String} --absolute-transition-property - The transition property CSS custom property. * @cssprop {String} --absolute-translate - The translate CSS custom property. * * @example * ```html * * *
Positioned at (50, 100)
*
* *
Positioned at (200, 50)
*
*
* ``` * * @public */ export declare class AbsoluteElement extends AbsoluteElement_base implements IAbsoluteElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @override * @readonly */ static get is(): string; } /** * @public */ export declare namespace AbsoluteElement { type Props = IAbsoluteElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-absolute': AbsoluteElement; } } export {}; //# sourceMappingURL=AbsoluteElement.d.ts.map