Skip to content

Commit 0f38b06

Browse files
author
pipeline
committed
v20.3.47 is released
1 parent 8866350 commit 0f38b06

File tree

40,363 files changed

+905758
-142437
lines changed

Some content is hidden

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

40,363 files changed

+905758
-142437
lines changed

controls/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.2.48 (2022-09-06)
6-
7-
### Common
8-
9-
#### Bug Fixes
10-
11-
- `#I401438` - The issue with the "License registration through `npx` command" has been resolved.
12-
13-
## 20.2.46 (2022-08-30)
14-
15-
### Common
16-
17-
#### Bug Fixes
18-
19-
- `#SF378052`, `#F176538` - The touch scroll issue in `Grid` has been resolved.
20-
21-
## 20.2.39 (2022-07-19)
22-
23-
### Common
24-
25-
#### Bug Fixes
26-
27-
- `#I372767`, `#I370308` - The empty space issue in `Treeview` component while dragging the element has been resolved.
28-
29-
## 20.2.38 (2022-07-12)
5+
## 20.3.47 (2022-09-29)
306

317
### Common
328

@@ -106,6 +82,12 @@
10682
- `#I324684` - Resolved the `Treeview` check box issues in safari browser.
10783
- `#I342741`, `#F172105`, `#I365783`, `#F172867`, `#I367588`, `#I358914` - Provided the `draggable` support for the mobile and touch devices.
10884

85+
### Common
86+
87+
#### Bug Fixes
88+
89+
- `I324684` - Resolved the `Treeview` check box issues in safari browser.
90+
10991
## 17.4.51 (2020-02-25)
11092

11193
### Common

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": "20.2.48",
3+
"version": "18.61.0",
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/src/component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,4 +465,4 @@ export abstract class Component<ElementType extends HTMLElement> extends Base<El
465465
componentCount = 0;
466466
});
467467
}
468-
})();
468+
})();

controls/base/src/draggable.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,7 @@ export class Draggable extends Base<HTMLElement> implements INotifyPropertyChang
806806
this.getScrollPosition(scrollParent, draEleTop);
807807
}
808808
}
809+
809810
this.dragProcessStarted = true;
810811
this.prevLeft = left;
811812
this.prevTop = top;
@@ -1071,4 +1072,4 @@ export class Draggable extends Base<HTMLElement> implements INotifyPropertyChang
10711072
this.toggleEvents(true);
10721073
super.destroy();
10731074
}
1074-
}
1075+
}

