-
Notifications
You must be signed in to change notification settings - Fork 70
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
8 changed files
with
265 additions
and
0 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,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Bootstrap</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Bootstrap</title> | ||
<description>Bootstrap inspired theme for Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<dependency id="Telerik.KendoThemes.Core" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Utils" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Default" version="[$VERSION$]" /> | ||
<dependency id="bootstrap.sass" version="[5.2.1]" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |
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,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Classic</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Classic</title> | ||
<description>Sass port of less based themes for Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<dependency id="Telerik.KendoThemes.Core" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Utils" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Default" version="[$VERSION$]" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |
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,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Core</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Core</title> | ||
<description>A collection of functions and mixins used for building themes for Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |
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,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Default</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Default</title> | ||
<description>The default theme for Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<dependency id="Telerik.KendoThemes.Core" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Utils" version="[$VERSION$]" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |
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,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Fluent</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Fluent</title> | ||
<description>Microsoft Fluent inspired theme for Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<dependency id="Telerik.KendoThemes.Core" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Utils" version="[$VERSION$]" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |
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,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Material</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Material</title> | ||
<description>Material Design inspired theme for Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<dependency id="Telerik.KendoThemes.Core" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Utils" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Default" version="[$VERSION$]" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |
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,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Nouvelle</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Nouvelle</title> | ||
<description>A css variables heavy theme for Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<dependency id="Telerik.KendoThemes.Core" version="[$VERSION$]" /> | ||
<dependency id="Telerik.KendoThemes.Utils" version="[$VERSION$]" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |
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,32 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Telerik.KendoThemes.Utils</id> | ||
<version>$VERSION$</version> | ||
<title>Kendo Theme Utils</title> | ||
<description>Utility first library alongside Kendo UI, Telerik UI for Blazor, MVC and Core</description> | ||
<authors>Progress</authors> | ||
<owners>Progress</owners> | ||
<readme>README.md</readme> | ||
<projectUrl>https://github.com/telerik/kendo-themes</projectUrl> | ||
<repository type="git" url="https://github.com/telerik/kendo-themes" /> | ||
<license type="expression">Apache-2.0</license> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<copyright>Copyright © 2022 Progress Software Corporation</copyright> | ||
<contentFiles> | ||
<files include="any/any/wwwroot/css/*.css" buildAction="Content" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<dependency id="Telerik.KendoThemes.Core" version="[$VERSION$]" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="README.md" target="" /> | ||
<file src="CHANGELOG.md" target="" /> | ||
<file src="LICENSE.md" target="" /> | ||
<file src="dist/*.scss" target="content/dist" /> | ||
<file src="scss/**/*.scss" target="content/scss" /> | ||
|
||
<file src="dist/*.css" exclude="dist/all.css" target="contentFiles/any/any/wwwroot/css" /> | ||
</files> | ||
</package> |