mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-24 06:22:45 +08:00
feat(ios): add ios 11 layout support (#13473)
* feat(): support ios11 layout * style(): update ios11 layout mixins * style(): ios layout updates * style(): adjust tabs vars * refactor(app): add statusbar for md mode and move sass vars adds cordova test for app and renames sass vars to remove cordova * test(app): update app cordova test for button * test(app): add page three
This commit is contained in:

committed by
Brandy Carney

parent
c73ba6b3b0
commit
aff9b516ac
120
packages/core/src/components.d.ts
vendored
120
packages/core/src/components.d.ts
vendored
@ -242,6 +242,126 @@ declare global {
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
AppCordovaPageOne as AppCordovaPageOne
|
||||
} from './components/app/test/cordova/page-one';
|
||||
|
||||
declare global {
|
||||
interface HTMLAppCordovaPageOneElement extends AppCordovaPageOne, HTMLElement {
|
||||
}
|
||||
var HTMLAppCordovaPageOneElement: {
|
||||
prototype: HTMLAppCordovaPageOneElement;
|
||||
new (): HTMLAppCordovaPageOneElement;
|
||||
};
|
||||
interface HTMLElementTagNameMap {
|
||||
"app-cordova-page-one": HTMLAppCordovaPageOneElement;
|
||||
}
|
||||
interface ElementTagNameMap {
|
||||
"app-cordova-page-one": HTMLAppCordovaPageOneElement;
|
||||
}
|
||||
namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
"app-cordova-page-one": JSXElements.AppCordovaPageOneAttributes;
|
||||
}
|
||||
}
|
||||
namespace JSXElements {
|
||||
export interface AppCordovaPageOneAttributes extends HTMLAttributes {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
AppCordovaPageTabs as AppCordovaPageTabs
|
||||
} from './components/app/test/cordova/page-tabs';
|
||||
|
||||
declare global {
|
||||
interface HTMLAppCordovaPageTabsElement extends AppCordovaPageTabs, HTMLElement {
|
||||
}
|
||||
var HTMLAppCordovaPageTabsElement: {
|
||||
prototype: HTMLAppCordovaPageTabsElement;
|
||||
new (): HTMLAppCordovaPageTabsElement;
|
||||
};
|
||||
interface HTMLElementTagNameMap {
|
||||
"app-cordova-page-tabs": HTMLAppCordovaPageTabsElement;
|
||||
}
|
||||
interface ElementTagNameMap {
|
||||
"app-cordova-page-tabs": HTMLAppCordovaPageTabsElement;
|
||||
}
|
||||
namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
"app-cordova-page-tabs": JSXElements.AppCordovaPageTabsAttributes;
|
||||
}
|
||||
}
|
||||
namespace JSXElements {
|
||||
export interface AppCordovaPageTabsAttributes extends HTMLAttributes {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
AppCordovaPageThree as AppCordovaPageThree
|
||||
} from './components/app/test/cordova/page-three';
|
||||
|
||||
declare global {
|
||||
interface HTMLAppCordovaPageThreeElement extends AppCordovaPageThree, HTMLElement {
|
||||
}
|
||||
var HTMLAppCordovaPageThreeElement: {
|
||||
prototype: HTMLAppCordovaPageThreeElement;
|
||||
new (): HTMLAppCordovaPageThreeElement;
|
||||
};
|
||||
interface HTMLElementTagNameMap {
|
||||
"app-cordova-page-three": HTMLAppCordovaPageThreeElement;
|
||||
}
|
||||
interface ElementTagNameMap {
|
||||
"app-cordova-page-three": HTMLAppCordovaPageThreeElement;
|
||||
}
|
||||
namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
"app-cordova-page-three": JSXElements.AppCordovaPageThreeAttributes;
|
||||
}
|
||||
}
|
||||
namespace JSXElements {
|
||||
export interface AppCordovaPageThreeAttributes extends HTMLAttributes {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
AppCordovaPageTwo as AppCordovaPageTwo
|
||||
} from './components/app/test/cordova/page-two';
|
||||
|
||||
declare global {
|
||||
interface HTMLAppCordovaPageTwoElement extends AppCordovaPageTwo, HTMLElement {
|
||||
}
|
||||
var HTMLAppCordovaPageTwoElement: {
|
||||
prototype: HTMLAppCordovaPageTwoElement;
|
||||
new (): HTMLAppCordovaPageTwoElement;
|
||||
};
|
||||
interface HTMLElementTagNameMap {
|
||||
"app-cordova-page-two": HTMLAppCordovaPageTwoElement;
|
||||
}
|
||||
interface ElementTagNameMap {
|
||||
"app-cordova-page-two": HTMLAppCordovaPageTwoElement;
|
||||
}
|
||||
namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
"app-cordova-page-two": JSXElements.AppCordovaPageTwoAttributes;
|
||||
}
|
||||
}
|
||||
namespace JSXElements {
|
||||
export interface AppCordovaPageTwoAttributes extends HTMLAttributes {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
Avatar as IonAvatar
|
||||
} from './components/avatar/avatar';
|
||||
|
Reference in New Issue
Block a user