mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 14:01:20 +08:00
chore(grid): move row and col to separate directories
This commit is contained in:
120
packages/core/src/components.d.ts
vendored
120
packages/core/src/components.d.ts
vendored
@ -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';
|
||||
|
Reference in New Issue
Block a user