Skip to content

Commit 476fef6

Browse files
committed
Sync with Kendo UI Professional
1 parent 95d06f3 commit 476fef6

File tree

20 files changed

+860
-89
lines changed

20 files changed

+860
-89
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "year": 2025, "release": 2, "smallRelease": true }
1+
{ "year": 2025, "release": 3, "smallRelease": false }

docs-aspnet/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ baseurl: /aspnet-core
784784
cdnVersion: "2025.3.812"
785785

786786
## The themes CDN used
787-
themesCdnVersion: "11.3.0"
787+
themesCdnVersion: "11.3.2"
788788

789789
## The MVC Core version used
790790
mvcCoreVersion: "2025.3.812"

docs-aspnet/backwards-compatibility/2025-backwards-compatibility.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ This article lists the breaking or important changes in the 2025 releases of {{
1616

1717
The ActionSheet's action buttons now accept enums for the `FillMode`, `Rounded`, `ThemeColor`, `Size` properties instead of strings. The `ActionSheetItem.Group` property now accepts the `ActionSheetItemGroup` enum instead of a string.
1818

19+
### AIPrompt
20+
21+
* The `ShowOutputRating()` option of the AIPrompt HtmlHelper {% if site.core %} and `show-output-rating` attribute of AIPrompt TagHelper{% endif %} is deprecated. Use [`OutputActions()`](/api/kendo.mvc.ui.fluent/aipromptbuilder#outputactionsactionaipromptoutputactionfactory) configuration option that is more flexible.
22+
23+
* The `outputRatingChange` event is deprecated. Use `outputAction` instead.
24+
25+
* The `outputCopy` event is deprecated. Use `outputAction` event instead.
26+
1927
{% if site.core %}
2028
### TabStrip
2129

docs-aspnet/docs-builder-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ liquid:
3131
framework: "ASP.NET Core"
3232
framework_short: "Core"
3333
cdnVersion: "2025.3.812"
34-
themesCdnVersion: "11.3.0"
34+
themesCdnVersion: "11.3.2"
3535
mvcCoreVersion: "2025.3.812"
3636
platform: aspnet-core
3737
core: true

docs-aspnet/docs-builder-mvc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ liquid:
3131
framework: "ASP.NET MVC"
3232
framework_short: "MVC"
3333
cdnVersion: "2025.3.812"
34-
themesCdnVersion: "11.3.0"
34+
themesCdnVersion: "11.3.2"
3535
mvcCoreVersion: "2025.3.812"
3636
platform: aspnet-mvc
3737
core: false

docs-aspnet/html-helpers/conversational-ui/aiprompt/views.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ The following example demonstrates how to specify the `Output` view as active wh
5858
@(Html.Kendo().AIPrompt()
5959
.Name("aiprompt")
6060
.ActiveView(1)
61-
.ShowOutputRating(false)
6261
.Views(views =>
6362
{
6463
views.Add().Type(ViewType.Prompt);
@@ -70,7 +69,7 @@ The following example demonstrates how to specify the `Output` view as active wh
7069
```TagHelper
7170
@addTagHelper *, Kendo.Mvc
7271
73-
<kendo-aiprompt name="aiprompt" active-view="1" show-output-rating="false">
72+
<kendo-aiprompt name="aiprompt" active-view="1">
7473
<aiprompt-views>
7574
<aiprompt-view type="ViewType.Prompt"></aiprompt-view>
7675
<aiprompt-view type="ViewType.Output"></aiprompt-view>

docs-aspnet/html-helpers/helper-basics/validation.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@ The {{ site.product }} editors support the following `DataAnnotation` attributes
2828
- `Required`
2929
- `StringLength`
3030
- `UrlAttribute`
31+
- `ReadOnly`
3132

3233
The `HTML5` <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/data-*" target="_blank">`data-*` attributes</a> are generated in the HTML markup of each editor component based on the `DataAnnotation` attributes applied to the Model properties. To enable the client-side validation, the <a href="https://docs.telerik.com/kendo-ui/controls/validator/overview" target="_blank">Kendo UI for jQuery Validator</a> must be activated on the form that contains the editor components. The Validator automatically creates <a href="https://docs.telerik.com/kendo-ui/controls/validator/rules" target="_blank">validation rules</a> based on the unobtrusive HTML attributes. Also, the Validator creates rules for the unobtrusive attributes that are generated implicitly by {{ site.framework }} for numbers and dates.
3334

35+
>The `ReadOnly` attribute will not generate a `data-*` attribute or create an internal validator rule, but the respective DOM input element will contain a [`readonly` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Attributes/readonly).
36+
3437
The following example demonstrates how to enable the Kendo UI Validator to perform client-side validation based on the applied `DataAnnotation` attributes.
3538

3639
1. Create a Model and set the desired `DataAnnotation` attributes.
@@ -58,6 +61,9 @@ The following example demonstrates how to enable the Kendo UI Validator to perfo
5861
[Required]
5962
[Display(Name = "Order Date")]
6063
public DateTime? OrderDate { get; set; }
64+
65+
[ReadOnly(true)]
66+
public string ShipCountry { get; set; }
6167
}
6268
```
6369

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ baseurl: /kendo-ui
615615
cdnVersion: "2025.3.812"
616616

617617
## The themes CDN used
618-
themesCdnVersion: "11.3.0"
618+
themesCdnVersion: "11.3.2"
619619

620620
## The Pdfjs CDN version used
621621
pdfjsCdnVersion: "4.6.82"

docs/api/javascript/ui/aiprompt.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,8 @@ An array of action configurations for the output cards. Can contain strings for
274274
- `"copy"` - Copy output content to clipboard
275275
- `"retry"` - Retry generating the output
276276
- `"rating"` - Expands to both positive and negative rating buttons
277+
- `"ratingPositive"` - Renders the positive rating button
278+
- `"ratingNegative"` - Renders the negative rating button
277279
- `"spacer"` - Adds spacing between action buttons
278280

279281
Custom actions trigger the `outputAction` event with the action command and output data.
@@ -429,7 +431,7 @@ Specifies the type of the action. Available options: `"button"`, `"spacer"`. Def
429431
});
430432
</script>
431433

432-
### outputTemplate `Function`
434+
### outputTemplate `String | Function`
433435

434436
A template function for customizing the display of output content. This function is called when an output has finished streaming and final content needs to be rendered.
435437

@@ -633,6 +635,7 @@ Controls whether the subtitle of the card in the output view displays a tooltip
633635
### showOutputRating `Boolean` *(default: true)*
634636

635637
Specifies if the output rating should be displayed on the output card.
638+
> **Note:** This property is deprecated. Use the `outputActions` configuration instead.
636639
637640
#### Example
638641
<div id="aiprompt"></div>

0 commit comments

Comments
 (0)