@syncfusion/ej2-base 20.3.50 → 20.4.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/.eslintrc.json +16 -1
  2. package/CHANGELOG.md +1 -17
  3. package/README.md +4 -5
  4. package/bin/syncfusion-license.js +1 -1
  5. package/dist/ej2-base.min.js +2 -2
  6. package/dist/ej2-base.umd.min.js +2 -2
  7. package/dist/ej2-base.umd.min.js.map +1 -1
  8. package/dist/es6/ej2-base.es2015.js +497 -281
  9. package/dist/es6/ej2-base.es2015.js.map +1 -1
  10. package/dist/es6/ej2-base.es5.js +285 -210
  11. package/dist/es6/ej2-base.es5.js.map +1 -1
  12. package/dist/global/ej2-base.min.js +2 -2
  13. package/dist/global/ej2-base.min.js.map +1 -1
  14. package/dist/global/index.d.ts +1 -1
  15. package/e2e/modified-protractor/protractor.config.js +316 -0
  16. package/e2e/protractor.config.js +56 -24
  17. package/package.json +44 -8
  18. package/src/animation.d.ts +4 -0
  19. package/src/animation.js +7 -1
  20. package/src/base.js +12 -12
  21. package/src/browser.js +7 -7
  22. package/src/child-property.js +10 -10
  23. package/src/component-model.d.ts +1 -1
  24. package/src/component.js +29 -8
  25. package/src/dom.js +10 -10
  26. package/src/draggable-model.d.ts +21 -8
  27. package/src/draggable.d.ts +24 -6
  28. package/src/draggable.js +25 -12
  29. package/src/event-handler.js +6 -6
  30. package/src/hijri-parser.js +1 -1
  31. package/src/intl/date-parser.js +4 -4
  32. package/src/intl/intl-base.js +4 -4
  33. package/src/intl/number-formatter.js +3 -3
  34. package/src/intl/parser-base.js +2 -2
  35. package/src/keyboard.js +4 -4
  36. package/src/l10n.js +5 -5
  37. package/src/module-loader.js +2 -2
  38. package/src/notify-property-change.js +28 -28
  39. package/src/observer.js +9 -9
  40. package/src/sanitize-helper.js +2 -2
  41. package/src/template-engine.js +14 -14
  42. package/src/template.js +2 -1
  43. package/src/util.js +30 -28
  44. package/src/validate-lic.d.ts +3 -0
  45. package/src/validate-lic.js +69 -37
  46. package/styles/bootstrap-dark.css +34 -4
  47. package/styles/bootstrap.css +34 -4
  48. package/styles/bootstrap4.css +34 -4
  49. package/styles/bootstrap5-dark.css +34 -4
  50. package/styles/bootstrap5.css +34 -4
  51. package/styles/definition/_bootstrap5-dark.scss +9 -0
  52. package/styles/definition/_bootstrap5.scss +9 -0
  53. package/styles/definition/_fluent-dark.scss +9 -0
  54. package/styles/definition/_fluent.scss +9 -0
  55. package/styles/definition/_material.scss +3 -0
  56. package/styles/definition/_tailwind-dark.scss +9 -0
  57. package/styles/definition/_tailwind.scss +9 -0
  58. package/styles/fabric-dark.css +38 -5
  59. package/styles/fabric.css +38 -5
  60. package/styles/fluent-dark.css +35 -5
  61. package/styles/fluent.css +35 -5
  62. package/styles/highcontrast-light.css +41 -5
  63. package/styles/highcontrast.css +41 -5
  64. package/styles/material-dark.css +34 -4
  65. package/styles/material.css +34 -4
  66. package/styles/offline-theme/material-dark.css +34 -4
  67. package/styles/offline-theme/material.css +34 -4
  68. package/styles/offline-theme/tailwind-dark.css +34 -4
  69. package/styles/offline-theme/tailwind.css +34 -4
  70. package/styles/tailwind-dark.css +34 -4
  71. package/styles/tailwind.css +34 -4
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 20.3.50
3
+ * version : 20.4.38
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -0,0 +1,316 @@
1
+ var shell = require('shelljs');
2
+ var os = require('os');
3
+ var camelCase = require('pix-diff/lib/camelCase.js');
4
+ var seleniumAddress = 'http://150.107.121.2:4444/wd/hub';
5
+ var request = require('request');
6
+ var config = require('../../../../config.json');
7
+ var RepalceRegex = /"/g;
8
+ var isDashBoardReport = config['dashBoardReport'];
9
+ var timeCal = {};
10
+ var fs = require('fs');
11
+ var enableW3c = '{W3cdisabled}';
12
+ var HtmlScreenshotReporter = require('protractor-jasmine2-screenshot-reporter');
13
+ var reporter = new HtmlScreenshotReporter({
14
+ dest: 'e2e_report/' + config.browsers[0],
15
+ filename: config.browsers[0] + '.html'
16
+ });
17
+ isDashBoardReport = isDashBoardReport === undefined ? true : isDashBoardReport;
18
+ if (isDashBoardReport) {
19
+ var currentRepo = shell.exec('git config --get remote.origin.url', {
20
+ silent: true
21
+ })
22
+ .stdout.split('essential-studio/')[1].replace('.git', '').replace('/', '').trim();
23
+ var components = JSON.stringify(config.components);
24
+ components = components.replace(RepalceRegex, '').replace('[', '').replace(']', '').trim();
25
+ var branch = JSON.stringify(config.branchName);
26
+ branch = branch.replace(RepalceRegex, '').trim();
27
+ var toMail = config.toMailAddress;
28
+ var ccMail = config.ccMailAddress;
29
+ }
30
+
31
+ exports.config = {
32
+ allScriptsTimeout: 600000,
33
+
34
+ getPageTimeout: 60000,
35
+
36
+ framework: 'jasmine',
37
+
38
+ jasmineNodeOpts: {
39
+ defaultTimeoutInterval: 100000
40
+ },
41
+ multiCapabilities: [],
42
+
43
+ specs: ['../../../../e2e/tests/**/*.spec.js'],
44
+
45
+ onComplete: function () {
46
+ if (isDashBoardReport) {
47
+ var failurecount = 0;
48
+ var resultjson = require('../../../../jasmine-test-results.json');
49
+ var key = Object.keys(resultjson);
50
+ var totalcount = 0;
51
+ for (var i = 0; i < key.length; i++) {
52
+ var Objects = resultjson[key[i]]["specs"];
53
+ totalcount = totalcount + Objects.length;
54
+ for (var j = 0; j < Objects.length; j++) {
55
+ if (Objects[j].status === "failed") {
56
+ failurecount++;
57
+ }
58
+ }
59
+ }
60
+ ccMail.push("ej2core@syncfusion.com");
61
+ var data = {
62
+ RepositoryName: currentRepo,
63
+ ComponentName: components,
64
+ BranchName: branch,
65
+ StartDate: new Date(),
66
+ EndDate: new Date(),
67
+ Type: "Desktop",
68
+ TotalTestCaseCount: totalcount,
69
+ FailureTestCaseCount: failurecount,
70
+ SuccessTestCaseCount: totalcount - failurecount,
71
+ Browser: browser.browserName,
72
+ toMailAddress: toMail,
73
+ ccMailAddress: ccMail
74
+ };
75
+ var status = failurecount.length ? 'Failure' : 'Success';
76
+ var successCount = totalcount - failurecount;
77
+ var notRun = totalcount - (successCount + failurecount);
78
+ if (fs.existsSync('./testreport')) {
79
+ shell.cd('./testreport');
80
+ shell.exec('Syncfusion.UpdateTestResults.exe /Platform:"JavaScript - EJ2" /Control:"' + components +
81
+ '" /TestingTool:"Selenium" /StartTime:"' + new Date().toLocaleTimeString() + '" /EndTime:"' + new Date().toLocaleTimeString() +
82
+ '" /Status:"' + status + '" /TotalTestCase:' + totalcount +
83
+ ' /SuccessCount:' + successCount + ' /FailureCount:' + failurecount + ' /NotRunCount:' + notRun + ' /UpdatedBy:"' + toMail[0] + '"');
84
+ shell.cd('../');
85
+ }
86
+ request({
87
+ url: 'https://ej2services.syncfusion.com/cicentral/api/getE2EReport',
88
+ method: 'POST',
89
+ json: true,
90
+ body: data,
91
+ headers: {
92
+ 'authorization': 'ej2centrailzedstatus',
93
+ 'content-type': 'application/json'
94
+ }
95
+ });
96
+ }
97
+
98
+ browser.driver.quit();
99
+ console.log(browser.browserName + ' driver closed!');
100
+ },
101
+ beforeLaunch: function () {
102
+ return new Promise(function (resolve) {
103
+ reporter.beforeLaunch(resolve);
104
+ });
105
+ },
106
+
107
+ onPrepare: function () {
108
+ const PixDiff = require('pix-diff');
109
+ const fs = require('fs');
110
+ const path = require('path');
111
+ browser.ignoreSynchronization = true;
112
+ browser.waitForAngularEnabled = false;
113
+ browser.isDesktop = true;
114
+ timeCal['startTime'] = new Date().toLocaleTimeString();
115
+ browser.basePath = require('../../../../protractor.browser.json').basePath;
116
+
117
+ browser.driver.manage().window().setSize(1600, 1200);
118
+ var JSONReporter = require('jasmine-json-test-reporter');
119
+ jasmine.getEnv().addReporter(new JSONReporter({
120
+ file: 'jasmine-test-results.json',
121
+ beautify: true,
122
+ indentationLevel: 4 // used if beautify === true
123
+ }));
124
+
125
+ //move to out off user screen
126
+ browser.driver.manage().window().setPosition(2500, 0);
127
+
128
+ browser.load = function (path) {
129
+ browser.get(browser.basePath + path);
130
+ // browser.wait(function () {
131
+ // return element(By.css('.e-control')).isDisplayed();
132
+ // }, 3000);
133
+
134
+ if (browser.css) {
135
+ browser.injectCss(browser.css);
136
+ }
137
+ }
138
+
139
+ browser.loadAsync = function (path) {
140
+ return browser.get(browser.basePath + path);
141
+ }
142
+
143
+ browser.getCapabilities().then(function (cap) {
144
+
145
+ browser.browserName = cap.get('browserName');
146
+
147
+ browser.pixResult = PixDiff;
148
+
149
+ browser.pixDiff = new PixDiff({
150
+ basePath: './e2e',
151
+ diffPath: './e2e',
152
+ formatImageName: '{tag}'
153
+ });
154
+
155
+ //override difference path
156
+ browser.pixDiff.diffPath = path.normalize(camelCase('./e2e/Diff/' + browser.browserName));
157
+ //create folder if not present
158
+ createF(browser.pixDiff.diffPath);
159
+
160
+ browser.compareScreen = function (element, fileName, opt) {
161
+ var folderName = fileName;
162
+ var fArr = fileName.split('/');
163
+ if (fArr.length > 1) {
164
+ fArr.splice(-1, 1);
165
+ folderName = fArr.join('/')
166
+ createF(camelCase('e2e/expected/' + browser.pixDiff.browserName + '/' + folderName));
167
+ createF(camelCase('e2e/actual/' + browser.pixDiff.browserName + '/' + folderName));
168
+ }
169
+
170
+ // thresholdType: 'percent',
171
+ // threshold: 0.009,
172
+ var option = {
173
+ imageAPath: '/expected/' + browser.pixDiff.browserName + '/' + fileName, // Use file-path
174
+ imageBPath: '/actual/' + browser.pixDiff.browserName + '/' + fileName,
175
+ filter: ['grayScale'],
176
+ debug: true,
177
+ hideShift: true,
178
+ };
179
+ var doneFn = arguments[arguments.length - 1];
180
+ if (typeof opt === 'object' && Object.keys(opt).length) {
181
+ Object.assign(option, opt);
182
+ }
183
+ browser.pixDiff.saveRegion(element, '/Actual/' + browser.pixDiff.browserName + '/' + fileName, option).then(() => {
184
+ var fPathName = path.resolve(__dirname, '../../../../' + camelCase('e2e/expected/' + browser.pixDiff.browserName + '/' + fileName) + '.png');
185
+ if (!fs.existsSync(fPathName) && fs.existsSync(fPathName.replace("Expected", "Actual"))) {
186
+ fs.copyFileSync(fPathName.replace("Expected", "Actual"), fPathName);
187
+ console.log('Expected Image Created : /expected/' + browser.pixDiff.browserName + '/' + fileName);
188
+ }
189
+ browser.saveCheckImage(element, fileName, option, doneFn);
190
+ });
191
+ }
192
+
193
+ browser.saveCheckImage = function (element, fileName, option, doneFn) {
194
+ browser.pixDiff.checkRegion(element, '/Expected/' + browser.pixDiff.browserName + '/' + fileName, option).then((result) => {
195
+ //
196
+ // * - `RESULT_UNKNOWN`: 0
197
+ // * - `RESULT_DIFFERENT`: 1
198
+ // * - `RESULT_SIMILAR`: 7
199
+ // * - `RESULT_IDENTICAL`: 5
200
+ console.log(JSON.stringify(result));
201
+ expect(result.code).toEqual(browser.pixResult.RESULT_IDENTICAL);
202
+ if (typeof doneFn === 'function') {
203
+ doneFn();
204
+ }
205
+ });
206
+ }
207
+
208
+ browser.waitForEvent = function (id, moduleName, eventName) {
209
+ return browser.executeAsyncScript(function (id, moduleName, eventName, callback) {
210
+ var instances = document.getElementById(id).ej2_instances;
211
+ var instanceObj;
212
+ for (var i = 0; instances && i < instances.length; i++) {
213
+ if (instances[i].getModuleName() == moduleName) {
214
+ instanceObj = instances[i]
215
+ }
216
+ }
217
+ if (instanceObj) {
218
+ var handler;
219
+ handler = function (e) {
220
+ instanceObj.removeEventListener(eventName, handler);
221
+ callback();
222
+ };
223
+ instanceObj.addEventListener(eventName, handler);
224
+ } else {
225
+ callback();
226
+ }
227
+ }, id, moduleName, eventName);
228
+ }
229
+
230
+ browser.injectScript = function (path, callback) {
231
+ return browser.executeAsyncScript(function (path) {
232
+ var head = document.getElementsByTagName('head')[0];
233
+ var script = document.createElement('script');
234
+ script.type = 'text/javascript';
235
+ script.onload = function () {
236
+ callback();
237
+ }
238
+ script.src = path;
239
+ head.appendChild(script);
240
+ }, browser.basePath + path);
241
+
242
+ }
243
+
244
+ browser.injectCss = function (content) {
245
+ return browser.wait(browser.executeScript(`
246
+ var style = document.createElement('style');
247
+ style.id = 'browsercss';
248
+ if (style.styleSheet) {style.styleSheet.cssText = '` + content + `';}
249
+ else{style.appendChild(document.createTextNode('` + content + `'));}
250
+ document.head.appendChild(style);
251
+ `));
252
+ }
253
+
254
+ });
255
+ jasmine.getEnv().addReporter(reporter);
256
+
257
+ },
258
+ afterLaunch: function (exitCode) {
259
+ return new Promise(function (resolve) {
260
+ reporter.afterLaunch(resolve.bind(this, exitCode));
261
+ });
262
+ },
263
+ };
264
+
265
+ //Browser Configuration
266
+ if (config.browsers && config.browsers.length) {
267
+ for (var i = 0; i < config.browsers.length; i++) {
268
+ var browserName = config.browsers[i];
269
+ if (browserName === 'chrome' && enableW3c === '{W3cenabled}') {
270
+ exports.config.multiCapabilities.push({
271
+ 'browserName': browserName,
272
+ 'goog:chromeOptions': { //disable w3c here
273
+ w3c: false,
274
+ }
275
+ });
276
+ } else {
277
+ exports.config.multiCapabilities.push({
278
+ 'browserName': browserName
279
+ });
280
+ }
281
+ }
282
+ } else {
283
+ if (os.platform() === 'win32') {
284
+ exports.config.multiCapabilities.push({
285
+ 'browserName': 'internet explorer'
286
+ });
287
+ if (Number(os.release().split('.')[0]) >= 10) {
288
+ exports.config.multiCapabilities.push({
289
+ 'browserName': 'MicrosoftEdge'
290
+ });
291
+ }
292
+ }
293
+ exports.config.multiCapabilities.push({
294
+ 'browserName': 'firefox'
295
+ });
296
+ if (enableW3c === '{W3cenabled}') {
297
+ exports.config.multiCapabilities.push({
298
+ 'browserName': 'chrome',
299
+ 'goog:chromeOptions': { //disable w3c here
300
+ w3c: false,
301
+ }
302
+ });
303
+ } else {
304
+ exports.config.multiCapabilities.push({
305
+ 'browserName': 'chrome',
306
+ 'chromeOptions': {
307
+ 'args': ['no-sandbox']
308
+ }
309
+ });
310
+ }
311
+ }
312
+ exports.config.seleniumAddress = config.seleniumAddress || 'http://localhost:4444/wd/hub/';
313
+
314
+ function createF(path) {
315
+ shell.mkdir('-p', path);
316
+ }
@@ -8,6 +8,12 @@ var RepalceRegex = /"/g;
8
8
  var isDashBoardReport = config['dashBoardReport'];
