-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #701 from catlabs/feature/global-layout
style(docs): integrate the stark layout in all showcase's pages
- Loading branch information
Showing
31 changed files
with
1,724 additions
and
935 deletions.
There are no files selected for viewing
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
27 changes: 16 additions & 11 deletions
27
showcase/src/app/demo/action-bar/action-bar.component.html
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,14 +1,19 @@ | ||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="action-bar/classic-full" | ||
exampleTitle="SHOWCASE.DEMO.ACTION-BAR.CLASSIC-FULL"> | ||
<stark-action-bar actionBarId="classic-full" [actionBarConfig]="actionBarConfig" mode="full"></stark-action-bar> | ||
</example-viewer> | ||
<h1 class="mat-display-3" translate>SHOWCASE.DEMO.ACTION_BAR.TITLE</h1> | ||
<section class="stark-section"> | ||
<h1 translate>SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST</h1> | ||
<div fxFlexLayout="column"> | ||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="action-bar/classic-full" exampleTitle="SHOWCASE.DEMO.ACTION_BAR.CLASSIC-FULL"> | ||
<stark-action-bar actionBarId="classic-full" [actionBarConfig]="actionBarConfig" mode="full"></stark-action-bar> | ||
</example-viewer> | ||
|
||
|
||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="action-bar/classic-compact" | ||
exampleTitle="SHOWCASE.DEMO.ACTION-BAR.CLASSIC-COMPACT"> | ||
<stark-action-bar actionBarId="classic-compact" [actionBarConfig]="actionBarConfig" mode="compact"></stark-action-bar> | ||
</example-viewer> | ||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="action-bar/classic-compact" exampleTitle="SHOWCASE.DEMO.ACTION_BAR.CLASSIC-COMPACT"> | ||
<stark-action-bar actionBarId="classic-compact" [actionBarConfig]="actionBarConfig" mode="compact"></stark-action-bar> | ||
</example-viewer> | ||
|
||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="action-bar/alt" exampleTitle="SHOWCASE.DEMO.ACTION-BAR.ALT"> | ||
<stark-action-bar actionBarId="alt" [actionBarConfig]="actionBarConfig" [alternativeActions]="alternativeActions" mode="compact"></stark-action-bar> | ||
</example-viewer> | ||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="action-bar/alt" exampleTitle="SHOWCASE.DEMO.ACTION_BAR.ALT"> | ||
<stark-action-bar actionBarId="alt" [actionBarConfig]="actionBarConfig" [alternativeActions]="alternativeActions" | ||
mode="compact"></stark-action-bar> | ||
</example-viewer> | ||
</div> | ||
</section> |
21 changes: 13 additions & 8 deletions
21
showcase/src/app/demo/breadcrumb/breadcrumb.component.html
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,14 @@ | ||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="breadcrumb/breadcrumb-config-input" exampleTitle="SHOWCASE.DEMO.BREADCRUMB.CONFIG_INPUT"> | ||
<stark-breadcrumb [breadcrumbConfig]="breadcrumbConfig"> | ||
</stark-breadcrumb> | ||
</example-viewer> | ||
<h1 class="mat-display-3" translate>SHOWCASE.DEMO.BREADCRUMB.TITLE</h1> | ||
<section class="stark-section"> | ||
<h1 translate>SHOWCASE.DEMO.SHARED.EXAMPLE_VIEWER_LIST</h1> | ||
|
||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="breadcrumb/breadcrumb-no-input" exampleTitle="SHOWCASE.DEMO.BREADCRUMB.NO_INPUT"> | ||
<stark-breadcrumb> | ||
</stark-breadcrumb> | ||
</example-viewer> | ||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="breadcrumb/breadcrumb-config-input" exampleTitle="SHOWCASE.DEMO.BREADCRUMB.CONFIG_INPUT"> | ||
<stark-breadcrumb [breadcrumbConfig]="breadcrumbConfig"> | ||
</stark-breadcrumb> | ||
</example-viewer> | ||
|
||
<example-viewer [extensions]="['HTML', 'TS']" filesPath="breadcrumb/breadcrumb-no-input" exampleTitle="SHOWCASE.DEMO.BREADCRUMB.NO_INPUT"> | ||
<stark-breadcrumb> | ||
</stark-breadcrumb> | ||
</example-viewer> | ||
</section> |
Oops, something went wrong.