@formql/core
Version:
FormQL - A framework for building dynamic forms
24 lines (23 loc) • 796 B
TypeScript
import { ElementRef, ViewContainerRef, TemplateRef, Renderer2, EventEmitter } from '@angular/core';
import { GridStyle } from '../models/style.model';
export declare class LayoutDirective {
private view;
private el;
private renderer;
private template;
constructor(view: ViewContainerRef, el: ElementRef, renderer: Renderer2, template: TemplateRef<any>);
resetItems: EventEmitter<boolean>;
set formqlGdConfigOf(config: GridStyle);
/**
* Get a list with the grid styling
*
* @param style: style configuration
*/
getGridStyleList(config: GridStyle): any[];
/**
* Set the appropiate css grid attributes for the parent object
*
* @param style
*/
setParentAttributes(config: GridStyle): void;
}