mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
docs(demos): form section outline
This commit is contained in:
26
demos/component-docs/forms/fixed-inline.html
Normal file
26
demos/component-docs/forms/fixed-inline.html
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<ion-navbar *navbar>
|
||||||
|
<ion-title>Fixed Labels</ion-title>
|
||||||
|
</ion-navbar>
|
||||||
|
|
||||||
|
<ion-content class="has-header components-demo">
|
||||||
|
|
||||||
|
<ion-list>
|
||||||
|
|
||||||
|
<ion-input fixed-label>
|
||||||
|
<ion-label>Username</ion-label>
|
||||||
|
<input type="text" value="">
|
||||||
|
</ion-input>
|
||||||
|
|
||||||
|
<ion-input fixed-label>
|
||||||
|
<ion-label>Password</ion-label>
|
||||||
|
<input type="password" value="">
|
||||||
|
</ion-input>
|
||||||
|
|
||||||
|
</ion-list>
|
||||||
|
|
||||||
|
<div padding>
|
||||||
|
<button primary block>Sign In</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</ion-content>
|
7
demos/component-docs/forms/floating.html
Normal file
7
demos/component-docs/forms/floating.html
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<ion-navbar *navbar>
|
||||||
|
<ion-title>Floating Labels</ion-title>
|
||||||
|
</ion-navbar>
|
||||||
|
|
||||||
|
<ion-content padding class="has-header components-demo">
|
||||||
|
|
||||||
|
</ion-content>
|
@ -23,3 +23,60 @@ export class FormsPage {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Page({
|
||||||
|
templateUrl: 'forms/fixed-inline.html',
|
||||||
|
})
|
||||||
|
export class FixedInlinePage {
|
||||||
|
constructor() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Page({
|
||||||
|
templateUrl: 'forms/floating.html',
|
||||||
|
})
|
||||||
|
export class FloatingPage {
|
||||||
|
constructor() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Page({
|
||||||
|
templateUrl: 'forms/inline.html',
|
||||||
|
})
|
||||||
|
export class InlinePage {
|
||||||
|
constructor() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Page({
|
||||||
|
templateUrl: 'forms/inset.html',
|
||||||
|
})
|
||||||
|
export class InsetPage {
|
||||||
|
constructor() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Page({
|
||||||
|
templateUrl: 'forms/placeholder.html',
|
||||||
|
})
|
||||||
|
export class PlaceholderPage {
|
||||||
|
constructor() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Page({
|
||||||
|
templateUrl: 'forms/stacked.html',
|
||||||
|
})
|
||||||
|
export class StackedPage {
|
||||||
|
constructor() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
7
demos/component-docs/forms/inline.html
Normal file
7
demos/component-docs/forms/inline.html
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<ion-navbar *navbar>
|
||||||
|
<ion-title>Inline Labels</ion-title>
|
||||||
|
</ion-navbar>
|
||||||
|
|
||||||
|
<ion-content padding class="has-header components-demo">
|
||||||
|
|
||||||
|
</ion-content>
|
7
demos/component-docs/forms/inset.html
Normal file
7
demos/component-docs/forms/inset.html
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<ion-navbar *navbar>
|
||||||
|
<ion-title>Inset Labels</ion-title>
|
||||||
|
</ion-navbar>
|
||||||
|
|
||||||
|
<ion-content padding class="has-header components-demo">
|
||||||
|
|
||||||
|
</ion-content>
|
7
demos/component-docs/forms/placeholder.html
Normal file
7
demos/component-docs/forms/placeholder.html
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<ion-navbar *navbar>
|
||||||
|
<ion-title>Placeholders</ion-title>
|
||||||
|
</ion-navbar>
|
||||||
|
|
||||||
|
<ion-content padding class="has-header components-demo">
|
||||||
|
|
||||||
|
</ion-content>
|
7
demos/component-docs/forms/stacked.html
Normal file
7
demos/component-docs/forms/stacked.html
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<ion-navbar *navbar>
|
||||||
|
<ion-title>Stacked Labels</ion-title>
|
||||||
|
</ion-navbar>
|
||||||
|
|
||||||
|
<ion-content padding class="has-header components-demo">
|
||||||
|
|
||||||
|
</ion-content>
|
@ -12,7 +12,15 @@ import {ButtonsPage,
|
|||||||
ButtonsInComponentsPage} from './buttons/buttons';
|
ButtonsInComponentsPage} from './buttons/buttons';
|
||||||
|
|
||||||
import {CardsPage} from './cards/cards';
|
import {CardsPage} from './cards/cards';
|
||||||
import {FormsPage} from './forms/forms';
|
|
||||||
|
import {FormsPage,
|
||||||
|
FixedInlinePage,
|
||||||
|
FloatingPage,
|
||||||
|
InlinePage,
|
||||||
|
InsetPage,
|
||||||
|
PlaceholderPage,
|
||||||
|
StackedPage} from './forms/forms';
|
||||||
|
|
||||||
import {IconsPage} from './icons/icons';
|
import {IconsPage} from './icons/icons';
|
||||||
import {ListsPage} from './lists/lists';
|
import {ListsPage} from './lists/lists';
|
||||||
import {MenusPage} from './menus/menus';
|
import {MenusPage} from './menus/menus';
|
||||||
@ -41,7 +49,15 @@ export function getPageFor(hash) {
|
|||||||
'button-sizes': ButtonSizesPage,
|
'button-sizes': ButtonSizesPage,
|
||||||
'icon-buttons': IconButtonsPage,
|
'icon-buttons': IconButtonsPage,
|
||||||
'cards': CardsPage,
|
'cards': CardsPage,
|
||||||
|
|
||||||
'forms': FormsPage,
|
'forms': FormsPage,
|
||||||
|
'fixed-inline-labels': FixedInlinePage,
|
||||||
|
'floating-labels': FloatingPage,
|
||||||
|
'inline-labels': InlinePage,
|
||||||
|
'inset-labels': InsetPage,
|
||||||
|
'placeholder-labels': PlaceholderPage,
|
||||||
|
'stacked-labels': StackedPage,
|
||||||
|
|
||||||
'icons': IconsPage,
|
'icons': IconsPage,
|
||||||
'lists': ListsPage,
|
'lists': ListsPage,
|
||||||
'menus': MenusPage,
|
'menus': MenusPage,
|
||||||
|
Reference in New Issue
Block a user