mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
docs(input): update documentation and add usage
This commit is contained in:
43
core/src/components/input/usage/angular.md
Normal file
43
core/src/components/input/usage/angular.md
Normal file
@@ -0,0 +1,43 @@
|
||||
```html
|
||||
<!-- Default Input -->
|
||||
<ion-input></ion-input>
|
||||
|
||||
<!-- Input with value -->
|
||||
<ion-input value="custom"></ion-input>
|
||||
|
||||
<!-- Input with placeholder -->
|
||||
<ion-input placeholder="Enter Input"></ion-input>
|
||||
|
||||
<!-- Input with clear button when there is a value -->
|
||||
<ion-input clearInput value="clear me"></ion-input>
|
||||
|
||||
<!-- Number type input -->
|
||||
<ion-input type="number" value="333"></ion-input>
|
||||
|
||||
<!-- Disabled input -->
|
||||
<ion-input value="Disabled" disabled></ion-input>
|
||||
|
||||
<!-- Readonly input -->
|
||||
<ion-input value="Readonly" readonly></ion-input>
|
||||
|
||||
<!-- Inputs with labels -->
|
||||
<ion-item>
|
||||
<ion-label>Default Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
|
||||
<ion-item>
|
||||
<ion-label position="floating">Floating Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
|
||||
<ion-item>
|
||||
<ion-label position="fixed">Fixed Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
|
||||
<ion-item>
|
||||
<ion-label position="stacked">Stacked Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
```
|
||||
43
core/src/components/input/usage/javascript.md
Normal file
43
core/src/components/input/usage/javascript.md
Normal file
@@ -0,0 +1,43 @@
|
||||
```html
|
||||
<!-- Default Input -->
|
||||
<ion-input></ion-input>
|
||||
|
||||
<!-- Input with value -->
|
||||
<ion-input value="custom"></ion-input>
|
||||
|
||||
<!-- Input with placeholder -->
|
||||
<ion-input placeholder="Enter Input"></ion-input>
|
||||
|
||||
<!-- Input with clear button when there is a value -->
|
||||
<ion-input clear-input value="clear me"></ion-input>
|
||||
|
||||
<!-- Number type input -->
|
||||
<ion-input type="number" value="333"></ion-input>
|
||||
|
||||
<!-- Disabled input -->
|
||||
<ion-input value="Disabled" disabled></ion-input>
|
||||
|
||||
<!-- Readonly input -->
|
||||
<ion-input value="Readonly" readonly></ion-input>
|
||||
|
||||
<!-- Inputs with labels -->
|
||||
<ion-item>
|
||||
<ion-label>Default Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
|
||||
<ion-item>
|
||||
<ion-label position="floating">Floating Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
|
||||
<ion-item>
|
||||
<ion-label position="fixed">Fixed Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
|
||||
<ion-item>
|
||||
<ion-label position="stacked">Stacked Label</ion-label>
|
||||
<ion-input></ion-input>
|
||||
</ion-item>
|
||||
```
|
||||
Reference in New Issue
Block a user