chore(grid): move row and col to separate directories

This commit is contained in:
Adam Bradley
2017-11-28 18:16:11 -06:00
parent fb6de28006
commit 459f610f0b
10 changed files with 675 additions and 669 deletions

View File

@ -669,6 +669,36 @@ declare global {
}
import {
Column as IonCol
} from './components/col/col';
declare global {
interface HTMLIonColElement extends IonCol, HTMLElement {
}
var HTMLIonColElement: {
prototype: HTMLIonColElement;
new (): HTMLIonColElement;
};
interface HTMLElementTagNameMap {
"ion-col": HTMLIonColElement;
}
interface ElementTagNameMap {
"ion-col": HTMLIonColElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-col": JSXElements.IonColAttributes;
}
}
namespace JSXElements {
export interface IonColAttributes extends HTMLAttributes {
}
}
}
import {
Content as IonContent
} from './components/content/content';
@ -960,36 +990,6 @@ declare global {
}
import {
Column as IonCol
} from './components/grid/col';
declare global {
interface HTMLIonColElement extends IonCol, HTMLElement {
}
var HTMLIonColElement: {
prototype: HTMLIonColElement;
new (): HTMLIonColElement;
};
interface HTMLElementTagNameMap {
"ion-col": HTMLIonColElement;
}
interface ElementTagNameMap {
"ion-col": HTMLIonColElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-col": JSXElements.IonColAttributes;
}
}
namespace JSXElements {
export interface IonColAttributes extends HTMLAttributes {
}
}
}
import {
Grid as IonGrid
} from './components/grid/grid';
@ -1020,36 +1020,6 @@ declare global {
}
import {
Row as IonRow
} from './components/grid/row';
declare global {
interface HTMLIonRowElement extends IonRow, HTMLElement {
}
var HTMLIonRowElement: {
prototype: HTMLIonRowElement;
new (): HTMLIonRowElement;
};
interface HTMLElementTagNameMap {
"ion-row": HTMLIonRowElement;
}
interface ElementTagNameMap {
"ion-row": HTMLIonRowElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-row": JSXElements.IonRowAttributes;
}
}
namespace JSXElements {
export interface IonRowAttributes extends HTMLAttributes {
}
}
}
import {
Header as IonHeader
} from './components/header/header';
@ -2502,6 +2472,36 @@ declare global {
}
import {
Row as IonRow
} from './components/row/row';
declare global {
interface HTMLIonRowElement extends IonRow, HTMLElement {
}
var HTMLIonRowElement: {
prototype: HTMLIonRowElement;
new (): HTMLIonRowElement;
};
interface HTMLElementTagNameMap {
"ion-row": HTMLIonRowElement;
}
interface ElementTagNameMap {
"ion-row": HTMLIonRowElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-row": JSXElements.IonRowAttributes;
}
}
namespace JSXElements {
export interface IonRowAttributes extends HTMLAttributes {
}
}
}
import {
Scroll as IonScroll
} from './components/scroll/scroll';