export class OjpRow {
/**
* 1. Own Properties
* Note that because these properties
* do not have the @Prop() decorator, they will not be exposed
* publicly on the host element, but only used internally.
*/
/**
* 2. Reference to host HTML element.
* Inlined decorator
*/
el: any;
/**
* 3. State() variables
* Inlined decorator, alphabetical order.
*/
/**
* 4. Public Property API
* Inlined decorator, alphabetical order. These are
* different from "own properties" in that public props
* are exposed as properties and attributes on the host element.
* Requires JSDocs for public API documentation.
*/
/**
* The number of columns that the row should be divided into.
* Internally, this is used to set the `grid-template-columns` property.
* Shorthand for desktop, tablet, and mobile cols.
*
Default: `12`
*
`` is equivalent to
*
``
*/
cols: string;
/**
* The number of columns that the row should be divided into on mobile.
* Internally, this is used to set the `grid-template-columns` property.
*
Default: value of {this.cols}
*/
mcols: any;
/**
* The number of columns that the row should be divided into on tablet.
* Internally, this is used to set the `grid-template-columns` property.
*
Default: value of {this.cols}
*/
tcols: any;
/**
* The number of columns that the row should be divided into on desktop.
* Internally, this is used to set the `grid-template-columns` property.
*
Default: value of {this.cols}
*/
dcols: any;
/**
* align-items property of the grid.
*
Default: `stretch`
*/
align: string;
/**
* justify-items property of the grid.
*
Default: `stretch`
*/
justify: string;
/**
* Should the gutters (aka page padding) be removed?
* Internally, setting this to true sets the `--ojp-row--gutter` css variable to `0`.
*
Default: `false`
*/
fullbleed: boolean;
/**
* 9. Local methods
* Internal business logic. These methods cannot be
* called from the host element.
*/
setCssProperties(): void;
/**
* 10. render() function
* Always the last public method in the class.
* If private methods present, they are below public methods.
*/
render(): any;
}