-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'spike-BUTTON-LINK-CTA-main' into spike-link-inline
# Conflicts: # packages/components/tests/dummy/app/templates/index.hbs
- Loading branch information
Showing
12 changed files
with
284 additions
and
226 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Route from '@ember/routing/route'; | ||
|
||
export default class ComponentsRoute extends Route {} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Route from '@ember/routing/route'; | ||
|
||
export default class ContentRoute extends Route {} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Route from '@ember/routing/route'; | ||
|
||
export default class FoundationsRoute extends Route {} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Route from '@ember/routing/route'; | ||
|
||
export default class UtilitiesRoute extends Route {} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{{page-title "Components"}} | ||
|
||
<main id="main" class="dummy-main"> | ||
{{outlet}} | ||
</main> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{{page-title "Content"}} | ||
|
||
<main id="main" class="dummy-main"> | ||
{{outlet}} | ||
</main> |
5 changes: 5 additions & 0 deletions
5
packages/components/tests/dummy/app/templates/foundations.hbs
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{{page-title "Foundations"}} | ||
|
||
<main id="main" class="dummy-main"> | ||
{{outlet}} | ||
</main> |
222 changes: 112 additions & 110 deletions
222
packages/components/tests/dummy/app/templates/index.hbs
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,110 +1,112 @@ | ||
<h2 class="dummy-h2"> | ||
Foundations: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.tokens"> | ||
Design tokens | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.colors"> | ||
Colors | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.typography"> | ||
Typography | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.elevation"> | ||
Elevation | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.focus-ring"> | ||
Focus ring | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
<h2 class="dummy-h2"> | ||
Components: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.alert"> | ||
Alert | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.badge"> | ||
Badge | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.breadcrumb"> | ||
Breadcrumb | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.button"> | ||
Button | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.card"> | ||
Card | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.dropdown"> | ||
Dropdown | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.icon-tile"> | ||
IconTile | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.link.inline"> | ||
Link::Inline | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.link.standalone"> | ||
Link::Standalone | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.toast"> | ||
Toast | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
<h2 class="dummy-h2"> | ||
Utilities: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="utilities.disclosure"> | ||
Disclosure | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="utilities.interactive"> | ||
Interactive | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
<h2 class="dummy-h2"> | ||
Content: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="content.writing-guidelines"> | ||
🚧 Writing guidelines | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
<main id="main" class="dummy-main"> | ||
<h2 class="dummy-h2"> | ||
Foundations: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.tokens"> | ||
Design tokens | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.colors"> | ||
Colors | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.typography"> | ||
Typography | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.elevation"> | ||
Elevation | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="foundations.focus-ring"> | ||
Focus ring | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
<h2 class="dummy-h2"> | ||
Components: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.alert"> | ||
Alert | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.badge"> | ||
Badge | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.breadcrumb"> | ||
Breadcrumb | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.button"> | ||
Button | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.card"> | ||
Card | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.dropdown"> | ||
Dropdown | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.icon-tile"> | ||
IconTile | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.link.inline"> | ||
Link::Inline | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.link.standalone"> | ||
Link::Standalone | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="components.toast"> | ||
Toast | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
<h2 class="dummy-h2"> | ||
Utilities: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="utilities.disclosure"> | ||
Disclosure | ||
</LinkTo> | ||
</li> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="utilities.interactive"> | ||
Interactive | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
<h2 class="dummy-h2"> | ||
Content: | ||
</h2> | ||
<ol> | ||
<li class="dummy-paragraph"> | ||
<LinkTo @route="content.writing-guidelines"> | ||
🚧 Writing guidelines | ||
</LinkTo> | ||
</li> | ||
</ol> | ||
</main> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{{page-title "Utilities"}} | ||
|
||
<main id="main" class="dummy-main"> | ||
{{outlet}} | ||
</main> |
Oops, something went wrong.