primeng
Version:
PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB
49 lines (45 loc) • 1.48 kB
TypeScript
import { BaseComponent } from 'primeng/basecomponent';
import * as _primeuix_styled from '@primeuix/styled';
import { BaseStyle } from 'primeng/base';
import * as i0 from '@angular/core';
/**
*
* Fluid is a layout component to make descendant components span full width of their container.
*
* [Live Demo](https://www.primeng.org/fluid/)
*
* @module fluidstyle
*
*/
declare enum FluidClasses {
/**
* Class name of the root element
*/
root = "p-fluid"
}
declare class FluidStyle extends BaseStyle {
name: string;
classes: {
root: string;
};
theme: _primeuix_styled.StyleType;
static ɵfac: i0.ɵɵFactoryDeclaration<FluidStyle, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<FluidStyle>;
}
interface FluidStyle extends BaseStyle {
}
/**
* Fluid is a layout component to make descendant components span full width of their container.
* @group Components
*/
declare class Fluid extends BaseComponent {
_componentStyle: FluidStyle;
static ɵfac: i0.ɵɵFactoryDeclaration<Fluid, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<Fluid, "p-fluid", never, {}, {}, never, ["*"], true, never>;
}
declare class FluidModule {
static ɵfac: i0.ɵɵFactoryDeclaration<FluidModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<FluidModule, never, [typeof Fluid], [typeof Fluid]>;
static ɵinj: i0.ɵɵInjectorDeclaration<FluidModule>;
}
export { Fluid, FluidClasses, FluidModule, FluidStyle };