diff --git a/MAUI/Autocomplete/UI-Customization.md b/MAUI/Autocomplete/UI-Customization.md
index bf1a5eadb4..eff0a0a924 100644
--- a/MAUI/Autocomplete/UI-Customization.md
+++ b/MAUI/Autocomplete/UI-Customization.md
@@ -480,6 +480,38 @@ SfAutocomplete autocomplete = new SfAutocomplete()

+### Customize the Selected DropDown Item Text Style
+
+The [SelectedDropDownItemTextStyle]() property in the SfAutoComplete control allows developers to customize the appearance of the selected item in the dropdown list. This feature is useful for highlighting user selections and improving the overall UI experience.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+
+
+
+
+{% endhighlight %}
+{% highlight C# %}
+
+SfAutocomplete autoComplete = new SfAutocomplete
+{
+ ItemsSource = socialMediaViewModel.SocialMedias,
+ DisplayMemberPath = "Name",
+ TextMemberPath = "Name",
+ SelectedDropDownItemTextStyle = new DropDownTextStyle
+ {
+ TextColor = Colors.Orange,
+ FontSize = 16,
+ FontAttributes = FontAttributes.Bold
+ }
+};
+
+{% endhighlight %}
+{% endtabs %}
+
### Customize the DropDown Border Color
The [DropDownStroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase.html#Syncfusion_Maui_Inputs_DropDownControls_DropDownListBase_DropDownStroke) property is used to modify the border color of the dropdown.
diff --git a/MAUI/Cartesian-Charts/Axis/Types.md b/MAUI/Cartesian-Charts/Axis/Types.md
index 710960818e..a9509ef1f5 100644
--- a/MAUI/Cartesian-Charts/Axis/Types.md
+++ b/MAUI/Cartesian-Charts/Axis/Types.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Axis types in .NET MAUI Chart control | Syncfusion
+title: Axis types in .NET MAUI Cartesian Chart control | Syncfusion
description: Learn here all about axis types and its features in Syncfusion® .NET MAUI Chart (SfCartesianChart) control and more.
platform: maui
control: SfCartesianChart
@@ -8,7 +8,7 @@ documentation: ug
keywords: .net maui cartesian charts, .net maui axis types, cartesian chart axis types, syncfusion cartesian charts maui, maui chart axis customization, .net maui chart axis, cartesian chart axis guide maui, .net maui sfCartesianChart axis.
---
-# Types of Axis in .NET MAUI Chart
+# Types of Axis in .NET MAUI Cartesian Chart
Cartesian chart supports the following types of chart axis.
diff --git a/MAUI/ComboBox/UI-Customization.md b/MAUI/ComboBox/UI-Customization.md
index 6148c390cf..b5b75c5530 100644
--- a/MAUI/ComboBox/UI-Customization.md
+++ b/MAUI/ComboBox/UI-Customization.md
@@ -550,6 +550,44 @@ SfComboBox comboBox = new SfComboBox()

+### Customize the Selected DropDown Item Text Style
+
+The [SelectedDropDownItemTextStyle]() property in the SfComboBox control allows developers to customize the appearance of the selected item in the dropdown list. This feature is useful for highlighting user selections and improving the overall UI experience.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight C# %}
+
+SfComboBox comboBox = new SfComboBox()
+{
+ ItemsSource = socialMediaViewModel.SocialMedias,
+ TextMemberPath = "Name",
+ DisplayMemberPath = "Name",
+ Placeholder="Enter Media",
+ SelectedDropDownItemTextStyle = new DropDownTextStyle
+ {
+ TextColor = Colors.Orange,
+ FontSize = 16,
+ FontAttributes = FontAttributes.Bold
+ }
+};
+
+{% endhighlight %}
+{% endtabs %}
+
### Customize the DropDown Border Color
The [DropDownStroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase.html#Syncfusion_Maui_Inputs_DropDownControls_DropDownListBase_DropDownStroke) property is used to modify the border color of the dropdown.
diff --git a/MAUI/Masked-Entry/Basic-Features.md b/MAUI/Masked-Entry/Basic-Features.md
index 8ee09cecae..a75a3748d9 100644
--- a/MAUI/Masked-Entry/Basic-Features.md
+++ b/MAUI/Masked-Entry/Basic-Features.md
@@ -341,6 +341,32 @@ maskedEntry.SelectAllOnFocus = true;
{% endhighlight %}
{% endtabs %}
+## IsReadOnly Mode
+
+The [`IsReadOnly`]() property allows you to make the masked entry non-editable while keeping it focusable and selectable. When enabled, users can still focus and select text, but cannot modify the value via typing, cut, paste, or the keyboard. The default value of this property is `false`.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+{% endhighlight %}
+{% highlight c# %}
+
+SfMaskedEntry maskedEntry = new SfMaskedEntry();
+maskedEntry.WidthRequest = 200;
+maskedEntry.MaskType = MaskedEntryMaskType.Simple;
+maskedEntry.Mask = "(000) 000-0000";
+maskedEntry.Value = "1234567890";
+maskedEntry.IsReadOnly = true;
+
+{% endhighlight %}
+{% endtabs %}
+
## ReturnType
The `ReturnType` property specifies the return button (e.g., Next, Done, Go) of the keyboard. It helps manage the flow between multiple input fields by defining what happens when the action button is pressed.
diff --git a/MAUI/NumericEntry/Basic-Features.md b/MAUI/NumericEntry/Basic-Features.md
index 4cf5b4e6f0..423e1b205d 100644
--- a/MAUI/NumericEntry/Basic-Features.md
+++ b/MAUI/NumericEntry/Basic-Features.md
@@ -278,6 +278,28 @@ The following image illustrates the result of the above code:

+## Select text on focus
+
+The [`SelectAllOnFocus`]() property allows you to automatically select all the text in the numeric entry when the control gains focus. This can improve user efficiency by making it easy to replace the entire content. The default value of this property is `true`.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+{% endhighlight %}
+{% highlight c# %}
+
+SfNumericEntry numericEntry = new SfNumericEntry();
+numericEntry.WidthRequest = 200;
+numericEntry.Value = 123456;
+numericEntry.SelectAllOnFocus = false;
+
+{% endhighlight %}
+{% endtabs %}
+
## ReturnType
The `ReturnType` property specifies the return button (e.g., Next, Done, Go) of the keyboard. It helps manage the flow between multiple input fields by defining what happens when the action button is pressed.
diff --git a/MAUI/Release-notes/v31.2.12.md b/MAUI/Release-notes/v31.2.12.md
new file mode 100644
index 0000000000..6cd0d73a85
--- /dev/null
+++ b/MAUI/Release-notes/v31.2.12.md
@@ -0,0 +1,73 @@
+---
+title: Essential Studio® for MAUI Release Notes - v31.2.12
+description: Learn here about the controls in the Essential Studio® for MAUI 2025 Volume 3 SP2 Release - Release Notes - v31.2.12
+platform: maui
+documentation: ug
+---
+
+# Essential Studio® for MAUI - v31.2.12 Release Notes
+
+{% include release-info.html date="November 18, 2025" version="v31.2.12" passed="43894" failed="0" %}
+
+{% directory path: _includes/release-notes/v31.2.12 %}
+
+{% include {{file.url}} %}
+
+{% enddirectory %}
+
+## Test Results
+
+| Component Name | Test Cases | Passed | Failed | Remarks |
+|---------------|------------|--------|--------|---------|
+| SfAccordion | 63 | 63 | 0 | All Passed |
+| SfAIAssistView | 153 | 153 | 0 | All Passed |
+| SfAutocomplete | 321 | 321 | 0 | All Passed |
+| SfAvatarView | 56 | 56 | 0 | All Passed |
+| SfBackDropPage | 83 | 83 | 0 | All Passed |
+| SfBadgeView | 81 | 81 | 0 | All Passed |
+| SfBarcodeGenerator | 1763 | 1763 | 0 | All Passed |
+| SfBusyIndicator | 91 | 91 | 0 | All Passed |
+| SfButton | 104 | 104 | 0 | All Passed |
+| SfCalendar | 2624 | 2624 | 0 | All Passed |
+| SfCards | 235 | 235 | 0 | All Passed |
+| SfCarousel | 229 | 229 | 0 | All Passed |
+| SfCharts | 521 | 521 | 0 | All Passed |
+| SfChat | 63 | 63 | 0 | All Passed |
+| SfCheck Box | 165 | 165 | 0 | All Passed |
+| SfChip | 73 | 73 | 0 | All Passed |
+| SfColorPicker | 164 | 164 | 0 | All Passed |
+| SfComboBox | 422 | 422 | 0 | All Passed |
+| SfDataForms | 3348 | 3348 | 0 | All Passed |
+| SfDataGrid | 3113 | 3113 | 0 | All Passed |
+| SfEffectsView | 61 | 61 | 0 | All Passed |
+| SfExpander | 215 | 215 | 0 | All Passed |
+| SfGauge | 1184 | 1184 | 0 | All Passed |
+| SfImageEditor | 762 | 762 | 0 | All Passed |
+| SfKanban | 410 | 410 | 0 | All Passed |
+| SfListView | 4813 | 4813 | 0 | All Passed |
+| SfMaps | 1268 | 1268 | 0 | All Passed |
+| SfMarkdownViewer | 116 | 116 | 0 | All Passed |
+| SfMaskedEntry | 180 | 180 | 0 | All Passed |
+| SfNavigationDrawer | 126 | 126 | 0 | All Passed |
+| SfNumericEntry | 218 | 218 | 0 | All Passed |
+| SfNumericUpDown | 218 | 218 | 0 | All Passed |
+| SfOTPInput | 55 | 55 | 0 | All Passed |
+| SfPicker | 1039 | 1039 | 0 | All Passed |
+| SfPopup | 1342 | 1342 | 0 | All Passed |
+| SfProgressBar | 626 | 626 | 0 | All Passed |
+| SfRadialMenu | 199 | 199 | 0 | All Passed |
+| SfRadioButton | 194 | 194 | 0 | All Passed |
+| SfRating | 202 | 202 | 0 | All Passed |
+| SfRichTextEditor | 157 | 157 | 0 | All Passed |
+| SfRotator | 1195 | 1195 | 0 | All Passed |
+| SfScheduler | 11556 | 11556 | 0 | All Passed |
+| SfSegment | 354 | 354 | 0 | All Passed |
+| SfShimmer | 371 | 371 | 0 | All Passed |
+| SfSignaturePad | 32 | 32 | 0 | All Passed |
+| SfSlider | 292 | 292 | 0 | All Passed |
+| SfSwitch | 131 | 131 | 0 | All Passed |
+| SfTab View | 1620 | 1620 | 0 | All Passed |
+| SfTextInputLayout | 174 | 174 | 0 | All Passed |
+| SfToolBar | 175 | 175 | 0 | All Passed |
+| SfTreeMap | 454 | 454 | 0 | All Passed |
+| SfTreeView | 483 | 483 | 0 | All Passed |
\ No newline at end of file
diff --git a/MAUI/Scheduler/localization.md b/MAUI/Scheduler/localization.md
index 22b05b7c75..75d1fb0521 100644
--- a/MAUI/Scheduler/localization.md
+++ b/MAUI/Scheduler/localization.md
@@ -79,4 +79,3 @@ To localize the `Scheduler` based on `CurrentUICulture` using `resource` files,

The complete sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/maui-scheduler-examples/tree/main/Localization).
-
\ No newline at end of file
diff --git a/maui-toc.html b/maui-toc.html
index e6d20d24da..7bd311a3f2 100644
--- a/maui-toc.html
+++ b/maui-toc.html
@@ -12,12 +12,6 @@
System Requirements
Demos
Material Icons
- AI Coding Assistant
-
-
Installation
@@ -1415,10 +1406,14 @@
Release Notes
-
- - 2025 Volume 3 - v31.*
-
- - Weekly Nuget Release
- v31.2.10
- v31.2.5
- v31.2.4
+
+ - 2025 Volume 3 SP Release - v31.2.*
+
-
- - 2025 Volume 2 - v30.*
- 2025 Volume 1 - v29.*
- 2024 Volume 4 - v28.*
- 2024 Volume 3 - v27.*
- 2024 Volume 2 - v26.*
- 2024 Volume 1 - v25.*
- 2023 Volume 4 - v24.*
- 2023 Volume 3 - v23.*
- 2023 Volume 2 - v22.*
- 2023 Volume 1 - v21.*
- 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
+ - v31.2.12 Service Pack Release
+ - v31.2.2 Service Pack Release
+
+ - 2025 Volume 3 - v31.*
- 2025 Volume 2 - v30.*
- 2025 Volume 1 - v29.*
- 2024 Volume 4 - v28.*
- 2024 Volume 3 - v27.*
- 2024 Volume 2 - v26.*
- 2024 Volume 1 - v25.*
- 2023 Volume 4 - v24.*
- 2023 Volume 3 - v23.*
- 2023 Volume 2 - v22.*
- 2023 Volume 1 - v21.*
- 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*