-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
74 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<Styled GlobalStyle="ColorHotPink"> | ||
label: color-hotpink; | ||
color: hotpink; | ||
</Styled> |
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 @@ | ||
@inject IStyled Styled | ||
|
||
<p class="@Styled.GlobalStyles[" ColorHotPink"]"> | ||
This paragraph is hot pink because the it uses a global style that defines it to be hot pink. | ||
</p> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.AspNetCore.Components.Web.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.AspNetCore.Components.Web.dll.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.AspNetCore.Components.WebAssembly.dll
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
docs/_framework/_bin/Microsoft.AspNetCore.Components.WebAssembly.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.Configuration.Abstractions.dll
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
docs/_framework/_bin/Microsoft.Extensions.Configuration.Abstractions.dll.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.Configuration.dll
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
docs/_framework/_bin/Microsoft.Extensions.Configuration.dll.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.DependencyInjection.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.DependencyInjection.dll.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.Logging.Abstractions.dll
Binary file not shown.
Binary file modified
BIN
-2 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.Logging.Abstractions.dll.gz
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/Microsoft.Extensions.Primitives.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/System.Runtime.CompilerServices.Unsafe.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_framework/_bin/System.Runtime.CompilerServices.Unsafe.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
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,38 @@ | ||
@page "/whatsNew" | ||
|
||
<h1>What's New</h1> | ||
|
||
<dl> | ||
<dt>Version 2.2.0 3/14/2020</dt> | ||
<dd> | ||
<ul> | ||
<li>Added <a href="/globalStyles">GlobalStyles</a></li> | ||
</ul> | ||
</dd> | ||
<dt>Version 2.1.0 3/12/2020</dt> | ||
<dd> | ||
<ul> | ||
<li>Upgraded to WebAssembly 3.2 preview2</li> | ||
</ul> | ||
</dd> | ||
<dt>Version 2.0.0 3/9/2020</dt> | ||
<dd> | ||
<h4>Breaking Changes</h4> | ||
<ul> | ||
<li>Setup: No need for tags in the head anymore. Remove them all. Only setup needed is register the services (<code>AddBlazorStyled</code>)</li> | ||
<li>Themes API changes: Set theme values using <code>IStyled.SetThemeValue</code></li> | ||
<li>Themes API changes: Get all values using <code>IStyled.GetThemeValues</code></li> | ||
</ul> | ||
<h4>Other Changes</h4> | ||
<ul> | ||
<li>Each Stylesheet id (<code>WithId</code>) now has its own style tag in the head</li> | ||
<li>Compose now returns a list of classes instead of creating a new class with all the rules of the composed classes</li> | ||
<li> | ||
You can now put rules directly in the | ||
<code><Styled>...</Styled></code> tag when composing that serve as the basis for the all the classes being composed | ||
</li> | ||
<li>A bug was fixed where a class with just a label caused an exception</li> | ||
</ul> | ||
</dd> | ||
</dl> | ||
|
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