Skip to content

Commit 1e57dd1

Browse files
committed
Sync with Kendo UI Professional
1 parent f203765 commit 1e57dd1

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

docs-aspnet/_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -704,13 +704,13 @@ navigation:
704704
baseurl: /aspnet-core
705705

706706
## The Kendo UI version used
707-
cdnVersion: "2024.2.514"
707+
cdnVersion: "2024.3.806"
708708

709709
## The themes CDN used
710-
themesCdnVersion: "8.0.1"
710+
themesCdnVersion: "8.2.1"
711711

712712
## The MVC Core version used
713-
mvcCoreVersion: "2024.2.514"
713+
mvcCoreVersion: "2024.3.806"
714714

715715
ff-sheet-id: 1mottKpkbJFxkUq6rS3CsPrT8JQOE2JlUtsJBR622cxs
716716

docs/_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -712,13 +712,13 @@ navigation:
712712
baseurl: /kendo-ui
713713

714714
## The Kendo UI version used
715-
cdnVersion: "2024.2.514"
715+
cdnVersion: "2024.3.806"
716716

717717
## The themes CDN used
718-
themesCdnVersion: "8.0.1"
718+
themesCdnVersion: "8.2.1"
719719

720720
## The MVC Core version used
721-
mvcCoreVersion: "2024.2.514"
721+
mvcCoreVersion: "2024.3.806"
722722

723723
## Progress NPM Registry
724724
registry_url: 'https://registry.npm.telerik.com/'

src/kendo.color.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,12 @@ function parseColor(value, safe) {
430430
ret = new RGB(parseFloat(m[1]) / 100,
431431
parseFloat(m[2]) / 100,
432432
parseFloat(m[3]) / 100, parseFloat(m[4]));
433+
} 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))) {
434+
ret = new RGB(
435+
parseFloat(m[1]),
436+
parseFloat(m[2]),
437+
parseFloat(m[3]),
438+
parseFloat(m[5] || '1'));
433439
}
434440

435441
if (ret) {

typescript/kendo.all.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for Kendo UI Professional v2024.2.514
1+
// Type definitions for Kendo UI Professional v2024.3.806
22
// Project: http://www.telerik.com/kendo-ui
33
// Definitions by: Telerik <https://github.com/telerik>
44
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

0 commit comments

Comments
 (0)