chore(navbar): move navbar to separate directory

This commit is contained in:
Adam Bradley
2017-11-28 17:59:01 -06:00
parent 8c5c337933
commit ce6d79ceb9
5 changed files with 126 additions and 89 deletions

View File

@ -1926,6 +1926,40 @@ declare global {
}
import {
Navbar as IonNavbar
} from './components/navbar/navbar';
declare global {
interface HTMLIonNavbarElement extends IonNavbar, HTMLElement {
}
var HTMLIonNavbarElement: {
prototype: HTMLIonNavbarElement;
new (): HTMLIonNavbarElement;
};
interface HTMLElementTagNameMap {
"ion-navbar": HTMLIonNavbarElement;
}
interface ElementTagNameMap {
"ion-navbar": HTMLIonNavbarElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-navbar": JSXElements.IonNavbarAttributes;
}
}
namespace JSXElements {
export interface IonNavbarAttributes extends HTMLAttributes {
hideBackButton?: boolean,
backButtonText?: string,
backButtonIcon?: string,
hidden?: boolean
}
}
}
import {
Note as IonNote
} from './components/note/note';
@ -3292,40 +3326,6 @@ declare global {
}
import {
Navbar as IonNavbar
} from './components/toolbar/navbar';
declare global {
interface HTMLIonNavbarElement extends IonNavbar, HTMLElement {
}
var HTMLIonNavbarElement: {
prototype: HTMLIonNavbarElement;
new (): HTMLIonNavbarElement;
};
interface HTMLElementTagNameMap {
"ion-navbar": HTMLIonNavbarElement;
}
interface ElementTagNameMap {
"ion-navbar": HTMLIonNavbarElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-navbar": JSXElements.IonNavbarAttributes;
}
}
namespace JSXElements {
export interface IonNavbarAttributes extends HTMLAttributes {
hideBackButton?: boolean,
backButtonText?: string,
backButtonIcon?: string,
hidden?: boolean
}
}
}
import {
Toolbar as IonToolbar
} from './components/toolbar/toolbar';