controls/base/src/validate-lic.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const bypassKey: number[] = [115, 121, 110, 99, 102, 117, 115, 105,
1010
*/
1111
class LicenseValidator {
1212
private isValidated: boolean = false;
13-
public version: string = '20.2';
13+
public version: string = '20.3';
1414
public platform: RegExp = /JavaScript|ASPNET|ASPNETCORE|ASPNETMVC|FileFormats/i;
1515
private errors: IErrorType = {
1616
noLicense: 'This application was built using a trial version of Syncfusion Essential Studio.' +
@@ -95,7 +95,7 @@ class LicenseValidator {
9595
if (validateMsg && typeof document !== 'undefined' && !isNullOrUndefined(document)) {
9696
const errorDiv: HTMLElement = createElement('div', {
9797
innerHTML: validateMsg +
98-
'<span id="license-banner-error" class=".e-license-banner">' +
98+
'<span id="license-banner-event" class="e-license-banner" >' +
9999
'<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">' +
100100
'<line x1="5" y1="5" x2="15" y2="15" stroke="yellow" stroke-width="2.5" ' +
101101
'stroke-miterlimit="10" stroke-linecap="round"></line><line x1="15" y1="5" ' +
@@ -107,7 +107,7 @@ class LicenseValidator {
107107
});
108108
errorDiv.setAttribute('id', 'js-licensing');
109109
document.body.appendChild(errorDiv);
110-
document.getElementById('license-banner-error').addEventListener('click', () => {
110+
document.getElementById('license-banner-event').addEventListener('click', () => {
111111
document.getElementById('js-licensing').remove();
112112
});
113113
}

controls/base/styles/_all.scss

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
@import 'common/all.scss';
22
@import 'animation/all.scss';
3-

controls/base/styles/_bootstrap4-definition.scss

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
@import 'common/mixin.scss';
22
@import 'definition/bootstrap4.scss';
33

4-
54
$font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
65
$font-size: 12px !default;
76
$font-weight: normal !default;

controls/base/styles/_highcontrast-light-definition.scss

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
@import 'common/mixin.scss';
22
@import 'definition/highcontrast-light.scss';
33

4-
54
$font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
65
$font-size: 12px !default;
76
$font-weight: normal !default;

controls/base/styles/_material-dark-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
@if not variable-exists('is-roboto-loaded') {
55
//sass-lint:disable no-url-protocols,no-url-domains
6-
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');
6+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');// stylelint-disable-line no-invalid-position-at-import-rule
77
}
88

99
$is-roboto-loaded: 'true' !default;

controls/base/styles/_material-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
@if not variable-exists('is-roboto-loaded') {
55
//sass-lint:disable no-url-protocols,no-url-domains
6-
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');
6+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');// stylelint-disable-line no-invalid-position-at-import-rule
77
}
88

99
$is-roboto-loaded: 'true' !default;

controls/base/styles/_tailwind-dark-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
@if not variable-exists('is-inter-loaded') {
55
//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');
6+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');// stylelint-disable-line no-invalid-position-at-import-rule
77
}
88

99
$font-family: 'Inter' !default;

controls/base/styles/_tailwind-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
@if not variable-exists('is-inter-loaded') {
55
//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');
6+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');// stylelint-disable-line no-invalid-position-at-import-rule
77
}
88

99
$font-family: 'Inter' !default;

controls/base/styles/animation/_all.scss

+30-29
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@include export-module('base-animation') {
2+
23
/*! animation keyframes */
34
@keyframes SlideLeftOut {
45
from {
@@ -132,20 +133,20 @@
132133
}
133134
@keyframes ZoomIn {
134135
from {
135-
transform: translate(0, 0)scale(0);
136+
transform: translate(0, 0) scale(0);
136137
}
137138

138139
to {
139-
transform: translate(0, 0)scale(1);
140+
transform: translate(0, 0) scale(1);
140141
}
141142
}
142143
@keyframes ZoomOut {
143144
from {
144-
transform: translate(0, 0)scale(1);
145+
transform: translate(0, 0) scale(1);
145146
}
146147

147148
to {
148-
transform: translate(0, 0)scale(0);
149+
transform: translate(0, 0) scale(0);
149150
}
150151
}
151152
@keyframes FadeZoomIn {
@@ -176,7 +177,7 @@
176177
}
177178
@keyframes FlipRightDownIn {
178179
from {
179-
transform: perspective(400px)rotateY(-180deg);
180+
transform: perspective(400px) rotateY(-180deg);
180181
transform-origin: right center;
181182
transform-style: preserve-3d;
182183
}
@@ -189,7 +190,7 @@
189190
}
190191
@keyframes FlipRightDownOut {
191192
from {
192-
transform: perspective(400px)rotateY(0deg);
193+
transform: perspective(400px) rotateY(0deg);
193194
transform-origin: right center;
194195
transform-style: preserve-3d;
195196
}
@@ -202,7 +203,7 @@
202203
}
203204
@keyframes FlipRightUpIn {
204205
from {
205-
transform: perspective(400px)rotateY(135deg);
206+
transform: perspective(400px) rotateY(135deg);
206207
transform-origin: right center;
207208
transform-style: preserve-3d;
208209
}
@@ -215,7 +216,7 @@
215216
}
216217
@keyframes FlipRightUpOut {
217218
from {
218-
transform: perspective(400px)rotateY(0deg);
219+
transform: perspective(400px) rotateY(0deg);
219220
transform-origin: right center;
220221
transform-style: preserve-3d;
221222
}
@@ -228,7 +229,7 @@
228229
}
229230
@keyframes FlipLeftDownIn {
230231
from {
231-
transform: perspective(400px)rotateY(-180deg);
232+
transform: perspective(400px) rotateY(-180deg);
232233
transform-origin: left center;
233234
transform-style: preserve-3d;
234235
}
@@ -241,7 +242,7 @@
241242
}
242243
@keyframes FlipLeftDownOut {
243244
from {
244-
transform: perspective(400px)rotateY(0deg);
245+
transform: perspective(400px) rotateY(0deg);
245246
transform-origin: left center;
246247
transform-style: preserve-3d;
247248
}
@@ -254,7 +255,7 @@
254255
}
255256
@keyframes FlipLeftUpIn {
256257
from {
257-
transform: perspective(400px)rotateY(-135deg);
258+
transform: perspective(400px) rotateY(-135deg);
258259
transform-origin: left center;
259260
transform-style: preserve-3d;
260261
}
@@ -282,13 +283,13 @@
282283
from {
283284
filter: alpha(opacity=0);
284285
opacity: 0;
285-
transform: perspective(400px)rotateY(180deg);
286+
transform: perspective(400px) rotateY(180deg);
286287
transform-origin: center center;
287288
transform-style: preserve-3d;
288289
}
289290

290291
50% {
291-
transform: perspective(700px)rotateY(90deg);
292+
transform: perspective(700px) rotateY(90deg);
292293
}
293294

294295
to {
@@ -303,17 +304,17 @@
303304
from {
304305
filter: alpha(opacity=100);
305306
opacity: 1;
306-
transform: perspective(400px)rotateY(0deg);
307+
transform: perspective(400px) rotateY(0deg);
307308
transform-origin: center center;
308309
transform-style: preserve-3d;
309310
}
310311

311312
50% {
312-
transform: perspective(700px)rotateY(90deg);
313+
transform: perspective(700px) rotateY(90deg);
313314
}
314315

315316
75% {
316-
transform: perspective(850px)rotateY(125deg);
317+
transform: perspective(850px) rotateY(125deg);
317318
}
318319

319320
to {
@@ -328,13 +329,13 @@
328329
from {
329330
filter: alpha(opacity=0);
330331
opacity: 0;
331-
transform: perspective(400px)rotateY(-180deg);
332+
transform: perspective(400px) rotateY(-180deg);
332333
transform-origin: center center;
333334
transform-style: preserve-3d;
334335
}
335336

336337
50% {
337-
transform: perspective(700px)rotateY(-90deg);
338+
transform: perspective(700px) rotateY(-90deg);
338339
}
339340

340341
to {
@@ -349,13 +350,13 @@
349350
from {
350351
filter: alpha(opacity=100);
351352
opacity: 1;
352-
transform: perspective(400px)rotateY(0deg);
353+
transform: perspective(400px) rotateY(0deg);
353354
transform-origin: center center;
354355
transform-style: preserve-3d;
355356
}
356357

357358
50% {
358-
transform: perspective(700px)rotateY(-90deg);
359+
transform: perspective(700px) rotateY(-90deg);
359360
}
360361

361362
to {
@@ -370,13 +371,13 @@
370371
from {
371372
filter: alpha(opacity=0);
372373
opacity: 0;
373-
transform: perspective(400px)rotateX(180deg);
374+
transform: perspective(400px) rotateX(180deg);
374375
transform-origin: center center;
375376
transform-style: preserve-3d;
376377
}
377378

378379
50% {
379-
transform: perspective(700px)rotateX(90deg);
380+
transform: perspective(700px) rotateX(90deg);
380381
}
381382

382383
to {
@@ -391,17 +392,17 @@
391392
from {
392393
filter: alpha(opacity=100);
393394
opacity: 1;
394-
transform: perspective(400px)rotateX(0deg);
395+
transform: perspective(400px) rotateX(0deg);
395396
transform-origin: center center;
396397
transform-style: preserve-3d;
397398
}
398399

399400
50% {
400-
transform: perspective(700px)rotateX(90deg);
401+
transform: perspective(700px) rotateX(90deg);
401402
}
402403

403404
75% {
404-
transform: perspective(850px)rotateX(125deg);
405+
transform: perspective(850px) rotateX(125deg);
405406
}
406407

407408
to {
@@ -416,13 +417,13 @@
416417
from {
417418
filter: alpha(opacity=0);
418419
opacity: 0;
419-
transform: perspective(400px)rotateX(-180deg);
420+
transform: perspective(400px) rotateX(-180deg);
420421
transform-origin: center center;
421422
transform-style: preserve-3d;
422423
}
423424

424425
50% {
425-
transform: perspective(700px)rotateX(-90deg);
426+
transform: perspective(700px) rotateX(-90deg);
426427
}
427428

428429
to {
@@ -437,13 +438,13 @@
437438
from {
438439
filter: alpha(opacity=100);
439440
opacity: 1;
440-
transform: perspective(400px)rotateX(0deg);
441+
transform: perspective(400px) rotateX(0deg);
441442
transform-origin: center center;
442443
transform-style: preserve-3d;
443444
}
444445

445446
50% {
446-
transform: perspective(700px)rotateX(-90deg);
447+
transform: perspective(700px) rotateX(-90deg);
447448
}
448449

449450
to {

0 commit comments

Comments
 (0)