Skip to content

Commit 556c642

Browse files
author
pipeline
committed
v28.2.9 is released
1 parent de77c4c commit 556c642

File tree

181 files changed

+3422
-898
lines changed

Some content is hidden

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

181 files changed

+3422
-898
lines changed

controls/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.7 (2025-02-25)
5+
## 28.2.9 (2025-03-04)
66

77
### Barcode
88

controls/base/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 28.2.9 (2025-03-04)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I678051` - Resolved trailing zeros issue in custom number format.
12+
513
## 28.2.5 (2025-02-11)
614

715
### Common

controls/base/releasenotes/README.md

-183
This file was deleted.

controls/base/spec/intl/number-formatter.spec.ts

+6
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,12 @@ describe('Number formatter', () => {
860860
});
861861
});
862862
});
863+
describe('formats zero without trailing zeros when using a custom format', () => {
864+
it('zero value', () => {
865+
formatter = NumberFormat.numberFormatter('en', { format: '$#,##0 ', currency: 'USD' }, cldrData);
866+
expect(formatter(zero)).toBe('$0 ');
867+
});
868+
});
863869
describe('group separator and decimal separator for custom format', () => {
864870
it('fraction value', () => {
865871
formatter = NumberFormat.numberFormatter('de', { format: '#,###.##' }, cldrData);

controls/base/src/intl/intl-base.ts

+1
Original file line numberDiff line numberDiff line change
@@ -943,6 +943,7 @@ export namespace IntlBase {
943943
const spaceGrouping: boolean = integerPart.replace(/ $/g, '').indexOf(' ') !== -1;
944944
cOptions.useGrouping = integerPart.indexOf(',') !== -1 || spaceGrouping;
945945
integerPart = integerPart.replace(/,/g, '');
946+
integerPart = (/\s$/.test(integerPart)) ? integerPart.replace(/ /g, '') : integerPart;
946947
const fractionPart: string = pattern[7];
947948
if (integerPart.indexOf('0') !== -1) {
948949
cOptions.minimumIntegerDigits = integerPart.length - integerPart.indexOf('0');

controls/buttons/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.7 (2025-02-25)
5+
## 28.2.9 (2025-03-04)
66

77
### Button
88

controls/calendars/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 28.2.9 (2025-03-04)
6+
7+
### DateRangePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I40705` - Fixed issue where the selected date was incorrect when setting the Start and Depth properties in the DateRangePicker to `Year`.
12+
513
## 28.2.7 (2025-02-25)
614

715
### DatePicker

controls/calendars/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ npm install @syncfusion/ej2-calendars
147147

148148
Calendar controls are also offered to following list of frameworks.
149149

