-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'adjust-spacing-utilities'
- Loading branch information
Showing
29 changed files
with
272 additions
and
73 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
Large diffs are not rendered by default.
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
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,2 +1,10 @@ | ||
<GDebug data={['one', 'two', 'three']} showInProd /> | ||
<GDebug title="Custom Title" data={['one', 'two', 'three']} class="mb-0" showInProd /> | ||
<GDebug | ||
data={['one', 'two', 'three']} | ||
showInProd | ||
/> | ||
<GDebug | ||
title="Custom Title" | ||
data={['one', 'two', 'three']} | ||
class="mb-0" | ||
showInProd | ||
/> |
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,5 @@ | ||
<GDebug data={['one', 'two', 'three']} /> | ||
<GDebug data={['four', 'five', 'six']} showInProd /> | ||
<GDebug | ||
data={['four', 'five', 'six']} | ||
showInProd | ||
/> |
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,2 +1,2 @@ | ||
<GDevNote>This only shows up in Dev Mode.</GDevNote> | ||
<GDevNote showInProd>This shows up in Dev and Prod.</GDevNote> | ||
<GDevNote showInProd>This shows up in Dev and Prod.</GDevNote> |
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,15 @@ | ||
<div class="vstack"> | ||
<GIcon name="home" /> | ||
|
||
<GIcon name="table" size={2} /> | ||
<GIcon | ||
name="table" | ||
size={2} | ||
/> | ||
|
||
<span class="text-secondary"><GIcon name="poll" size={5.5} /></span> | ||
<span class="text-secondary" | ||
><GIcon | ||
name="poll" | ||
size={5.5} | ||
/></span | ||
> | ||
</div> |
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
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,10 +1,32 @@ | ||
<div class="vstack"> | ||
<GTextInput label="Basic Input" /> | ||
<GTextInput label="Hidden Label" hideLabel /> | ||
<GTextInput label="Required" required /> | ||
<GTextInput label="Placeholder" placeholder="Here is a placeholder" /> | ||
<GTextInput label="Number" type="number" /> | ||
<GTextInput label="Disabled" disabled /> | ||
<GTextInput label="Readonly" readonly value="Foo" /> | ||
<GTextInput label="Hint" hint="This is helper text." /> | ||
</div> | ||
<GTextInput | ||
label="Hidden Label" | ||
hideLabel | ||
/> | ||
<GTextInput | ||
label="Required" | ||
required | ||
/> | ||
<GTextInput | ||
label="Placeholder" | ||
placeholder="Here is a placeholder" | ||
/> | ||
<GTextInput | ||
label="Number" | ||
type="number" | ||
/> | ||
<GTextInput | ||
label="Disabled" | ||
disabled | ||
/> | ||
<GTextInput | ||
label="Readonly" | ||
readonly | ||
value="Foo" | ||
/> | ||
<GTextInput | ||
label="Hint" | ||
hint="This is helper text." | ||
/> | ||
</div> |
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
Oops, something went wrong.