Skip to content

Commit

Permalink
Sync with Kendo UI Professional
Browse files Browse the repository at this point in the history
  • Loading branch information
kendo-bot committed Aug 5, 2024
1 parent f203765 commit 1e57dd1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs-aspnet/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -704,13 +704,13 @@ navigation:
baseurl: /aspnet-core

## The Kendo UI version used
cdnVersion: "2024.2.514"
cdnVersion: "2024.3.806"

## The themes CDN used
themesCdnVersion: "8.0.1"
themesCdnVersion: "8.2.1"

## The MVC Core version used
mvcCoreVersion: "2024.2.514"
mvcCoreVersion: "2024.3.806"

ff-sheet-id: 1mottKpkbJFxkUq6rS3CsPrT8JQOE2JlUtsJBR622cxs

Expand Down
6 changes: 3 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -712,13 +712,13 @@ navigation:
baseurl: /kendo-ui

## The Kendo UI version used
cdnVersion: "2024.2.514"
cdnVersion: "2024.3.806"

## The themes CDN used
themesCdnVersion: "8.0.1"
themesCdnVersion: "8.2.1"

## The MVC Core version used
mvcCoreVersion: "2024.2.514"
mvcCoreVersion: "2024.3.806"

## Progress NPM Registry
registry_url: 'https://registry.npm.telerik.com/'
Expand Down
6 changes: 6 additions & 0 deletions src/kendo.color.js
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,12 @@ function parseColor(value, safe) {
ret = new RGB(parseFloat(m[1]) / 100,
parseFloat(m[2]) / 100,
parseFloat(m[3]) / 100, parseFloat(m[4]));
} else if ((m = /^color\(\s*srgb\s*([0-9]*\.?[0-9]+)\s+([0-9]*\.?[0-9]+)\s+([0-9]*\.?[0-9]+)\s*(\/\s+([0-9]*\.?[0-9]+))?\)/.exec(color))) {
ret = new RGB(
parseFloat(m[1]),
parseFloat(m[2]),
parseFloat(m[3]),
parseFloat(m[5] || '1'));
}

if (ret) {
Expand Down
2 changes: 1 addition & 1 deletion typescript/kendo.all.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for Kendo UI Professional v2024.2.514
// Type definitions for Kendo UI Professional v2024.3.806
// Project: http://www.telerik.com/kendo-ui
// Definitions by: Telerik <https://github.com/telerik>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
Expand Down

0 comments on commit 1e57dd1

Please sign in to comment.