9
9
  var timeCal = {};
10
10
  var fs = require('fs');
11
+ var enableW3c = '{W3cdisabled}';
12
+ var HtmlScreenshotReporter = require('protractor-jasmine2-screenshot-reporter');
13
+ var reporter = new HtmlScreenshotReporter({
14
+ dest: 'e2e_report/' + config.browsers[0],
15
+ filename: config.browsers[0] + '.html'
16
+ });
11
17
  isDashBoardReport = isDashBoardReport === undefined ? true : isDashBoardReport;
12
18
  if (isDashBoardReport) {
13
19
  var currentRepo = shell.exec('git config --get remote.origin.url', {
@@ -22,8 +28,6 @@ if (isDashBoardReport) {
22
28
  var ccMail = config.ccMailAddress;
23
29
  }
24
30
 
25
-
26
-
27
31
  exports.config = {
28
32
  allScriptsTimeout: 600000,
29
33
 
@@ -67,19 +71,18 @@ exports.config = {
67
71
  Browser: browser.browserName,
68
72
  toMailAddress: toMail,
69
73
  ccMailAddress: ccMail
70
-
71
74
  };
72
75
  var status = failurecount.length ? 'Failure' : 'Success';
73
76
  var successCount = totalcount - failurecount;
74
77
  var notRun = totalcount - (successCount + failurecount);
75
- if (fs.existsSync('./testreport')) {
76
- shell.cd('./testreport');
77
- shell.exec('Syncfusion.UpdateTestResults.exe /Platform:"JavaScript - EJ2" /Control:"' + components +
78
- '" /TestingTool:"Selenium" /StartTime:"' + new Date().toLocaleTimeString() + '" /EndTime:"' + new Date().toLocaleTimeString() +
79
- '" /Status:"' + status + '" /TotalTestCase:' + totalcount +
80
- ' /SuccessCount:' + successCount + ' /FailureCount:' + failurecount + ' /NotRunCount:' + notRun + ' /UpdatedBy:"' + toMail[0] + '"');
81
- shell.cd('../');
82
- }
78
+ if (fs.existsSync('./testreport')) {
79
+ shell.cd('./testreport');
80
+ shell.exec('Syncfusion.UpdateTestResults.exe /Platform:"JavaScript - EJ2" /Control:"' + components +
81
+ '" /TestingTool:"Selenium" /StartTime:"' + new Date().toLocaleTimeString() + '" /EndTime:"' + new Date().toLocaleTimeString() +
82
+ '" /Status:"' + status + '" /TotalTestCase:' + totalcount +
83
+ ' /SuccessCount:' + successCount + ' /FailureCount:' + failurecount + ' /NotRunCount:' + notRun + ' /UpdatedBy:"' + toMail[0] + '"');
84
+ shell.cd('../');
85
+ }
83
86
  request({
84
87
  url: 'https://ej2services.syncfusion.com/cicentral/api/getE2EReport',
85
88
  method: 'POST',
@@ -95,6 +98,11 @@ exports.config = {
95
98
  browser.driver.quit();
96
99
  console.log(browser.browserName + ' driver closed!');
97
100
  },
101
+ beforeLaunch: function () {
102
+ return new Promise(function (resolve) {
103
+ reporter.beforeLaunch(resolve);
104
+ });
105
+ },
98
106
 
99
107
  onPrepare: function () {
100
108
  const PixDiff = require('pix-diff');
@@ -119,9 +127,9 @@ exports.config = {
119
127
 
120
128
  browser.load = function (path) {
121
129
  browser.get(browser.basePath + path);
122
- browser.wait(function () {
123
- return element(By.css('.e-control')).isDisplayed();
124
- }, 3000);
130
+ browser.wait(function () {
131
+ return element(By.css('.e-control')).isDisplayed();
132
+ }, 3000);
125
133
 
126
134
  if (browser.css) {
127
135
  browser.injectCss(browser.css);
@@ -244,17 +252,32 @@ exports.config = {
244
252
  }
245
253
 
246
254
  });
255
+ jasmine.getEnv().addReporter(reporter);
247
256
 
248
257
  },
258
+ afterLaunch: function (exitCode) {
259
+ return new Promise(function (resolve) {
260
+ reporter.afterLaunch(resolve.bind(this, exitCode));
261
+ });
262
+ },
249
263
  };
250
264
 
251
265
  //Browser Configuration
252
266
  if (config.browsers && config.browsers.length) {
253
267
  for (var i = 0; i < config.browsers.length; i++) {
254
268
  var browserName = config.browsers[i];
255
- exports.config.multiCapabilities.push({
256
- 'browserName': browserName
257
- });
269
+ if (browserName === 'chrome' && enableW3c === '{W3cenabled}') {
270
+ exports.config.multiCapabilities.push({
271
+ 'browserName': browserName,
272
+ 'goog:chromeOptions': { //disable w3c here
273
+ w3c: false,
274
+ }
275
+ });
276
+ } else {
277
+ exports.config.multiCapabilities.push({
278
+ 'browserName': browserName
279
+ });
280
+ }
258
281
  }
259
282
  } else {
260
283
  if (os.platform() === 'win32') {
@@ -270,15 +293,24 @@ if (config.browsers && config.browsers.length) {
270
293
  exports.config.multiCapabilities.push({
271
294
  'browserName': 'firefox'
272
295
  });
273
- exports.config.multiCapabilities.push({
274
- 'browserName': 'chrome',
275
- 'chromeOptions': {
276
- 'args': ['no-sandbox']
277
- }
278
- });
296
+ if (enableW3c === '{W3cenabled}') {
297
+ exports.config.multiCapabilities.push({
298
+ 'browserName': 'chrome',
299
+ 'goog:chromeOptions': { //disable w3c here
300
+ w3c: false,
301
+ }
302
+ });
303
+ } else {
304
+ exports.config.multiCapabilities.push({
305
+ 'browserName': 'chrome',
306
+ 'chromeOptions': {
307
+ 'args': ['no-sandbox']
308
+ }
309
+ });
310
+ }
279
311
  }
280
312
  exports.config.seleniumAddress = config.seleniumAddress || 'http://localhost:4444/wd/hub/';
281
313
 
282
314
  function createF(path) {
283
315
  shell.mkdir('-p', path);
284
- }
316
+ }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-base@*",
3
- "_id": "@syncfusion/ej2-base@20.3.49",
3
+ "_id": "@syncfusion/ej2-base@18.73.0",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-EE7DhtDxAg5vWQE/I4N6Oh2B36zxzlWIPtDcJHIkZRfJ2En3/wfFVLyvS2xMDVF4KMYEqF8ZmhAKQpXl7p0lUA==",
5
+ "_integrity": "sha512-aTk3o950xviCAw2lrndoB4wwjKVY6OmqqcFuXNfSpysIe4oyyqOIEEfmQpKO20RKgUKXtuNxbFM3J4XQBXr3wg==",
6
6
  "_location": "/@syncfusion/ej2-base",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,28 +19,40 @@
19
19
  "_requiredBy": [
20
20
  "/",
21
21
  "/@syncfusion/ej2",
22
+ "/@syncfusion/ej2-angular-barcode-generator",
22
23
  "/@syncfusion/ej2-angular-base",
23
24
  "/@syncfusion/ej2-angular-buttons",
24
25
  "/@syncfusion/ej2-angular-calendars",
25
26
  "/@syncfusion/ej2-angular-charts",
27
+ "/@syncfusion/ej2-angular-circulargauge",
26
28
  "/@syncfusion/ej2-angular-diagrams",
27
29
  "/@syncfusion/ej2-angular-documenteditor",
28
30
  "/@syncfusion/ej2-angular-dropdowns",
31
+ "/@syncfusion/ej2-angular-filemanager",
29
32
  "/@syncfusion/ej2-angular-gantt",
30
33
  "/@syncfusion/ej2-angular-grids",
31
34
  "/@syncfusion/ej2-angular-heatmap",
32
35
  "/@syncfusion/ej2-angular-image-editor",
36
+ "/@syncfusion/ej2-angular-inplace-editor",
33
37
  "/@syncfusion/ej2-angular-inputs",
38
+ "/@syncfusion/ej2-angular-kanban",
39
+ "/@syncfusion/ej2-angular-layouts",
40
+ "/@syncfusion/ej2-angular-lineargauge",
34
41
  "/@syncfusion/ej2-angular-lists",
42
+ "/@syncfusion/ej2-angular-maps",
35
43
  "/@syncfusion/ej2-angular-navigations",
44
+ "/@syncfusion/ej2-angular-notifications",
36
45
  "/@syncfusion/ej2-angular-pdfviewer",
37
46
  "/@syncfusion/ej2-angular-pivotview",
38
47
  "/@syncfusion/ej2-angular-popups",
48
+ "/@syncfusion/ej2-angular-progressbar",
39
49
  "/@syncfusion/ej2-angular-querybuilder",
40
50
  "/@syncfusion/ej2-angular-richtexteditor",
41
51
  "/@syncfusion/ej2-angular-schedule",
52
+ "/@syncfusion/ej2-angular-splitbuttons",
42
53
  "/@syncfusion/ej2-angular-spreadsheet",
43
54
  "/@syncfusion/ej2-angular-treegrid",
55
+ "/@syncfusion/ej2-angular-treemap",
44
56
  "/@syncfusion/ej2-barcode-generator",
45
57
  "/@syncfusion/ej2-buttons",
46
58
  "/@syncfusion/ej2-calendars",
@@ -71,28 +83,40 @@
71
83
  "/@syncfusion/ej2-popups",
72
84
  "/@syncfusion/ej2-progressbar",
73
85
  "/@syncfusion/ej2-querybuilder",
86
+ "/@syncfusion/ej2-react-barcode-generator",
74
87
  "/@syncfusion/ej2-react-base",
75
88
  "/@syncfusion/ej2-react-buttons",
76
89
  "/@syncfusion/ej2-react-calendars",
77
90
  "/@syncfusion/ej2-react-charts",
91
+ "/@syncfusion/ej2-react-circulargauge",
78
92
  "/@syncfusion/ej2-react-diagrams",
79
93
  "/@syncfusion/ej2-react-documenteditor",
80
94
  "/@syncfusion/ej2-react-dropdowns",
95
+ "/@syncfusion/ej2-react-filemanager",
81
96
  "/@syncfusion/ej2-react-gantt",
82
97
  "/@syncfusion/ej2-react-grids",
83
98
  "/@syncfusion/ej2-react-heatmap",
84
99
  "/@syncfusion/ej2-react-image-editor",
100
+ "/@syncfusion/ej2-react-inplace-editor",
85
101
  "/@syncfusion/ej2-react-inputs",
102
+ "/@syncfusion/ej2-react-kanban",
103
+ "/@syncfusion/ej2-react-layouts",
104
+ "/@syncfusion/ej2-react-lineargauge",
86
105
  "/@syncfusion/ej2-react-lists",
106
+ "/@syncfusion/ej2-react-maps",
87
107
  "/@syncfusion/ej2-react-navigations",
108
+ "/@syncfusion/ej2-react-notifications",
88
109
  "/@syncfusion/ej2-react-pdfviewer",
89
110
  "/@syncfusion/ej2-react-pivotview",
90
111
  "/@syncfusion/ej2-react-popups",
112
+ "/@syncfusion/ej2-react-progressbar",
91
113
  "/@syncfusion/ej2-react-querybuilder",
92
114
  "/@syncfusion/ej2-react-richtexteditor",
93
115
  "/@syncfusion/ej2-react-schedule",
116
+ "/@syncfusion/ej2-react-splitbuttons",
94
117
  "/@syncfusion/ej2-react-spreadsheet",
95
118
  "/@syncfusion/ej2-react-treegrid",
119
+ "/@syncfusion/ej2-react-treemap",
96
120
  "/@syncfusion/ej2-richtexteditor",
97
121
  "/@syncfusion/ej2-schedule",
98
122
  "/@syncfusion/ej2-splitbuttons",
@@ -100,33 +124,45 @@
100
124
  "/@syncfusion/ej2-svg-base",
101
125
  "/@syncfusion/ej2-treegrid",
102
126
  "/@syncfusion/ej2-treemap",
127
+ "/@syncfusion/ej2-vue-barcode-generator",
103
128
  "/@syncfusion/ej2-vue-base",
104
129
  "/@syncfusion/ej2-vue-buttons",
105
130
  "/@syncfusion/ej2-vue-calendars",
106
131
  "/@syncfusion/ej2-vue-charts",
132
+ "/@syncfusion/ej2-vue-circulargauge",
107
133
  "/@syncfusion/ej2-vue-diagrams",
108
134
  "/@syncfusion/ej2-vue-documenteditor",
109
135
  "/@syncfusion/ej2-vue-dropdowns",
136
+ "/@syncfusion/ej2-vue-filemanager",
110
137
  "/@syncfusion/ej2-vue-gantt",
111
138
  "/@syncfusion/ej2-vue-grids",
112
139
  "/@syncfusion/ej2-vue-heatmap",
113
140
  "/@syncfusion/ej2-vue-image-editor",
141
+ "/@syncfusion/ej2-vue-inplace-editor",
114
142
  "/@syncfusion/ej2-vue-inputs",
143
+ "/@syncfusion/ej2-vue-kanban",
144
+ "/@syncfusion/ej2-vue-layouts",
145
+ "/@syncfusion/ej2-vue-lineargauge",
115
146
  "/@syncfusion/ej2-vue-lists",
147
+ "/@syncfusion/ej2-vue-maps",
116
148
  "/@syncfusion/ej2-vue-navigations",
149
+ "/@syncfusion/ej2-vue-notifications",
117
150
  "/@syncfusion/ej2-vue-pdfviewer",
118
151
  "/@syncfusion/ej2-vue-pivotview",
119
152
  "/@syncfusion/ej2-vue-popups",
153
+ "/@syncfusion/ej2-vue-progressbar",
120
154
  "/@syncfusion/ej2-vue-querybuilder",
121
155
  "/@syncfusion/ej2-vue-richtexteditor",
122
156
  "/@syncfusion/ej2-vue-schedule",
157
+ "/@syncfusion/ej2-vue-splitbuttons",
123
158
  "/@syncfusion/ej2-vue-spreadsheet",
124
- "/@syncfusion/ej2-vue-treegrid"
159
+ "/@syncfusion/ej2-vue-treegrid",
160
+ "/@syncfusion/ej2-vue-treemap"
125
161
  ],
126
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-base/-/ej2-base-20.3.49.tgz",
127
- "_shasum": "3261261027f2c0dea7a4f77e1700eb96b57acb4d",
162
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-base/-/ej2-base-18.73.0.tgz",
163
+ "_shasum": "3dc248bc8d8c7fdfdeeeff4d9e933618f40b2d23",
128
164
  "_spec": "@syncfusion/ej2-base@*",
129
- "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
165
+ "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
130
166
  "author": {
131
167
  "name": "Syncfusion Inc."
132
168
  },
@@ -138,7 +174,7 @@
138
174
  },
139
175
  "bundleDependencies": false,
140
176
  "dependencies": {
141
- "@syncfusion/ej2-icons": "~20.3.47"
177
+ "@syncfusion/ej2-icons": "~20.4.38"
142
178
  },
143
179
  "deprecated": false,
144
180
  "description": "A common package of Essential JS 2 base libraries, methods and class definitions",
@@ -179,6 +215,6 @@
179
215
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
180
216
  },
181
217
  "typings": "index.d.ts",
182
- "version": "20.3.50",
218
+ "version": "20.4.38",
183
219
  "sideEffects": true
184
220
  }
@@ -196,10 +196,14 @@ export declare let isRippleEnabled: boolean;
196
196
  export declare function enableRipple(isRipple: boolean): boolean;
197
197
  /**
198
198
  * Defines the Modes of Global animation.
199
+ *
199
200
  * @private
200
201
  */
201
202
  export declare let animationMode: string;
202
203
  /**
203
204
  * Method for set the Global animation modes for Syncfusion Blazor components.
205
+ *
206
+ * @param {string} value - Specifies the animation mode.
207
+ * @returns {void}
204
208
  */
205
209
  export declare function setGlobalAnimation(value: string): void;
package/src/animation.js CHANGED
@@ -281,7 +281,9 @@ export { Animation };
281
281
  export function rippleEffect(element, rippleOptions, done) {
282
282
  var rippleModel = getRippleModel(rippleOptions);
283
283
  if (rippleModel.rippleFlag === false || (rippleModel.rippleFlag === undefined && !isRippleEnabled)) {
284
- return (function () { });
284
+ return (function () {
285
+ // do nothing.
286
+ });
285
287
  }
286
288
  element.setAttribute('data-ripple', 'true');
287
289
  EventHandler.add(element, 'mousedown', rippleHandler, { parent: element, rippleOptions: rippleModel });
@@ -425,11 +427,15 @@ export function enableRipple(isRipple) {
425
427
  }
426
428
  /**
427
429
  * Defines the Modes of Global animation.
430
+ *
428
431
  * @private
429
432
  */
430
433
  export var animationMode = '';
431
434
  /**
432
435
  * Method for set the Global animation modes for Syncfusion Blazor components.
436
+ *
437
+ * @param {string} value - Specifies the animation mode.
438
+ * @returns {void}
433
439
  */
434
440
  export function setGlobalAnimation(value) {
435
441
  animationMode = value;