Skip to content

Commit 80b485d

Browse files
author
pipeline
committed
v19.2.44 is released
1 parent c9b26de commit 80b485d

File tree

2,422 files changed

+83179
-16517
lines changed

Some content is hidden

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

2,422 files changed

+83179
-16517
lines changed

controls/barcodegenerator/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[![coverage](http://ej2.syncfusion.com/badges/ej2-barcode-generator/coverage.svg)](http://ej2.syncfusion.com/badges/ej2-barcode-generator)
2-
31
# ej2-barcode-generator
42

53
> 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](https://www.syncfusion.com/sales/products) or start a free 30-day trial [here](https://www.syncfusion.com/account/manage-trials/start-trials).

controls/barcodegenerator/styles/barcode/_tailwind-dark-definition.scss

Whitespace-only changes.

controls/barcodegenerator/styles/barcode/_tailwind-definition.scss

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
2+
@import 'tailwind-dark-definition.scss';
3+
@import 'all.scss';
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@import 'ej2-base/styles/tailwind-definition.scss';
2+
@import 'tailwind-definition.scss';
3+
@import 'all.scss';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'barcode/tailwind-dark.scss';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'barcode/tailwind.scss';

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": "19.1.64",
3+
"version": "18.4.32",
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: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,6 @@ 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-
});
203199
});
204200
describe('Number Parser', () => {
205201
let nParseIntl: Internationalization = new Internationalization();

controls/base/src/draggable.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,11 @@ export class Draggable extends Base<HTMLElement> implements INotifyPropertyChang
418418
if (axis === 'vertical') {
419419
this.parentScrollY = this.parentScrollY +
420420
(this.parentScrollY === 0 ? element.scrollTop : element.scrollTop - this.parentScrollY);
421+
this.tempScrollHeight = element.scrollHeight;
421422
} else {
422423
this.parentScrollX = this.parentScrollX +
423424
(this.parentScrollX === 0 ? element.scrollLeft : element.scrollLeft - this.parentScrollX);
425+
this.tempScrollWidth = element.scrollWidth;
424426
}
425427
if (!isNullOrUndefined(element)) {
426428
return this.getScrollableParent(element.parentNode as HTMLElement, axis);
@@ -923,6 +925,11 @@ export class Draggable extends Base<HTMLElement> implements INotifyPropertyChang
923925
pageX = this.clone ? intCoord.pageX : (intCoord.pageX + window.pageXOffset) - this.relativeXPosition;
924926
pageY = this.clone ? intCoord.pageY : (intCoord.pageY + window.pageYOffset) - this.relativeYPosition;
925927
}
928+
if (!this.clone && this.dragArea) {
929+
this.getScrollableValues();
930+
pageY -= this.tempScrollHeight ? this.parentScrollY : 0;
931+
pageX -= this.tempScrollWidth ? this.parentScrollX : 0;
932+
}
926933
return {
927934
left: pageX - (this.margin.left + this.cursorAt.left),
928935
top: pageY - (this.margin.top + this.cursorAt.top)

0 commit comments

Comments
 (0)