Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update packages #5

Merged
merged 15 commits into from
Dec 23, 2023
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks>net7.0;net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
Expand All @@ -17,7 +17,7 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>

<Authors>EasyMicroservices</Authors>
<Version>0.0.0.1</Version>
<Version>0.0.0.2</Version>
<Description>maui kits</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>maui,kit,kits,component,components,ui,uiframework</PackageTags>
Expand All @@ -39,12 +39,54 @@
<MauiXaml Update="Controls\MaterialButton.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\AmberColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\BlueColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\CyanColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\DeepOrangeColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\DeepPurpleColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\GreenColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\IndigoColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\LightBlueColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\LightGreenColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\LimeColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\OrangeColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\PinkColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\PurpleColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\RedColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\TealColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\YellowColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Styles\ButtonStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.AmberColorStyle">
<Color x:Key="PrimaryColor">#FFC107</Color>
<Color x:Key="Lighten5">#FFF8E1</Color>
<Color x:Key="Lighten4">#FFECB3</Color>
<Color x:Key="Lighten3">#FFE082</Color>
<Color x:Key="Lighten2">#FFD54F</Color>
<Color x:Key="Lighten1">#FFCA28</Color>
<Color x:Key="Darken1">#FFB300</Color>
<Color x:Key="Darken2">#FFA000</Color>
<Color x:Key="Darken3">#FF8F00</Color>
<Color x:Key="Darken4">#FF6F00</Color>
<Color x:Key="Accent1">#FFE57F</Color>
<Color x:Key="Accent2">#FFD740</Color>
<Color x:Key="Accent3">#FFC400</Color>
<Color x:Key="Accent4">#FFAB00</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class AmberColorStyle : ResourceDictionary
{
public AmberColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.CyanColorStyle">
<Color x:Key="PrimaryColor">#00BCD4</Color>
<Color x:Key="Lighten5">#E0F7FA</Color>
<Color x:Key="Lighten4">#B2EBF2</Color>
<Color x:Key="Lighten3">#80DEEA</Color>
<Color x:Key="Lighten2">#4DD0E1</Color>
<Color x:Key="Lighten1">#26C6DA</Color>
<Color x:Key="Darken1">#00ACC1</Color>
<Color x:Key="Darken2">#0097A7</Color>
<Color x:Key="Darken3">#00838F</Color>
<Color x:Key="Darken4">#006064</Color>
<Color x:Key="Accent1">#84FFFF</Color>
<Color x:Key="Accent2">#18FFFF</Color>
<Color x:Key="Accent3">#00E5FF</Color>
<Color x:Key="Accent4">#00B8D4</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class CyanColorStyle : ResourceDictionary
{
public CyanColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.DeepOrangeColorStyle">
<Color x:Key="PrimaryColor">#FF5722</Color>
<Color x:Key="Lighten5">#FBE9E7</Color>
<Color x:Key="Lighten4">#FFCCBC</Color>
<Color x:Key="Lighten3">#FFAB91</Color>
<Color x:Key="Lighten2">#FF8A65</Color>
<Color x:Key="Lighten1">#FF7043</Color>
<Color x:Key="Darken1">#F4511E</Color>
<Color x:Key="Darken2">#E64A19</Color>
<Color x:Key="Darken3">#D84315</Color>
<Color x:Key="Darken4">#BF360C</Color>
<Color x:Key="Accent1">#FF9E80</Color>
<Color x:Key="Accent2">#FF6E40</Color>
<Color x:Key="Accent3">#FF3D00</Color>
<Color x:Key="Accent4">#DD2C00</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class DeepOrangeColorStyle : ResourceDictionary
{
public DeepOrangeColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.DeepPurpleColorStyle">
<Color x:Key="PrimaryColor">#673AB7</Color>
<Color x:Key="Lighten5">#EDE7F6</Color>
<Color x:Key="Lighten4">#D1C4E9</Color>
<Color x:Key="Lighten3">#B39DDB</Color>
<Color x:Key="Lighten2">#9575CD</Color>
<Color x:Key="Lighten1">#7E57C2</Color>
<Color x:Key="Darken1">#5E35B1</Color>
<Color x:Key="Darken2">#512DA8</Color>
<Color x:Key="Darken3">#4527A0</Color>
<Color x:Key="Darken4">#311B92</Color>
<Color x:Key="Accent1">#B388FF</Color>
<Color x:Key="Accent2">#7C4DFF</Color>
<Color x:Key="Accent3">#651FFF</Color>
<Color x:Key="Accent4">#6200EA</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class DeepPurpleColorStyle : ResourceDictionary
{
public DeepPurpleColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.GreenColorStyle">
<Color x:Key="PrimaryColor">#4CAF50</Color>
<Color x:Key="Lighten5">#E8F5E9</Color>
<Color x:Key="Lighten4">#C8E6C9</Color>
<Color x:Key="Lighten3">#A5D6A7</Color>
<Color x:Key="Lighten2">#81C784</Color>
<Color x:Key="Lighten1">#66BB6A</Color>
<Color x:Key="Darken1">#43A047</Color>
<Color x:Key="Darken2">#388E3C</Color>
<Color x:Key="Darken3">#2E7D32</Color>
<Color x:Key="Darken4">#1B5E20</Color>
<Color x:Key="Accent1">#B9F6CA</Color>
<Color x:Key="Accent2">#69F0AE</Color>
<Color x:Key="Accent3">#00E676</Color>
<Color x:Key="Accent4">#00C853</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class GreenColorStyle : ResourceDictionary
{
public GreenColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.IndigoColorStyle">
<Color x:Key="PrimaryColor">#3F51B5</Color>
<Color x:Key="Lighten5">#E8EAF6</Color>
<Color x:Key="Lighten4">#C5CAE9</Color>
<Color x:Key="Lighten3">#9FA8DA</Color>
<Color x:Key="Lighten2">#7986CB</Color>
<Color x:Key="Lighten1">#5C6BC0</Color>
<Color x:Key="Darken1">#3949AB</Color>
<Color x:Key="Darken2">#303F9F</Color>
<Color x:Key="Darken3">#283593</Color>
<Color x:Key="Darken4">#1A237E</Color>
<Color x:Key="Accent1">#8C9EFF</Color>
<Color x:Key="Accent2">#536DFE</Color>
<Color x:Key="Accent3">#3D5AFE</Color>
<Color x:Key="Accent4">#304FFE</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class IndigoColorStyle : ResourceDictionary
{
public IndigoColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.LightBlueColorStyle">
<Color x:Key="PrimaryColor">#03A9F4</Color>
<Color x:Key="Lighten5">#E1F5FE</Color>
<Color x:Key="Lighten4">#B3E5FC</Color>
<Color x:Key="Lighten3">#81D4FA</Color>
<Color x:Key="Lighten2">#4FC3F7</Color>
<Color x:Key="Lighten1">#29B6F6</Color>
<Color x:Key="Darken1">#039BE5</Color>
<Color x:Key="Darken2">#0288D1</Color>
<Color x:Key="Darken3">#0277BD</Color>
<Color x:Key="Darken4">#01579B</Color>
<Color x:Key="Accent1">#80D8FF</Color>
<Color x:Key="Accent2">#40C4FF</Color>
<Color x:Key="Accent3">#00B0FF</Color>
<Color x:Key="Accent4">#0091EA</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class LightBlueColorStyle : ResourceDictionary
{
public LightBlueColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.LightGreenColorStyle">
<Color x:Key="PrimaryColor">#8BC34A</Color>
<Color x:Key="Lighten5">#F1F8E9</Color>
<Color x:Key="Lighten4">#DCEDC8</Color>
<Color x:Key="Lighten3">#C5E1A5</Color>
<Color x:Key="Lighten2">#AED581</Color>
<Color x:Key="Lighten1">#9CCC65</Color>
<Color x:Key="Darken1">#7CB342</Color>
<Color x:Key="Darken2">#689F38</Color>
<Color x:Key="Darken3">#558B2F</Color>
<Color x:Key="Darken4">#33691E</Color>
<Color x:Key="Accent1">#CCFF90</Color>
<Color x:Key="Accent2">#B2FF59</Color>
<Color x:Key="Accent3">#76FF03</Color>
<Color x:Key="Accent4">#64DD17</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class LightGreenColorStyle : ResourceDictionary
{
public LightGreenColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.LimeColorStyle">
<Color x:Key="PrimaryColor">#CDDC39</Color>
<Color x:Key="Lighten5">#F9FBE7</Color>
<Color x:Key="Lighten4">#F0F4C3</Color>
<Color x:Key="Lighten3">#E6EE9C</Color>
<Color x:Key="Lighten2">#DCE775</Color>
<Color x:Key="Lighten1">#D4E157</Color>
<Color x:Key="Darken1">#C0CA33</Color>
<Color x:Key="Darken2">#AFB42B</Color>
<Color x:Key="Darken3">#9E9D24</Color>
<Color x:Key="Darken4">#827717</Color>
<Color x:Key="Accent1">#F4FF81</Color>
<Color x:Key="Accent2">#EEFF41</Color>
<Color x:Key="Accent3">#C6FF00</Color>
<Color x:Key="Accent4">#AEEA00</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class LimeColorStyle : ResourceDictionary
{
public LimeColorStyle()
{
InitializeComponent();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.OrangeColorStyle">
<Color x:Key="PrimaryColor">#FF9800</Color>
<Color x:Key="Lighten5">#FFF3E0</Color>
<Color x:Key="Lighten4">#FFE0B2</Color>
<Color x:Key="Lighten3">#FFCC80</Color>
<Color x:Key="Lighten2">#FFB74D</Color>
<Color x:Key="Lighten1">#FFA726</Color>
<Color x:Key="Darken1">#FB8C00</Color>
<Color x:Key="Darken2">#F57C00</Color>
<Color x:Key="Darken3">#EF6C00</Color>
<Color x:Key="Darken4">#E65100</Color>
<Color x:Key="Accent1">#FFD180</Color>
<Color x:Key="Accent2">#FFAB40</Color>
<Color x:Key="Accent3">#FF9100</Color>
<Color x:Key="Accent4">#FF6D00</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class OrangeColorStyle : ResourceDictionary
{
public OrangeColorStyle()
{
InitializeComponent();
}
}
Loading
Loading