Skip to content

Commit aba61c8

Browse files
author
pipeline
committed
v19.1.57 is released
1 parent 2b09729 commit aba61c8

File tree

1,613 files changed

+12234
-1778176
lines changed

Some content is hidden

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

1,613 files changed

+12234
-1778176
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-
## 19.1.56 (2021-04-13)
5+
## 19.1.57 (2021-04-20)
66

77
### Barcode
88

controls/base/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,26 @@
22

33
## [Unreleased]
44

5+
## 19.1.57 (2021-04-20)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `F163648` - Resolved the day periods not parsing lower case (am/pm) issue.
12+
513
## 19.1.56 (2021-04-13)
614

715
### Common
816

17+
#### Bug Fixes
18+
19+
- Resolved Unwanted Swipe event trigger in Firefox only on `Mac` machines.
20+
21+
## 19.1.54 (2021-03-30)
22+
23+
### Common
24+
925
#### New Features
1026

1127
- Provided Optional prefix addition support for Template function.

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": "18.4.32",
3+
"version": "19.1.56",
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/spec/internationalization.spec.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,10 @@ describe('Internationalization', () => {
196196
let result: Date = dParseIntl.parseDate('12/dec/20',{format:'dd/MMM/yy'});
197197
expect(dParseIntl.formatDate(result)).toBe('12/12/20');
198198
});
199+
it('Case insensitive datetime picker degignator', () => {
200+
let result: Date = dParseIntl.parseDate('5/28/2019 2:00 pM', {format:'M/d/y h:mm a'});
201+
expect(dParseIntl.formatDate(result, {format: 'M/d/y h:mm a'})).toBe('5/28/2019 2:00 PM');
202+
});
199203
});
200204
describe('Number Parser', () => {
201205
let nParseIntl: Internationalization = new Internationalization();

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ export class DateParser {
351351
} else {
352352
matchString = ((prop === 'month') && (!(<any>parseOptions).isIslamic) && ((<any>parseOptions).culture === 'en' || (<any>parseOptions).culture === 'en-GB' || (<any>parseOptions).culture === 'en-US'))
353353
? matchString[0].toUpperCase() + matchString.substring(1).toLowerCase() : matchString;
354+
matchString = prop === 'designator' && /^(AM|PM)$/i.test(matchString) ? matchString.toUpperCase() : matchString;
354355
(<any>retOptions)[prop] = (<any>parseOptions)[prop][matchString];
355356
}
356357
}

controls/base/src/touch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ export class Touch extends Base<HTMLElement> implements INotifyPropertyChanged {
263263
diffY = Math.floor(diffY < 0 ? -1 * diffY : diffX);
264264
this.isTouchMoved = diffX > 1 || diffY > 1;
265265
// tslint:disable-next-line:no-any
266-
const isFirefox: boolean = (/Mozilla|Firefox/).test(Browser.userAgent);
266+
const isFirefox: boolean = (/Mozilla|Firefox|Mac OS/).test(Browser.userAgent);
267267
if (isFirefox && point.clientX === 0 && point.clientY === 0 && evt.type === 'mouseup') {
268268
this.isTouchMoved = false;
269269
}

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": "18.2.44",
3+
"version": "19.1.54",
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/charts/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88

99
#### Bug Fixes
1010

11+
- `#I319735` - Axis label line break support doesn't work in canvas mode issue fixed.
12+
- `#I319693` - Multilevel labels not working in canvas mode for y axis issue fixed.
13+
14+
### Chart
15+
16+
#### Bug Fixes
17+
1118
- `#310867` - 100% Stacking area is now working properly on browser resize.
1219
- `#318354` - Scrollbar issue for bar type series is resolved.
1320
- `#319835` - Normal distribution line in histogram series is rendering properly.

controls/charts/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-charts",
3-
"version": "19.1.54",
3+
"version": "19.1.56",
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",

controls/charts/src/chart/axis/strip-line.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ export class StripLine {
379379
if (axis.valueType === 'DateTime') {
380380
return (this.getToValue(
381381
null, startValue,
382-
this.isCoreDate(stripline.repeatEvery) ? this.dateToMilliSeconds(stripline.repeatEvery, chart) : +stripline.repeatEvery,
382+
+stripline.repeatEvery,
383383
axis, null, stripline
384384
));
385385
} else {

0 commit comments

Comments
 (0)