Skip to content

Commit

Permalink
5.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
skclusive committed Dec 5, 2020
1 parent 7ecc86e commit c70e5e2
Show file tree
Hide file tree
Showing 83 changed files with 234 additions and 72 deletions.
2 changes: 1 addition & 1 deletion AppBar/src/AppBar.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion AppBar/src/Provider/AppBarStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.AppBar
{
public class AppBarStyleProvider : StyleTypeProvider
{
public AppBarStyleProvider() : base(typeof(AppBarStyle))
public AppBarStyleProvider() : base(priority: 280, typeof(AppBarStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Avatar/src/Avatar.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Avatar/src/Provider/AvatarStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Avatar
{
public class AvatarStyleProvider : StyleTypeProvider
{
public AvatarStyleProvider() : base(typeof(AvatarStyle))
public AvatarStyleProvider() : base(priority: 60, typeof(AvatarStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Badge/src/Badge.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Badge/src/Provider/BadgeStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Badge
{
public class BadgeStyleProvider : StyleTypeProvider
{
public BadgeStyleProvider() : base(typeof(BadgeStyle))
public BadgeStyleProvider() : base(priority: 50, typeof(BadgeStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Baseline/src/Baseline.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Baseline/src/Provider/BaselineStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Baseline
{
public class BaselineStyleProvider : StyleTypeProvider
{
public BaselineStyleProvider() : base(typeof(BaselineStyle))
public BaselineStyleProvider() : base(priority: 10, typeof(BaselineStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Button/src/Button.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
1 change: 1 addition & 0 deletions Button/src/Provider/ButtonStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class ButtonStyleProvider : StyleTypeProvider
{
public ButtonStyleProvider() : base
(
priority: 140,
typeof(ButtonBaseStyle),
typeof(FabStyle),
typeof(IconButtonStyle),
Expand Down
2 changes: 1 addition & 1 deletion Card/src/Card.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
1 change: 1 addition & 0 deletions Card/src/Provider/CardStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class CardStyleProvider : StyleTypeProvider
{
public CardStyleProvider() : base
(
priority: 150,
typeof(CardStyle),
typeof(CardContentStyle),
typeof(CardHeaderStyle),
Expand Down
6 changes: 3 additions & 3 deletions Chip/src/Chip.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand All @@ -17,11 +17,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Skclusive.Script.DomHelpers" Version="5.1.2" />
<PackageReference Include="Skclusive.Script.DomHelpers" Version="5.2.0" />
</ItemGroup>

<!-- <ItemGroup>
<ProjectReference Include="..\..\..\Skclusive.Script.DomHelpers\src\DomHelpers.csproj" Version="5.1.2" />
<ProjectReference Include="..\..\..\Skclusive.Script.DomHelpers\src\DomHelpers.csproj" Version="5.2.0" />
</ItemGroup> -->

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Chip/src/Provider/ChipStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Chip
{
public class ChipStyleProvider : StyleTypeProvider
{
public ChipStyleProvider() : base(typeof(ChipStyle))
public ChipStyleProvider() : base(priority: 120, typeof(ChipStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Container/src/Container.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Container/src/Provider/ContainerStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Container
{
public class ContainerStyleProvider : StyleTypeProvider
{
public ContainerStyleProvider() : base(typeof(ContainerStyle))
public ContainerStyleProvider() : base(priority: 20, typeof(ContainerStyle))
{
}
}
Expand Down
6 changes: 3 additions & 3 deletions Core/src/Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand All @@ -17,10 +17,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Skclusive.Core.Component" Version="5.1.2" />
<PackageReference Include="Skclusive.Core.Component" Version="5.2.0" />
</ItemGroup>

<!-- <ItemGroup>
<ProjectReference Include="..\..\..\Skclusive.Core.Component\src\Component.csproj" Version="5.1.2" />
<ProjectReference Include="..\..\..\Skclusive.Core.Component\src\Component.csproj" Version="5.2.0" />
</ItemGroup> -->
</Project>
34 changes: 33 additions & 1 deletion DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
1 - Core
2 - Script (DomHelpers)
2 - Theme
3 - Responsive (just for consitent)
3 - Baseline
3 - Responsive (just for consitent)
3 - Container
3 - Divider
3 - Grid
Expand Down Expand Up @@ -59,3 +59,35 @@
5 - Popover
6 - Menu


Priority:

Baseline: 10
Container: 20
Grid: 30
Divider: 40
Badge: 50
Avatar: 60
Paper: 70
Icon: 80
Form: 90
Toolbar: 100
Typography: 110
Chip: 120
Transition: 130
Button: 140
Card: 150
Progress: 160
Selection: 170
Tab: 180
Table: 190
Link: 200
Modal: 210
Dialog: 220
Drawer: 230
List: 240
Popover: 250
Menu: 260
Input: 270
AppBar: 280
Hidden: 1000
2 changes: 1 addition & 1 deletion Dialog/src/Dialog.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
1 change: 1 addition & 0 deletions Dialog/src/Provider/DialogStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class DialogStyleProvider : StyleTypeProvider
{
public DialogStyleProvider() : base
(
priority: 220,
typeof(DialogStyle),
typeof(DialogActionsStyle),
typeof(DialogContentStyle),
Expand Down
2 changes: 1 addition & 1 deletion Divider/src/Divider.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Divider/src/Provider/DividerStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Divider
{
public class DividerStyleProvider : StyleTypeProvider
{
public DividerStyleProvider() : base(typeof(DividerStyle))
public DividerStyleProvider() : base(priority: 40, typeof(DividerStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Drawer/src/Drawer.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Drawer/src/Provider/DrawerStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Drawer
{
public class DrawerStyleProvider : StyleTypeProvider
{
public DrawerStyleProvider() : base(typeof(DrawerStyle))
public DrawerStyleProvider() : base(priority: 230, typeof(DrawerStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Form/src/Form.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
1 change: 1 addition & 0 deletions Form/src/Provider/FormStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class FormStyleProvider : StyleTypeProvider
{
public FormStyleProvider() : base
(
priority: 90,
typeof(FormControlStyle),
typeof(FormControlLabelStyle),
typeof(FormGroupStyle),
Expand Down
2 changes: 1 addition & 1 deletion Grid/src/Grid.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Grid/src/Provider/GridStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Grid
{
public class GridStyleProvider : StyleTypeProvider
{
public GridStyleProvider() : base(typeof(GridStyle))
public GridStyleProvider() : base(priority: 30, typeof(GridStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Hidden/src/Hidden.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Hidden/src/Provider/HiddenStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Hidden
{
public class HiddenStyleProvider : StyleTypeProvider
{
public HiddenStyleProvider() : base(typeof(HiddenStyle))
public HiddenStyleProvider() : base(priority: 1000, typeof(HiddenStyle))
{
}
}
Expand Down
2 changes: 1 addition & 1 deletion Icon/src/Icon.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Icon/src/Provider/IconStyleProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Skclusive.Material.Icon
{
public class IconStyleProvider : StyleTypeProvider
{
public IconStyleProvider() : base(typeof(SvgIconStyle))
public IconStyleProvider() : base(priority: 80, typeof(SvgIconStyle))
{
}
}
Expand Down
2 changes: 2 additions & 0 deletions Input/src/FilledInput/FilledInput.razor
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
Disabled="@Disabled"
AutoComplete="@AutoComplete"
AutoFocus="@AutoFocus"
AutoCorrect="@AutoCorrect"
AutoCapitalize="@AutoCapitalize"
DefaultValue="@DefaultValue"
FullWidth="@FullWidth"
InputComponent="@Component"
Expand Down
12 changes: 12 additions & 0 deletions Input/src/FilledInput/FilledInput.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ public FilledInput() : base("FilledInput")
[Parameter]
public bool AutoFocus { set; get; }

/// <summary>
/// safari `AutoCorrect` for this component.
/// </summary>
[Parameter]
public bool AutoCorrect { set; get; }

/// <summary>
/// safari `AutoCapitalize` for this component.
/// </summary>
[Parameter]
public bool AutoCapitalize { set; get; }

/// <summary>
/// The default <c>input</c> element value. Use when the component is not controlled.
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions Input/src/Input.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
Expand All @@ -17,11 +17,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Skclusive.Script.DomHelpers" Version="5.1.2" />
<PackageReference Include="Skclusive.Script.DomHelpers" Version="5.2.0" />
</ItemGroup>

<!-- <ItemGroup>
<ProjectReference Include="..\..\..\Skclusive.Script.DomHelpers\src\DomHelpers.csproj" Version="5.1.2" />
<ProjectReference Include="..\..\..\Skclusive.Script.DomHelpers\src\DomHelpers.csproj" Version="5.2.0" />
</ItemGroup> -->

<ItemGroup>
Expand Down
Loading

0 comments on commit c70e5e2

Please sign in to comment.