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

-2
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.
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';
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';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'barcode/tailwind-dark.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'barcode/tailwind.scss';

controls/base/package.json

+1-1
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

-4
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

+7
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)

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

-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,6 @@ 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;
355354
(<any>retOptions)[prop] = (<any>parseOptions)[prop][matchString];
356355
}
357356
}

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

-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ export class NumberParser {
104104
} else {
105105
value = parser.convertValueParts(value, options.symbolRegex, numOptions.symbolMatch);
106106
value = parser.convertValueParts(value, numOptions.numberParseRegex, numOptions.numericPair);
107-
value = value.indexOf('-') !== -1 ? value.replace('-.','-0.') : value;
108107
if (value.indexOf('.') === 0) {
109108
value = '0' + value;
110109
}

controls/base/src/touch.ts

+1-1
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|Mac OS/).test(Browser.userAgent);
266+
const isFirefox: boolean = (/Mozilla|Firefox/).test(Browser.userAgent);
267267
if (isFirefox && point.clientX === 0 && point.clientY === 0 && evt.type === 'mouseup') {
268268
this.isTouchMoved = false;
269269
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@import 'common/mixin.scss';
2+
@import 'definition/tailwind-dark.scss';
3+
4+
@if not variable-exists('is-inter-loaded') {
5+
//sass-lint:disable no-url-protocols,no-url-domains
6+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
7+
}
8+
9+
$font-family: 'Inter' !default;
10+
$font-size: 12px !default;
11+
$font-weight: normal !default;
12+
$error-font-color: $danger !default;
13+
$overlay-bg-color: rgba($cool-gray-500, .75) !default;
14+
$warning-font-color: $orange-700 !default;
15+
$success-font-color: $green-700 !default;
16+
$information-font-color: $cyan-700 !default;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@import 'common/mixin.scss';
2+
@import 'definition/tailwind.scss';
3+
4+
@if not variable-exists('is-inter-loaded') {
5+
//sass-lint:disable no-url-protocols,no-url-domains
6+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
7+
}
8+
9+
$font-family: 'Inter' !default;
10+
$font-size: 12px !default;
11+
$font-weight: normal !default;
12+
$error-font-color: $danger !default;
13+
$overlay-bg-color: rgba($cool-gray-500, .75) !default;
14+
$warning-font-color: $orange-700 !default;
15+
$success-font-color: $green-700 !default;
16+
$information-font-color: $cyan-700 !default;

0 commit comments

Comments
 (0)