Skip to content

Commit c8e4b15

Browse files
author
pipeline
committed
v25.1.38 is released
1 parent 52a9671 commit c8e4b15

File tree

152 files changed

+2791
-699
lines changed

Some content is hidden

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

152 files changed

+2791
-699
lines changed

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1361,14 +1361,8 @@ The Syncfusion JavaScript UI controls library is the only suite that you will ev
13611361
## Release Notes
13621362
Please refer this [link](https://ej2.syncfusion.com/documentation/release-notes/index/)
13631363

1364-
## Support
1365-
For any questions or assistance, you can:
1366-
* Visit the [Syncfusion support portal](https://support.syncfusion.com/).
1367-
* Post your queries on the [community forums](https://www.syncfusion.com/forums).
1368-
* Renew your subscription by clicking [here](https://www.syncfusion.com/sales/products?utm_source=github&utm_medium=listing&utm_campaign=ej2-javascript-ui-controls) or contacting our sales team at <[email protected]>.
1369-
* If you have specific feature requests or suggestions, please submit them through our [feedback portal](https://www.syncfusion.com/feedback/javascript).
1370-
13711364
## License
1372-
For detailed information about the Syncfusion Essential Studio license and copyright, please refer to the [license](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/license).
1373-
© Copyright 2024 Syncfusion, Inc. All Rights Reserved.
1365+
This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials).
1366+
A free community license (https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
1367+
© Copyright 2021 Syncfusion, Inc. All Rights Reserved.
13741368
The Syncfusion Essential Studio license and copyright applies to this distribution.

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.1.37 (2024-03-26)
5+
## 25.1.38 (2024-04-02)
66

77
### Barcode
88

controls/calendars/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.1.37 (2024-03-26)
6+
7+
### DateTimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I15615` - Fixed console error that occurred when using the format property while opening the time popup.
12+
513
## 19.3.46 (2021-10-19)
614

715
### TimePicker

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": "18.32.5",
3+
"version": "25.1.37",
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/src/datepicker/datepicker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ export class DatePicker extends Calendar implements IInput {
471471
public render(): void {
472472
this.initialize();
473473
this.bindEvents();
474-
if (this.floatLabelType === 'Auto') {
474+
if (this.floatLabelType !== 'Never') {
475475
Input.calculateWidth(this.inputElement, this.inputWrapper.container);
476476
}
477477
if (!isNullOrUndefined(this.inputWrapper.buttons[0]) && !isNullOrUndefined(this.inputWrapper.container.getElementsByClassName('e-float-text-overflow')[0]) && this.floatLabelType !== 'Never') {

controls/calendars/src/daterangepicker/daterangepicker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ export class DateRangePicker extends CalendarBase {
748748
if (this.element.hasAttribute('data-val')) {
749749
this.element.setAttribute('data-val', 'false');
750750
}
751-
if (this.floatLabelType === 'Auto') {
751+
if (this.floatLabelType !== 'Never') {
752752
Input.calculateWidth(this.inputElement, this.inputWrapper.container);
753753
}
754754
if (!isNullOrUndefined(this.inputWrapper.buttons[0]) && !isNullOrUndefined(this.inputWrapper.container.getElementsByClassName('e-float-text-overflow')[0]) && this.floatLabelType !== 'Never') {

controls/calendars/src/datetimepicker/datetimepicker.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ export class DateTimePicker extends DatePicker {
723723
this.inputElement.tabIndex = -1;
724724
}
725725
}
726-
if (this.floatLabelType === 'Auto') {
726+
if (this.floatLabelType !== 'Never') {
727727
Input.calculateWidth(this.inputElement, this.inputWrapper.container);
728728
}
729729
if (!isNullOrUndefined(this.inputWrapper.buttons[0]) && !isNullOrUndefined(this.inputWrapper.container.getElementsByClassName('e-float-text-overflow')[0]) && this.floatLabelType !== 'Never') {
@@ -984,6 +984,9 @@ export class DateTimePicker extends DatePicker {
984984
let dateObject: Date;
985985
if (this.calendarMode === 'Gregorian') {
986986
this.cldrDateTimeFormat().replace(this.formatRegex, this.TimePopupFormat())
987+
if (this.dateFormatString === '') {
988+
this.dateFormatString = this.cldrDateTimeFormat();
989+
}
987990
dateObject = this.globalize.parseDate(this.inputElement.value, {
988991
format: this.dateFormatString, type: 'datetime'
989992
});

controls/calendars/styles/calendar/_theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@
475475
}
476476
}
477477

478-
.e-zoomin {
478+
.e-calendar .e-zoomin {
479479
animation: animatezoom .3s;
480480
}
481481

controls/charts/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.1.37 (2024-03-26)
5+
## 25.1.38 (2024-04-02)
66

77
### AccumulationChart
88

controls/circulargauge/CHANGELOG.md

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

55
## [Unreleased]
66

7-
## 25.1.37 (2024-03-26)
7+
## 25.1.38 (2024-04-02)
88

99
### Circular Gauge
1010

0 commit comments

Comments
 (0)