Skip to content

Commit

Permalink
1.0.0-preview8-04
Browse files Browse the repository at this point in the history
  • Loading branch information
chanan committed Aug 19, 2019
1 parent 4736aa4 commit 2ea8ea6
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions docs/_content/SampleCore/compose1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Styled @bind-Classname="@grey">
label: grey;
background-color: grey;
</Styled>

<Styled @bind-Classname="@bigFont">
label: big-font;
font-size: 32px;
</Styled>

<Styled @bind-Classname="@div" Compose1="@grey" Compose2="@bigFont" Compose2If="@_showBig" />

<div class="@div">
Some text
</div>

<button @onclick="@onclick">Toggle Font Size</button>

@code {
private string div, grey, bigFont;
private bool _showBig = false;

private void onclick()
{
_showBig = !_showBig;
}
}
Binary file modified docs/_framework/_bin/BlazorPrettyCode.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/BlazorStyled.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/BlazorStyled.pdb
Binary file not shown.
Binary file modified docs/_framework/_bin/BlazorTypography.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/ClientSideSample.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/ClientSideSample.pdb
Binary file not shown.
Binary file modified docs/_framework/_bin/Mono.Security.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/SampleCore.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/SampleCore.pdb
Binary file not shown.
Binary file modified docs/_framework/_bin/System.Core.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/System.Net.Http.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/System.dll
Binary file not shown.
Binary file modified docs/_framework/_bin/mscorlib.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions src/SampleCore/SampleCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BlazorPrettyCode" Version="1.0.0-preview8-03" />
<PackageReference Include="BlazorTypography" Version="1.0.0-preview8-02" />
<PackageReference Include="BlazorPrettyCode" Version="1.0.0-preview8-04" />
<PackageReference Include="BlazorTypography" Version="1.0.0-preview8-03" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.0.0-preview8.19405.7" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.0.0-preview8.19405.7" />
<PackageReference Include="Polished" Version="1.0.0-preview-02" />
Expand Down

0 comments on commit 2ea8ea6

Please sign in to comment.