-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: remove all non-bordered input examples #177
- Loading branch information
1 parent
15dbd51
commit 2a42011
Showing
37 changed files
with
55 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
<auro-input></auro-input> | ||
<auro-input bordered></auro-input> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<auro-input required type="credit-card"> | ||
<slot slot="label">Card number</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered required type="credit-card"> | ||
<auro-input type="credit-card" bordered required> | ||
<slot slot="label">Card number</slot> | ||
<slot slot="helptext">Valid credit card numbers must include 16 digits (15 for Amex).</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<auro-input required icon type="credit-card"> | ||
<slot slot="label">Card number</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered required icon type="credit-card"> | ||
<auro-input icon type="credit-card" bordered required> | ||
<slot slot="label">Card number</slot> | ||
<slot slot="helptext">Valid credit card numbers must include 16 digits (15 for Amex).</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
<custom-input></custom-input> | ||
<custom-input bordered></custom-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
<auro-input disabled type="month-day-year" required> | ||
<slot slot="label">Departure date</slot> | ||
</auro-input> | ||
<auro-input disabled bordered type="month-day-year"> | ||
<slot slot="label">Arrival date</slot> | ||
</auro-input> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<auro-input required type="email"> | ||
<slot slot="label">Email address</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered required type="email"> | ||
<auro-input type="email" bordered required> | ||
<slot slot="label">Email address</slot> | ||
<slot slot="helptext">Please enter your email address.</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<auro-button id="setCustomErrorBtn">Set Custom Error</auro-button> | ||
<auro-button id="setCustomErrorClearBtn">Clear Custom Error</auro-button> | ||
|
||
<auro-input id="setCustomErrorExample" error="Initial error attribute value"> | ||
<br /><br /> | ||
<auro-input id="setCustomErrorExample" error="Initial error attribute value" bordered> | ||
<span slot="label">Name</span> | ||
<span slot="helptext">Please enter your full name.</span> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<auro-input type="fullYear"> | ||
<auro-input type="fullYear" bordered> | ||
<slot slot="label">Full Year</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<auro-input type="month-day-year" max="03/25/2023" setCustomValidityRangeOverflow="The selected date is past the defined maximum date."> | ||
<auro-input type="month-day-year" max="03/25/2023" setCustomValidityRangeOverflow="The selected date is past the defined maximum date." bordered> | ||
<span slot="label">Choose a date</span> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
<auro-input required maxlength="12" setCustomValidityTooLong="Oops! There were too many characters entered."> | ||
<slot slot="label">Voucher Code</slot> | ||
<slot slot="helptext">Please enter your 12 character voucher code.</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered required maxlength="12" setCustomValidityTooLong="Oops! There were too many characters entered."> | ||
<auro-input maxlength="12" setCustomValidityTooLong="Oops! There were too many characters entered." bordered required> | ||
<slot slot="label">Voucher Code</slot> | ||
<slot slot="helptext">Please enter your 12 character voucher code.</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<auro-input type="number" max="10" setCustomValidityRangeOverflow="The selected value is above the defined maximum."> | ||
<auro-input type="number" max="10" setCustomValidityRangeOverflow="The selected value is above the defined maximum." bordered> | ||
<span slot="label">Choose a number</span> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<auro-input type="month-day-year" min="03/25/2023" setCustomValidityRangeUnderflow="The selected date is before the defined minimum date."> | ||
<auro-input type="month-day-year" min="03/25/2023" setCustomValidityRangeUnderflow="The selected date is before the defined minimum date." bordered> | ||
<span slot="label">Choose a date</span> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
<auro-input required minlength="4" setCustomValidityTooShort="Please enter a full voucher code."> | ||
<slot slot="label">Voucher Code</slot> | ||
<slot slot="helptext">Please enter your 4 character voucher code.</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered required minlength="4" setCustomValidityTooShort="Please enter a full voucher code."> | ||
<auro-input minlength="4" setCustomValidityTooShort="Please enter a full voucher code." bordered required> | ||
<slot slot="label">Voucher Code</slot> | ||
<slot slot="helptext">Please enter your 4 character voucher code.</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<auro-input type="number" min="10" setCustomValidityRangeUnderflow="The selected value is below the defined minimum."> | ||
<auro-input type="number" min="10" setCustomValidityRangeUnderflow="The selected value is below the defined minimum." bordered> | ||
<span slot="label">Choose a number</span> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<auro-input type="month"> | ||
<auro-input type="month" bordered> | ||
<slot slot="label">Month</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
<auro-input type="month-day-year" required> | ||
<slot slot="label">Departure date</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered type="month-day-year"> | ||
<auro-input type="month-day-year" bordered> | ||
<slot slot="label">Arrival date</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
<auro-input type="month-fullYear"> | ||
<slot slot="label">Departure date</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered type="month-fullYear" required> | ||
<auro-input type="month-fullYear" bordered> | ||
<slot slot="label">Arrival date</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
<auro-input type="month-year"> | ||
<slot slot="label">Departure date</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered type="month-year" required> | ||
<auro-input type="month-year" bordered> | ||
<slot slot="label">Arrival date</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
<auro-input required type="number"> | ||
<slot slot="label">Number of Passengers</slot> | ||
<slot slot="helptext">Please enter the number of passengers.</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered required type="number"> | ||
<auro-input type="number" bordered required> | ||
<slot slot="label">Number of Passengers</slot> | ||
<slot slot="helptext">Please enter the number of passengers.</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
<auro-input pattern="[a-z]{1,15}" spellcheck="false" setCustomValidityPatternMismatch="Only contain lowercase letters w/no spaces"> | ||
<span slot="label">Username</span> | ||
<span slot="helptext">Please enter a username.</span> | ||
</auro-input> | ||
|
||
<auro-input bordered pattern="[a-z]{1,15}" spellcheck="false" setCustomValidityPatternMismatch="Only contain lowercase letters w/no spaces"> | ||
<auro-input pattern="[a-z]{1,15}" spellcheck="false" setCustomValidityPatternMismatch="Only contain lowercase letters w/no spaces" bordered> | ||
<span slot="label">Username</span> | ||
<span slot="helptext">Please enter a username.</span> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<auro-input required placeholder="John Doe"> | ||
<span slot="label">Full name</span> | ||
</auro-input> | ||
|
||
<auro-input required bordered placeholder="John Doe"> | ||
<auro-input placeholder="John Doe" bordered required> | ||
<span slot="label">Full name</span> | ||
<span slot="helptext">Please enter your full name.</span> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<auro-input type="year"> | ||
<auro-input type="year" bordered> | ||
<slot slot="label">Year</slot> | ||
</auro-input> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
<auro-input type="year-month-day" required> | ||
<slot slot="label">Departure date</slot> | ||
</auro-input> | ||
|
||
<auro-input bordered type="year-month-day"> | ||
<auro-input type="year-month-day" bordered> | ||
<slot slot="label">Arrival date</slot> | ||
</auro-input> |
Oops, something went wrong.