150-
| [<img src="https://ej2.syncfusion.com/github/images/angular.svg" height="50" />](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
150+
| [<img src="https://ej2.syncfusion.com/github/images/angular-new.svg" height="50" />](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
151151
| :-----: | :-----: | :-----: | :-----: | :-----: |
152152

153153
## Showcase samples

controls/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-calendars",
3-
"version": "28.2.3",
3+
"version": "28.2.7",
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",

controls/calendars/spec/daterangepicker/daterangepicker.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7734,8 +7734,8 @@ describe('DateRangePicker', () => {
77347734
(<HTMLElement>document.querySelectorAll('.e-right-calendar .e-content td')[2]).dispatchEvent(clickEvent);
77357735
expect(document.querySelector('.e-left-calendar .e-content').classList.contains('e-year')).toBe(true);
77367736
expect(document.querySelector('.e-right-calendar .e-content').classList.contains('e-year')).toBe(true);
7737-
expect(document.querySelector('.e-start-label').innerHTML).toBe('Mar 8, 2019');
7738-
expect(document.querySelector('.e-end-label').innerHTML).toBe('Mar 10, 2019');
7737+
expect(document.querySelector('.e-start-label').innerHTML).toBe('Mar 1, 2019');
7738+
expect(document.querySelector('.e-end-label').innerHTML).toBe('Mar 31, 2019');
77397739
(<HTMLElement>document.querySelector('.e-right-calendar .e-header .e-next')).dispatchEvent(clickEvent);
77407740
expect(document.querySelectorAll('.e-end-date').length).toBe(0);
77417741
(<HTMLElement>document.querySelector('.e-right-calendar .e-header .e-prev')).dispatchEvent(clickEvent);

controls/calendars/src/daterangepicker/daterangepicker.ts

+14-9
Original file line numberDiff line numberDiff line change
@@ -1545,7 +1545,12 @@ export class DateRangePicker extends CalendarBase {
15451545
this.invalidValueString = null;
15461546
const dateOptions: object = { format: this.formatString, type: 'date', skeleton: 'yMd' };
15471547
const startDate: Date = this.globalize.parseDate(this.getAmPmValue(range[0]).trim(), dateOptions);
1548-
const endDate: Date = this.globalize.parseDate(this.getAmPmValue(range[1]).trim(), dateOptions);
1548+
let endDate: Date = this.globalize.parseDate(this.getAmPmValue(range[1]).trim(), dateOptions);
1549+
if (this.start !== 'Decade' && this.start === 'Year' && this.depth !== 'Month'){
1550+
if (this.inputElement.defaultValue !== value){
1551+
endDate = this.getStartEndDate(endDate, true);
1552+
}
1553+
}
15491554
if (!isNullOrUndefined(startDate) && !isNaN(+startDate) && !isNullOrUndefined(endDate) && !isNaN(+endDate)) {
15501555
const prevStartVal: Date = this.startValue;
15511556
this.startValue = startDate;
@@ -2272,14 +2277,14 @@ export class DateRangePicker extends CalendarBase {
22722277
}
22732278
const y: number = date.getFullYear();
22742279
const m: number = date.getMonth();
2275-
const firstDay: Date = isValue ? new Date(y, m, startDateValue.getDate(), startDateValue.getHours(), startDateValue.getMinutes(),
2276-
startDateValue.getSeconds()) : new Date(y, m, 1);
2277-
const lastDay: Date = isValue ? new Date(y, m, endDateValue.getDate(), endDateValue.getHours(), endDateValue.getMinutes(),
2278-
endDateValue.getSeconds()) : new Date(y, m + 1, 0);
2279-
const firstMonth: Date = isValue ? new Date(y, startDateValue.getMonth(), startDateValue.getDate(), startDateValue.getHours(),
2280-
startDateValue.getMinutes(), startDateValue.getSeconds()) : new Date(y, 0, 1);
2281-
const lastMonth: Date = isValue ? new Date(y, endDateValue.getMonth(), endDateValue.getDate(), endDateValue.getHours(),
2282-
endDateValue.getMinutes(), endDateValue.getSeconds()) : new Date(y, 11, 31);
2280+
const firstDay: Date = isValue && this.start !== 'Year' ? new Date(y, m, startDateValue.getDate(), startDateValue.getHours(), startDateValue.getMinutes(),
2281+
startDateValue.getSeconds()) : new Date(y, m, 1);
2282+
const lastDay: Date = isValue && this.start !== 'Year' ? new Date(y, m, endDateValue.getDate(), endDateValue.getHours(), endDateValue.getMinutes(),
2283+
endDateValue.getSeconds()) : new Date(y, m + 1, 0);
2284+
const firstMonth: Date = isValue && this.start !== 'Year' ? new Date(y, startDateValue.getMonth(), startDateValue.getDate(), startDateValue.getHours(), startDateValue.getMinutes(),
2285+
startDateValue.getSeconds()) : new Date(y, 0, 1);
2286+
const lastMonth: Date = isValue && this.start !== 'Year' ? new Date(y, endDateValue.getMonth(), endDateValue.getDate(), endDateValue.getHours(), endDateValue.getMinutes(),
2287+
endDateValue.getSeconds()) : new Date(y, 11, 31);
22832288
if (!isNullOrUndefined(this.endValue) && !isNullOrUndefined(this.startValue)) {
22842289
if (!this.isMobile || this.isMobile && !this.endButton.element.classList.contains(ACTIVE)) {
22852290
this.removeSelection();

controls/charts/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 28.2.9 (2025-03-04)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I694559` - Now, the RTL-enabled chart renders properly while exporting.
12+
- `#I690910` - Multiple charts can now be exported as a single CSV or XLSX file.
13+
514
## 28.2.7 (2025-02-25)
615

716
### Accumulation Chart

controls/charts/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ The [JavaScript Smith Chart](https://www.syncfusion.com/javascript-ui-controls/j
198198

199199
Chart control is also offered in following list of frameworks.
200200

201-
| [<img src="https://ej2.syncfusion.com/github/images/angular.svg" height="50" />](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
201+
| [<img src="https://ej2.syncfusion.com/github/images/angular-new.svg" height="50" />](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
202202
| :-----: | :-----: | :-----: | :-----: | :-----: |
203203

204204
## Showcase samples

controls/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-charts",
3-
"version": "28.2.6",
3+
"version": "28.2.7",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)