Skip to content

Commit 09b84d1

Browse files
author
pipeline
committed
v25.2.5 is released
1 parent fd85bb2 commit 09b84d1

File tree

166 files changed

+3244
-920
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+3244
-920
lines changed

controls/barcodegenerator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 25.2.4 (2024-05-14)
5+
## 25.2.5 (2024-05-21)
66

77
### Barcode
88

controls/base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 25.2.5 (2024-05-21)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I570682` - Changed deprecated event `unload` to `pagehide`.
12+
513
## 23.2.6 (2023-11-28)
614

715
### Common

controls/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-base",
3-
"version": "25.1.35",
3+
"version": "25.2.3",
44
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/base/releasenotes/README.md

Lines changed: 0 additions & 183 deletions
This file was deleted.

controls/base/src/component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export abstract class Component<ElementType extends HTMLElement> extends Base<El
157157
*/
158158
public attachUnloadEvent(): void {
159159
this.handleUnload = this.handleUnload.bind(this);
160-
window.addEventListener('unload', this.handleUnload);
160+
window.addEventListener('pagehide', this.handleUnload);
161161
}
162162
/**
163163
* Handling unload event to persist data when enable persistence true
@@ -173,7 +173,7 @@ export abstract class Component<ElementType extends HTMLElement> extends Base<El
173173
* @returns {void}
174174
*/
175175
public detachUnloadEvent(): void {
176-
window.removeEventListener('unload', this.handleUnload);
176+
window.removeEventListener('pagehide', this.handleUnload);
177177
}
178178
/**
179179
* Appends the control within the given HTML element

controls/base/styles/definition/_bootstrap5-dark.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,3 +491,4 @@ $error-font-color: $danger !default;
491491
$warning-font-color: $yellow !default;
492492
$success-font-color: lighten($green, 10%) !default;
493493
$information-font-color: $cyan !default;
494+
$accordion-text-active-color: tint-color($primary, 40%) !default;

controls/base/styles/definition/_bootstrap5.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,3 +492,4 @@ $error-font-color: $danger !default;
492492
$warning-font-color: $yellow !default;
493493
$success-font-color: #198754 !default;
494494
$information-font-color: #0dcaf0 !default;
495+
$accordion-text-active-color: shade-color($primary, 10%) !default;

controls/buttons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-buttons",
3-
"version": "25.2.3",
3+
"version": "25.2.4",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/calendars/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 25.2.5 (2024-05-21)
6+
7+
### TimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I587516` - Fixed an issue where the timepicker `prevValue` property was holding the current selected value instead of the previous value.
12+
513
## 25.1.40 (2024-04-16)
614

715
### DatePicker
@@ -1209,4 +1217,4 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
12091217

12101218
- **StrictMode** - Allows to entering the only valid time in a textbox.
12111219

1212-
- **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.
1220+
- **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.

controls/calendars/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-calendars",
3-
"version": "25.2.3",
3+
"version": "25.2.4",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)