From 1e57dd1944e3cff696147c81cbca0bc0f6403864 Mon Sep 17 00:00:00 2001 From: kendo-bot Date: Mon, 5 Aug 2024 04:19:09 +0000 Subject: [PATCH] Sync with Kendo UI Professional --- docs-aspnet/_config.yml | 6 +++--- docs/_config.yml | 6 +++--- src/kendo.color.js | 6 ++++++ typescript/kendo.all.d.ts | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/docs-aspnet/_config.yml b/docs-aspnet/_config.yml index f6a2d5cbc9b..919e087fdb6 100644 --- a/docs-aspnet/_config.yml +++ b/docs-aspnet/_config.yml @@ -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 diff --git a/docs/_config.yml b/docs/_config.yml index ac1a1f2e174..c842bf3f688 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -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/' diff --git a/src/kendo.color.js b/src/kendo.color.js index 2e7ef060745..78ed7b645ae 100644 --- a/src/kendo.color.js +++ b/src/kendo.color.js @@ -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) { diff --git a/typescript/kendo.all.d.ts b/typescript/kendo.all.d.ts index 6c56b6669a5..d38578738ef 100644 --- a/typescript/kendo.all.d.ts +++ b/typescript/kendo.all.d.ts @@ -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 // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped